Re: [tryton-dev] Tryton Mac Client

2011-11-08 Thread Phillip Heller
On Nov 8, 2011, at 1:57 PM, Cédric Krier wrote: > On 08/11/11 14:18 +0100, lists.jc.mic...@symetrie.com wrote: >> Hi, >> >> Le 8 nov. 2011 à 03:13, Phillip Heller a écrit : >>>> Strange issue here, on 10.6.8: pressing "t" while entering text in a

Re: [tryton-dev] Tryton Mac Client

2011-11-07 Thread Phillip Heller
On Nov 7, 2011, at 9:08 PM, Steffen Beyer wrote: > Strange issue here, on 10.6.8: pressing "t" while entering text in a form > does not produce the letter, but highlights the "Benutzer" ("User"?) menu > on top of the screen for some seconds without unfolding it. "T" does work > as expected. >

[tryton-dev] Tryton Mac Client

2011-11-01 Thread Phillip Heller
Greetings, I've submitted a code review for the patch to fix the gdk pixbuf loader location with newer versions of gtk. I've built Mac application bundles of the 2.0.0 and 2.2.0 client on 10.7.2 against the 10.5 SDK. Unfortunately, the weeks I spent working with the latest build of gtk+-2

Re: [tryton-dev] Tryton Client 2.0 Mac Os version

2011-09-15 Thread Phillip Heller
On Sep 15, 2011, at 3:29 AM, Cédric Krier wrote: > Oscar and Phillip please read on top-posting: > https://groups.google.com/d/msg/tryton/-IA9TLq5qag/pv5okIVkr38J My apologies. My reply was composed on my phone. In this case, it would not have been difficult to bottom-post. However it usuall

Re: [tryton-dev] Tryton Client 2.0 Mac Os version

2011-09-14 Thread Phillip Heller
GTK made a change to the location of the pixbuf loaders in the latest stable, and changes to improve keyboard accelerators should be integrated to stable very soon. Also, some changes are necessary to the build environment for 10.7. Once gtk is ready, I will update the build environment instruc

Re: [tryton-dev] About module country_ar

2011-09-09 Thread Phillip Heller
On Sep 9, 2011, at 3:10 PM, Cédric Krier wrote: > Hi, > > I checked the module country_ar [1] and if I understand correctly you try to > get > some kind of autocompletion for the Argentina cities. > > First, I don't think it is good to extend the Subdivision to support cities, > especially beca

[tryton-dev] Fix setup.py per issue1976 to identify proper source path of gdk-pixbuf-loaders

2011-04-19 Thread Phillip Heller
Please review http://codereview.tryton.org/23001/ The patch does need some cleanup regarding line length, which I'll get to tomorrow. --phil smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Python shebang

2011-01-13 Thread Phillip Heller
I believe that distutils will rewrite the shebang to absolute path of the interpreter used to invoke setup.py, unless it is overridden in some manner (i.e., "python ./setup.py build --executable=path/to/python ) I personally feel this is the proper way to set the interpreter. And, for the reco

Re: [tryton-dev] Handle URLs on Mac OS X

2011-01-10 Thread Phillip Heller
On Dec 30, 2010, at 8:58 AM, Cédric Krier wrote: > It will require some more code to add support for MacOSX bundle and also some > registry record for the windows setup. Greetings, I've done some work on the gtk-osx project to support custom URLs dispatched from the Mac. You can find my

Re: [tryton-dev] Add autoincrement to sqlite primary key for issue1748 (issue2959041)

2010-11-07 Thread Phillip Heller
Inline... On Nov 7, 2010, at 9:51 AM, Mathias Behrle wrote: > Err. Release is the official announcement, not the upload of some packages. > >>> Since 1.8 is not yet officialy released I agree to include it. >> >> That is ... eh, nonsense. If tagging, branching, > > Tagging and branching nev

Re: [tryton-dev] adding product/category taxes to invoice lines - or how to call the on_change infrastructure

2010-10-18 Thread Phillip Heller
On Oct 17, 2010, at 11:18 AM, Paul J Stevens wrote: > Hi all, > > I'm working on building a simple module ('contract') for periodically > creating invoices (like the subscription module discussed earlier). Paul, This is a very cool development. Do you plan to publish once you're finished?

Re: [tryton-dev] Application naming within various operating environments

2010-10-14 Thread Phillip Heller
On Oct 13, 2010, at 12:09 PM, Mathias Behrle wrote: > Supporting this. > If there is the possibility to display some sort of application description it > should show "Tryton Client" (like 'Generic Name' in > http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s05.html) I will do thi

[tryton-dev] Missed a context during the Transaction migration (Purchase)

2010-10-13 Thread Phillip Heller
Oops, Missed a context during the Transaction migration. Please review this at http://codereview.appspot.com/2497042/ Affected files: M purchase.py Index: purchase.py === --- a/purchase.py +++ b/purchase.py @@ -1363,7 +1363,7 @@

[tryton-dev] Application naming within various operating environments

2010-10-13 Thread Phillip Heller
47)" (Wed, 13 Oct 2010 09:51:01 +0200): > >> On 12/10/10 20:13 -0400, Phillip Heller wrote: >>> I was reviewing this some more, and I'm curious why this is? >>> >>> The all the images on the website use a capital "T" Tryton, as does the >

