[web2py] Re: Web2py forum plugin

2013-09-29 Thread guruyaya
First! http://pyforum.org/ On Monday, September 30, 2013 12:12:45 AM UTC+2, Tobias Dahlberg wrote: > > Hi > > I'm looking for a forum plugin that I can use to extend a web2py > application. I need a forum plugin that uses web2py's normal auth since I > need it integrated with other web2py app.

[web2py] Re: Sending jobs to LSF scheduler from web2py

2013-09-29 Thread Niphlod
it all depends on how are you planning to do it. Il giorno domenica 29 settembre 2013 22:47:51 UTC+2, Andrey K ha scritto: > > Good day, > I am working on the web application (web2py controller) which suppose > to tiger unix job scheduler (LSF) which in turn run unix executable files > with p

[web2py] Re: Performance: number of queries vs. script run time

2013-09-29 Thread Niphlod
time it, it's impossible to tell beforehand what will be better without knowing what the script does exactly (and even then, there are lots of variables) Il giorno lunedì 30 settembre 2013 02:29:57 UTC+2, lesssugar ha scritto: > > That was a theoretical question. I'm asking because I don't know

[web2py] Re: IE8 error in web2py.js line 43, Object doesn't support....

2013-09-29 Thread Niphlod
I can, but the fact is that "doc" usually is the document, so I'm pretty sure it exists and that it has an "on" method :D When that error pops up, what are you trying to do ? Just to load the page ? Il giorno lunedì 30 settembre 2013 03:33:24 UTC+2, davedigerati ha scritto: > > Thanks guys, but

[web2py] Re: IS_IN_SET options sort order

2013-09-29 Thread Niphlod
do you know you can use a normal list of tuples instead ? IS_IN_SET=[(50, '$50 per lap'), ] Il giorno lunedì 30 settembre 2013 04:53:34 UTC+2, mr.freeze ha scritto: > > I'm trying to get IS_IN_SET to sort options numerically for the following > validator: > db.sponsor.pledge_amount.requires =

[web2py] Use import csv option to populate the SQLFORM

2013-09-29 Thread Sarbjit singh
Hi, I am having controller as : @auth.requires_login() def add(): form = SQLFORM(db.table) if form.process(formname='test').accepted: response.flash = 'Database Updated' elif form.errors: response.flash = 'Please fill all the required details' else: res

[web2py] IS_IN_SET options sort order

2013-09-29 Thread mr.freeze
I'm trying to get IS_IN_SET to sort options numerically for the following validator: db.sponsor.pledge_amount.requires = IS_IN_SET({ 50: '$50 per lap', 25: '$25 per lap', 10: '$10 per lap', 5: '$5 per lap', 2: '$2 per lap', 1: '$1 per lap', 0: 'Flat amount' }, sort=True

[web2py] list:string field in auth_user

2013-09-29 Thread Scott Hunter
I have added a list:string field to my auth_user table using auth.settings.extra_fields: auth.settings.extra_fields['auth_user'] = [ Field('f_dtf', type='list:string', custom_qualifier=dict()) ] The new field shows up fine. But when I try to manipulate that field from the Profile page,

[web2py] Re: IE8 error in web2py.js line 43, Object doesn't support....

