- document = kwargs.pop('instance', None)
- super(DocumentForm, self).__init__(*args, **kwargs)
- if document:
- self.fields['name'].initial = document.name
- self.fields['text'].initial = document.text
- self.fields['revision'].initial = document.revision()
-
- def save(self, document_author = 'anonymous'):
- storage = getstorage()
-
- document = Document(storage, name=self.cleaned_data['name'], text=self.cleaned_data['text'])
-
- storage.put(document,
- author = document_author,
- comment = self.cleaned_data['comment'],
- parent =self.cleaned_data['revision'] )
-
- return storage.get(self.cleaned_data['name'])
+ self.user = kwargs.pop('user')
+ self.chunk = kwargs.pop('chunk')
+ super(DocumentTextSaveForm, self).__init__(*args, **kwargs)
+ if self.user and self.user.is_authenticated():
+ self.fields['author_name'].required = False
+ self.fields['author_email'].required = False
+ self.fields['for_cybernauts'].initial = self.chunk.book.for_cybernauts
+ self.fields['publishable'].initial = self.chunk.head.publishable
+
+ def clean_text(self):
+ text = self.cleaned_data.get('text', '')
+ # remove_empty_elements returns None on SyntaxError or when there's no change
+ return remove_empty_elements(text) or text
+
+ def save(self):
+ if self.user.is_authenticated():
+ author = self.user
+ else:
+ author = None
+ text = self.cleaned_data['text']
+ parent_revision = self.cleaned_data['parent_revision']
+ if parent_revision is not None:
+ parent = self.chunk.at_revision(parent_revision)
+ else:
+ parent = None
+ stage = self.cleaned_data['stage_completed']
+ tags = [stage] if stage else []
+ publishable = self.cleaned_data['publishable'] and self.user.has_perm('catalogue.can_pubmark')
+ self.chunk.commit(
+ author=author,
+ text=text,
+ parent=parent,
+ description=self.cleaned_data['comment'],
+ tags=tags,
+ author_name=self.cleaned_data['author_name'],
+ author_email=self.cleaned_data['author_email'],
+ publishable=publishable)
+ self.chunk.book.for_cybernauts = self.cleaned_data['for_cybernauts']
+ self.chunk.book.save()
+
+
+class DocumentTextRevertForm(forms.Form):
+ """
+ Form for reverting document's text:
+
+ * revision - revision to revert to.
+ * comment - user's verbose comment; will be used in commit.
+
+ """
+
+ revision = forms.IntegerField(widget=forms.HiddenInput)
+
+ author_name = forms.CharField(
+ required=False,
+ label=_(u"Author"),
+ help_text=_(u"Your name"),
+ )
+
+ author_email = forms.EmailField(
+ required=False,
+ label=_(u"Author's email"),
+ help_text=_(u"Your email address, so we can show a gravatar :)"),
+ )