annotate gpp/weblinks/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
parents 7e8d2dda99e3
children d424b8bae71d
rev   line source
gremmie@1 1 """
gremmie@1 2 Forms for the weblinks application.
gremmie@1 3 """
gremmie@1 4
gremmie@1 5 from django import forms
bgneal@204 6 from weblinks.models import PendingLink, Link
gremmie@1 7
gremmie@1 8
gremmie@1 9 class AddLinkForm(forms.ModelForm):
gremmie@1 10 title = forms.CharField(widget = forms.TextInput(attrs = {'size': 52}))
gremmie@1 11 url = forms.CharField(widget = forms.TextInput(attrs = {'size': 52}))
gremmie@1 12
gremmie@1 13 def clean_url(self):
gremmie@1 14 new_url = self.cleaned_data['url']
gremmie@1 15 try:
gremmie@1 16 Link.objects.get(url__iexact = new_url)
gremmie@1 17 except Link.DoesNotExist:
gremmie@1 18 return new_url
gremmie@1 19 raise forms.ValidationError('That link already exists in our database.')
gremmie@1 20
gremmie@1 21 class Meta:
bgneal@204 22 model = PendingLink
bgneal@204 23 exclude = ('user', 'date_added')