root/trunk/examples.tac

Revision 277, 249 bytes (checked in by matt, 2 years ago)

Make Form construction more convenient by adding (consisten) addField and
addGroup methods to the Form and Group as well as making stan-style
construction possible.

Line 
1 from twisted.application import internet, service
2 from nevow import appserver
3 from formal.examples import main
4
5 application = service.Application('examples')
6 service = internet.TCPServer(8000, main.makeSite())
7 service.setServiceParent(application)
8
Note: See TracBrowser for help on using the browser.