Re: [web2py] Re: Problems with a validation procedure ? - a Canadian postal code !

2012-09-25 Thread ian douglas
On 09/25/2012 04:08 PM, Le Don X wrote: thank you guys ... so the set of characters only ( exclusively ) need to be referred to as : [A-Za-z] Sorry for jumping in, I'm just seeing this thread for the first time. Keep in mind the following other rules, just in case you're trying to validate t

Re: [web2py] [OT] Ubuntu 12.10 will no longer ship with Python 2

2012-09-11 Thread ian douglas
http://cdimage.ubuntu.com/daily-live/current/quantal-desktop-amd64.manifest I see lots of mentions to Python 2.7 in the manifest of the desktop edition of Ubuntu 12.10 (beta): libpython2.72.7.3-5ubuntu1 python 2.7.3-0ubuntu5 python2.7 2.7.3-5ubuntu1 python2.7-minimal 2.7.3-5ubunt

Re: [web2py] Sublime Text 2 Setup

2012-09-09 Thread ian douglas
I use the "CodeIntel" plugin for Sublime Text 2 that was adapted from Komodo IDE according to the documentation. There's a bit of setup involved, but it's pretty quick to run. (it builds completion for various languages, etc) If you add web2py to the python library path in Sublime, or include

Re: [web2py] Scaling Web2py

2012-09-01 Thread ian douglas
Oops, had meant to reply to him off list, sorry everyone. On Sep 1, 2012 3:51 PM, wrote: > I'm replying off list. > > Your questions in this thread are more about general web architecture and > scalability issues than being specific questions about whether web2py is > suitable for your project. >

Re: [web2py] Scaling Web2py

2012-09-01 Thread ian douglas
I'm replying off list. Your questions in this thread are more about general web architecture and scalability issues than being specific questions about whether web2py is suitable for your project. If availability and scalability are your only true concerns, I'd -highly- recommend using web2py on

Re: [web2py] Re: relatively new to web2py, question about documentation

2012-08-30 Thread ian douglas
experimental). This is the > next priority. > > On Thursday, 30 August 2012 18:29:13 UTC-5, ian douglas wrote: >> >> Hey all, >> >> Let me echo others and say "congrats" to everyone who helped get v2.0.x >> out the door over the past few days. >&

[web2py] relatively new to web2py, question about documentation

2012-08-30 Thread ian douglas
Hey all, Let me echo others and say "congrats" to everyone who helped get v2.0.x out the door over the past few days. I'm pretty new to the web2py framework, and have been going through the fourth edition of the web2py "book" ( http://web2py.com/book) over the past week or so. It seems I've

Re: [web2py] Rendering views manually

2012-08-20 Thread ian douglas
On 08/20/2012 02:17 PM, Yarin wrote: | defindex(): globalmy_var my_var ="something" content ='''My Page {{=my_var}} {{=request.raw_args}} ''' output =render(content,context=dict(n=5)) returnoutput | but this won't work- it gives an error: name 'my_var' is not defined Questions: