view gpp/downloads/forms.py @ 12:f408971657b9

Changed the shoutbox: posts are now made by Ajax. The smiley farm is loaded only on demand. jQuery is now in the base template. May add scrolling later.
author Brian Neal <bgneal@gmail.com>
date Wed, 15 Apr 2009 01:13:17 +0000
parents b6263ac72052
children c515b7401078
line wrap: on
line source
"""
Forms for the downloads application.
"""
import os

from django import forms
from django.conf import settings

from downloads.models import Download
from downloads.models import AllowedExtension


class SearchForm(forms.Form):
    """Downloads search form."""
    text = forms.CharField(max_length=30)

    def query(self):
        return self.cleaned_data['text']


class AddDownloadForm(forms.ModelForm):
    """Form to allow adding downloads."""

    def clean_file(self):
        file = self.cleaned_data['file']
        ext = os.path.splitext(file.name)[1]
        allowed_exts = AllowedExtension.objects.get_extension_list()
        if ext in allowed_exts:
            return file
        raise forms.ValidationError('The file extension "%s" is not allowed.' % ext)

    class Meta:
        model = Download
        fields = ('title', 'category', 'description', 'file')
        
    class Media:
        css = {
            'all': settings.GPP_THIRD_PARTY_CSS['markitup'],
        }
        js = settings.GPP_THIRD_PARTY_JS['markitup'] + \
            ('js/downloads/add.js', )