fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Bumped up python version in the template.
[redakcja.git]
/
apps
/
wiki
/
models.py
diff --git
a/apps/wiki/models.py
b/apps/wiki/models.py
index
22a8119
..
e4ac728
100644
(file)
--- a/
apps/wiki/models.py
+++ b/
apps/wiki/models.py
@@
-1,38
+1,51
@@
# -*- coding: utf-8 -*-
#
# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
# -*- coding: utf-8 -*-
#
# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
import re
#
import re
+import os
import vstorage
from vstorage import DocumentNotFound
from wiki import settings
import vstorage
from vstorage import DocumentNotFound
from wiki import settings
+from django.http import Http404
+
+import logging
+logger = logging.getLogger("fnp.wiki")
+
+
class DocumentStorage(object):
def __init__(self, path):
self.vstorage = vstorage.VersionedStorage(path)
class DocumentStorage(object):
def __init__(self, path):
self.vstorage = vstorage.VersionedStorage(path)
- def get(self, name, revision
=
None):
+ def get(self, name, revision
=
None):
if revision is None:
text = self.vstorage.page_text(name)
else:
text = self.vstorage.revision_text(name, revision)
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)
+ 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(
def put(self, document, author, comment, parent):
self.vstorage.save_text(
- title
=
document.name,
- text
= document.text,
- author
= author,
- comment
= comment,
- parent
=
parent)
+ 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 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 history(self, title):
return list(self.vstorage.page_history(title))
@@
-54,6
+67,11
@@
class Document(object):
except DocumentNotFound:
return - 1
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)
@property
def plain_text(self):
return re.sub(self.META_REGEX, '', self.text, 1)
@@
-68,21
+86,26
@@
class Document(object):
k, v = line.split(':', 1)
result[k.strip()] = v.strip()
except ValueError:
k, v = line.split(':', 1)
result[k.strip()] = v.strip()
except ValueError:
- continue
-
- if 'gallery' not in result:
- result['gallery'] = (settings.GALLERY_URL + self.name).replace(' ', '_')
-
+ continue
+
+ gallery = result.get('gallery', self.name.replace(' ', '_'))
+
+ if gallery.startswith('/'):
+ gallery = os.path.basename(gallery)
+
+ result['gallery'] = gallery
+
if 'title' not in result:
if 'title' not in result:
- result['title'] = self.name.title()
+ result['title'] = self.name.title()
return result
return result
-
+
def info(self):
return dict(zip(
('revision', 'last_update', 'last_comitter', 'commit_message'),
def info(self):
return dict(zip(
('revision', 'last_update', 'last_comitter', 'commit_message'),
- self.storage._info(self.name)
- ))
+ self.storage._info(self.name),
+ ))
+
def getstorage():
return DocumentStorage(settings.REPOSITORY_PATH)
def getstorage():
return DocumentStorage(settings.REPOSITORY_PATH)