2 # -*- coding: utf-8 -*-
4 # Copyright 1999, 2000 Martin Pool <mbp@humbug.org.au>
5 # Copyright 2002 Gerardo Poggiali
6 # Copyright 2007, 2008, 2009 Bernie Innocenti <bernie@codewiz.org>
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 __version__ = '4.0-' + '$Id$'[4:11]
23 from time import clock
27 import cgi, sys, os, re, errno, stat
29 image_ext = 'png|gif|jpg|jpeg|bmp|ico'
30 video_ext = "ogg|ogv|oga" # Not supported by Firefox 3.5: mkv|mpg|mpeg|mp4|avi|asf|flv|wmv|qt
31 image_re = re.compile(r".*\.(" + image_ext + "|" + video_ext + ")", re.IGNORECASE)
32 video_re = re.compile(r".*\.(" + video_ext + ")", re.IGNORECASE)
33 # FIXME: we accept stuff like foo/../bar and we shouldn't
34 file_re = re.compile(r"([A-Za-z0-9_\-][A-Za-z0-9_\.\-/]*)")
35 url_re = re.compile(r"[a-z]{3,8}://[^\s'\"]+\S")
36 ext_re = re.compile(r"\.([^\./]+)$")
38 # CGI stuff ---------------------------------------------------------
40 return os.environ.get('SCRIPT_NAME', '')
43 path_info = os.environ.get('PATH_INFO', '')
44 if len(path_info) and path_info[0] == '/':
45 return path_info[1:] or 'FrontPage'
47 return os.environ.get('QUERY_STRING', '') or 'FrontPage'
49 def privileged_path():
50 return privileged_url or script_name()
53 user = os.environ.get('REMOTE_USER', '')
54 if user is None or user == '' or user == 'anonymous':
55 user = 'AnonymousCoward'
59 return os.environ.get('REMOTE_ADDR', '')
61 def get_hostname(addr):
63 from socket import gethostbyaddr
64 return gethostbyaddr(addr)[0] + ' (' + addr + ')'
68 def is_external_url(pathname):
69 return (url_re.match(pathname) or pathname.startswith('/'))
71 def relative_url(pathname, privileged=False):
72 if not is_external_url(pathname):
74 url = privileged_path()
77 pathname = url + '/' + pathname
78 return cgi.escape(pathname, quote=True)
81 return re.sub(' ', '-', re.sub('[^a-z0-9_ ]', '', s.lower()).strip())
84 return re.sub(r'(?:.*[/:]|)([^:/\.]+)(?:\.[^/:]+|)$', r'\1', s.replace('_', ' '))
86 # Split arg lists like "blah|blah blah| width=100 | align = center",
87 # return a list containing anonymous arguments and a map containing the named arguments
91 for arg in s.strip('<[{}]>').split('|'):
92 m = re.match('\s*(\w+)\s*=\s*(.+)\s*', arg)
94 kvargs[m.group(1)] = m.group(2)
96 args.append(arg.strip())
101 for k, v in kvargs.items():
102 argv.append(k + '=' + v)
104 return '?' + '&'.join(argv)
107 # Formatting stuff --------------------------------------------------
108 def emit_header(mime_type="text/html"):
109 print("Content-type: " + mime_type + "; charset=utf-8\n")
111 def send_guru(msg_text, msg_type):
112 if not msg_text: return
113 print('<pre id="guru" onclick="this.style.display = \'none\'" class="' + msg_type + '">')
114 if msg_type == 'error':
115 print(' Software Failure. Press left mouse button to continue.\n')
117 if msg_type == 'error':
118 print '\n Guru Meditation #DEADBEEF.ABADC0DE'
119 print('</pre><script language="JavaScript" type="text/javascript" src="%s" defer="defer"></script>' \
120 % relative_url('sys/GuruMeditation.js'))
122 def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=False):
124 if title_done: return
128 print('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"')
129 print(' "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">')
130 print('<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">')
132 print("<head><title>%s: %s</title>" % (site_name, text))
133 print(' <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />')
135 print(' <meta name="robots" content="noindex,nofollow" />')
137 for meta in meta_urls:
138 http_equiv, content = meta
139 print(' <meta http-equiv="%s" content="%s" />' % (http_equiv, relative_url(content)))
141 for link in link_urls:
143 print(' <link rel="%s" href="%s" />' % (rel, relative_url(href)))
145 if name and writable and privileged_url is not None:
146 print(' <link rel="alternate" type="application/x-wiki" title="Edit this page" href="%s" />' \
147 % (privileged_path() + '?a=edit&q=' + name))
149 if history_url is not None:
150 print(' <link rel="alternate" type="application/rss+xml" title="RSS" href="%s" />' \
151 % relative_url(history_url + '?a=rss'))
156 if name and writable and privileged_url is not None:
157 print('<body ondblclick="location.href=\'' + privileged_path() + '?a=edit&q=' + name + '\'">')
162 send_guru(msg_text, msg_type)
165 print('<div class="nav">')
166 print link_tag('FrontPage', site_icon or 'Home', cssclass='navlink')
168 print(' <b>' + link_tag('?fullsearch=' + name, text, cssclass='navlink') + '</b> ')
170 print(' <b>' + text + '</b> ')
171 print(' | ' + link_tag('FindPage', 'Find Page', cssclass='navlink'))
172 if 'history_url' in globals():
173 print(' | <a href="' + relative_url(history_url) + '" class="navlink">Recent Changes</a>')
175 print(' | <a href="' + relative_url(history_url + '?a=history;f=' + name) + '" class="navlink">Page History</a>')
178 print(' | ' + link_tag(name + '?a=raw', 'Raw Text', cssclass='navlink'))
179 if privileged_url is not None:
181 print(' | ' + link_tag('?a=edit&q=' + name, 'Edit', cssclass='navlink', privileged=True))
183 print(' | ' + link_tag(name, 'Login', cssclass='navlink', privileged=True))
186 print(' | <i>Immutable Page</i>')
189 if user != 'AnonymousCoward':
190 print(' | <span class="login"><i><b>' + link_tag('User/' + user, user) + '</b></i></span>')
192 print('<hr /></div>')
194 def send_httperror(status="403 Not Found", query=""):
195 print("Status: %s" % status)
196 send_title(None, msg_text=("%s: on query '%s'" % (status, query)))
199 def link_tag(dest, text=None, privileged=False, **kvargs):
201 text = humanlink(dest)
202 elif image_re.match(text):
203 text = '<img border="0" src="' + relative_url(text) + '" alt="' + text + '" />'
205 link_class = kvargs.get('class', kvargs.get('cssclass', None))
207 if is_external_url(dest):
208 link_class = 'external'
209 elif file_re.match(dest) and Page(dest).exists():
210 link_class = 'wikilink'
212 text = nonexist_pfx + text
213 link_class = 'nonexistent'
215 # Prevent crawlers from following links potentially added by spammers or to generated pages
217 if link_class == 'external' or link_class == 'navlink':
218 nofollow = 'rel="nofollow" '
220 return '<a class="%s" %shref="%s">%s</a>' % (link_class, nofollow, relative_url(dest, privileged=privileged), text)
222 def link_inline(name, descr=None, kvargs={}):
223 if not descr: descr = humanlink(name)
224 url = relative_url(name)
225 if video_re.match(name):
226 return '<video controls="1" src="%s">Your browser does not support the HTML5 video tag</video>' % url
227 elif image_re.match(name):
228 return '<a href="%s"><img border="0" src="%s" alt="%s" /></a>' % (url, url + url_args(kvargs), descr)
229 elif file_re.match(name) and not ext_re.search(name): # FIXME: this guesses a wiki page
230 return Page(name).send_naked(kvargs)
232 return '<iframe width="100%%" scrolling="auto" frameborder="0" src="%s"><a href="%s">%s</a></iframe>' \
235 # Search ---------------------------------------------------
237 def print_search_stats(hits, searched):
238 print("<p>%d hits out of %d pages searched.</p>" % (hits, searched))
240 def handle_fullsearch(query, form):
241 needle = form['q'].value
242 send_title(None, 'Full text search for "' + needle + '"')
244 needle_re = re.compile(needle, re.IGNORECASE)
246 all_pages = page_list()
247 for page_name in all_pages:
248 body = Page(page_name).get_raw_body()
249 count = len(needle_re.findall(body))
251 hits.append((count, page_name))
253 # The default comparison for tuples compares elements in order,
254 # so this sorts by number of hits
259 for (count, page_name) in hits:
260 print('<li><p>' + link_tag(page_name))
261 print(' . . . . ' + `count`)
262 print(['match', 'matches'][count != 1])
266 print_search_stats(len(hits), len(all_pages))
268 def handle_titlesearch(query, form):
269 needle = form['q'].value
270 send_title(None, 'Title search for "' + needle + '"')
272 needle_re = re.compile(needle, re.IGNORECASE)
273 all_pages = page_list()
274 hits = list(filter(needle_re.search, all_pages))
277 for filename in hits:
278 print('<li><p>' + link_tag(filename) + "</p></li>")
281 print_search_stats(len(hits), len(all_pages))
283 def handle_raw(pagename, form):
284 if not file_re.match(pagename):
285 send_httperror("403 Forbidden", pagename)
288 Page(pagename).send_raw()
290 def handle_edit(pagename, form):
291 if not file_re.match(pagename):
292 send_httperror("403 Forbidden", pagename)
295 pg = Page(form['q'].value)
297 if form['file'].value:
298 pg.save(form['file'].file.read(), form['changelog'].value)
300 pg.save(form['savetext'].value.replace('\r\n', '\n'), form['changelog'].value)
302 elif 'cancel' in form:
303 pg.msg_text = 'Editing canceled'
304 pg.msg_type = 'notice'
306 else: # preview or edit
308 if 'preview' in form:
309 text = form['savetext'].value
312 def handle_get(pagename, form):
313 if file_re.match(pagename):
314 # FIMXE: this is all bullshit, MimeTypes bases its guess on the extension!
315 from mimetypes import MimeTypes
316 mimetype, encoding = MimeTypes().guess_type(pagename)
318 Page(pagename).send_raw(mimetype=mimetype, args=form)
320 Page(pagename).format()
322 send_httperror("403 Forbidden", pagename)
324 # Used by macros/WordIndex and macros/TitleIndex
325 def make_index_key():
326 links = ['<a href="#%s">%s</a>' % (ch, ch) for ch in 'abcdefghijklmnopqrstuvwxyz']
327 return '<p style="text-align: center">' + ' | '.join(links) + '</p>'
329 def page_list(dirname=None, re=None):
331 # FIXME: WikiWord is too restrictive now!
332 re = re.compile(r"^\b((([A-Z][a-z0-9]+){2,}/)*([A-Z][a-z0-9]+){2,})\b$")
333 return sorted(filter(re.match, os.listdir(dirname or data_dir)))
335 def send_footer(mod_string=None):
336 if globals().get('debug_cgi', False):
337 cgi.print_arguments()
340 link_inline("sys/footer", kvargs= { 'LAST_MODIFIED': mod_string })
341 print("</body></html>")
343 def _macro_ELAPSED_TIME(*args, **kvargs):
344 return "%03f" % (clock() - start_time)
346 def _macro_VERSION(*args, **kvargs):
350 """Object that turns Wiki markup into HTML.
352 All formatting commands can be parsed one line at a time, though
353 some state is carried over between lines.
355 def __init__(self, raw, kvargs=None):
357 self.kvargs = kvargs or {}
359 self.in_pre = self.in_html = self.in_table = self.in_li = False
360 self.in_header = True
361 self.list_indents = []
369 "--": ["del", False],
370 "^^": ["sup", False],
371 ",,": ["sub", False],
372 "''": ["em", False], # LEGACY
373 "'''": ["b", False], # LEGACY
374 "``": ["tt", False], # LEGACY
377 def _b_repl(self, word):
378 style = self.styles[word]
379 style[1] = not style[1]
380 return ['</', '<'][style[1]] + style[0] + '>'
382 def _glyph_repl(self, word):
385 def _tit_repl(self, word):
387 result = '</h%d><p>\n' % self.h_level
390 self.h_level = len(word) - 1
391 link = permalink(self.line)
392 result = '\n</p><h%d id="%s"><a class="heading" href="#%s">¶</a> ' % (self.h_level, link, link)
395 def _br_repl(self, word):
398 def _rule_repl(self, word):
399 return self._undent() + '\n<hr size="%d" noshade="noshade" />\n' % (len(word) - 2)
401 def _macro_repl(self, word):
403 args, kvargs = parse_args(word)
404 if args[0] in self.kvargs:
405 return self.kvargs[args[0]]
406 macro = globals().get('_macro_' + args[0])
408 exec(open("macros/" + args[0] + ".py").read(), globals())
409 macro = globals().get('_macro_' + args[0])
410 return macro(*args, **kvargs)
412 msg = cgi.escape(word) + ": " + cgi.escape(e.message)
414 msg = '<strong class="error">' + msg + '</strong>'
417 def _hurl_repl(self, word):
418 args, kvargs = parse_args(word)
419 return link_tag(*args, **kvargs)
421 def _inl_repl(self, word):
422 args, kvargs = parse_args(word)
426 # This double div nonsense works around a limitation of the HTML block model
427 return '<div class="' + kvargs.get('class', 'thumb') + '">' \
428 + '<div class="innerthumb">' \
429 + link_inline(name, descr, kvargs) \
430 + '<div class="caption">' + descr + '</div></div></div>'
432 return link_inline(name, None, kvargs)
434 def _html_repl(self, word):
435 if not self.in_html and word.startswith('<div'): word = '</p>' + word
437 return word; # Pass through
439 def _htmle_repl(self, word):
441 if not self.in_html and word.startswith('</div'): word += '<p>'
442 return word; # Pass through
444 def _ent_repl(self, s):
446 return s; # Pass through
447 return {'&': '&',
451 def _img_repl(self, word): # LEGACY
452 return self._inl_repl('{{' + word + '}}')
454 def _word_repl(self, word): # LEGACY
455 if self.in_html: return word # pass through
456 return link_tag(word)
458 def _url_repl(self, word): # LEGACY
459 if self.in_html: return word # pass through
460 return link_tag(word)
462 def _email_repl(self, word): # LEGACY
463 if self.in_html: return word # pass through
464 return '<a href="mailto:%s">%s</a>' % (word, word)
466 def _li_repl(self, match):
473 def _pre_repl(self, word):
474 if word == '{{{' and not self.in_pre:
482 def _hi_repl(self, word):
483 return '<strong class="highlight ' + word + '">' + word + '</strong>'
485 def _tr_repl(self, word):
487 if not self.in_table:
490 out = '</p><table><tbody>\n'
492 out = out + '<tr class="' + ['even', 'odd'][self.tr_cnt % 2] + '">'
493 return out + ['<td>', '<th>'][word.strip() == '||=']
495 def _td_repl(self, word):
497 return ['</td><td>', '</th><th>'][word.strip() == '||=']
500 def _tre_repl(self, word):
502 return ['</td></tr>', '</th></tr>'][word.strip() == '||=']
505 def _indent_level(self):
506 return len(self.list_indents) and self.list_indents[-1]
508 def _indent_to(self, new_level):
509 if self._indent_level() == new_level:
512 while self._indent_level() > new_level:
513 del(self.list_indents[-1])
516 self.in_li = False # FIXME
518 while self._indent_level() < new_level:
519 self.list_indents.append(new_level)
526 res += '</ul>' * len(self.list_indents)
528 self.list_indents = []
531 def replace(self, match):
532 for rule, hit in list(match.groupdict().items()):
534 return getattr(self, '_' + rule + '_repl')(hit)
536 raise "Can't handle match " + repr(match)
538 def print_html(self):
539 print('<div class="wiki"><p>')
541 scan_re = re.compile(r"""(?:
542 # Styles and formatting ("--" must cling to a word to disambiguate it from the dash)
543 (?P<b> \*\* | // | \#\# | __ | --\b | \b-- | \^\^ | ,, | ''' | '' | `` )
547 | (?P<hi> \b( FIXME | TODO | DONE )\b )
551 | (?P<macro> \<\<([^\s\|\>]+)(?:\s*\|\s*([^\>]+)|)\>\>)
552 | (?P<hurl> \[\[([^\s\|]+)(?:\s*\|\s*([^\]]+)|)\]\])
555 | (?P<html> <(br|hr|div|span|form|iframe|input|textarea|a|img|h[1-5])\b )
556 | (?P<htmle> ( /\s*> | </(br|hr|div|span|form|iframe|input|textarea|a|img|h[1-5])> ) )
559 # Auto links (LEGACY)
560 | (?P<img> \b[a-zA-Z0-9_/-]+\.(""" + image_ext + "|" + video_ext + r"""))
561 | (?P<word> \b(?:[A-Z][a-z]+){2,}\b)
562 | (?P<url> (http|https|ftp|mailto)\:[^\s'\"]+\S)
563 | (?P<email> [-\w._+]+\@[\w.-]+)
565 # Lists, divs, spans and inline objects
566 | (?P<li> ^\s+[\*\#]\s+)
567 | (?P<pre> \{\{\{|\s*\}\}\})
568 | (?P<inl> \{\{([^\s\|]+)(?:\s*\|\s*([^\]]+)|)\}\})
571 | (?P<tr> ^\s*\|\|(=|)\s*)
572 | (?P<tre> \s*\|\|(=|)\s*$)
573 | (?P<td> \s*\|\|(=|)\s*)
575 # TODO: highlight search words (look at referrer)
577 pre_re = re.compile("""(?:
581 blank_re = re.compile(r"^\s*$")
582 indent_re = re.compile(r"^\s*")
583 tr_re = re.compile(r"^\s*\|\|")
584 eol_re = re.compile(r"\r?\n")
585 # For each line, we scan through looking for magic strings, outputting verbatim any intervening text
586 #3.0: for self.line in eol_re.split(str(self.raw.expandtabs(), 'utf-8')):
587 for self.line in eol_re.split(str(self.raw.expandtabs())):
590 if self.line.startswith('#'):
592 self.in_header = False
595 print(re.sub(pre_re, self.replace, self.line))
597 if self.in_table and not tr_re.match(self.line):
598 self.in_table = False
599 print('</tbody></table><p>')
601 if blank_re.match(self.line):
604 indent = indent_re.match(self.line)
605 #3.0: print(self._indent_to(len(indent.group(0))), end=' ')
606 print(self._indent_to(len(indent.group(0))))
607 print(re.sub(scan_re, self.replace, self.line))
609 if self.in_pre: print('</pre>')
610 if self.in_table: print('</tbody></table><p>')
611 print(self._undent())
615 def __init__(self, page_name):
616 self.page_name = page_name
618 self.msg_type = 'error'
620 def split_title(self):
621 # look for the end of words and the start of a new word and insert a space there
622 return re.sub('([a-z])([A-Z])', r'\1 \2', self.page_name)
625 return os.path.join(data_dir, self.page_name)
627 def _tmp_filename(self):
628 return os.path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + str(os.getpid()) + '#'))
632 os.stat(self._filename())
635 if err.errno == errno.ENOENT:
639 def get_raw_body(self, default=None):
641 return open(self._filename(), 'rb').read()
643 if err.errno == errno.ENOENT:
645 default = '//[[?a=edit&q=%s|Describe %s]]//' % (self.page_name, self.page_name)
647 if err.errno == errno.EISDIR:
648 return self.format_dir()
651 def format_dir(self):
654 for dirname in self.page_name.strip('/').split('/'):
655 pathname = (pathname + '/' + dirname) if pathname else dirname
656 out += '[[' + pathname + '|' + dirname + ']]/'
659 for filename in page_list(self._filename(), file_re):
660 if image_re.match(filename):
662 maxwidth_arg = ' | maxwidth=' + str(image_maxwidth)
663 out += '{{' + self.page_name + '/' + filename + ' | ' + humanlink(filename) + maxwidth_arg + ' | class=thumbleft}}\n'
665 out += ' * [[' + self.page_name + '/' + filename + ']]\n'
669 if not '_pragmas' in self.__dict__:
672 file = open(self._filename(), 'rt')
673 attr_re = re.compile(r"^#(\S*)(.*)$")
675 m = attr_re.match(line)
678 self._pragmas[m.group(1)] = m.group(2).strip()
679 #print "bernie: pragmas[" + m.group(1) + "] = " + m.group(2) + "<br>\n"
681 if err.errno != errno.ENOENT and err.errno != errno.EISDIR:
685 def pragma(self, name, default):
686 return self.pragmas().get(name, default)
688 def can(self, action, default=True):
691 #acl SomeUser:read,write All:read
692 acl = self.pragma("acl", None)
693 for rule in acl.split():
694 (user, perms) = rule.split(':')
695 if user == remote_user() or user == "All":
696 return action in perms.split(',')
700 self.msg_text = 'Illegal acl line: ' + acl
704 return self.can("write", True)
707 return self.can("read", True)
709 def send_naked(self, kvargs=None):
711 WikiFormatter(self.get_raw_body(), kvargs).print_html()
713 send_guru("Read access denied by ACLs", "notice")
717 value = self.pragma("css", None)
720 link_urls += [ [ "stylesheet", value ] ]
722 send_title(self.page_name, self.split_title(),
723 msg_text=self.msg_text, msg_type=self.msg_type, writable=self.can_write())
725 send_footer(self._last_modified())
727 def _last_modified(self):
729 from time import localtime, strftime
730 modtime = localtime(os.stat(self._filename())[stat.ST_MTIME])
732 if err.errno != errno.ENOENT:
735 return strftime(datetime_fmt, modtime)
737 def send_editor(self, preview=None):
738 send_title(None, 'Edit ' + self.split_title(), msg_text=self.msg_text, msg_type=self.msg_type)
739 if not self.can_write():
740 send_guru("Write access denied by ACLs", "error")
745 filename = form['file'].value
747 print(('<p><b>Editing ' + self.page_name
748 + ' for ' + cgi.escape(remote_user())
749 + ' from ' + cgi.escape(get_hostname(remote_host()))
751 print('<div class="editor"><form name="editform" method="post" enctype="multipart/form-data" action="%s">' % relative_url(self.page_name))
752 print('<input type="hidden" name="a" value="edit" /><input type="hidden" name="q" value="' + self.page_name + '" />')
753 print('<input type="input" id="editor" name="changelog" value="Edit page %s" accesskey="c" /><br />' % (self.page_name))
754 print('<textarea wrap="off" spellcheck="true" id="editor" name="savetext" rows="17" cols="100" accesskey="e">%s</textarea>' \
755 % cgi.escape(preview or self.get_raw_body(default='')))
756 print('<label for="file" accesskey="u">Or Upload a file:</label> <input type="file" name="file" value="%s" />' % filename)
759 <input type="submit" name="save" value="Save" accesskey="s">
760 <input type="submit" name="preview" value="Preview" accesskey="p" />
761 <input type="reset" value="Reset" />
762 <input type="submit" name="cancel" value="Cancel" />
765 <script language="javascript">
767 document.editform.savetext.focus()
771 print("<p>" + link_tag('EditingTips') + "</p>")
773 print("<div class='preview'>")
774 WikiFormatter(preview).print_html()
778 def send_raw(self, mimetype='text/plain', args=[]):
779 if not self.can_read():
780 send_title(None, msg_text='Read access denied by ACLs', msg_type='notice')
783 if 'maxwidth' in args:
785 emit_header(mimetype)
787 subprocess.check_call(['gm', 'convert', self._filename(),
788 '-scale', args['maxwidth'].value + ' >', '-'])
790 body = self.get_raw_body()
791 emit_header(mimetype)
794 def _write_file(self, data):
795 tmp_filename = self._tmp_filename()
796 open(tmp_filename, 'wb').write(data)
797 name = self._filename()
799 # Bad Bill! POSIX rename ought to replace. :-(
803 if err.errno != errno.ENOENT: raise err
804 path = os.path.split(name)[0]
805 if not os.path.exists(path):
807 os.rename(tmp_filename, name)
809 def save(self, newdata, changelog):
810 if not self.can_write():
811 self.msg_text = 'Write access denied by ACLs'
812 self.msg_type = 'error'
815 self._write_file(newdata)
819 cmd = [ post_edit_hook, data_dir + '/' + self.page_name, remote_user(), remote_host(), changelog]
820 child = subprocess.Popen(cmd, stdout=subprocess.PIPE, close_fds=True)
821 output = child.stdout.read()
824 self.msg_text += "Post-editing hook returned %d. Command was:\n'%s'\n" % (rc, "' '".join(cmd))
826 self.msg_text += 'Output follows:\n' + output
828 self.msg_text = 'Thank you for your contribution. Your attention to detail is appreciated.'
829 self.msg_type = 'success'
832 exec(open("geekigeeki.conf.py").read())
833 form = cgi.FieldStorage()
834 action = form.getvalue('a', 'get')
835 handler = globals().get('handle_' + action)
837 handler(query_string(), form)
839 send_httperror("403 Forbidden", query_string())
843 msg_text = traceback.format_exc()
845 send_guru(msg_text, "error")
847 send_title(None, msg_text=msg_text)