*2010.12.29 08:14:40 web forms html input submit

I don't remember the syntax for HTML forms. Inevitably, when I'm starting a project, I need to go look up the basics. Then, I usually reuse the template that I come up with and don't look back. Here are some notes on those basics...

there is the python module webhelpers that will help in generating form markup, if you like. | http://pypi.python.org/pypi/WebHelpers | http://webhelpers.groovie.org/

This also turns out to be a good reference for common html tags, even if you don't want to generate them: | http://webhelpers.groovie.org/modules/html/tags.html

 

*2009.03.06 15:43:26 python pylons forms toscawidgets
toscawidgets - Google Search
ToscaWidgets: Test Driven Modular Ajax - PyCon 2009 - Chicago - A Conference for the Python Community
ToscaWidgets
Tutorials w.forms v0.9.3dev-20090212 documentation
Pylons oscaWidgets v0.9.5dev-20090212 documentation
Building a Form with tw.forms w.forms v0.9.3dev-20090212 documentation
Using tw.forms with Pylons. Part 1 w.forms v0.9.3dev-20090212 documentation
SQLAlchemy & Elixir w.forms v0.9.3dev-20090212 documentation
ToscaWidgets Cookbook G2 v2.0b6 documentation
Adding Captcha to your Form G2 v2.0b6 documentation
reCAPTCHA: Stop Spam, Read Books
OpenLayers Map Widget G2 v2.0b6 documentation
ToscaWidgets - Documentation
Welcome to tw.dynformsdocumentation! w.dynforms v0.9.0 documentation
Tutorial w.dynforms v0.9.0 documentation
sqlalchemy-migrate - Google Code
miruku rac
miruku vs sqlalchemy-migrate - Google Search
urssus - Google Code
Lateral Opinion
rawdog
WidgetBrowserdocumentation idgetBrowser v0.1 documentation
Installing the WidgetBrowser idgetBrowser v0.1 documentation
Using the WidgetBrowser idgetBrowser v0.1 documentation
ToscaWidgets Documentation oscaWidgets v0.9.5dev-20090212 documentation
ToscaWidgets Documentation oscaWidgets v0.9.5dev-20090212 documentation
tw.forms.fields w.forms v0.9.3dev-20090212 documentation
Building a Form with tw.forms w.forms v0.9.3dev-20090212 documentation
SQLAlchemy & Elixir w.forms v0.9.3dev-20090212 documentation
FAQ oscaWidgets rac w.forms
ToscaWidgets Documentation oscaWidgets v0.9.5dev-20090212 documentation
Raw WSGI oscaWidgets v0.9.5dev-20090212 documentation
tw.api oscaWidgets v0.9.5dev-20090212 documentation
toscawidgets date field - Google Search
Using Tosc

 

*2009.02.23 15:33:21 python pylons forms
*2009.02.23 11:09:54 python pylons forms
*2009.02.23 09:43:36 python pylons forms
pylons form generation - Google Search
Jonathan Ellis's Programming Blog - Spyced: My half-baked thoughts on Python web frameworks
techspot.zzzeek.org Blog Archive Better Form Generation with Mako and Pylons
Form generation with Mako - Pylons Cookbook - PythonWeb
techspot.zzzeek.org Blog Archive Better Form Generation with Mako and Pylons
Daylife - A New Way to Explore the World
Jonathan Ellis's Programming Blog - Spyced: FormAlchemy 1.0
Welcome // Werkzeug

 

*2009.01.09 08:27:43 python pylons forms file upload
pylons upload - Google Search
Hacking Pylons for handling large file upload - Pylons Cookbook - PythonWeb
A Better Way To Limit File Upload Size - Pylons Cookbook - PythonWeb
File Upload Progress Indicator for Pylons in Launchpad
Home - Pylons Official Docs - PythonWeb
Site Search - PythonWeb
Using twForms with Pylons. Part 1 - ToscaWidgets - PythonWeb
Form Handling - Pylons Official Docs - PythonWeb
ToscaWidgets

 

*2008.09.15 13:44 python pylons template forms

to start working with forms, you will new to methods to a class... one to show the form, one to handle the form.

you will also need to import the validate code. (formencode)

layouts and other form validation can be stored with other model code (I'm torn if that is more UI or model validation... pylons seems to go with model validation).

Pylons comes with an easy to use validate decorator, imported by default in your lib/base.py. Using it in your controller is pretty straight-forward:

#this gets the validate decorator. from pylons.decorators import *

 

*2008.09.15 13:44 python pylons new_pylons_app forms

to start working with forms, you will new to add methods to a class... one to show the form, one to handle the form.

you will also need to import the validate code. (formencode)

layouts and other form validation can be stored with other model code (I'm torn if that is more UI or model validation... pylons seems to go with model validation).

Pylons comes with an easy to use validate decorator, imported by default in your lib/base.py. Using it in your controller is pretty straight-forward:

#this gets the validate decorator. from pylons.decorators import *