Add strike through and glyph substitution
[geekigeeki.git] / geekigeeki.py
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 #
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>
7 #
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.
12 #
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.
17 #
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/>.
20
21 __version__ = '4.0-' + '$Id$'[4:11]
22
23 from time import clock
24 start_time = clock()
25 title_done = False
26
27 import cgi, sys, os, re, errno, stat
28
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"\.([^\./]+)$")
37
38 # CGI stuff ---------------------------------------------------------
39 def script_name():
40     return os.environ.get('SCRIPT_NAME', '')
41
42 def query_string():
43     path_info = os.environ.get('PATH_INFO', '')
44     if len(path_info) and path_info[0] == '/':
45         return path_info[1:] or 'FrontPage'
46     else:
47         return os.environ.get('QUERY_STRING', '') or 'FrontPage'
48
49 def privileged_path():
50     return privileged_url or script_name()
51
52 def remote_user():
53     user = os.environ.get('REMOTE_USER', '')
54     if user is None or user == '' or user == 'anonymous':
55         user = 'AnonymousCoward'
56     return user
57
58 def remote_host():
59     return os.environ.get('REMOTE_ADDR', '')
60
61 def get_hostname(addr):
62     try:
63         from socket import gethostbyaddr
64         return gethostbyaddr(addr)[0] + ' (' + addr + ')'
65     except Exception:
66         return addr
67
68 def is_external_url(pathname):
69     return (url_re.match(pathname) or pathname.startswith('/'))
70
71 def relative_url(pathname, privileged=False):
72     if not is_external_url(pathname):
73         if privileged:
74             url = privileged_path()
75         else:
76             url = script_name()
77         pathname = url + '/' + pathname
78     return cgi.escape(pathname, quote=True)
79
80 def permalink(s):
81     return re.sub(' ', '-', re.sub('[^a-z0-9_ ]', '', s.lower()).strip())
82
83 def humanlink(s):
84     return re.sub(r'(?:.*[/:]|)([^:/\.]+)(?:\.[^/:]+|)$', r'\1', s.replace('_', ' '))
85
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
88 def parse_args(s):
89     args = []
90     kwargs = {} 
91     for arg in s.strip('<[{}]>').split('|'):
92         m = re.match('\s*(\w+)\s*=\s*(.+)\s*', arg)
93         if m is not None:
94             kwargs[m.group(1)] = m.group(2)
95         else:
96             args.append(arg.strip())
97     return (args, kwargs)
98
99 def url_args(kvargs):
100     argv = []
101     for k, v in kvargs.items():
102         argv.append(k + '=' + v)
103     if argv:
104         return '?' + '&amp;'.join(argv)
105     return ''
106
107 # Formatting stuff --------------------------------------------------
108 def emit_header(mime_type="text/html"):
109     print("Content-type: " + mime_type + "; charset=utf-8\n")
110
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')
116     print(msg_text)
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'))
121
122 def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=False):
123     global title_done
124     if title_done: return
125
126     # Head
127     emit_header()
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">')
131
132     print("<head><title>%s: %s</title>" % (site_name, text))
133     print(' <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />')
134     if not name:
135         print(' <meta name="robots" content="noindex,nofollow" />')
136
137     for meta in meta_urls:
138         http_equiv, content = meta
139         print(' <meta http-equiv="%s" content="%s" />' % (http_equiv, relative_url(content)))
140
141     for link in link_urls:
142         rel, href = link
143         print(' <link rel="%s" href="%s" />' % (rel, relative_url(href)))
144
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))
148
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'))
152
153     print('</head>')
154
155     # Body
156     if name and writable and privileged_url is not None:
157         print('<body ondblclick="location.href=\'' + privileged_path() + '?a=edit&q=' + name + '\'">')
158     else:
159         print('<body>')
160
161     title_done = True
162     send_guru(msg_text, msg_type)
163
164     # Navbar
165     print('<div class="nav">')
166     print link_tag('FrontPage', site_icon or 'Home', cssclass='navlink')
167     if name:
168         print('  <b>' + link_tag('?fullsearch=' + name, text, cssclass='navlink') + '</b> ')
169     else:
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>')
174         if name:
175             print(' | <a href="' + relative_url(history_url + '?a=history;f=' + name) + '" class="navlink">Page History</a>')
176
177     if name:
178         print(' | ' + link_tag(name + '?a=raw', 'Raw Text', cssclass='navlink'))
179         if privileged_url is not None:
180             if writable:
181                 print(' | ' + link_tag('?a=edit&q=' + name, 'Edit', cssclass='navlink', privileged=True))
182             else:
183                 print(' | ' + link_tag(name, 'Login', cssclass='navlink', privileged=True))
184
185     else:
186         print(' | <i>Immutable Page</i>')
187
188     user = remote_user()
189     if user != 'AnonymousCoward':
190         print(' | <span class="login"><i><b>' + link_tag('User/' + user, user) + '</b></i></span>')
191
192     print('<hr /></div>')
193
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)))
197     send_footer()
198
199 def link_tag(dest, text=None, privileged=False, **kvargs):
200     if text is None:
201         text = humanlink(dest)
202     elif image_re.match(text):
203         text = '<img border="0" src="' + relative_url(text) + '" alt="' + text + '" />'
204
205     link_class = kvargs.get('class', kvargs.get('cssclass', None))
206     if not link_class:
207         if is_external_url(dest):
208             link_class = 'external'
209         elif file_re.match(dest) and Page(dest).exists():
210             link_class = 'wikilink'
211         else:
212             text = nonexist_pfx + text
213             link_class = 'nonexistent'
214
215     # Prevent crawlers from following links potentially added by spammers or to generated pages
216     nofollow = ''
217     if link_class == 'external' or link_class == 'navlink':
218         nofollow = 'rel="nofollow" '
219
220     return '<a class="%s" %shref="%s">%s</a>' % (link_class, nofollow, relative_url(dest, privileged=privileged), text)
221
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()
231     else:
232         return '<iframe width="100%%" scrolling="auto" frameborder="0" src="%s"><a href="%s">%s</a></iframe>' \
233             % (url, url, name)
234
235 # Search ---------------------------------------------------
236
237 def print_search_stats(hits, searched):
238     print("<p>%d hits out of %d pages searched.</p>" % (hits, searched))
239
240 def handle_fullsearch(query, form):
241     needle = form['q'].value
242     send_title(None, 'Full text search for "' + needle + '"')
243
244     needle_re = re.compile(needle, re.IGNORECASE)
245     hits = []
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))
250         if count:
251             hits.append((count, page_name))
252
253     # The default comparison for tuples compares elements in order,
254     # so this sorts by number of hits
255     hits.sort()
256     hits.reverse()
257
258     print("<ul>")
259     for (count, page_name) in hits:
260         print('<li><p>' + link_tag(page_name))
261         print(' . . . . ' + `count`)
262         print(['match', 'matches'][count != 1])
263         print('</p></li>')
264     print("</ul>")
265
266     print_search_stats(len(hits), len(all_pages))
267
268 def handle_titlesearch(query, form):
269     needle = form['q'].value
270     send_title(None, 'Title search for "' + needle + '"')
271
272     needle_re = re.compile(needle, re.IGNORECASE)
273     all_pages = page_list()
274     hits = list(filter(needle_re.search, all_pages))
275
276     print("<ul>")
277     for filename in hits:
278         print('<li><p>' + link_tag(filename) + "</p></li>")
279     print("</ul>")
280
281     print_search_stats(len(hits), len(all_pages))
282
283 def handle_raw(pagename, form):
284     if not file_re.match(pagename):
285         send_httperror("403 Forbidden", pagename)
286         return
287
288     Page(pagename).send_raw()
289
290 def handle_edit(pagename, form):
291     if not file_re.match(pagename):
292         send_httperror("403 Forbidden", pagename)
293         return
294
295     pg = Page(form['q'].value)
296     if 'save' in form:
297         if form['file'].value:
298             pg.save(form['file'].file.read(), form['changelog'].value)
299         else:
300             pg.save(form['savetext'].value.replace('\r\n', '\n'), form['changelog'].value)
301         pg.format()
302     elif 'cancel' in form:
303         pg.msg_text = 'Editing canceled'
304         pg.msg_type = 'notice'
305         pg.format()
306     else: # preview or edit
307         text = None
308         if 'preview' in form:
309             text = form['savetext'].value
310         pg.send_editor(text)
311
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)
317             if mimetype:
318                 Page(pagename).send_raw(mimetype=mimetype, args=form)
319             else:
320                 Page(pagename).format()
321         else:
322             send_httperror("403 Forbidden", pagename)
323
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>'
328
329 def page_list(dirname=None, re=None):
330     if re is 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)))
334
335 def send_footer(mod_string=None):
336     if globals().get('debug_cgi', False):
337         cgi.print_arguments()
338         cgi.print_form(form)
339         cgi.print_environ()
340         #FIXME link_inline("sys/footer")
341     print('''
342 <div id="footer"><hr />
343 <p class="copyright">
344 <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img class="license" alt="Creative Commons License" src="%s" /></a>
345 <span class="benchmark">generated in %0.3fs</span> by <a href="http://www.codewiz.org/wiki/GeekiGeeki">GeekiGeeki</a> version %s
346 </p>
347 ''' % (relative_url('cc-by-sa.png'), clock() - start_time, __version__))
348     if mod_string:
349         print('<p class="modified">last modified %s</p>' % mod_string)
350     print('</div></body></html>')
351
352 class WikiFormatter:
353     """Object that turns Wiki markup into HTML.
354
355     All formatting commands can be parsed one line at a time, though
356     some state is carried over between lines.
357     """
358     def __init__(self, raw):
359         self.raw = raw
360         self.h_level = 0
361         self.in_pre = self.in_html = self.in_table = self.in_li = False
362         self.in_header = True
363         self.list_indents = []
364         self.tr_cnt = 0
365         self.styles = {
366             #wiki   html   enabled?
367             "//":  ["em",  False],
368             "**":  ["b",   False],
369             "##":  ["tt",  False],
370             "__":  ["u",   False],
371             "--":  ["del", False],
372             "^^":  ["sup", False],
373             ",,":  ["sub", False],
374             "''":  ["em",  False], # LEGACY
375             "'''": ["b",   False], # LEGACY
376             "``":  ["tt",  False], # LEGACY
377         }
378
379     def _b_repl(self, word):
380         style = self.styles[word]
381         style[1] = not style[1]
382         return ['</', '<'][style[1]] + style[0] + '>'
383
384     def _glyph_repl(self, word):
385         return '&mdash;'
386
387     def _tit_repl(self, word):
388         if self.h_level:
389             result = '</h%d><p>\n' % self.h_level
390             self.h_level = 0
391         else:
392             self.h_level = len(word) - 1
393             link = permalink(self.line)
394             result = '\n</p><h%d id="%s"><a class="heading" href="#%s">¶</a> ' % (self.h_level, link, link)
395         return result
396
397     def _br_repl(self, word):
398         return '<br />'
399
400     def _rule_repl(self, word):
401         return self._undent() + '\n<hr size="%d" noshade="noshade" />\n' % (len(word) - 2)
402
403     def _macro_repl(self, word):
404         try:
405             args, kwargs = parse_args(word)
406             macro = globals().get('_macro_' + args[0])
407             if not macro:
408                 exec(open("macros/" + name + ".py").read(), globals())
409                 macro = globals().get('_macro_' + name)
410             return macro(*args, **kwargs)
411         except Exception:
412             msg = cgi.escape(word)
413             if not self.in_html:
414                 msg = '<strong class="error">' + msg + '</strong>'
415             return msg
416
417     def _hurl_repl(self, word):
418         args, kvargs = parse_args(word)
419         return link_tag(*args, **kvargs)
420
421     def _inl_repl(self, word):
422         args, kvargs = parse_args(word)
423         name = args.pop(0)
424         if len(args):
425             descr = args.pop(0)
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>'
431         else:
432             return link_inline(name, None, kvargs)
433
434     def _html_repl(self, word):
435         if not self.in_html and word.startswith('<div'): word = '</p>' + word
436         self.in_html += 1
437         return word; # Pass through
438
439     def _htmle_repl(self, word):
440         self.in_html -= 1
441         if not self.in_html and word.startswith('</div'): word += '<p>'
442         return word; # Pass through
443
444     def _ent_repl(self, s):
445         if self.in_html:
446             return s; # Pass through
447         return {'&': '&amp;',
448                 '<': '&lt;',
449                 '>': '&gt;'}[s]
450
451     def _img_repl(self, word): # LEGACY
452         return self._inl_repl('{{' + word + '}}')
453
454     def _word_repl(self, word): # LEGACY
455         if self.in_html: return word # pass through
456         return link_tag(word)
457
458     def _url_repl(self, word): # LEGACY
459         if self.in_html: return word # pass through
460         return link_tag(word)
461
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)
465
466     def _li_repl(self, match):
467         if self.in_li:
468             return '</li><li>'
469         else:
470             self.in_li = True
471             return '<li>'
472
473     def _pre_repl(self, word):
474         if word == '{{{' and not self.in_pre:
475             self.in_pre = True
476             return '<pre>'
477         elif self.in_pre:
478             self.in_pre = False
479             return '</pre>'
480         return ''
481
482     def _hi_repl(self, word):
483         return '<strong class="highlight ' + word + '">' + word + '</strong>'
484
485     def _tr_repl(self, word):
486         out = ''
487         if not self.in_table:
488             self.in_table = True
489             self.tr_cnt = 0
490             out = '</p><table><tbody>\n'
491         self.tr_cnt += 1
492         out = out + '<tr class="' + ['even', 'odd'][self.tr_cnt % 2] + '">'
493         return out + ['<td>', '<th>'][word.strip() == '||=']
494
495     def _td_repl(self, word):
496         if self.in_table:
497             return ['</td><td>', '</th><th>'][word.strip() == '||=']
498         return ''
499
500     def _tre_repl(self, word):
501         if self.in_table:
502             return ['</td></tr>', '</th></tr>'][word.strip() == '||=']
503         return ''
504
505     def _indent_level(self):
506         return len(self.list_indents) and self.list_indents[-1]
507
508     def _indent_to(self, new_level):
509         if self._indent_level() == new_level:
510             return ''
511         s = '</p>'
512         while self._indent_level() > new_level:
513             del(self.list_indents[-1])
514             if self.in_li:
515                 s += '</li>'
516                 self.in_li = False # FIXME
517             s += '</ul>\n'
518         while self._indent_level() < new_level:
519             self.list_indents.append(new_level)
520             s += '<ul>\n'
521         s += '<p>'
522         return s
523
524     def _undent(self):
525         res = '</p>'
526         res += '</ul>' * len(self.list_indents)
527         res += '<p>'
528         self.list_indents = []
529         return res
530
531     def replace(self, match):
532         for rule, hit in list(match.groupdict().items()):
533             if hit:
534                 return getattr(self, '_' + rule + '_repl')(hit)
535         else:
536             raise "Can't handle match " + repr(match)
537
538     def print_html(self):
539         print('<div class="wiki"><p>')
540
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-- | \^\^ | ,, | ''' | '' | `` )
544             | (?P<glyph> --)
545             | (?P<tit>   \={2,6})
546             | (?P<br>    \\\\)
547             | (?P<rule>  ^-{3,})
548             | (?P<hi>    \b( FIXME | TODO | DONE )\b )
549
550             # Links
551             | (?P<macro> \<\<([^\s\|\>]+)(?:\s*\|\s*([^\>]+)|)\>\>)
552             | (?P<hurl>  \[\[([^\s\|]+)(?:\s*\|\s*([^\]]+)|)\]\])
553
554             # Inline HTML
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])> ) )
557             | (?P<ent>   [<>&] )
558
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.-]+)
564
565             # Lists, divs, spans and inline objects
566             | (?P<li>    ^\s+[\*\#]\s+)
567             | (?P<pre>   \{\{\{|\s*\}\}\})
568             | (?P<inl>   \{\{([^\s\|]+)(?:\s*\|\s*([^\]]+)|)\}\})
569
570             # Tables
571             | (?P<tr>    ^\s*\|\|(=|)\s*)
572             | (?P<tre>   \s*\|\|(=|)\s*$)
573             | (?P<td>    \s*\|\|(=|)\s*)
574
575             # TODO: highlight search words (look at referrer)
576           )""", re.VERBOSE)
577         pre_re = re.compile("""(?:
578               (?P<pre>\s*\}\}\})
579             | (?P<ent>[<>&])"
580             )""", re.VERBOSE)
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())):
588             # Skip pragmas
589             if self.in_header:
590                 if self.line.startswith('#'):
591                     continue
592                 self.in_header = False
593
594             if self.in_pre:
595                 print(re.sub(pre_re, self.replace, self.line))
596             else:
597                 if self.in_table and not tr_re.match(self.line):
598                     self.in_table = False
599                     print('</tbody></table><p>')
600
601                 if blank_re.match(self.line):
602                     print('</p><p>')
603                 else:
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))
608
609         if self.in_pre: print('</pre>')
610         if self.in_table: print('</tbody></table><p>')
611         print(self._undent())
612         print('</p></div>')
613
614 class Page:
615     def __init__(self, page_name):
616         self.page_name = page_name
617         self.msg_text = ''
618         self.msg_type = 'error'
619
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)
623
624     def _filename(self):
625         return os.path.join(data_dir, self.page_name)
626
627     def _tmp_filename(self):
628         return os.path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + str(os.getpid()) + '#'))
629
630     def exists(self):
631         try:
632             os.stat(self._filename())
633             return True
634         except OSError, err:
635             if err.errno == errno.ENOENT:
636                 return False
637             raise err
638
639     def get_raw_body(self, default=None):
640         try:
641             return open(self._filename(), 'rb').read()
642         except IOError, err:
643             if err.errno == errno.ENOENT:
644                 if default is None:
645                     default = '//[[?a=edit&q=%s|Describe %s]]//' % (self.page_name, self.page_name)
646                 return default
647             if err.errno == errno.EISDIR:
648                 return self.format_dir()
649             raise err
650
651     def format_dir(self):
652         out = '== '
653         pathname = ''
654         for dirname in self.page_name.strip('/').split('/'):
655             pathname = (pathname + '/' + dirname) if pathname else dirname
656             out += '[[' + pathname + '|' + dirname + ']]/'
657         out += ' ==\n'
658  
659         for filename in page_list(self._filename(), file_re):
660             if image_re.match(filename):
661                 if image_maxwidth:
662                     maxwidth_arg = ' | maxwidth=' + str(image_maxwidth)
663                 out += '{{' + self.page_name + '/' + filename + ' | ' + humanlink(filename) + maxwidth_arg + ' | class=thumbleft}}\n'
664             else:
665                 out += ' * [[' + self.page_name + '/' + filename + ']]\n'
666         return out
667
668     def pragmas(self):
669         if not '_pragmas' in self.__dict__:
670             self._pragmas = {}
671             try:
672                 file = open(self._filename(), 'rt')
673                 attr_re = re.compile(r"^#(\S*)(.*)$")
674                 for line in file:
675                     m = attr_re.match(line)
676                     if not m:
677                         break
678                     self._pragmas[m.group(1)] = m.group(2).strip()
679                     #print "bernie: pragmas[" + m.group(1) + "] = " + m.group(2) + "<br>\n"
680             except IOError, err:
681                 if err.errno != errno.ENOENT and err.errno != errno.EISDIR:
682                     raise er
683         return self._pragmas
684
685     def pragma(self, name, default):
686         return self.pragmas().get(name, default)
687
688     def can(self, action, default=True):
689         acl = None
690         try:
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(',')
697             return False
698         except Exception:
699             if acl:
700                 self.msg_text = 'Illegal acl line: ' + acl
701         return default
702
703     def can_write(self):
704         return self.can("write", True)
705
706     def can_read(self):
707         return self.can("read", True)
708
709     def send_naked(self):
710         if self.can_read():
711             WikiFormatter(self.get_raw_body()).print_html()
712         else:
713             send_guru("Read access denied by ACLs", "notice")
714
715     def format(self):
716         #css foo.css
717         value = self.pragma("css", None)
718         if value:
719             global link_urls
720             link_urls += [ [ "stylesheet", value ] ]
721
722         send_title(self.page_name, self.split_title(),
723             msg_text=self.msg_text, msg_type=self.msg_type, writable=self.can_write())
724         self.send_naked()
725         send_footer(self._last_modified())
726
727     def _last_modified(self):
728         try:
729             from time import localtime, strftime
730             modtime = localtime(os.stat(self._filename())[stat.ST_MTIME])
731         except OSError, err:
732             if err.errno != errno.ENOENT:
733                 raise err
734             return None
735         return strftime(datetime_fmt, modtime)
736
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")
741             return
742
743         filename = ''
744         if 'file' in form:
745             filename = form['file'].value
746
747         print(('<p><b>Editing ' + self.page_name
748             + ' for ' + cgi.escape(remote_user())
749             + ' from ' + cgi.escape(get_hostname(remote_host()))
750             + '</b></p>'))
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)
757         print("""
758             <br />
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" />
763             <br />
764             </form></div>
765             <script language="javascript">
766             <!--
767             document.editform.savetext.focus()
768             //-->
769             </script>
770             """)
771         print("<p>" + link_tag('EditingTips') + "</p>")
772         if preview:
773             print("<div class='preview'>")
774             WikiFormatter(preview).print_html()
775             print("</div>")
776         send_footer()
777
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')
781             return
782
783         if 'maxwidth' in args:
784             import subprocess
785             emit_header(mimetype)
786             sys.stdout.flush()
787             subprocess.check_call(['gm', 'convert', self._filename(),
788                 '-scale', args['maxwidth'].value + ' >', '-'])
789         else:
790             body = self.get_raw_body()
791             emit_header(mimetype)
792             print(body)
793
794     def _write_file(self, data):
795         tmp_filename = self._tmp_filename()
796         open(tmp_filename, 'wb').write(data)
797         name = self._filename()
798         if os.name == 'nt':
799             # Bad Bill!  POSIX rename ought to replace. :-(
800             try:
801                 os.remove(name)
802             except OSError, err:
803                 if err.errno != errno.ENOENT: raise err
804         path = os.path.split(name)[0]
805         if not os.path.exists(path):
806             os.makedirs(path)
807         os.rename(tmp_filename, name)
808
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'
813             return
814
815         self._write_file(newdata)
816         rc = 0
817         if post_edit_hook:
818             import subprocess
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()
822             rc = child.wait()
823         if rc:
824             self.msg_text += "Post-editing hook returned %d. Command was:\n'%s'\n" % (rc, "' '".join(cmd))
825             if output:
826                 self.msg_text += 'Output follows:\n' + output
827         else:
828             self.msg_text = 'Thank you for your contribution.  Your attention to detail is appreciated.'
829             self.msg_type = 'success'
830
831 try:
832     exec(open("geekigeeki.conf.py").read())
833     form = cgi.FieldStorage()
834     action = form.getvalue('a', 'get')
835     handler = globals().get('handle_' + action)
836     if handler:
837         handler(query_string(), form)
838     else:
839         send_httperror("403 Forbidden", query_string())
840
841 except Exception:
842     import traceback
843     msg_text = traceback.format_exc()
844     if title_done:
845         send_guru(msg_text, "error")
846     else:
847         send_title(None, msg_text=msg_text)
848     send_footer()
849
850 sys.stdout.flush()