[web2py] Re: web2py.com is down

2011-09-11 Thread Valter Foresto
http://www.web2py.com/ is up and running.

Re: [web2py] Re: web2py received 2011 BOSSIE Award by InfoWorld.com

2011-09-08 Thread Valter Foresto
*Great framework mean great peoples with great ideas, great technical knowlwdge and passion !* Thank to Massimo, to Web2Py developers and all web2py-users group supports and users peoples. - Valter

[web2py] R: Re: Issue on 'The ajax Function' on web2py Version 1.98.2 - tested using WelcomeAPP

2011-09-01 Thread Valter Foresto
The code in the online book is functioning as expected. Many thanks. - Valter

[web2py] Issue on 'The ajax Function' on web2py Version 1.98.2 - tested using WelcomeAPP

2011-09-01 Thread Valter Foresto
I checked, using the 'WelcomeAPP' on Version 1.98.2 of web2py, the first example of 'ajax' function as descrived on web2py book *'**The ajaxFunction', Chapter 10 *. The returned value is always None instead of the expected echo of the typed characters in the input field. Anybody experienced the

[web2py] R: Upload & Install packed application on FluxFlex - Error500

2011-09-01 Thread Valter Foresto
I just try again to Upload a packed web2py application on FluxFlex but I get the same Error500 of a week ago. Can anybody have a solution or work-around suggestions for that issue ? Thanks. - Valter

[web2py] R: Re: web2py hosting

2011-08-24 Thread Valter Foresto
Video "How to deploy / use web2py on free FluxFlex hosting" on Vimeo by Massimo Di Pierro.

[web2py] R: How to insert icons into a column of a table created using SQLTABLE()

2011-08-17 Thread Valter Foresto
To further explain my requirements and request for suggestions: *How can I exchange few different text values with few different small images in a SQLTABLE() object before send it to the view. * Thank you for your help. Valter

[web2py] How to insert icons into a column of a table created using SQLTABLE()

2011-08-16 Thread Valter Foresto
I'm using SQLTABLE() into a controller to generate a table for the next view. A column of the table report only few states (text) that can might be better represented using small, 16x16 or 32x32, images. It is possible to insert icons, instead of text, into a table column and then pass the res

[web2py] R: Re: R: Re: R: Re: R: Re: Web Shell problem on Mozilla Firefox 5 and Internet Explorer 9 (PC with Vista)

2011-07-12 Thread Valter Foresto
Anthony, *Can I interact with my application using a web-browser when I use the standard console ? ** ** ** Yes, though they'll be running in separate Python processes. The browser will be sending regular http requests to your app via the Rocket server, and the console will simply give you a Py

[web2py] R: Re: R: Re: R: Re: Web Shell problem on Mozilla Firefox 5 and Internet Explorer 9 (PC with Vista)

2011-07-11 Thread Valter Foresto
I would like to use the console as a substitute for the Web Shell. Can I interact with my application using a web-browser when I use the standard console ? - Valter

[web2py] R: Re: R: Re: Web Shell problem on Mozilla Firefox 5 and Internet Explorer 9 (PC with Vista)

2011-07-11 Thread Valter Foresto
When I run web2py and my app/controller inside a Python console I have all the environment available ... but the web server is not running in the background. I think this is the difference with using web2py Web Shell. I'm trying to interact from 'console' with a web2py running app/controller

[web2py] R: Re: Web Shell problem on Mozilla Firefox 5 and Internet Explorer 9 (PC with Vista)

2011-07-11 Thread Valter Foresto
Thanks Anthony, I believe that : - when we use *web2py Web Shell* we have all the web2py system running in the background concurrently - when we use a *Python console with web2py* (like standard or IPython for example) we have (like web2py Web Shell) the complete web2py environment

[web2py] Web Shell problem on Mozilla Firefox 5 and Internet Explorer 9 (PC with Vista)

