Re: [tryton-dev] Better search GUI

2010-12-09 Thread Ian Wilson
Well I wrote a small implementation with pyparsing because I had used booleano before for something similar. It requires stricter quoting and commas though to be sensible. I will send it later after I clean it up a bit and maybe it will be helpful. I only parsed the structure though and did not

Re: [tryton-dev] Better search GUI

2010-12-09 Thread Bertrand Chenal
Le Thu, 9 Dec 2010 01:39:33 -0800, Ian Wilson a écrit : > Is work still being done on this ? I have some ideas and I prototyped > some code. > > Would it be acceptable to change this case from: > > search: lang: fr_FR en_US > domain: [('lang', 'in', ('fr_FR', 'en_US')] > > search: lang: fr_FR,

Re: [tryton-dev] Better search GUI

2010-12-09 Thread Ian Wilson
Is work still being done on this ? I have some ideas and I prototyped some code. Would it be acceptable to change this case from: search: lang: fr_FR en_US domain: [('lang', 'in', ('fr_FR', 'en_US')] search: lang: fr_FR, en_US domain: [('lang', 'in', ('fr_FR', 'en_US')] I have added a comma bet