X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/85b88321baaf99ad7133cbd195018d7ed1cab165..aa021ad04c81969c58558343fb1ff2409c82563e:/apps/wiki/models.py diff --git a/apps/wiki/models.py b/apps/wiki/models.py index ecf7837d..8ec4d32c 100644 --- a/apps/wiki/models.py +++ b/apps/wiki/models.py @@ -15,7 +15,12 @@ class DocumentStorage(object): return Document(self, name = name, text = text) def put(self, document, author, comment, parent): - self.vstorage.save_text(document.name, document.text, author, comment, parent) + self.vstorage.save_text( + title = document.name, + text = document.text, + author = author, + comment = comment, + parent = parent) def delete(self, name, author, comment): self.vstorage.delete_page(name, author, comment) @@ -62,5 +67,5 @@ class Document(object): return result -# Every time somebody says "let's have a global variable", God kills a kitten. -storage = DocumentStorage(settings.REPOSITORY_PATH) +def getstorage(): + return DocumentStorage(settings.REPOSITORY_PATH)