Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fun-apps / forms.py
Size: Mime:
# -*- coding: utf-8 -*-
from django import forms
from django.conf import global_settings
from django.utils.translation import ugettext as _, ugettext_lazy


class VideoForm(forms.Form):
    video_id = forms.CharField(max_length=255, widget=forms.HiddenInput)

    def formatted_errors(self):
        if not self.errors:
            return ""
        errors = []
        for name, field in self.fields.items():
            for error in self[name].errors:
                errors.append("<li>{}: {}</li>".format(field.label, error))

        return "<ul>" + "\n".join(errors) + "</ul>"


class SubtitleForm(VideoForm):
    # We don't support language variations such as 'en-gb'
    SUPPORTED_LANGUAGES = [
        (code, ugettext_lazy(lang)) for code, lang in global_settings.LANGUAGES if len(code) == 2
    ]

    # Other formats supported by Dailymotion are 'STL', 'TT', but we don't support them for now.
    uploaded_file = forms.FileField(label=_("Subtitle file (SRT files only)"))
    language = forms.ChoiceField(label=_("Subtitle language"), choices=SUPPORTED_LANGUAGES, initial='fr')


class ThumbnailForm(VideoForm):
    uploaded_file = forms.FileField(label=_("Thumbnail file"))