IRC logs of #tryton for Wednesday, 2010-08-04

chat.freenode.net #tryton log beginning Wed Aug 4 00:00:01 CEST 2010
2010-08-04 01:10 -!- digitalsatori(~tony@116.233.249.147) has joined #tryton
2010-08-04 02:10 -!- digitalsatori(~tony@116.233.249.147) has joined #tryton
2010-08-04 02:10 -!- juanfer(~juanfer@190.27.84.91) has joined #tryton
2010-08-04 02:55 -!- ikks(~ikks@190.158.116.213) has joined #tryton
2010-08-04 04:15 -!- gremly(~gremly@201.244.193.238) has joined #tryton
2010-08-04 05:20 -!- zodman(~zodman@foresight/developer/zodman) has joined #tryton
2010-08-04 05:53 -!- carlos_(~carlos@84.120.37.193.dyn.user.ono.com) has joined #tryton
2010-08-04 06:41 -!- mr_amit(~amit@117.254.25.214) has joined #tryton
2010-08-04 07:27 -!- Timitos(~timitos@88.217.184.172) has joined #tryton
2010-08-04 07:36 -!- mr_amit(~amit@117.254.24.111) has joined #tryton
2010-08-04 08:26 -!- MikaelPettersson(~chatzilla@host191-12.bornet.net) has joined #tryton
2010-08-04 09:07 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2010-08-04 10:04 -!- paepke(~paepke@p5B32B11E.dip.t-dialin.net) has joined #tryton
2010-08-04 10:34 -!- essich(~essich@p4FCF901A.dip0.t-ipconnect.de) has joined #tryton
2010-08-04 12:03 -!- FWiesing(~FWiesing@85-126-100-130.work.xdsl-line.inode.at) has joined #tryton
2010-08-04 13:21 -!- paepke(~paepke@p5B32B11E.dip.t-dialin.net) has joined #tryton
2010-08-04 13:26 -!- FWiesing(~FWiesing@85-126-100-130.work.xdsl-line.inode.at) has left #tryton
2010-08-04 14:28 -!- digitalsatori(~tony@116.233.249.147) has joined #tryton
2010-08-04 14:41 -!- enlightx(~enlightx@static-217-133-61-144.clienti.tiscali.it) has joined #tryton
2010-08-04 14:52 -!- pepeu(~manuel@201.155.193.192) has joined #tryton
2010-08-04 15:40 -!- zodman(~Miranda@67.223.236.231) has joined #tryton
2010-08-04 15:48 -!- woakas(~woakas@pcsp163-59.supercabletv.net.co) has joined #tryton
2010-08-04 15:53 -!- woakas(~woakas@pcsp163-59.supercabletv.net.co) has joined #tryton
2010-08-04 15:54 -!- pheller(~pheller@c1fw226.constantcontact.com) has joined #tryton
2010-08-04 16:19 -!- essich_(~essich@p4FCFA267.dip0.t-ipconnect.de) has joined #tryton
2010-08-04 16:23 -!- digitalsatori(~tony@116.233.249.147) has joined #tryton
2010-08-04 16:50 <pheller> Anyone here develop with eclipse and pydev ?
2010-08-04 16:50 <pheller> (besides me)
2010-08-04 16:52 -!- pheller(~pheller@c1fw231.constantcontact.com) has joined #tryton
2010-08-04 16:57 <plantian> pheller: In the past I think cedk has built the mac OS X client. Also I use emacs, I used to use pydev a long time ago and it was okay, I mainly just used syntax highlighting though.
2010-08-04 16:58 <pheller> Ahh. I'm having an issue with code completion with "from" imports.
2010-08-04 16:58 <pheller> (meeting, back in 15)
2010-08-04 16:59 <plantian> pheller: Yeah I've never used code completion, it seems like it would work intermitantly due to the complexity of figuring out what is importable in a dynamic language such as python and also the various ways the python path can be mangled.
2010-08-04 17:04 <cedk> pheller: code completion on dynamic typed language is complicated
2010-08-04 17:19 <woakas> pheller: emacs + rope is rocks for completion
2010-08-04 17:19 <pheller> cedk: yes, naturally -- however, it does generally seem to work. It only doesn't seem to work for "fields.Char" and similar.
2010-08-04 17:20 <pheller> woakas: unfortunately, I'm not an emacs guy
2010-08-04 17:21 <woakas> mmm :( pheller do you use emacs with pydev?
2010-08-04 17:21 <woakas> sorry eclipse?
2010-08-04 17:22 <pheller> yes, with vrapper pluggin for eclipse (for vi style editing)
2010-08-04 17:22 <pheller> code completion isn't an absolutely necessity for me, was just wondering if anyone else might have come across the same issue
2010-08-04 18:33 -!- cedk(~ced@gentoo/developer/cedk) has joined #tryton
2010-08-04 19:22 -!- pheller_(~pheller@c1fw226.constantcontact.com) has joined #tryton
2010-08-04 20:09 <pheller> cedk: Transaction question if you are around....
2010-08-04 20:17 <cedk> pheller: yes
2010-08-04 20:18 <pheller> cedk: I'm working on sale....specifically, create invoice function
2010-08-04 20:18 <pheller> it looks like the invoice, lines, and taxes are all calculated as user 0
2010-08-04 20:18 <pheller> so this is a situation where the context was copied....
2010-08-04 20:19 <pheller> is it correct to now do "with Transaction().set_user(0,set_context=True):" before each one of these ORM calls that uses user 0 ?
2010-08-04 20:20 <cedk> pheller: yes
2010-08-04 20:20 <pheller> ok, and one more question:
2010-08-04 20:20 <pheller> is it ok if I use the python 2.5 syntax like this: return True if ..... else False
2010-08-04 20:21 <pheller> or do you prefer older binary style ((a and b) or c)
2010-08-04 20:22 <cedk> pheller: since now we depend on >= 2.5 it is ok
2010-08-04 20:22 <pheller> ok, I think it is more readable anyways
2010-08-04 20:38 <pheller> hmmh, ok, another one that confuses me:
2010-08-04 20:39 <pheller> oh, nevermind
2010-08-04 20:49 -!- sharoon(~sharoon@opg066b.halls.manchester.ac.uk) has joined #tryton
2010-08-04 21:02 -!- enlightx(~enlightx@dynamic-adsl-94-34-213-10.clienti.tiscali.it) has joined #tryton
2010-08-04 21:02 -!- hoRn(~chatzilla@dslb-094-223-197-029.pools.arcor-ip.net) has joined #tryton
2010-08-04 21:03 -!- hoRn(~chatzilla@dslb-094-223-197-029.pools.arcor-ip.net) has left #tryton
2010-08-04 21:07 -!- tekknokrat(~lila@dslb-092-078-129-210.pools.arcor-ip.net) has joined #tryton
2010-08-04 21:10 -!- hoRn(~chatzilla@dslb-094-223-197-029.pools.arcor-ip.net) has joined #tryton
2010-08-04 21:38 -!- hoRn(~chatzilla@dslb-094-223-197-029.pools.arcor-ip.net) has left #tryton
2010-08-04 21:56 -!- gremly(~gremly@201.244.193.238) has joined #tryton
2010-08-04 22:08 <pheller> cedk: can't wait to see the giant list of comments you have for me on sale ;-)
2010-08-04 22:14 -!- pheller(~pheller@c1fw226.constantcontact.com) has joined #tryton
2010-08-04 22:30 -!- eLBati(~elbati@94.161.140.10) has joined #tryton
2010-08-04 22:51 -!- zodman(~zodman@187.143.0.226) has joined #tryton
2010-08-04 22:51 <zodman> hi
2010-08-04 22:51 <zodman> someone know if tryton1.6 works with python 2.4 ?
2010-08-04 22:54 <zodman> http://pastebin.com/0YyMJTB0
2010-08-04 22:57 <zodman> ??
2010-08-04 23:02 -!- gremly(~gremly@201.244.193.238) has joined #tryton
2010-08-04 23:03 <cedk> zodman: it should
2010-08-04 23:09 <zodman> ACTION running with --debug params
2010-08-04 23:12 <cedk> zodman: I don't think it is linked to python version
2010-08-04 23:12 <zodman> http://img837.imageshack.us/img837/4233/pantallazou.png
2010-08-04 23:12 <zodman> cedk: i can check it
2010-08-04 23:13 <zodman> its dificult to get the lines from qemu
2010-08-04 23:13 <cedk> zodman: it seems that a PYSON is used as m2o value
2010-08-04 23:18 <zodman> a bad passing of pyson ?
2010-08-04 23:23 <cedk> zodman: are you sure you use the right version of trytond?
2010-08-04 23:23 <zodman> trytond 1.6.0
2010-08-04 23:24 <zodman> i will try to reproduce the error outsite the virtual machine with virtualenv
2010-08-04 23:25 <cedk> zodman: could you try with 1.6.1
2010-08-04 23:26 <zodman> yeap cedk
2010-08-04 23:33 <zodman> the same cedk ...
2010-08-04 23:34 <zodman> can be my xml module ?
2010-08-04 23:34 <zodman> i check it later i go back to work
2010-08-04 23:48 -!- juanfer(~juanfer@190.26.119.88) has joined #tryton
2010-08-04 23:58 -!- pheller(~pheller@pool-173-48-216-195.bstnma.fios.verizon.net) has joined #tryton

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