Re: [web2py] Re: how to accept args

2014-11-09 Thread Alex Glaros
that works Denes. And also thanks to Kiran. Yes Denes, I am a little guilty of not reading manual, but I think it does not help me as much if I don't know python, so am trying to find time to study python. I'm writing a civic engagement app and need to have a function that takes users to

[web2py] Re: Web2py + AngularJS: routes

2014-11-09 Thread keiser1080
@dlypka could you post somewhere your angularjs version of web2py store. I am also working on angularjs frontend: web2py view containing angularjs partial + autobahn.js backend : web2py rest for db data + autobhan.py + web2py authentification for the view using cas need also to find a

Re: [web2py] Re: Web2py + AngularJS: routes

2014-11-09 Thread David Lypka
Hi: I believe I have posted details before - have you looked at all of my previous posts? Some of the posts deal with login. However I will see what I can do about posting web2py angular store code. Cheers! -Dave Lypka. On Sun, Nov 9, 2014 at 9:28 AM, keiser1080 iach...@gmail.com wrote:

[web2py] Re: apache logs

2014-11-09 Thread Massimo Di Pierro
probably in /var/logs/apache2/access.log On Saturday, 8 November 2014 12:16:28 UTC-6, Ramos wrote: hello i was used to rocket every python print statement i could see it in the terminal. now with apache i dont know where to look for my print statements Any help Thank you António --

[web2py] Re: openshift

2014-11-09 Thread Massimo Di Pierro
You can set the password with: sudo -u www-data python -c from gluon.main import save_password; import getpass; save_password(getpass.getpass('password:'),443) or with python web2py.py -S welcome -a yourpassword -p 443 then [ctrl]+D to exit. On Saturday, 8 November 2014 12:22:07 UTC-6, Avi

Re: [web2py] Help with web2py on webfaction

2014-11-09 Thread António Ramos
Post a ticket on webfaction , they are very friendly and know about web2py. There is also a script to install web2py. I used it and never had problems so far. 2014-11-08 23:47 GMT+00:00 Hans Soflao hansof...@gmail.com: Can somebody help me with getting web2py app to work with webfaction? This

[web2py] Re: openshift

2014-11-09 Thread Avi A
Great, thanks. On Sunday, November 9, 2014 6:15:11 PM UTC+2, Massimo Di Pierro wrote: You can set the password with: sudo -u www-data python -c from gluon.main import save_password; import getpass; save_password(getpass.getpass('password:'),443) or with python web2py.py -S welcome -a

[web2py] Re: Help with web2py on webfaction

2014-11-09 Thread Gael Princivalle
I confirm that Webfaction guy are really friendly and helpful. Use the script and if you have problems open a ticket. I'm also really happy of Webfaction. Il giorno domenica 9 novembre 2014 00:47:41 UTC+1, Hans Soflao ha scritto: Can somebody help me with getting web2py app to work with

[web2py] Re: Web2py + AngularJS: routes

2014-11-09 Thread keiser1080
@dlypka i will search your post talking about authentication. I think i have read a post where your explain how to do by changing web2py, i do not want to change the code of web2py because in case of upgrade some functionality can be broken, i will read again. To post the application i think

[web2py] How to get tablename from a given Row object?

2014-11-09 Thread Lisandro
I have a query to the database where the select is made in a different table each time the query is executed. So the resulting rows will be sometimes from one table, sometimes from another table. I want to iterate the rows and get the tablename of the table they belong. I've checked the Row

[web2py] Re: How to get tablename from a given Row object?

2014-11-09 Thread Anthony
The default Row object doesn't have the table name. However, if you set the compact attribute of the Rows object to False, each Row object will act like a dictionary with the table name as the top-level key, but this will require row.tablename.fieldname syntax to access each field. You can also

[web2py] Re: RSVP: Massimo @ Bay Area web2py meetup (refreshments) -- 12/5/2014, 6:30PM - 9:00PM -- BE THERE!!!

2014-11-09 Thread Jonathan Lundell
I'm in. On Wednesday, November 5, 2014 11:48:14 PM UTC-8, weheh wrote: Hi Bay Area web2py'ers. Get excited! *Massimo will attend our very own Bay Area* *web2py meetup* to meet, greet and present. Additional talks are planned. Details follow: Date: *Friday, December 5* Time: *6:30PM to

[web2py] Re: RSVP: Massimo @ Bay Area web2py meetup (refreshments) -- 12/5/2014, 6:30PM - 9:00PM -- BE THERE!!!

2014-11-09 Thread Simon Ashley
Unfortunately, I'm out (snowed under with work). -- 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

[web2py] how to create a view for grid view, edit, delete buttons?

2014-11-09 Thread Alex Glaros
grid offers view, edit, and delete buttons for each row is there a way to create an HTML view for the resulting page when user clicks on those buttons? Normally the result is an unadorned raw form. And for some reason, I get fields that were intentionally hidden in the main view of the grid,

[web2py] Re: RSVP: Massimo @ Bay Area web2py meetup (refreshments) -- 12/5/2014, 6:30PM - 9:00PM -- BE THERE!!!

2014-11-09 Thread weheh
FYI, BART is also an option as the North Berkeley station is close by. I'm willing to ferry a few passengers between station and meeting room assuming the timing is right. Contact me directly if you need this option. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Re: RSVP: Massimo @ Bay Area web2py meetup (refreshments) -- 12/5/2014, 6:30PM - 9:00PM -- BE THERE!!!

2014-11-09 Thread Larry Weinberg
I hope to make it. On Wednesday, November 5, 2014 11:48:14 PM UTC-8, weheh wrote: Hi Bay Area web2py'ers. Get excited! *Massimo will attend our very own Bay Area* *web2py meetup* to meet, greet and present. Additional talks are planned. Details follow: Date: *Friday, December 5* Time:

Re: [web2py] how to create a view for grid view, edit, delete buttons?

2014-11-09 Thread Johann Spies
On 10 November 2014 08:57, Alex Glaros alexgla...@gmail.com wrote: grid offers view, edit, and delete buttons for each row is there a way to create an HTML view for the resulting page when user clicks on those buttons? Normally the result is an unadorned raw form. And for some reason, I

[web2py] Re: Help with web2py on webfaction

2014-11-09 Thread Annet
I also host my site at Webfaction, there documentation most of the time answers my question, and their support people are very friendly and know they know quite a lot about web2py. When you used their install script to install web2py and created a website record, there's no need to edit your