IRC logs of #tryton for Tuesday, 2016-05-03

chat.freenode.net #tryton log beginning Tue May 3 00:00:01 CEST 2016
2016-05-03 00:29 -!- pokoli(~pokoli@unaffiliated/pokoli) has joined #tryton
2016-05-03 02:00 -!- smarro(~sebastian@cust-138-45-13-200.trynet.com.ar) has joined #tryton
2016-05-03 02:10 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2016-05-03 02:49 -!- smarro(~sebastian@cust-138-45-13-200.trynet.com.ar) has joined #tryton
2016-05-03 07:37 -!- ccaz(~ccr@ax313-1-82-66-159-99.fbx.proxad.net) has joined #tryton
2016-05-03 07:41 -!- frispete(~frispete@p54A91977.dip0.t-ipconnect.de) has joined #tryton
2016-05-03 07:50 -!- dj_xatra(~dj_xatra@217.166.83.130) has joined #tryton
2016-05-03 08:18 -!- rpit(~rpit@2a02:908:e672:9420:56ee:75ff:fe0d:d3c7) has joined #tryton
2016-05-03 08:36 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2016-05-03 08:57 -!- mrichez(~smuxi@mail.saluc.com) has joined #tryton
2016-05-03 09:00 -!- udono(~udono@ip-178-202-239-138.hsi09.unitymediagroup.de) has joined #tryton
2016-05-03 09:00 <dj_xatra> Congrats with the new release.
2016-05-03 09:05 <dj_xatra> cedk: some time ago you said that entry_points would enable me to have modules in a different place then trytond/modules/. But it looks like trytond does look in that location.
2016-05-03 09:05 <dj_xatra> I have entry_points = "[trytond.modules] %s = trytond.modules.%s" % (MODULE, MODULE)
2016-05-03 09:06 <dj_xatra> The tryton client says "IOError: File not found : /dist-packages/trytond/modules/article/tryton.cfg"
2016-05-03 09:06 <dj_xatra> dist-packages = Debian's site-packages
2016-05-03 09:08 <cedk> dj_xatra: it should: http://hg.tryton.org/trytond/file/default/trytond/modules/__init__.py#l33
2016-05-03 09:08 <cedk> dj_xatra: how did you create the entry point? with setup.py?
2016-05-03 09:27 <dj_xatra> cedk: we took a setup.py from another module (the library example, iirc) and slightly modified it: http://dpaste.com/1AYF4GP
2016-05-03 09:28 <cedk> dj_xatra: and where is the module installed?
2016-05-03 09:35 <dj_xatra> cedk: nm, pip does weird things. Need to check that first. I'll get back to you later.
2016-05-03 09:35 <cedk> dj_xatra: also check that tryton.cfg is in the MANIFEST.in
2016-05-03 09:36 <cedk> dj_xatra: for new module, a good way to not forget anything is to use the cookiecutter template
2016-05-03 09:47 -!- Timitos(~kpreisler@tmo-081-107.customers.d1-online.com) has joined #tryton
2016-05-03 09:58 -!- leio_(~leio@gentoo/developer/leio) has joined #tryton
2016-05-03 09:59 -!- sharkcz(~sharkcz@server.danny.cz) has joined #tryton
2016-05-03 09:59 -!- Pilou(~Pilou@181.204.19.93.rev.sfr.net) has joined #tryton
2016-05-03 09:59 -!- Pilou(~Pilou@pdpc/supporter/active/pilou) has joined #tryton
2016-05-03 10:26 -!- nicoe(~nicoe@balisto.wifi.b2ck.com) has joined #tryton
2016-05-03 12:33 -!- Timitos1(~kpreisler@tmo-115-186.customers.d1-online.com) has joined #tryton
2016-05-03 12:38 -!- mariomop(~quassel@181.92.2.188) has joined #tryton
2016-05-03 12:48 <dj_xatra> cedk: thanks. We went back to not using entry_points for now.
2016-05-03 12:48 <dj_xatra> Now pip install works fine, but we're getting an error in the client: http://dpaste.com/0H1C17C
2016-05-03 12:49 <dj_xatra> I thought maybe an error in 1 of our xml files, but they look pretty valid to me. Does this error look familiar?
2016-05-03 12:56 <pokoli> dj_xatra: this seems to a view that the server is not possible to find
2016-05-03 12:57 <pokoli> dj_xatra: you must ensure that your views are included on the package_data
2016-05-03 12:58 <dj_xatra> pokoli: indeed, I don't see a views folder in the installed module's folder
2016-05-03 12:58 <dj_xatra> ACTION checks package_data
2016-05-03 13:08 <dj_xatra> pokoli: That was it. Thanks a bunch.
2016-05-03 13:12 <pokoli> dj_xatra: your welcome :)
2016-05-03 14:20 -!- smarro(~sebastian@186.153.188.231) has joined #tryton
2016-05-03 15:10 -!- smarro_(~sebastian@host206.186-124-238.telecom.net.ar) has joined #tryton
2016-05-03 15:24 -!- bvillasanti(~bvillasan@190.105.73.145) has joined #tryton
2016-05-03 15:56 -!- bvillasanti(~bvillasan@190.105.73.145) has joined #tryton
2016-05-03 16:04 -!- kstenger(~karla@r186-48-39-134.dialup.adsl.anteldata.net.uy) has joined #tryton
2016-05-03 16:13 -!- kstenger1(~karla@186.55.77.219) has joined #tryton
2016-05-03 16:13 -!- Timitos(~kpreisler@tmo-080-249.customers.d1-online.com) has joined #tryton
2016-05-03 16:32 -!- mholtzberg(~mholtzber@p50931afa.dip0.t-ipconnect.de) has joined #tryton
2016-05-03 16:34 <pokoli> cedk: there is some docs on how to setup a mercurial nested server like hg.tryton.org?
2016-05-03 16:54 -!- rpit(~rpit@2a02:908:e672:9420:56ee:75ff:fe0d:d3c7) has joined #tryton
2016-05-03 17:40 -!- Telesight(~anthony@4dae0c97.ftth.telfortglasvezel.nl) has joined #tryton
2016-05-03 17:48 -!- smarro_(~sebastian@cust-138-45-13-200.trynet.com.ar) has joined #tryton
2016-05-03 17:50 -!- xrg_(~panos@46.246.165.165.dsl.dyn.forthnet.gr) has joined #tryton
2016-05-03 18:20 -!- smarro_(~sebastian@cust-138-45-13-200.trynet.com.ar) has joined #tryton
2016-05-03 19:32 -!- smarro_(~sebastian@host206.186-124-238.telecom.net.ar) has joined #tryton
2016-05-03 21:13 -!- ccaz(~ccr@ax313-1-82-66-159-99.fbx.proxad.net) has joined #tryton
2016-05-03 21:17 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2016-05-03 21:29 -!- JosDzG(~Thunderbi@fixed-188-72-187-188-72-36.iusacell.net) has joined #tryton
2016-05-03 21:31 -!- JosDzG(~Thunderbi@fixed-188-72-187-188-72-36.iusacell.net) has joined #tryton
2016-05-03 21:51 -!- xrg_(~panos@46.246.165.165.dsl.dyn.forthnet.gr) has joined #tryton
2016-05-03 21:51 -!- udono(~udono@ip-178-202-239-138.hsi09.unitymediagroup.de) has joined #tryton
2016-05-03 21:51 -!- meigallodixital(~meigallod@249.135.116.91.static.reverse-mundo-r.com) has joined #tryton
2016-05-03 21:51 -!- perilla(~perilla@corp-190-57-169-210-cue.puntonet.ec) has joined #tryton
2016-05-03 21:51 -!- smarro_(~sebastian@host206.186-124-238.telecom.net.ar) has joined #tryton
2016-05-03 21:56 -!- nicoe(~nicoe@2a02:a03f:3005:6c00:ee55:f9ff:fe7b:f7ac) has joined #tryton
2016-05-03 22:56 -!- ccaz(~ccr@ax313-1-82-66-159-99.fbx.proxad.net) has joined #tryton
2016-05-03 23:16 -!- smarro_(~sebastian@cust-213-46-13-200.trynet.com.ar) has joined #tryton
2016-05-03 23:54 -!- apostatize(~visavis@unaffiliated/apostatize) has joined #tryton

Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!