|
|
Log in / Subscribe / Register

web2py 1.64.0 released

From:  Massimo Di Pierro <MDiPierro-AT-cs.depaul.edu>
To:  <python-announce-AT-python.org>
Subject:  web2py 1.64.0
Date:  Thu, 11 Jun 2009 12:13:42 -0500
Message-ID:  <211CE7E6-A90F-4710-9C51-F2194247238F@cs.depaul.edu>

web2py 1.64.0 is out

     http://www.web2py.com

new features:

- full Jython support, including xzJDBC for sqlite and postgresql.

    install jython and run: jython web2py.py -h

- models are 2.5x faster

- better LDAP support

- custom forms

Example:

     #in model
     db.define_table('person',SQLField('name')

     # in controller
     def index(): return dict(form=crud.create(db.person))

     # instead of usual view
     {{=form}}

     # now you can use a custom view:
     {{=form.custom.begin}}
     {{=form.cusom.label.name}}: {{=form.custom.widget.name}}
     {{=form.custom.submit}}
     {{=form.custom.end}}


-- 
http://mail.python.org/mailman/listinfo/python-announce-list

        Support the Python Software Foundation:
        http://www.python.org/psf/donations.html




to post comments


Copyright © 2009, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds