X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1c4c468783e5f380324c29ebc3b2c452da8cc2a0..507752b933a466dd8e962c0e34d0ec74d6de55b7:/apps/wiki/forms.py diff --git a/apps/wiki/forms.py b/apps/wiki/forms.py index 010ad723..d526bfc6 100644 --- a/apps/wiki/forms.py +++ b/apps/wiki/forms.py @@ -7,6 +7,7 @@ from django import forms from django.utils.translation import ugettext_lazy as _ from catalogue.models import Chunk +from catalogue.xml_tools import remove_empty_elements class DocumentPubmarkForm(forms.Form): @@ -70,13 +71,45 @@ class DocumentTextSaveForm(forms.Form): ) def __init__(self, *args, **kwargs): - user = kwargs.pop('user') - chunk = kwargs.pop('chunk') + self.user = kwargs.pop('user') + self.chunk = kwargs.pop('chunk') super(DocumentTextSaveForm, self).__init__(*args, **kwargs) - if user and user.is_authenticated(): + 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 = chunk.book.for_cybernauts + 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):