2013-09-29 Thread davedigerati
Thanks guys, but I guess that still leaves me clueless as to what is causing this error. Can anyone comment what this portion of web2py.js is looking for so I can start trying to guess what it might be missing? (function web2py_event_handlers() {) all help/suggestions appreciated On Sunday, S

[web2py] Re: Performance: number of queries vs. script run time

2013-09-29 Thread lesssugar
That was a theoretical question. I'm asking because I don't know which approach is better. There's no specific issue I'm trying to address. I just want to find out which way is more efficient. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/

[web2py] Re: web2py website down

2013-09-29 Thread 黄祥
thank you so much for your info, don't know that the book is on the github, i've downloaded both pdf and web2py book application. best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google

[web2py] Re: web2py website down

2013-09-29 Thread LightDot
BTW, web2py book is on the github. It's a web2py application, you can run it locally or on your web hosting / VPS. On Sunday, September 29, 2013 2:41:26 PM UTC+2, Gour wrote: > > On Sun, 29 Sep 2013 05:27:51 -0700 (PDT) > 黄祥 > > wrote: > > > i still can't access web2py website and mine on pyt

[web2py] Re: Performance: number of queries vs. script run time

2013-09-29 Thread LightDot
Better for what? What is the issue you're trying to address? On Sunday, September 29, 2013 11:37:29 PM UTC+2, lesssugar wrote: > > In my app I have a script running in the background 3 times a day. The > script generates lots of inserts into the db. > > In terms of performance, which one of the t

[web2py] Re: workflow diagram and associated code generator

2013-09-29 Thread 黄祥
i think, it can be 'nice to have' feature in web2py. best regards, stifan -- 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 becau

Re: [web2py] Re: web2py website down

2013-09-29 Thread 黄祥
it's up now. best regards, stifan -- 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 Grou

[web2py] Someone are instaled web2py in a shared host with The Passenger Apache module?

2013-09-29 Thread puercoespin
The Passenger Apache is a poliglot module for develop wsgi apps in apache (an ruby apps in Rack). See more information in http://www.phusionpassenger.com. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.go

[web2py] Web2py forum plugin

2013-09-29 Thread Tobias Dahlberg
Hi I'm looking for a forum plugin that I can use to extend a web2py application. I need a forum plugin that uses web2py's normal auth since I need it integrated with other web2py app. I looked at pyforum, but it doesn't seem to use the standard auth, correct? Thanks! BR Tobias Dahlberg --

[web2py] Re: web2py & pycharm...

2013-09-29 Thread Massimo Di Pierro
I do not know. I am not aware that they contacted any of us for testing or support. On Sunday, 29 September 2013 15:35:52 UTC-5, Monte Milanuk wrote: > > Hello there, > > The framework support for things like Flask and web2py finally sold me > and I purchased a new license for 3.0 the other day

[web2py] Re: workflow diagram and associated code generator

2013-09-29 Thread Massimo Di Pierro
I'd love something like this. Yes it can be done. On Sunday, 29 September 2013 13:39:59 UTC-5, Andrey K wrote: > > Hello everybody, > I wonder is it possible to make workflow diagram compiler on the client > like this (http://gojs.net/latest/samples/flowchart.html) linked to > executable code ge

[web2py] Re: NDB support for GAE

2013-09-29 Thread Massimo Di Pierro
Thank you I will review this asap! On Sunday, 29 September 2013 11:49:36 UTC-5, Quint wrote: > > Hi, > > I think web2py should support NDB for the Google Datastore. > NDB a newer datastore api which has automatic caching features built in. > > https://developers.google.com/appengine/docs/python/nd

[web2py] Performance: sleep vs. queries

2013-09-29 Thread lesssugar
In my app I have a script running in the background 3 times a day. The script generates lots of inserts into the db. In terms of performance, which one of the two below is better? 1) Leaving the script as it is = many insert actions at one time / script runs shorter 2) Using time.sleep() after

[web2py] Re: Curious appengine memcache exception

2013-09-29 Thread Quint
Issue i had with caching Row objects. The second trace looks like your error. https://groups.google.com/forum/m/#!searchin/web2py/quint/web2py/G6IkcDU6m-g -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.goo

[web2py] Re: Curious appengine memcache exception

2013-09-29 Thread Quint
I noticed that i can never memcache class objects that are defined within the web2py part of my code. Simple things like dicts, list or class objects defined outside web2py (in my GAE root) are ok. Row object also don't pickle with GAE. I always convert them to dicts. I did some digging some tim

Re: [web2py] Workflow development togetherwhat is the best way to make work flow design on the client (like this

2013-09-29 Thread António Ramos
Gojs is a paid software Why not d3js? 2013/9/29 António Ramos > I wish the same for christmas :) > > I think that for the experts here this should be a nice exercise and even > an easy one. > A generic workflow framework that could be used to create many apps. like > a workflow as a service.Lik

[web2py] Sending jobs to LSF scheduler from web2py

2013-09-29 Thread Andrey K
Good day, I am working on the web application (web2py controller) which suppose to tiger unix job scheduler (LSF) which in turn run unix executable files with parameters. Is it save to use such approach in web2py. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] web2py & pycharm...

2013-09-29 Thread memilanuk
Hello there, The framework support for things like Flask and web2py finally sold me and I purchased a new license for 3.0 the other day. Last night I thought I'd try creating a new web2py project just to play with, and was kind of disappointed when a brand new project already shows a bunch of

[web2py] Re: Curious appengine memcache exception

