[web2py] Re: Testing

2016-03-19 Thread Pierre Thibault
OK, sorry for the noise. Le lundi 14 mars 2016 13:01:48 UTC-4, Leonel Câmara a écrit : > > Yeah this group is moderated so you have to wait until your messages are > aproved the first few times until you're whitelisted. > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation

[web2py] Re: Testing

2016-03-14 Thread Pierre Thibault
OK, it seems the problem is gone but Saturday I sent a few messages and they would not appear. I hope the problem is not generalized. Keep on an eye on this. Le lundi 14 mars 2016 12:49:58 UTC-4, Pierre Thibault a écrit : > > I do not see my messages in this group. > -- Resource

[web2py] Testing

2016-03-14 Thread Pierre Thibault
I do not see my messages in this group. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google

[web2py] Re: import error

2016-03-12 Thread Pierre Thibault
Is this bug fixed? Is Pygments working with web2py? Here the problem is that python modules loaded from the module folder of the app are using the key applications.xxx.module_name in sys.modules. So a lookup for module_name in sys.modules will probably result as a KeyError. Should we change the

[web2py] Did move my web2py projects to GitHub

2015-05-04 Thread Pierre Thibault
Hello, I had a few projects for Web2py and I did move them to GitHub because GoogleCode is going down soon. Here a few links: Pierre-Thibault/neo-web2py-utils <https://github.com/Pierre-Thibault/neo-web2py-utils> A utility project for web2py applications Not a lot of stuff in th

[web2py] Re: Some powerTable questions

2011-08-29 Thread Pierre Thibault
On 29 août, 20:26, Bruno Rocha wrote: > what is your data source? I have XML data. > datatables can handle json and xml (but it is not implemented in the plugin, > but can be done with JS), if you want a JSON based grid I recommend > PowerGrid, another plugin I created. PowerGrid is based in JSO

[web2py] Re: Some powerTable questions

2011-08-29 Thread Pierre Thibault
res that powertable has and other dont. is nested tables, by > column filtering, edit in place, tooltips, ajax. > > Putting this 5 features in smartgrid and this will be the best option. > > http://zerp.ly/rochacbruno > Em 29/08/2011 15:52, "Pierre Thibault" > escreveu: >

[web2py] Some powerTable questions

2011-08-29 Thread Pierre Thibault
Hello, I have a few question on the power table: - Can I make the columns re-sizable? - Can I display a column hierarchically? I want to display a little triangle or little + at the left of each item in a column so the user can unfold the item like if it was a folder containing other folders and

[web2py] Re: Cannot operate on a closed database

2011-07-04 Thread Pierre Thibault
2011/7/4 Massimo Di Pierro > I do not see an option to assign a ticket. You should be able to write, > comment and close it anyway. > > Massimo > > > I can only comment. I cannot change the status or the priority. I don't why. I have these options for my own Google projects but I don't know how i

[web2py] Re: Cannot operate on a closed database

2011-07-04 Thread Pierre Thibault
2011/7/4 Massimo Di Pierro > yes. Not sure what the error should be > > I created a ticket. Can you assign it to me? I think this is low priority. I take a look later. http://code.google.com/p/web2py/issues/detail?id=325 A+ - Pierre My blog and profile (http://pierrethibault.poster

Re: [web2py] Re: Cannot operate on a closed database

2011-07-04 Thread Pierre Thibault
2011/6/26 Massimo Di Pierro > I found the problem > > http://groups.google.com/group/web2py/msg/aaa803e14404fc62 > > This is not a problem with web2py. > > @ Pierre, I did found a non-related problem with web2py. > > models/meteo.py uses custom_import to import modules/meteo.py. The latter > impo

Re: [web2py] Re: web2py with Eclipse

2011-06-26 Thread Pierre Thibault
2011/6/26 Sebastian E. Ovide > add info: > > from applications.soso.models import my_db_helper_here > > eclipse give this error: > > Unresolved import: my_db_helper_here > Unused import: my_db_helper_here > > Is the web2py folder in your path? I guess you are missing a level. Try something like:

Re: [web2py] Re: web2py with Eclipse

2011-06-26 Thread Pierre Thibault
2011/6/26 sebastian > what about the functions defined in the models ? (global functions) > Pydev won't see them because they are imported implicitly by web2py. You can use the if 0: trick so the static code analyzer will not complain: if 0: from applications.myapp.models import myfunc In t

