[web2py] newbie question - recursively finding children

2012-08-31 Thread web-dev-m
Hey everyone! Wow Web2py 2.0 looks so cool! I can't wait to try all the new features. This has made it so easy for me (a non-programmer) to make viable web applications! My question is as follows: For one of my views, each page in my application has a variable number of child pages, each

[web2py] solicitation for help with public health project for lip reading

2012-07-15 Thread web-dev-m
I am working on many projects, and I figured I would ask for help on here to see if anyone wants to help with this. We are currently working on a project to help hearing impaired people learn to read lips better. When hearing impaired people learn to speak, they must rely on lip reading more

[web2py] unable to create application (permissions?)

2012-04-17 Thread web-dev-m
Hey everyone, I recently upgraded web2py. Afterwards, I am unable to create applications. I chown'd www-data:www-data the web2py directory, so everything is correctly permitted. I also chmod 755 everything. I had a NEWINSTALL file in there, and my deposit folder is there as well. My

[web2py] Re: Broken application after upgrade.

2012-03-27 Thread web-dev-m
2012 21:00:33 UTC-5, web-dev-m wrote: I am having a strange problem.  I just upgraded from 1.99.2 to 1.99.7 (manually by running update-web2py.sh from /scripts as the link was not working in the application). I can see my application and all the files are there, but when I try to get

[web2py] Re: Broken application after upgrade.

2012-03-27 Thread web-dev-m
Just continues trying to connect to any application. The application is still under development. After your suggestion, I dumped my db and deleted everything from the databases folder. It's working now...not sure what exactly happened. On Tuesday, March 27, 2012 4:54:51 PM UTC-5, pbreit

[web2py] Re: _title tag for looped OPTION attribute

2012-03-26 Thread web-dev-m
, )) On Sunday, 25 March 2012 21:25:33 UTC+1, web-dev-m wrote: I may not be following some sort of convention, but I'm trying to build a selector form element with a for loop from a query.  It renders when i do it manually: select option title=test test test test test /select Howerver

[web2py] Broken application after upgrade.

2012-03-26 Thread web-dev-m
I am having a strange problem. I just upgraded from 1.99.2 to 1.99.7 (manually by running update-web2py.sh from /scripts as the link was not working in the application). I can see my application and all the files are there, but when I try to get into any of the files it doesn't load. It just

[web2py] _title tag for looped OPTION attribute

2012-03-25 Thread web-dev-m
I may not be following some sort of convention, but I'm trying to build a selector form element with a for loop from a query. It renders when i do it manually: select option title=test test test test test /select Howerver, when I do: files=db(myquery).select() files_as_list=[] for

[web2py] global search form

2012-03-08 Thread web-dev-m
Hey everyone, Thank you so much for your help on my previous issues. I am trying to create a global search form. I followed Massimo's example on the social networking example to get a great form working. I then embedded it in a model and posted the view into my common layout. I followed the

[web2py] Re: crontab sytax

2012-02-21 Thread web-dev-m
The chapter works, the link to the syntax does not. http://web2py.com/books/default/reference/29/cron On Feb 21, 4:50 am, Wikus van de Merwe dupakrop...@googlemail.com wrote: I say the book works just fine:http://web2py.com/book/default/chapter/04#Cron The syntax you want to use is: @reboot

[web2py] Re: crontab sytax

2012-02-20 Thread web-dev-m
I apologize, this should have been in my original post. For more specifics, my crontab file has only one line in it: @reboot root python web2py.py -S test -M -N -R applications/test/ controllers/private.py I have tried to restart the server multiple times, to no avail with getting this process

[web2py] crontab sytax

2012-02-20 Thread web-dev-m
Hey everyone, I'm trying to figure out how to run a background process and write a very simple script to test it. It's not working, and I can't seem to find the right syntax. The link in the web2py book is broken. Can anyone break it down for me or is there an updated link? Thanks!

[web2py] Re: loop inside helper

2012-02-16 Thread web-dev-m
You got it! Thanks!!! On Feb 16, 1:10 am, Anthony abasta...@gmail.com wrote: I am trying to add a jquery effect, to each row based on its id, but i am having trouble formatting the _onclick=jQuery('id').toggle() _onclick=jQuery('%s').toggle() % row.id Anthony

[web2py] loop inside helper

2012-02-15 Thread web-dev-m
I am trying to construct a complex form in a web2py controller that loops over a query and inserts an INPUT() element in a TD() element. Is there a syntax for looping within a helper or should I do this some other way? Thanks!

[web2py] Re: loop inside helper

2012-02-15 Thread web-dev-m
regarding your query and the result you're trying to achieve, we may be able to provide more specific advice. Anthony On Thursday, February 16, 2012 12:35:34 AM UTC-5, web-dev-m wrote: I am trying to construct a complex form in a web2py controller that loops over a query and inserts

[web2py] Re: passing navigational links in the header and ajax woes

2012-01-23 Thread web-dev-m
)             myfunc(id,filename,stream)     else:         redirect(URL('mycontroller','this_function'))     records = [row] if row else []     return(counter=counter, records=recods, row=row) On Jan 21, 5:54 am, web-dev-m mgrave...@gmail.com wrote: Dear Massimo, Thank you in advance for your time

[web2py] Re: passing navigational links in the header and ajax woes

2012-01-21 Thread web-dev-m
Dear Massimo, Thank you in advance for your time just looking. If I can write a functional web application, you must be brilliant to have created this software. I am essentially trying to write a google docs clone with the ability to add notes. My users upload documents which a python function

[web2py] Re: passing navigational links in the header and ajax woes

2012-01-20 Thread web-dev-m
. On Jan 20, 12:14 pm, Cliff cjk...@gmail.com wrote: Currently, in my application, I am passing navigational links in the header, such as /app/controller/view/1/2/3 Where 1/2/3 are things the controller and view use to set the correct page. Why are you doing this? On Jan 19, 11:53 pm, web-dev

[web2py] passing navigational links in the header and ajax woes

2012-01-19 Thread web-dev-m
Currently, in my application, I am passing navigational links in the header, such as /app/controller/view/1/2/3 Where 1/2/3 are things the controller and view use to set the correct page. In my application, I am finding two problems with this. First is security. Although I have written

[web2py] Re: dynamic SQLForm.factory from query

2012-01-18 Thread web-dev-m
Awesome. So easy, I dont know why I didnt think of that. Thank you. On Jan 18, 1:57 am, Annet anneve...@googlemail.com wrote: Did you have a look at the wiki example in the web2py book:http://www.web2py.com/books/default/chapter/29/3#A-wiki? Instead of a 'page' table you have the table

[web2py] dynamic SQLForm.factory from query

2012-01-17 Thread web-dev-m
Dear Everyone, I am still plugging away on web2py and loving it more and more the better I understand python. I have a page where a large list is generated from a database query. Next to each item from the list, I would like to put the ability to add a comment. I did this statically by creating

[web2py] Soliciting freelance developers

2012-01-03 Thread web-dev-m
I am developing an application, and I love web2py. I am new to programming, and I have gotten quite far on limited expertise. However, I reached a point where I am going to need help to finish my application. Anyone have experience with sites like guru.com to hire a freelance developer to help

[web2py] limiting web2py to my LAN in order to expose secure access to /admin /appadmin

2011-12-11 Thread web-dev-m
Dear Everyone, I am closing in on a finished web2py application that I will eventually launch to the web (woo hoo!) I am using Debian/Apache2 and I want to expose it only to my LAN so I can do a mini-launch and test it with some other developers that VPN in. I understand that this is primarily