2011-07-10 Thread Valter Foresto
I noted alternate functioning of Web Shell on Mozilla Firefox 5 and Internet Explorer 9 on a PC with Vista installed OS. I currently use the last Version 1.97.1 (2011-06-26 19:25:44) of web2py. Anyone noted the same problem ? - Valter

R: Re: R: Re: R: Re: [web2py] R: Re: How to display 'complete strings' in a view table ?

2011-07-08 Thread Valter Foresto
Yes, SQLTABLE is not well documented but WEB2PY is fantastic ! I agree with you that the use of SQLTABLE should be (typically) in the view. -- Valter

R: Re: R: Re: [web2py] R: Re: How to display 'complete strings' in a view table ?

2011-07-08 Thread Valter Foresto
Anthony, you are a 'clairvoyant', the controller code is : @auth.requires_login() def current_logs(): records=SQLTABLE(db().select(db.logs.ALL)) return dict(records=records) ... oops, you say that I need to use DAL Rows object. not SQLTABLE object ! Then I suddenly changed the controller

R: Re: [web2py] R: Re: How to display 'complete strings' in a view table ?

2011-07-08 Thread Valter Foresto
I'm using the last version souces of web2py - Version 1.97.1 (2011-06-26 19:25:44) . With the view: {{extend 'layout.html'}} {{=SQLTABLE(records, truncate=None)}} I get the Traceback (most recent call last): File "C:\Users\valter\Desktop\ALTECH\web2py\web2py\gluon\restricted.py", line 1

[web2py] R: Re: How to display 'complete strings' in a view table ?

2011-07-08 Thread Valter Foresto
Many thanks Anthony, Firstly I changed the default in 'gluon/sqlhtml.py' with 'truncate=32' on line 1312. Using '{{=records}}' in the view and, after restart web2py from source, all the string fields are truncated only after 32 characters. This solve effectively the problem without change in the

[web2py] How to display 'complete strings' in a view table ?

2011-07-07 Thread Valter Foresto
I use the view : {{extend 'layout.html'}} {{=records}} to display a records table. One field in the record report the date and time : *logs.event_time_stamp* 2011-07-07 23... but the date and time is "2011-07-07 23..." instead of the complete "2011-07-07 23:01:15" string. What can

[web2py] R: Re: R: Re: Call functions periodically from WEB2PY at short time basis (like 0.05 ... 5 seconds)

2011-07-04 Thread Valter Foresto
Many thanks Massimo, now I understand and positively checked your suggestion. All works fine and I can confirm that : *WEB2PY can be used to do acquisition, processing, storage and presentation of field data over the web and the Internet * *WEB2PY is a great Python based Web Framework !

[web2py] R: Re: Call functions periodically from WEB2PY at short time basis (like 0.05 ... 5 seconds)

2011-07-04 Thread Valter Foresto
I follow the section 'Background Processes and Task Queues' in the Core chapter of the Book, and launch using: python web2py.py -a commsec -i 127.0.0.1 -p 8000 -S ALTECH -M -N -R a

[web2py] R: Re: Call functions periodically from WEB2PY at short time basis (like 0.05 ... 5 seconds)

2011-07-04 Thread Valter Foresto
The section 'Background Processes and Task Queues' in the Core chapter of the Book report exacly what you mean and suggest. I'm trying ... thanks Massimo.

[web2py] R: Re: Call functions periodically from WEB2PY at short time basis (like 0.05 ... 5 seconds)

2011-07-04 Thread Valter Foresto
I searched the WEB2PY group before and I already tryed this method that you suggested on a previous thread. I used: web2py -a yourpassword -i 127.0.0.1 -p 8000 -S yourapp -M -R applications/yourapp/private/yourscript.py with applications/yourapp/private/yourscript.py that do: import

[web2py] Call functions periodically from WEB2PY at short time basis (like 0.05 ... 5 seconds)

2011-07-04 Thread Valter Foresto
It is possible to call from inside WEB2PY a 'short user function' based on time tick periodically (like any 0.05 ... 5 seconds) ? This functionality can be very usefull to collect data from the field (for example from equipments on the Ethernet LAN or on the Internet or simply attached to the S