[web2py] Re: Getting out from under web2py.py 's environment building magic.

2010-03-10 Thread Richard
not if it only USES the DAL, and the client has to install web2py themselves. even that is frustrating. Most of my clients want a complete solution and aren't going to like manually installing some package. On Mar 10, 3:33 am, Thadeus Burgess thade...@thadeusb.com wrote: NO. Your

Re: [web2py] Re: Getting out from under web2py.py 's environment building magic.

2010-03-10 Thread Kuba Kucharski
from the book: The web2py license also includes a commercial exception: You may distribute an application you developed with web2py together with an unmodified official binary distribution of web2py, as downloaded from the official website, as long as you make it clear in the license of your

Re: [web2py] Re: Getting out from under web2py.py 's environment building magic.

2010-03-09 Thread Timothy Farrell
Also remember that web2py is GPL. So your application becomes GPL (if it wasn't already) by importing the DAL. -tim On 3/5/2010 1:34 PM, compassiontara wrote: On Mar 5, 6:17 am, mdipierromdipie...@cs.depaul.edu wrote: On Mar 5, 1:33 am, compassiontarat...@birl.org wrote: I'll

Re: [web2py] Re: Getting out from under web2py.py 's environment building magic.

2010-03-09 Thread Thadeus Burgess
NO. Your application only becomes GPL if you INCLUDE(ie: distribute) the DAL with your program, not if it only USES the DAL, and the client has to install web2py themselves. -Thadeus On Tue, Mar 9, 2010 at 7:52 AM, Timothy Farrell tfarr...@swgen.com wrote: Also remember that web2py is GPL.

[web2py] Re: Getting out from under web2py.py 's environment building magic.

2010-03-05 Thread mdipierro
On Mar 5, 1:33 am, compassiontara t...@birl.org wrote: I'll probably get flamed for talking about this... Hope not. You have a very good example. Just as a side, you do not necessarily need to copy web2py for the script to work, just add 'gluon' to sys.path. -- You received this message

Re: [web2py] Re: Getting out from under web2py.py 's environment building magic.

2010-03-05 Thread Thadeus Burgess
You can also execute any script inside of web2py's environment, if you need your models for a script and a website, this way you can keep it DRY. python web2py.py -S appname -M -R /path/to/script.py But if you arn't using web2py, then your method is a sure fire way to getting the glory of the

[web2py] Re: Getting out from under web2py.py 's environment building magic.

2010-03-05 Thread compassiontara
On Mar 5, 6:17 am, mdipierro mdipie...@cs.depaul.edu wrote: On Mar 5, 1:33 am, compassiontara t...@birl.org wrote: I'll probably get flamed for talking about this... Hope not. You have a very good example. Just as a side, you do not necessarily need to copy web2py for the script to work,