annotate gpp/membermap/forms.py @ 265:1ba2c6bf6eb7

Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.
author Brian Neal <bgneal@gmail.com>
date Fri, 24 Sep 2010 02:12:09 +0000 (2010-09-24)
parents c515b7401078
children 88b2b9cb8c1f
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@133 11 location = forms.CharField(required=True,
bgneal@133 12 widget=forms.TextInput(attrs={'size': 64, 'maxlength': 255}))
bgneal@133 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