X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/36f6233fd79390ad5af8a1532eac60a0ae57c825..0702033b4cbc642fc9f2742e9fed703d9dae9389:/apps/wiki/models.py diff --git a/apps/wiki/models.py b/apps/wiki/models.py index f8004813..a4dc7941 100644 --- a/apps/wiki/models.py +++ b/apps/wiki/models.py @@ -7,7 +7,8 @@ import re import os import vstorage from vstorage import DocumentNotFound -from wiki import settings +from wiki import settings, constants +from django.utils.translation import ugettext_lazy as _ from django.http import Http404 @@ -15,6 +16,9 @@ import logging logger = logging.getLogger("fnp.wiki") +STAGE_TAGS_RE = re.compile(r'^#stage-finished: (.*)$', re.MULTILINE) + + class DocumentStorage(object): def __init__(self, path): self.vstorage = vstorage.VersionedStorage(path) @@ -60,7 +64,14 @@ class DocumentStorage(object): return list(self.vstorage.all_pages()) def history(self, title): - return list(self.vstorage.page_history(title)) + def stage_desc(match): + stage = match.group(1) + return _("Finished stage: %s") % constants.DOCUMENT_STAGES_DICT[stage] + + for changeset in self.vstorage.page_history(title): + changeset['description'] = STAGE_TAGS_RE.sub(stage_desc, changeset['description']) + yield changeset + class Document(object): @@ -110,3 +121,7 @@ class Document(object): def getstorage(): return DocumentStorage(settings.REPOSITORY_PATH) + +# +# Django models +#