Re: [web2py] Re: Running web2py on Jython

2011-06-24 Thread Pierre Thibault
2011/6/23 Richard > Hi Pierre, > Hi Richard, > > thanks for replying. I remember that I already stumbled upon the blog > page you mention before I posted my question on this list. I admit > that I didn't read it in depth back then. But I took as a good sign > that you wrote in your final line:

Re: [web2py] Running web2py on Jython

2011-06-23 Thread Pierre Thibault
2011/6/23 Richard > Hi, > > has anyone running a reasonably current version of web2py running on > Jython 2.5.x? I need help with this. > > Hello Richard, Yes, I did a try but I didn't wanted to go very far with that. I was just curious about giving it a try. I had a problem with the database s

Re: [web2py] Re: web2py with Eclipse -- still lots of undefined stuff

2011-06-20 Thread Pierre Thibault
2011/6/20 weheh > @Anthony, Unfortunately, this code from the other thread does not work > for my Eclipse installation: > > if 0: >from gluon.dal import DAL >from gluon.tools import Auth >db = DAL() >auth = Auth() > > > The only thing that has worked so far is Pierre's implementat

Re: [web2py] Re: import error

2011-06-20 Thread Pierre Thibault
2011/6/20 selecta > > > try to replace: > > > > oldmod = sys.modules['pygments.lexers'] > > > > with: > > > > import pygments.lexers as oldmod > > hagrr why must pygements be so ... > > i tried that but i got > File "applications/pygments_test/modules/pygments/lexers/__init__.py", > line 223, in

Re: [web2py] Re: import error

2011-06-20 Thread Pierre Thibault
2011/6/20 selecta > > I guess I can improve the design by replacing sys.modules by a class that > > will do the lockup in applications.appname if it fails like in this > example. > > How can I access appname from the code? I guess this is the new thread > > variable thing implemented recently. >

[web2py] Re : Re: web2py with Eclipse

2011-06-20 Thread Pierre Thibault
On May 10, 8:46 am, Massimo Di Pierro wrote: > This is going to be easier in the future. Using trunk, just add this > to models: > > from gluon import * > request,session,response,T, cache=current.request,current,session,curremt.response,current.t,current.cache Can we the same trick for the

Re: [web2py] import from my modules with reload

2011-06-20 Thread Pierre Thibault
2011/6/20 Manuele Pesenti > is it possible? > using features nearly introduced and importing modules with > import mymodules > > is it possible to have a reload of the modules just modified? > > thanks a lot > >Manuele > Yes. You can use the Python reload function. Or you can use the d

Re: [web2py] Re: import error

2011-06-20 Thread Pierre Thibault
2011/6/20 selecta > the open id error is gone now > (globals = None -> AttributeError: 'NoneType' object has no attribute > 'get') > but the pygments error still exists > oldmod = sys.modules['pygments.lexers'] > KeyError: 'pygments.lexers' > any clue about this one? > -- > Hello, The importe

Re: [web2py] Re: web2py with Eclipse -- still lots of undefined stuff

2011-06-19 Thread Pierre Thibault
2011/6/20 weheh > Hi Pierre, I've read your excellent pages and followed your > instructions before, to good effect. Of course, the downside is that > one ends up with a lot of junk code in the beginning of one's files. I > was under the impression that the latest version of web2py bypassed > all

Re: [web2py] web2py with Eclipse -- still lots of undefined stuff

2011-06-19 Thread Pierre Thibault
2011/6/19 weheh > I'm using web2py 1.96.4 with Eclipse. I put >from gluon import * > in a model I was debugging. Eclipse still shows all the web2py stuff > like db, DIV, session, T, etc. as being undefined variables. What am I > doing wrong? All these things are magically imported by web2py

Re: [web2py] Recognizing and suggesting names

2011-06-18 Thread Pierre Thibault
2011/6/18 Dwayne > Dear all, > > When I type an email address on hotmail or gmail, the email address is > recognized if it exists and also hotmail and gmail make some > suggestions. > The same system exists for tags on Stackoverflow. Suggestions are made > and existing tags are recognized. > > Do

Re: [web2py] Re: import error

