Ticket #175: issue_467.patch

File issue_467.patch, 1.5 KB (added by Shawn Khan, 13 years ago)

issue_467.patch

  • mediagoblin/edit/forms.py

    From a508e7c4133ef8b511fa736c745db3b2a97d264e Mon Sep 17 00:00:00 2001
    From: Shawn Khan <shawn@Shawn-Khans-MacBook-Pro.local>
    Date: Wed, 17 Aug 2011 13:49:29 -0400
    Subject: [PATCH] Changed the title of the Tags area to be more descriptive
     and have people be aware of comma separated.
    
    ---
     mediagoblin/edit/forms.py   |    2 +-
     mediagoblin/submit/forms.py |    4 ++--
     2 files changed, 3 insertions(+), 3 deletions(-)
    
    diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py
    index 2f3ed20..8a65939 100644
    a b class EditForm(wtforms.Form):  
    3030        [wtforms.validators.Required(message=_("The slug can't be empty"))])
    3131    description = wtforms.TextAreaField('Description of this work')
    3232    tags = wtforms.TextField(
    33         _('Tags'),
     33        _('Tags for your media that are comma separated'),
    3434        [tag_length_validator])
    3535
    3636class EditProfileForm(wtforms.Form):
  • mediagoblin/submit/forms.py

    diff --git a/mediagoblin/submit/forms.py b/mediagoblin/submit/forms.py
    index 4519b05..3d36c08 100644
    a b class SubmitStartForm(wtforms.Form):  
    2828        [wtforms.validators.Length(min=0, max=500)])
    2929    description = wtforms.TextAreaField('Description of this work')
    3030    tags = wtforms.TextField(
    31         _('Tags'),
    32         [tag_length_validator])
     31        _('Tags for your media that are comma separated'),
     32        [tag_length_validator])
     33 No newline at end of file