1 # -*- coding: utf-8 -*-
3 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 from django import forms
7 from django.utils.translation import ugettext_lazy as _
9 from catalogue.models import Chunk
12 class DocumentPubmarkForm(forms.Form):
14 Form for marking revisions for publishing.
17 id = forms.CharField(widget=forms.HiddenInput)
18 publishable = forms.BooleanField(required=False, initial=True, label=_('Publishable'))
19 revision = forms.IntegerField(widget=forms.HiddenInput)
22 class DocumentTextSaveForm(forms.Form):
24 Form for saving document's text:
26 * parent_revision - revision which the modified text originated from.
27 * comment - user's verbose comment; will be used in commit.
28 * stage_completed - mark this change as end of given stage.
32 parent_revision = forms.IntegerField(widget=forms.HiddenInput, required=False)
33 text = forms.CharField(widget=forms.HiddenInput)
35 author_name = forms.CharField(
38 help_text=_(u"Your name"),
41 author_email = forms.EmailField(
43 label=_(u"Author's email"),
44 help_text=_(u"Your email address, so we can show a gravatar :)"),
47 comment = forms.CharField(
49 widget=forms.Textarea,
50 label=_(u"Your comments"),
51 help_text=_(u"Describe changes you made."),
54 stage_completed = forms.ModelChoiceField(
55 queryset=Chunk.tag_model.objects.all(),
57 label=_(u"Completed"),
58 help_text=_(u"If you completed a life cycle stage, select it."),
61 publishable = forms.BooleanField(
62 required=False, initial=False,
63 label=_('Publishable'),
64 help_text=_(u"Mark this revision as publishable."))
66 for_cybernauts = forms.BooleanField(
67 required=False, initial=False,
68 label=_(u"For Cybernauts"),
69 help_text=_(u"Mark this document for Cybernauts.")
72 def __init__(self, *args, **kwargs):
73 self.user = kwargs.pop('user')
74 self.chunk = kwargs.pop('chunk')
75 super(DocumentTextSaveForm, self).__init__(*args, **kwargs)
76 if self.user and self.user.is_authenticated():
77 self.fields['author_name'].required = False
78 self.fields['author_email'].required = False
79 self.fields['for_cybernauts'].initial = self.chunk.book.for_cybernauts
80 self.fields['publishable'].initial = self.chunk.head.publishable
83 if self.user.is_authenticated():
87 text = self.cleaned_data['text']
88 parent_revision = self.cleaned_data['parent_revision']
89 if parent_revision is not None:
90 parent = self.chunk.at_revision(parent_revision)
93 stage = self.cleaned_data['stage_completed']
94 tags = [stage] if stage else []
95 publishable = self.cleaned_data['publishable'] and self.user.has_perm('catalogue.can_pubmark')
100 description=self.cleaned_data['comment'],
102 author_name=self.cleaned_data['author_name'],
103 author_email=self.cleaned_data['author_email'],
104 publishable=publishable)
105 self.chunk.book.for_cybernauts = self.cleaned_data['for_cybernauts']
106 self.chunk.book.save()
109 class DocumentTextRevertForm(forms.Form):
111 Form for reverting document's text:
113 * revision - revision to revert to.
114 * comment - user's verbose comment; will be used in commit.
118 revision = forms.IntegerField(widget=forms.HiddenInput)
120 author_name = forms.CharField(
123 help_text=_(u"Your name"),
126 author_email = forms.EmailField(
128 label=_(u"Author's email"),
129 help_text=_(u"Your email address, so we can show a gravatar :)"),
132 comment = forms.CharField(
134 widget=forms.Textarea,
135 label=_(u"Your comments"),
136 help_text=_(u"Describe the reason for reverting."),