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
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):
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)