X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5b8b74cc22768b7d3144287f5bd9111479179383..22562ad88cc1bfc34e22ff02dec66fb2e975e7ac:/apps/wiki/models.py diff --git a/apps/wiki/models.py b/apps/wiki/models.py index 3e892adc..ec9ded50 100644 --- a/apps/wiki/models.py +++ b/apps/wiki/models.py @@ -9,6 +9,7 @@ import os import vstorage from vstorage import DocumentNotFound from wiki import settings, constants +from slughifi import slughifi from django.utils.translation import ugettext_lazy as _ from django.http import Http404 @@ -35,7 +36,7 @@ def normalize_name(name): >>> normalize_name("gąska".decode('utf-8')) u'g\u0105ska' """ - return name.translate(_PCHARS_DICT).lower() + return unicode(name).translate(_PCHARS_DICT) STAGE_TAGS_RE = re.compile(r'^#stage-finished: (.*)$', re.MULTILINE) @@ -96,6 +97,9 @@ class DocumentStorage(object): changeset['description'] = STAGE_TAGS_RE.sub(stage_desc, changeset['description']) yield changeset + def doc_meta(self, title, revision=None): + return self.vstorage.page_meta(title, revision) + class Document(object): @@ -127,7 +131,7 @@ class Document(object): except ValueError: continue - gallery = result.get('gallery', self.name.replace(' ', '_')) + gallery = result.get('gallery', slughifi(self.name.replace(' ', '_'))) if gallery.startswith('/'): gallery = os.path.basename(gallery)