Added css for "poezja_cyt".
try:
revision = request.GET['revision']
document = storage.get(name, revision)
try:
revision = request.GET['revision']
document = storage.get(name, revision)
- except (KeyError, DocumentNotFound) as e:
+ except (KeyError, DocumentNotFound):
raise http.Http404
access_time = datetime.now()
raise http.Http404
access_time = datetime.now()
if request.method == 'POST':
form = DocumentTextSaveForm(request.POST, prefix="textsave")
if request.method == 'POST':
form = DocumentTextSaveForm(request.POST, prefix="textsave")
if form.is_valid():
revision = form.cleaned_data['parent_revision']
if form.is_valid():
revision = form.cleaned_data['parent_revision']
-
- document = storage.get_or_404(name, revision)
+ document = storage.get_or_404(name, revision)
document.text = form.cleaned_data['text']
document.text = form.cleaned_data['text']
comment = form.cleaned_data['comment']
comment = form.cleaned_data['comment']
-
- if form.cleaned_data['stage_completed']:
- comment += '\n#stage-finished: %s\n' % form.cleaned_data['stage_completed']
-
- author = "%s <%s>" % (form.cleaned_data['author_name'], form.cleaned_data['author_email'])
-
- storage.put(document, author=author, comment=comment, parent=revision)
- document = storage.get(name)
-
+ if form.cleaned_data['stage_completed']:
+ comment += '\n#stage-finished: %s\n' % form.cleaned_data['stage_completed']
+ author = "%s <%s>" % (form.cleaned_data['author_name'], form.cleaned_data['author_email'])
+ storage.put(document, author=author, comment=comment, parent=revision)
+ document = storage.get(name)
return JSONResponse({
'text': document.plain_text if revision != document.revision else None,
'meta': document.meta(),
return JSONResponse({
'text': document.plain_text if revision != document.revision else None,
'meta': document.meta(),
images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)]
images.sort()
return JSONResponse(images)
images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)]
images.sort()
return JSONResponse(images)
- except (IndexError, OSError) as e:
+ except (IndexError, OSError):
logger.exception("Unable to fetch gallery")
raise http.Http404
logger.exception("Unable to fetch gallery")
raise http.Http404
try:
return tree_search(tip, self._title_to_file(title))
try:
return tree_search(tip, self._title_to_file(title))
- except (IndexError, LookupError) as e:
+ except (IndexError, LookupError):
logging.info("XML file not found, trying plain")
try:
return tree_search(tip, self._title_to_file(title, type=''))
logging.info("XML file not found, trying plain")
try:
return tree_search(tip, self._title_to_file(title, type=''))
- except (IndexError, LookupError) as e:
+ except (IndexError, LookupError):
raise DocumentNotFound(title)
def page_history(self, title):
raise DocumentNotFound(title)
def page_history(self, title):
vertical-align: text-bottom;
}
vertical-align: text-bottom;
}
background-color: black;
opacity: 0.4;
}
background-color: black;
opacity: 0.4;
}
+
+.poezja_cyt {
+ margin:1.5em 2em 0;
+ font-size:0.875em
+}