Re: [tryton-dev] Use pysandbox for safe_eval (issue2352042)

2010-10-06 Thread Phillip Heller
On Oct 6, 2010, at 2:16 PM, Cédric Krier wrote: > On 02/10/10 00:09 +0200, Cédric Krier wrote: >> Please review this at http://codereview.appspot.com/2352042/ > > > I find it strange that nobody commented on this patch. > It adds a new dependency that doesn't seem yet to be packages in most > d

Re: [tryton-dev] Codereview: Factor out thread setup/teardown, join threads by name, MacOS fixes [was join() threads by name ...]

2010-10-04 Thread Phillip Heller
SocketServer code into a new trytond.protocols.common package. http://codereview.appspot.com/2348042/ Regards, Phil On Oct 2, 2010, at 6:31 PM, Phillip Heller wrote: > I usually develop and debug with Eclipse, which uses pydevd to connect to the > debugged process. > > Unfortunately,

[tryton-dev] Codereview: join() threads by name rather than threading.enumerate()

2010-10-02 Thread Phillip Heller
I usually develop and debug with Eclipse, which uses pydevd to connect to the debugged process. Unfortunately, the call to threading.enumerate() includes the pydevd thread, and upon calling it's join() method, sends the trytond process into a zombie state. Please review the linked code review,

Re: [tryton-dev] MacOS GTK Client Development Environment How-To

2010-10-02 Thread Phillip Heller
Done. Please see: http://code.google.com/p/tryton/wiki/BuildingMacOSXInstall http://code.google.com/p/tryton/wiki/InstallationMacOSX Naturally, comments appreciated. --phil On Oct 2, 2010, at 4:36 PM, Phillip Heller wrote: > I'd be happy to do so, though I don't seem to have

Re: [tryton-dev] MacOS GTK Client Development Environment How-To