2011-06-17 Thread Pierre Thibault
2011/6/17 selecta > I also have problems importing pygments from the modules directory > http://jaguar.biologie.hu-berlin.de/~fkrause/web2py.app.pygments_test.w2p > > i downloaded pygments from http://pypi.python.org/pypi/Pygments > > Do you still have problems with you are using the last version

Re: [web2py] bug in custom_import.py

2011-06-17 Thread Pierre Thibault
2011/6/17 Jonathan Lundell > On Jun 17, 2011, at 2:28 PM, Pierre Thibault wrote: > > 2011/6/17 Jose > >> at line 254 (trunk version) >> >>if not name.startswith(".") and level <= 0 and globals != None >> and >>

Re: [web2py] bug in custom_import.py

2011-06-17 Thread Pierre Thibault
2011/6/17 Jose > at line 254 (trunk version) > >if not name.startswith(".") and level <= 0 and globals != None > and >and not name.startswith("applications."): > > Jose ?? What do you mean? More information is needed. -- A+ - Pierre My blog and profile (

Re: [web2py] Re: import error

2011-06-17 Thread Pierre Thibault
2011/6/17 Massimo Di Pierro > uploading your fix to trunk. > > On Jun 17, 8:50 am, amit wrote: > > I am getting the same import error as the OP. The problem occurs when > > an external module calls __import__ but has passed globals=None. The > > following patch in gluon/custom_import.py fixes it

Re: [web2py] Re: import error

2011-06-16 Thread Pierre Thibault
2011/6/15 Massimo Di Pierro > looking into this... > Still no news. Should we forget this issue? I really would like to debug but I don't have enough information. It seems the bug is very rare. > > On Jun 15, 8:12 am, "mb_...@yahoo.fr" wrote: > > I wanted to use the w2popenid example applicat

Re: [web2py] How do you document your apps?

2011-06-15 Thread Pierre Thibault
I like epydoc. It is supported by pydev. It is simple. Sphinx is more both more powerful and more complex. I am sending my epydoc Eclipse external tool as an attachment. I think you just have to put the file somewhere in an open project to make it available as a external tool. To use it, click on

Re: [web2py] import error

2011-06-15 Thread Pierre Thibault
2011/6/15 mb_...@yahoo.fr > I wanted to use the w2popenid example application from bitbucket > website : https://bitbucket.org/bottiger/web2py-openid/overview > I have downloaded and placed the code in the applications directory. > I have changed in the models folder the file db.py: this line "f

Re: [web2py] Script TDD in web2py

2011-06-11 Thread Pierre Thibault
2011/6/12 anil manikyam > > > >> *i want to update last row in a table in web2py how?* > > > -- > @n!l m@n!ky@m > Hi Anil, I think this is a bit out of subject. Please, open a new conversion with a new subject. -- A+ - Pierre My blog and profile (http://pierrethibault.posterous

Re: [web2py] Script TDD in web2py

2011-06-11 Thread Pierre Thibault
2011/6/11 contatogilson...@gmail.com > So when you create the script makes available for us to test and to use =) > > Well, it is better than I thought. I don't even need such a script! Sorry to say that. :-) I can start web2py from Eclipse with code coverage. After that I can start, also from E

Re: [web2py] Script TDD in web2py

2011-06-11 Thread Pierre Thibault
2011/6/11 contatogilson...@gmail.com > Yes, I understand. But the issue is the use of the gluon. Perform tests is > fine, the problem is to run the same tests using the libraries and gluon. > Therefore > it has to import them. Hence the creation of this script. > > The code to start web2py is in

Re: [web2py] Script TDD in web2py

2011-06-11 Thread Pierre Thibault
2011/6/11 contatogilson...@gmail.com > Show an example of how you use py.test to perform unit tests on the model > layer and controller. > > _ > *Gilson Filho* > *Web Developer > http://gilsondev.com* > > I have nothing concrete yet. I am just thinking

Re: [web2py] Script TDD in web2py

2011-06-11 Thread Pierre Thibault
2011/6/10 contatogilson...@gmail.com > Hello guys, > > I started to create a script to test the scripts that use the library > unittest projects web2py. I usually like this: > > - I create the folder *tests* in the project; > - Inside the tests folder create two folders: *models* and *controllers

Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-11 Thread Pierre Thibault
2011/6/11 Alessandro Iob > Hi Pierre, > > I'll send a test application to Anthony this weekend. > > I've experienced the same problem under OS X (with a case-insensitive file > system) when I've changed the case from "Castalia" to "castalia": > web2py tried to include the controllers from old "Ca

Re: Re: Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-10 Thread Pierre Thibault
2011/6/9 Pierre Thibault > 2011/6/9 > >> On , Anthony wrote: >> > Do you have an app to reproduce the problem? I created an app named >> "Castalia" (note the capitalization) with a module >> /modules/selfgroup/castalia/config.py, which I t

Re: [web2py] Re: New Features in Book

2011-06-10 Thread Pierre Thibault
I can talk about the features that I implemented. Just ask. We could be documentation driven: The developer writes the feature he is going to implement, we write the tests (tests driven) and then he writes the implementation. This process will creates the documentation we need for the book. --

Re: Re: Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-09 Thread Pierre Thibault
2011/6/9 > On , Anthony wrote: > > Do you have an app to reproduce the problem? I created an app named > "Castalia" (note the capitalization) with a module > /modules/selfgroup/castalia/config.py, which I think is the same structure > and naming as Alessandro's app. In a controller action, I the

Re: [web2py] Re: Project: pydev extension for web2py in Eclipse

2011-06-09 Thread Pierre Thibault
You can use this project: http://code.google.com/p/neo-insert-imports/ to add automatically the necessary imports for the static analyzer. -- A+ - Pierre My blog and profile (http://pierrethibault.posterous.com) YouTube page (http://www.youtube

Re: [web2py] Re: PyCharm is going to support web2py

2011-06-09 Thread Pierre Thibault
2011/6/9 Ross Peoples > Not to start a holy war or anything, but I hear people talking all the time > about how emacs or vim is the best code editor ever. Why is that? Does it do > code completion or have some other really helpful feature that I just > missed? I've used vim to edit text files, bu

Re: Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-09 Thread Pierre Thibault
2011/6/9 > On , Pierre Thibault wrote: > > 2011/6/9 cjrh caleb.hatti...@gmail.com> > > > > On Thursday, 9 June 2011 03:03:51 UTC+2, Massimo Di Pierro wrote:Users > who have an opinion please share it now. This is important. > > > > Could you direct us

Re: [web2py] Re: PyCharm is going to support web2py

2011-06-09 Thread Pierre Thibault
2011/6/9 Ross Peoples > Not to start a holy war or anything, but I hear people talking all the time > about how emacs or vim is the best code editor ever. Why is that? Does it do > code completion or have some other really helpful feature that I just > missed? I've used vim to edit text files, bu

Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-09 Thread Pierre Thibault
2011/6/9 cjrh > On Thursday, 9 June 2011 03:03:51 UTC+2, Massimo Di Pierro wrote: >> >> Users who have an opinion please share it now. This is important. >> > > Could you direct us to more details about the issue?My current > understanding is shallow, but I agree with Pierre that platform-spe

Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-08 Thread Pierre Thibault
2011/6/8 Jonathan Lundell > On Jun 8, 2011, at 6:03 PM, Massimo Di Pierro wrote: > > > > Let me tink about this. > > This has relevant content: > > http://www.python.org/dev/peps/pep-0235/ > > > > Users who have an opinion please share it now. This is important. > > What's going on, exactly? My i

Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-08 Thread Pierre Thibault
2011/6/8 Massimo Di Pierro > Let me tink about this. > This has relevant content: > http://www.python.org/dev/peps/pep-0235/ > > Users who have an opinion please share it now. This is important. > Thank you for the pointer. It seems there is a bug in the web2py code where we are losing the capit

Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-08 Thread Pierre Thibault
2011/6/7 Massimo Di Pierro > I am not much of a windows user. I would like to understand what can > go wrong with the solution in trunk? > -- > Is the solution in the trunk the one proposed by Alessandro: os.environ['PYTHONCASEOK'] = '1' ? Well, this solution is using a global change to fix f

Re: [web2py] Re: web2py 1.96.4 is OUT

2011-06-07 Thread Pierre Thibault
2011/6/7 Massimo Di Pierro > What do you propose? I do not like it very much either. > > On Jun 7, 3:33 pm, Pierre Thibault wrote: > > 2011/6/7 Massimo Di Pierro > > > > > - auto import should work on windows (now on windows ignore will > > > ignore cas

Re: [web2py] web2py 1.96.4 is OUT

2011-06-07 Thread Pierre Thibault
2011/6/7 Massimo Di Pierro > - auto import should work on windows (now on windows ignore will > ignore case by default) > I don't like this solution. -- A+ - Pierre My blog and profile (http://pierrethibault.posterous.com) YouTube page (http

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-07 Thread Pierre Thibault
2011/6/7 Alessandro Iob > I have fixed the problem adding the following code in one of my models: > > import os > os.environ['PYTHONCASEOK'] = '1' > > It makes ignore path case on operating systems with case-insensitive > file-systems (namely Win32 and OS/X with the default fs). > > Do you think

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-06 Thread Pierre Thibault
2011/6/6 Alessandro Iob > No, it does not work. And the problem is not related to the > *_DateTrackerImporter > as I'm not using the track_changes options.* > > **I've made some tests and I've found that in _Web2pyImporter.__call__ the > code reaches the "import like 'from x import a, b, ...'" s

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-06 Thread Pierre Thibault
2011/6/6 Alessandro Iob > Found something: the application folder is named 'Castalia' with the first > char in uppercase, while the importer tries to import it as > 'applications.castalia', in lowercase. > > I've tried from the python shell to import using applications.Castalia. > and it

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-06 Thread Pierre Thibault
2011/6/6 Alessandro Iob > the name arg passed to _PYTHON_STANDARD_IMPORTER has value > "applications.castalia.modules.selfgroup.castalia". > > OK. If you open a Python console, what does give you: import sys sys.path.append("C:\w2p\web2py") import applications.castalia.modules.selfgroup.castal

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-06 Thread Pierre Thibault
2011/6/6 Alessandro Iob > I'll try, but the super is really just the standard __import__ method. > > > What is the value of name there? -- A+ - Pierre My blog and profile (http://pierrethibault.posterous.com) YouTube page (http://www.youtube.c

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-06 Thread Pierre Thibault
2011/6/6 Massimo Di Pierro > I do not understand this line: > > module_prefix + '.' + name = > applications.castalia.modules.selfgroup.castalia > > does not look like a valid Python statement to me. > -- > I interpreted this as the value of the expression module_prefix + '.' + nameis "applicatio

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-06 Thread Pierre Thibault
2011/6/6 Alessandro Iob > I really do not know why, but that's the error. A mistery for me. > > > Can you trace the super call? > On 6/6/11 15:42 , Pierre Thibault wrote: > >> 2011/6/6 Alessandro Iob > <mailto:alessandro@gmail.com>> >> >&g

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-06 Thread Pierre Thibault
2011/6/6 Alessandro Iob > No, it does not work. And the problem is not related to the > *_DateTrackerImporter > as I'm not using the track_changes options.* > > **I've made some tests and I've found that in _Web2pyImporter.__call__ the > code reaches the "import like 'from x import a, b, ...'" s

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-05 Thread Pierre Thibault
2011/6/5 Alessandro Iob > Hi Pierre, > > this is the output of the code from the web2py application shell: > > web2py Shell Version 1.96.2 (2011-06-03 16:11:39) > In [1] : from selfgroup.castalia import config > > Traceback (most recent call last): > File "gluon/contrib/shell.py", line 233, in

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-04 Thread Pierre Thibault
2011/6/3 Alessandro Iob > I have tried the new modules import feature (from mymodule import *, looks > for mymodule in applications/thisapp/ modules first and then in sys.path. No > more need for local_import) and it works wonderfully on OS/X but not at all > on Windows. Below you can find the tr

Re: [web2py] Re: web2py 1.96.1 is OUT

2011-06-01 Thread Pierre Thibault
But there is another cool feature in the trunk. If you look in gluon/ custom_import.py, you will see two new functions: is_tracking_changes and track_changes. Call track_changes with True and web2py will track the changes made to all Python module source files you are using. The new importer will a

Re: [web2py] Re: What if Massimo got hit by a Bus?

2011-05-26 Thread Pierre Thibault
2011/5/26 Nite > This thread reminds me... > > Old programmers never die. They just decompile. > Old programmers never die. They just lose their memory. > Old programmers never die. They just byte it. > Old programmers never die. They just get bugged with life. > Old programmers never die. They j

Re: [web2py] Re: Help in documentation

2011-05-26 Thread Pierre Thibault
2011/5/26 Bruno Rocha > On Thu, May 26, 2011 at 3:08 PM, Pierre Thibault < > pierre.thibau...@gmail.com> wrote: > >> There is already a wiki on Google Code > > > GitHub has gist to embed code snipets, the github markup is very nice. and > it is possible to hav

Re: [web2py] Re: Help in documentation

2011-05-26 Thread Pierre Thibault
2011/5/26 Bruno Rocha > > > PS: What about a wiki on github? > > There is already a wiki on Google Code. -- A+ - Pierre My blog and profile (http://pierrethibault.posterous.com) YouTube page (http://www.youtube.com/user/tubetib)

Re: [web2py] Help in documentation

2011-05-26 Thread Pierre Thibault
2011/5/26 Vinicius Assef > I'd like to help keeping docs up to date. > > How can I do that? > > -- > Vinicius Assef. > I don't know how things are working right now but I believe it would be great that when I patch is applied, the person who did the patch would also submit a description of what

Re: [web2py] What if Massimo got hit by a Bus?

2011-05-26 Thread Pierre Thibault
The bus will be fine. ;-) -- A+ - Pierre My blog and profile (http://pierrethibault.posterous.com) YouTube page (http://www.youtube.com/user/tubetib) Twitter (http://twitter.com/pierreth2)

Re: [web2py] Re: pythonanywhere

2011-05-20 Thread Pierre Thibault
2011/5/20 Ialejandro > Well, in fact Resolver One is made with IronPython (asp.net). I read > it in the book "IronPython in action" which is written by one of the > developers of Resolverone. Too bad. It is Windows only. :-( -- A+ - Pierre My blog and profile (http://pierrethib

Re: [web2py] Re: Better language support

2011-05-20 Thread Pierre Thibault
You made good points. I think that it is important to have a process that can support the community we are. Here is my last idea on the subject: We can support a global translation repository just like Jonathan was proposing. But if an application has not for example a custom dictionary for Germa

Re: [web2py] web2py messages being copied to other (spam) groups

2011-05-19 Thread Pierre Thibault
2011/5/20 Anthony > It appears that messages to the web2py-users group are somehow being copied > to various other groups, including > https://groups.google.com/group/fameisfame/search?hl=en&group=fameisfame&q=web2py, > > https://groups.google.com/group/fametest/search?hl=en&group=fametest&q=web2

Re: [web2py] Re: Better language support

2011-05-19 Thread Pierre Thibault
2011/5/20 mart > not sure if this applies, but just in case... > > years ago (i think 12, so this may be outdated), i worked in a > localization team, (although it was a purely windows shop where words > like dll was all that anyone talked about). Anyways, we adopted a > method for 1) re-using tr

Re: [web2py] Very cool new code sharing service: http://chopapp.com/

2011-05-19 Thread Pierre Thibault
2011/5/19 pbreit > Very cool new code sharing service: http://chopapp.com/ > Not cool for me. No Python. It is just like a pastebin. -- A+ - Pierre My blog and profile (http://pierrethibault.posterous.com) YouTube page (http://www.youtube.c

Re: [web2py] Re: Better language support

2011-05-19 Thread Pierre Thibault
2011/5/19 Christopher Steel > Hi Pierre, > > I think you have touched on an important issues and although I am also > wondering if Jonathan proposal might provide for similar (although > less "blingy")... > Hi Chris, No, I think mixing translations is not a good thing for the reasons I mention

Re: [web2py] Re: Better language support

2011-05-19 Thread Pierre Thibault
2011/5/19 Massimo Di Pierro > I am for this and for Jonathan idea. I am a little worried about the > level of complexity this may bring, so I would like to see an > implementation before committing to it. Too many file look-ups could > cause a slow down. > This stress seems to hide a deeper prob

[web2py] Re: Better language support

2011-05-19 Thread Pierre Thibault
Hello, I didn't have a lot of feedback on this proposal. I thought it will help translators but now I am wondering if it would be time well spent. Please post a comment if this idea attracts interest.