annotate membermap/forms.py @ 693:ad69236e8501

For issue #52, update many 3rd party Javascript libraries. Updated to jquery 1.10.2, jquery ui 1.10.3. This broke a lot of stuff. - Found a newer version of the jquery cycle all plugin (3.0.3). - Updated JPlayer to 2.4.0. - Updated to MarkItUp 1.1.14. This also required me to add multiline attributes set to true on various buttons in the markdown set. - As per a stackoverflow post, added some code to get multiline titles in a jQuery UI dialog. They removed that functionality but allow you to put it back. Tweaked the MarkItUp preview CSS to show blockquotes in italic. Did not update TinyMCE at this time. I'm not using the JQuery version and this version appears to work ok for now. What I should do is make a repo for MarkItUp and do a vendor branch thing so I don't have to futz around diffing directories to figure out if I'll lose changes when I update.
author Brian Neal <bgneal@gmail.com>
date Wed, 04 Sep 2013 19:55:20 -0500
parents ee87ea74d46b
children 21c592cac71c
rev   line source
gremmie@1 1 """
gremmie@1 2 Forms for the member map application.
gremmie@1 3 """
gremmie@1 4 from django import forms
bgneal@6 5 from django.conf import settings
bgneal@6 6
gremmie@1 7 from membermap.models import MapEntry
gremmie@1 8
gremmie@1 9
gremmie@1 10 class MapEntryForm(forms.ModelForm):
bgneal@312 11 location = forms.CharField(required=True,
bgneal@133 12 widget=forms.TextInput(attrs={'size': 64, 'maxlength': 255}))
bgneal@312 13 message = forms.CharField(required=False,
bgneal@133 14 widget=forms.Textarea(attrs={'class': 'markItUp smileyTarget'}))
gremmie@1 15
gremmie@1 16 class Meta:
gremmie@1 17 model = MapEntry
gremmie@1 18 fields = ('location', 'message')
gremmie@1 19
gremmie@1 20 class Media:
gremmie@1 21 css = {
bgneal@133 22 'all': (settings.GPP_THIRD_PARTY_CSS['markitup'] +
bgneal@133 23 settings.GPP_THIRD_PARTY_CSS['jquery-ui'])
gremmie@1 24 }
bgneal@133 25 js = (settings.GPP_THIRD_PARTY_JS['markitup'] +
bgneal@133 26 settings.GPP_THIRD_PARTY_JS['jquery-ui'])
gremmie@1 27