rudimentary file uploading. Saves as sha1 like git objects. code is in lib. needs...
[zzz-floof.git] / floof / lib / helpers.py
1 """Helper functions
2
3 Consists of functions to typically be used within templates, but also
4 available to Controllers. This module is available to templates as 'h'.
5 """
6 # Import helpers as desired, or define your own, ie:
7 #from webhelpers.html.tags import checkbox, password
8 from webhelpers import *
9 from routes import url_for, redirect_to
10
11 from webhelpers.html.tags import *
12 from webhelpers.html import literal
13 from webhelpers.pylonslib import Flash
14 import sqlalchemy.types as types
15 flash = Flash()