diff options
author | Caleb Forbes Davis V <caldavis@gmail.com> | 2011-07-12 22:26:10 -0500 |
---|---|---|
committer | Caleb Forbes Davis V <caldavis@gmail.com> | 2011-07-12 22:43:26 -0500 |
commit | 6f2e4585cc7475362205a9ddb0e69d6da2b6dc85 (patch) | |
tree | 17bef36aa8a5ee3d15785495884fb3768ded52e0 /mediagoblin/edit/forms.py | |
parent | 93e3468a2af92a623a659628a20605025cea9ca7 (diff) | |
download | mediagoblin-6f2e4585cc7475362205a9ddb0e69d6da2b6dc85.tar.lz mediagoblin-6f2e4585cc7475362205a9ddb0e69d6da2b6dc85.tar.xz mediagoblin-6f2e4585cc7475362205a9ddb0e69d6da2b6dc85.zip |
uses standard functions instead of form filters and fixes taglist default
- seems simpler to use the same tag field processing procedures on media
submit and edit, so now processing with a regular function instead of
a form filter. Filters run on form load and post by default.
- moved tags to sidebar
- taglist defaults to [] instead of None
- adds case sensitivity toggle
Diffstat (limited to 'mediagoblin/edit/forms.py')
-rw-r--r-- | mediagoblin/edit/forms.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index e13cfaa9..21c8509a 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -17,8 +17,6 @@ import wtforms -from mediagoblin.util import convert_to_tag_list - class EditForm(wtforms.Form): title = wtforms.TextField( |