X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/f02d58db2f0a5f06c38d669c4b4c4fff95e55395..857f946b0a4bfe2b74e7aeacbe1feace721dae42:/apps/explorer/forms.py diff --git a/apps/explorer/forms.py b/apps/explorer/forms.py index 48b410b5..1111b26f 100644 --- a/apps/explorer/forms.py +++ b/apps/explorer/forms.py @@ -7,7 +7,7 @@ from explorer import models class BookForm(forms.Form): content = forms.CharField(widget=forms.Textarea) - message = forms.CharField(required=False) + commit_message = forms.CharField(required=False) class ImageFoldersForm(forms.Form): folders = forms.ChoiceField(required=False) @@ -61,5 +61,5 @@ class DublinCoreForm(forms.Form): old_rdf = doc.getroottree().find('//{http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF') old_rdf.getparent().remove(old_rdf) doc.insert(0, rdf) - repository.add_file(path, unicode(etree.tostring(doc), 'utf-8')) + repository.add_file(path, etree.tostring(doc, pretty_print=True, encoding=unicode))