[web2py] Re: web2py meetup with Massimo in north Bay Area

2014-09-21 Thread Dexter Hadley
Please count me in. Thx. dex* -- 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 Groups "

[web2py] Response Stream Control

2014-09-21 Thread Aldo Bassanini
Hello everyone. Is there any way to control the final status of the response.stream function? I need to serve a small file to a client application (the client app uses wget, not a browser), but I wish to know if the client successfully downloaded the file, in order to update some server-side da

[web2py] Re: web2py meetup Bay Area

2014-09-21 Thread Dexter Hadley
I too am interested in meeting up in the valley. I'm at Stanford using web2py to crowd source functional genomics digital samples in the public domain for drug discovery and would love to share my experiences and learn from others. Plus it's free advertising for the app! Please keep me posted.

[web2py] Interactive computer vision project

2014-09-21 Thread Alex Kazakov
Hello all, I would like to create an app where a scientific movie is uploaded and analyzed (in Matplotlib graphs manner). I managed to upload and access the movie, but right now I have no idea how to implement the next part: *I would like to show a single frame from the movie, and ask the user

[web2py] web2py grid auto page

2014-09-21 Thread T.R.Rajkumar
I have a SQLFORM.grid. It paginates the returned rows. Now I want to move through all the pages on a set timer interval without clicking the page numbers, i.e I want to auto page like an album without post back using jQuery. How to achieve that. Thank you. -- Resources: - http://web2py.com - h

[web2py] Re: Hyperlink not clickable

2014-09-21 Thread Sif Baksh
Thanks, Anthony, I feel like a moron, dam typos. Thanks, Sif On Saturday, September 20, 2014 12:17:19 PM UTC-6, Anthony wrote: > > _herf should be _href > > On Saturday, September 20, 2014 12:17:55 PM UTC-4, Sif Baksh wrote: >> >> Newbie here, so I'm loving web2py. I'm using PythonAnywhere.com s

[web2py] Re: web2py meetup with Massimo in north Bay Area

2014-09-21 Thread Larry Weinberg
I will also try to attend if it's in early December On Monday, September 15, 2014 7:18:48 PM UTC-7, weheh wrote: > > Target early December. How much interest? Looking for another speaker. > > Will try to leverage python user's group. Otherwise, I have a nice room on > UC Berkeley campus large e

[web2py] Re: web2py meetup Bay Area

2014-09-21 Thread weheh
This thread continues here . On Wednesday, September 10, 2014 12:12:14 PM UTC-7, weheh wrote: > > I've moved back to the Bay Area and was surprised to find there is no > web2py meetup group. Massimo, how did your web2py meetup in San Fr

[web2py] Re: web2py meetup Bay Area

2014-09-21 Thread dlypka
I will try to attend. But will it be during a week day? or possibly weekend? On Thursday, September 18, 2014 10:06:11 PM UTC-5, Dave S wrote: > > > > On Monday, September 15, 2014 11:39:04 PM UTC-7, ghufran syed wrote: >> >> I am new to web2py, but would be interested in attending, thank you for

[web2py] Signed url to non users of the app

2014-09-21 Thread António Ramos
Hello i have an app that creates some graph about some data How can i share a link to a view of that graph and send it to a person that is not a user of my app and allow it to access the link for limited period of time? Thank you António -- Resources: - http://web2py.com - http://web2py.com

[web2py] Re: Running a long task with task scheduler multiple times in the same browser

2014-09-21 Thread Niphlod
On Sunday, September 21, 2014 4:05:02 PM UTC+2, pn wrote: > > Did you test in a production environment (example behind an apache/other > server calling web2py via wsgi as described in the deployment recipes > chapter) or just using the built-in web2py server on your dev machine? > > The differe

[web2py] Re: validate_and_insert does not work with CRYPT

2014-09-21 Thread Martin Weissenboeck
I see - that is important. Thank you for these details. Maybe it would be a good idea to have this explanation in the book? 2014-09-20 20:06 GMT+02:00 Massimo Di Pierro : > The two functions do not take the set of arguments. > > insert(...) expects values after validation > validate_and_insert(..

[web2py] Running a long task with task scheduler multiple times in the same browser

2014-09-21 Thread pn
Did you test in a production environment (example behind an apache/other server calling web2py via wsgi as described in the deployment recipes chapter) or just using the built-in web2py server on your dev machine? The difference is that apache will certainly be able to handle multiple simultane

[web2py] Re: Web2py ajax call and Angularjs

2014-09-21 Thread dlypka
var mypersistdict = {}; mypersistdict['myvar'] = 'myvalue'; var myurlencodeddata = $.param(mypersistdict); // ref: http://stackoverflow.com/questions/19254029/angularjs-http-post-does-not-send-data $http({ method: 'POST

[web2py] Re: pending registration alert for a new user

2014-09-21 Thread Leonel Câmara
Do know that auth already warns the user that registration is pending if they try to login. You can change the message auth returns to the user in auth.messages.registration_pending. You can check that it is pending in your controllers by checking the user's registration_key field if it's 'pend

[web2py] Re: How to use facebook app properly

2014-09-21 Thread www.diazluis.com
Greetings I use the following code in my app: www.referenciasocial.com ### auth_user_id = (auth.user and auth.user.id) or None Facebook = local_import('facebook') #-- FACEBOOK -- YOUR_CLIENT_ID = 'x' YOUR_CLIENT_SECRET = 'x' USERNAME = None from

[web2py] Re: Accesing table from external database

2014-09-21 Thread Leonel Câmara
I would use requires IS_IN_SET(db(db.personal_personal.id>0)._select(db.personal_personal.nombre)) and set it in the controller so you don't calculate the set of names every time the table is loaded. If it's ok for the list of names to not be completely up to date all the time I would cache it.