2010-10-02 Thread Phillip Heller
I'd be happy to do so, though I don't seem to have access. (Or, perhaps I don't understand how to edit a google wiki!) --phil On Oct 2, 2010, at 4:27 PM, Cédric Krier wrote: > You should put this on the wiki. smime.p7s Description: S/MIME cryptographic signature

[tryton-dev] MacOS GTK Client Development Environment How-To

2010-10-02 Thread Phillip Heller
Greetings, After a brief discussion with Sharoon a couple weeks ago, I wanted to publish some instructions for creating a development environment for MacOS, so that those who need the bleeding edge client need not rely on a daily build (and the 30 some megabyte download that would accompany i

Re: [tryton-dev] Better search GUI

2010-09-30 Thread Phillip Heller
While there is discussion on the subject, I thought I might lodge my vote for a "query-by-example" interface. Specifically, I think it would be useful to show a model's form representation, which a user could populate with values. Perhaps this search "form" could have right-click context menu

Re: [tryton-dev] About codereview

2010-09-09 Thread Phillip Heller
Greetings, I'm one of the guilty parties for having some stale codereviews and roundup issues. Here is a summary of them; I will update each roundup issue with current status as of today, and I will have time work them this weekend. -- server hangs indefinitely upon receipt of SIGINT, narrowed

[tryton-dev] Fix for netrpc hang on Mac OS X, issue1625

2010-08-27 Thread Phillip Heller
Greetings, Please review the patch here: http://codereview.appspot.com/2049042 This patch adds a timeout to the socket.accept() within the netrpc running loop. Regards, Phil smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Fix for Mac OS Application Termination, and full integration of Mac OS X Menubar

2010-08-26 Thread Phillip Heller
Sorry guys, my mistake. I must have had an errant gtkrc floating around somewhere. --phil On Aug 26, 2010, at 5:59 AM, Sharoon Thomas wrote: > Hi, > > I an confirm that (like cedk) i also see the same template. > > Thanks, > > Sharoon > > On 26 Aug 2010, at 07:05, Cédric Krier wrote: >> >

Re: [tryton-dev] Fix for Mac OS Application Termination, and full integration of Mac OS X Menubar

2010-08-25 Thread Phillip Heller
Inline ... On Aug 25, 2010, at 5:36 PM, Cédric Krier wrote: > On 25/08/10 23:27 +0200, Tobias Paepke wrote: >> On 25.08.2010 23:05, Cédric Krier wrote: >>> On 25/08/10 16:49 -0400, Phillip Heller wrote: >>>> I might have found a gtk theme that is more Mac like th

Re: [tryton-dev] Fix for Mac OS Application Termination, and full integration of Mac OS X Menubar

2010-08-25 Thread Phillip Heller
I might have found a gtk theme that is more Mac like than the default. Try that Binary I provided with the attached gtkrc ( save as ~/.gtkrc-2.0 ), and let me know what you think. --phil gtkrc Description: Binary data On Aug 25, 2010, at 3:10 PM, Phillip Heller wrote: > Glad it's

Re: [tryton-dev] Custom URLs

2010-08-25 Thread Phillip Heller
Comments inline... On Aug 25, 2010, at 3:28 PM, Cédric Krier wrote: > On 25/08/10 15:10 -0400, Phillip Heller wrote: >> Greetings, >> >> After some discussion today with Tobias in IRC, I decided to share some >> thoughts on implementation of Custom URL handlers fo

Re: [tryton-dev] Fix for Mac OS Application Termination, and full integration of Mac OS X Menubar

2010-08-25 Thread Phillip Heller
Glad it's working well for you folks. I've scoured the internet for better looking Leopard styled gtk themes, but alas I have not found anything that is better than the default theme. I'm not talented with graphics, so I'll probably just leave it alone, unless someone else has a gtk theme they

[tryton-dev] Custom URLs

2010-08-25 Thread Phillip Heller
Greetings, After some discussion today with Tobias in IRC, I decided to share some thoughts on implementation of Custom URL handlers for Tryton. An initial pass at the structure: tryton:/[/[username[:passwo...@]server[:port][/protocol]][/database]/[/id] Examples: tryton://sale.order tryton

[tryton-dev] Fix for Mac OS Application Termination, and full integration of Mac OS X Menubar

2010-08-24 Thread Phillip Heller
Greetings, Please review the patch found at the link below, which eliminates the need to force-quit the tryton client upon "Quit", as well as fully integrates the Menu Bar with the Mac Menubar. http://codereview.appspot.com/1975047 Also, please find a binary build of the client at the follow

Re: [tryton-dev] Product Attributes EAV model

2010-08-21 Thread Phillip Heller
Comments inline... On Aug 21, 2010, at 10:23 AM, Sharoon Thomas wrote: > This would mea that we have a new model class called ModelEAV which inherits > from ModelStorage and handles attributes. Excellent! This is far more extensible to other models for things not yet considered. > ir.attr

Re: [tryton-dev] Product Attributes EAV model

2010-08-19 Thread Phillip Heller
Ok, so the Attributes you list below are perfect examples, and I do agree that Serial Numbers and other *instance* related values are a function of inventory. I suppose this concept is something to propose in a stock_instance module or something of the sort. Thanks. --phil On Aug 19, 2010, at

Re: [tryton-dev] Product Attributes EAV model

2010-08-19 Thread Phillip Heller
Sharoon et al, One thing I had talked with Cédric about recently was a similar EAV concept, for the purposes of tracking individual instances of a product. So, perhaps there would be a ProductInstance model, which "realizes" all of the attributes associated with a product. A good example wou

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-10 Thread Phillip Heller
Submitted: -rw-r--r-- 1 pheller staff 16672 Aug 10 12:03 module-company.Transaction.patch -rw-r--r-- 1 pheller staff 2190 Aug 10 12:03 module-company_work_time.Transaction.patch -rw-r--r-- 1 pheller staff 25423 Aug 10 12:03 module-currency.Transaction.patch -rw-r--r-- 1 pheller staf

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-08 Thread Phillip Heller
stock_location_sequence: http://codereview.appspot.com/1917049 Brace yourselves, this one is exciting; only the INSTALL needed to be updated for the new python2.5 requirement. --phil smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-08 Thread Phillip Heller
stock_supply_day: http://codereview.appspot.com/1885046 smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-08 Thread Phillip Heller
stock_supply: http://codereview.appspot.com/1932041 smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-08 Thread Phillip Heller
stock_product_location: http://codereview.appspot.com/1875054 smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-08 Thread Phillip Heller
stock_inventory_location: http://codereview.appspot.com/1931041 smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-08 Thread Phillip Heller
stock_forecast: http://codereview.appspot.com/1918046 smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-05 Thread Phillip Heller
Done. http://codereview.appspot.com/1918044 On Aug 5, 2010, at 6:37 PM, Phillip Heller wrote: > Starting sale_price_list > > --phil smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-05 Thread Phillip Heller
Starting sale_price_list --phil smime.p7s Description: S/MIME cryptographic signature

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-04 Thread Phillip Heller
First pass at a patch here: http://codereview.appspot.com/1892048/show --phil On Aug 4, 2010, at 12:09 PM, Phillip Heller wrote: > Starting on "Sale". > > > On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > >> Hi, >> >> I'm asking your help

Re: [tryton-dev] Help wanted for Transaction migration

2010-08-04 Thread Phillip Heller
Starting on "Sale". On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > Hi, > > I'm asking your help to speed up the migration to the new transaction design. > Here is my proposition to not have duplicate work. > People who wants to help can post (with reply to this email) on which module > he w

Re: [tryton-dev] Help wanted for Transaction migration

2010-07-30 Thread Phillip Heller
"Party" converted, including unit tests (all of which pass): http://codereview.appspot.com/1850047 On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > Hi, > > I'm asking your help to speed up the migration to the new transaction design. > Here is my proposition to not have duplicate work. > Peop

Re: [tryton-dev] Help wanted for Transaction migration

2010-07-30 Thread Phillip Heller
Started and finished "currency", including unit tests (all of which pass): http://codereview.appspot.com/1909044 On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > Hi, > > I'm asking your help to speed up the migration to the new transaction design. > Here is my proposition to not have duplicat

Re: [tryton-dev] Help wanted for Transaction migration

2010-07-29 Thread Phillip Heller
Starting on "Party". On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > Hi, > > I'm asking your help to speed up the migration to the new transaction design. > Here is my proposition to not have duplicate work. > People who wants to help can post (with reply to this email) on which module > he w

Re: [tryton-dev] Help wanted for Transaction migration

2010-07-29 Thread Phillip Heller
company: http://codereview.appspot.com/1853047 company_work_time: http://codereview.appspot.com/1885043 On Jul 29, 2010, at 2:39 PM, Phillip Heller wrote: > I'm starting on: > > company > company_work_time > > On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > >

Re: [tryton-dev] Help wanted for Transaction migration

2010-07-29 Thread Phillip Heller
I'm starting on: company company_work_time On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > Hi, > > I'm asking your help to speed up the migration to the new transaction design. > Here is my proposition to not have duplicate work. > People who wants to help can post (with reply to this email)

Re: [tryton-dev] Help wanted for Transaction migration

2010-07-29 Thread Phillip Heller
http://codereview.appspot.com/1869048 On Jul 29, 2010, at 1:27 PM, Phillip Heller wrote: > I'm starting on "timesheet". > > On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > >> Hi, >> >> I'm asking your help to speed up the migration to the

Re: [tryton-dev] Help wanted for Transaction migration

2010-07-29 Thread Phillip Heller
I'm starting on "timesheet". On Jul 28, 2010, at 5:04 PM, Cédric Krier wrote: > Hi, > > I'm asking your help to speed up the migration to the new transaction design. > Here is my proposition to not have duplicate work. > People who wants to help can post (with reply to this email) on which modul