+
+ def add_tag(self, tag, revision, author):
+ """ Add document specific tag """
+ logger.debug("Adding tag %s to doc %s version %d", tag, self.name, revision)
+ self.storage.vstorage.add_page_tag(self.name, revision, tag, user=author)
+
+ @property
+ def plain_text(self):
+ return re.sub(self.META_REGEX, '', self.text, 1)
+
+ def meta(self):
+ result = {}
+
+ m = re.match(self.META_REGEX, self.text)
+ if m:
+ for line in m.group(1).split('\n'):
+ try:
+ k, v = line.split(':', 1)
+ result[k.strip()] = v.strip()
+ except ValueError:
+ continue
+
+ gallery = result.get('gallery', self.name.replace(' ', '_'))
+
+ if gallery.startswith('/'):
+ gallery = os.path.basename(gallery)
+
+ result['gallery'] = gallery
+
+ if 'title' not in result:
+ result['title'] = self.name.title()
+
+ return result
+
+ def info(self):
+ return self.storage.vstorage.page_meta(self.name, self.revision)