[web2py] Re: command line question

2013-02-21 Thread Hector Magnanao
> On Thursday, February 21, 2013 5:52:33 PM UTC+1, Hector Magnanao wrote: >> >> Is there a command line option in web2py to install an application ? I'm >> trying to install a tar file through command line. Maybe there is a python >> command that I need to r

[web2py] command line question

2013-02-21 Thread Hector Magnanao
Is there a command line option in web2py to install an application ? I'm trying to install a tar file through command line. Maybe there is a python command that I need to run. Any suggestions would be welcomed. -- --- You received this message because you are subscribed to the Google Groups

[web2py] Re: browser question

2013-02-20 Thread Hector Magnanao
Yes, that's what i want On Wednesday, February 20, 2013 10:01:44 AM UTC-6, Luca Zacchetti wrote: > Do you mean to start it in a browser different from the default-system one? > > Il giorno mercoledì 20 febbraio 2013 16:52:49 UTC+1, Hector Magnanao ha > scritto: >> >>

[web2py] browser question

2013-02-20 Thread Hector Magnanao
Is there a way to specify a different browser when I launch web2py ? -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. F

[web2py] Need older versions of web2py

2013-02-16 Thread Hector Magnanao
Where can I download previous versions of web2py ? I don't see them on the website. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@goo

[web2py] Re: Database connection error

2013-02-15 Thread Hector Magnanao
Will these options also work for database that is on a linux server ? On Friday, February 15, 2013 10:44:05 AM UTC-6, Hector Magnanao wrote: > > Awesome !!! Option 2 worked. Thanks. > > On Friday, February 15, 2013 10:00:54 AM UTC-6, Niphlod wrote: > >> yep, but you have

[web2py] Re: Database connection error

2013-02-15 Thread Hector Magnanao
Awesome !!! Option 2 worked. Thanks. On Friday, February 15, 2013 10:00:54 AM UTC-6, Niphlod wrote: > yep, but you have either to: > 1. copy over the databases/ folder (the .table files holds the state of > the tables on the db as far as web2py knows, so the 2nd one if doesn't find > the table

[web2py] Database connection error

2013-02-15 Thread Hector Magnanao
Can someone help me out with an annoying database connection problem ? I have a local database in my PC using MySQL. I created the tables and loaded the data. But whenever I try to start my application, it keeps saying that some table already exist " 127.0.0.1.2013-02-15.09-51-45.a00216cb-b

[web2py] How do I deploy an application to a linux server ?

2013-02-12 Thread Hector Magnanao
We have web server and I would like to deploy my app to that server. what are the steps ? and can it be scripted ? -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an

[web2py] Re: pack all functionality

2013-02-01 Thread Hector Magnanao
. > > Then > here<http://code.google.com/p/web2py/source/browse/gluon/admin.py#46>(most of > the admin functions are in /gluon/admin.py, so you can use the > functions outside of the admin app by importing that module). > > Anthony > > On Tuesday, January 29,

[web2py] pack all functionality

2013-01-29 Thread Hector Magnanao
Can someone point me to where the source code is for the pack all button ? -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.

Re: [web2py] Re: writing build scripts for web2py

2013-01-27 Thread Hector Magnanao
Is there a way to tar it as an .w2p file just like the what pack all does ? or does it matter ? On Saturday, January 26, 2013 6:15:34 PM UTC-6, rochacbruno wrote: > > Go to admin interface and click in "Pack All: it generates a .w2p package. > > Or just go to your shell and $tar -cvf myapp.tar.

[web2py] Re: writing build scripts for web2py

2013-01-26 Thread Hector Magnanao
i want to know how to package my application through a script. Can you point me to a solution somewhere ? On Thursday, January 10, 2013 2:19:12 PM UTC-6, Niphlod wrote: > > what do you want to do with a "build script" ? > > On Thursday, January 10, 2013 7:28:45 PM UTC+1,

[web2py] writing build scripts for web2py

2013-01-10 Thread Hector Magnanao
How do I write a build script for web2py ? --

[web2py] how do I change the appearance of a form from the basic look ?

2012-11-17 Thread Hector Magnanao
how do i change the background color, fonts, etc. ? --

[web2py] changing the look of a form

2012-11-17 Thread Hector Magnanao
how do you change the look of a form (i.e. background color, fonts, etc...) ? --

[web2py] counting lines of code and number of files

2012-11-12 Thread Hector Magnanao
1) How do you count the number of files that make up a web2py application ? 2) How do you count the lines of code for each file in question 1 ? I hope to write a perl script that can do this. --

[web2py] checking for an empty list

2012-10-24 Thread Hector Magnanao
Hi, How do you check if a list is empty in web2py ? Basically I need to check this logic: result = tm.get_stops(lat, lon); I want to see if result is empty or not. Thanks, --