X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/d6c4fb901ad64f828287556a26daab52449dab32..02a98d2af6f1fabf567b575c5f2d818688af1594:/apps/wiki/models.py diff --git a/apps/wiki/models.py b/apps/wiki/models.py index 94010419..22a81196 100644 --- a/apps/wiki/models.py +++ b/apps/wiki/models.py @@ -1,3 +1,8 @@ +# -*- coding: utf-8 -*- +# +# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# import re import vstorage from vstorage import DocumentNotFound @@ -63,9 +68,21 @@ class Document(object): k, v = line.split(':', 1) result[k.strip()] = v.strip() except ValueError: - continue + continue + + if 'gallery' not in result: + result['gallery'] = (settings.GALLERY_URL + self.name).replace(' ', '_') + + if 'title' not in result: + result['title'] = self.name.title() return result + + def info(self): + return dict(zip( + ('revision', 'last_update', 'last_comitter', 'commit_message'), + self.storage._info(self.name) + )) -# 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)