-class DocumentStorage(object):
- def __init__(self, path):
- self.vstorage = vstorage.VersionedStorage(path)
-
- def get(self, name, revision = None):
- if revision is None:
- text = self.vstorage.page_text(name)
- else:
- text = self.vstorage.revision_text(name, revision)
- return Document(self, name = name, text = text)
-
- def get_or_404(self, *args, **kwargs):
- try:
- return self.get(*args, **kwargs)
- except DocumentNotFound:
- raise Http404
-
- def put(self, document, author, comment, parent):
- self.vstorage.save_text(
- title = document.name,
- text = document.text,
- author = author,
- comment = comment,
- parent = parent)
-
- def delete(self, name, author, comment):
- self.vstorage.delete_page(name, author, comment)
-
- def all(self):
- return list(self.vstorage.all_pages())
-
- def history(self, title):
- return list(self.vstorage.page_history(title))
-
- def _info(self, name):
- return self.vstorage.page_meta(name)
-
-
-class Document(object):
- META_REGEX = re.compile(r'\s*<!--\s(.*?)-->', re.DOTALL | re.MULTILINE)
-
- def __init__(self, storage, **kwargs):
- self.storage = storage
- for attr, value in kwargs.iteritems():
- setattr(self, attr, value)
-
- def revision(self):
- try:
- return self.storage._info(self.name)[0]
- except DocumentNotFound:
- return -1
-
- def add_tag(self, tag):
- """ Add document specific tag """
- logger.debug("Adding tag %s to doc %s version %d", tag, self.name, self.revision)
- self.storage.vstorage.add_page_tag(self.name, self.revision, tag)
-
- @property
- def plain_text(self):
- return re.sub(self.META_REGEX, '', self.text, 1)