2013-09-29 Thread Brian Becker
David...did you get a response on this? I'm experiencing a similar issue when issuing memcache.set and getting a pickler.dump(value) TypeError: 'NoneType' object is not callable, After upgrading from 1.8.1 to 1.8.5...the problem reared its head. Of course, my class is much more complex than yo

Re: [web2py] Workflow development togetherwhat is the best way to make work flow design on the client (like this

2013-09-29 Thread António Ramos
I wish the same for christmas :) I think that for the experts here this should be a nice exercise and even an easy one. A generic workflow framework that could be used to create many apps. like a workflow as a service.Like we have CAS . 2013/9/29 Andrey K > Hello everybody, > I wonder is it

[web2py] workflow diagram and associated code generator

2013-09-29 Thread Andrey K
Hello everybody, I wonder is it possible to make workflow diagram compiler on the client like this (http://gojs.net/latest/samples/flowchart.html) linked to executable code generated from code blocks associated with appropriate diagram block. Can it be done in web2py. I guess it would be very si

[web2py] Workflow development togetherwhat is the best way to make work flow design on the client (like this

2013-09-29 Thread Andrey K
Hello everybody, I wonder is it possible to make workflow diagram compiler on the client like this (http://gojs.net/latest/samples/flowchart.html) linked to executable code generated from code blocks associated with appropriate diagram block. Can it be done in web2py. I guess it would be very si

[web2py] NDB support for GAE

2013-09-29 Thread Quint
Hi, I think web2py should support NDB for the Google Datastore. NDB a newer datastore api which has automatic caching features built in. https://developers.google.com/appengine/docs/python/ndb/ I think it would be great for GAE users to be able to use NDB because it potentially has better perfo

Re: [web2py] Re: web2py website down

2013-09-29 Thread Massimo Di Pierro
It is up for me. On Sunday, 29 September 2013 07:27:51 UTC-5, 黄祥 wrote: > > i still can't access web2py website and mine on pythonanywhere. the status > is Unhandled Exception > > best regards, > stifan > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github

[web2py] Re: web2py website down

2013-09-29 Thread Gour
On Sun, 29 Sep 2013 05:27:51 -0700 (PDT) 黄祥 wrote: > i still can't access web2py website and mine on pythonanywhere. the > status is Unhandled Exception It looks that is real meaning of cloud computing - in some parts the sun is shining through, while in the other ones, overcast is too strong. :

Re: [web2py] Re: web2py website down

2013-09-29 Thread 黄祥
i still can't access web2py website and mine on pythonanywhere. the status is Unhandled Exception best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Repor

Re: [web2py] Re: web2py website down

2013-09-29 Thread Loïc Espern
Strange... I can access web2py.com without problem since my previous message Le 29 sept. 2013 14:08, "Gour" a écrit : > On Sun, 29 Sep 2013 00:09:36 -0700 (PDT) > Loïc wrote: > > > Pythonanywhere seems to have some issues this morning. My web-apps > > were down too... Everything seems OK now. >

[web2py] Re: web2py website down

2013-09-29 Thread Gour
On Sun, 29 Sep 2013 00:09:36 -0700 (PDT) Loïc wrote: > Pythonanywhere seems to have some issues this morning. My web-apps > were down too... Everything seems OK now. I still see 'Unhandled Exception"...interesting it happens just in time when I was considering whether to use something like Pyth

[web2py] Re: Microsoft SQL Server Migrate Trying to Create New Table instead of Editing Old One

2013-09-29 Thread Niphlod
probably your .table files weren't in sync with your model. web2py issues a CREATE statement only if the corresponding .table file is not found into the databases/ folder (implicating that that table doesn't exist on the backend) On Sunday, September 29, 2013 2:06:50 AM UTC+2, PN wrote: > > Ver

[web2py] Re: IE8 error in web2py.js line 43, Object doesn't support....

2013-09-29 Thread Niphlod
no. that "map" file is just a commodity extension to have debuggers (developers tools, firebug, etc) to load the uncompressed version of the library in order to debug it better http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/ it has nothing to do with any js error. does the la

[web2py] Debug web2py with PyCharm 3.0

2013-09-29 Thread Gerd
Hi! How can i debug a web2py application with the new PyCharm 3.0 Professional Edition? Any help is greatly appreciated Thanks Gerd -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issu

[web2py] web2py website down

2013-09-29 Thread Loïc
Pythonanywhere seems to have some issues this morning. My web-apps were down too... Everything seems OK now. -- 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)