Merge branch 'master' of ssh://trinity.codewiz.org/~/public_html/wiki/git/geekigeeki
authorBernie Innocenti <bernie@codewiz.org>
Wed, 19 Aug 2009 10:07:05 +0000 (12:07 +0200)
committerBernie Innocenti <bernie@codewiz.org>
Wed, 19 Aug 2009 10:07:05 +0000 (12:07 +0200)
Conflicts:
geekigeeki.py

geekigeeki.conf.py
geekigeeki.py
git-bloat [new file with mode: 0755]
git-cat
macros/CgiVar.py [deleted file]
macros/HttpGet.py [deleted file]
macros/HttpPost.py [deleted file]
macros/TitleIndex.py [deleted file]
macros/WordIndex.py [deleted file]

index 773f5373480631231681363e987887a191b40e30..5c5d681a00b3095f62f7ae56cd333ec3cf65302f 100644 (file)
@@ -7,9 +7,12 @@ site_name = 'Codewiz'
 # It can be set to an empty string or a text message
 site_icon = 'sys/favicon16x16.png'
 
-# set to None for read-only sites, leave empty ('') to allow anonymous edits
+# set to None for read-only sites, or
+# leave empty ('') to allow anonymous edits
 # otherwise, set to a URL that requires authentication
 privileged_url = 'https://www.develer.com/~bernie/wiki'
+#privileged_url = ''
+#privileged_url = None
 
 data_dir = 'data'
 
@@ -33,12 +36,6 @@ post_edit_hook = './post_edit_hook.sh'
 
 datetime_fmt = '%a, %d %b %Y %H:%M:%S %Z'
 
-# Is it possible to edit pages?
-allow_edit = True
-
-# show hostnames?
-show_hosts = True
-
 # prefix before nonexistent link (usually '?')
 nonexist_pfx = ''
 
@@ -46,4 +43,4 @@ nonexist_pfx = ''
 image_maxwidth = 400
 
 # Set to True for CGI var dump
-debug_cgi = False
+#debug_cgi = True
index c5b51096a1fbecfe242b189b8d84625b152cdb65..4569894255a653ab73d6312e6a7f62354808ed0d 100755 (executable)
@@ -8,15 +8,9 @@
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# (at your option) any later version.  You should have received a copy
+# of the GNU General Public License along with this program.
+# If not, see <http://www.gnu.org/licenses/>.
 
 __version__ = '4.0-' + '$Id$'[4:11]
 
@@ -24,7 +18,7 @@ from time import clock, localtime, gmtime, strftime
 start_time = clock()
 title_done = False
 
-import cgi, sys, os, re, errno, stat
+import cgi, sys, os, re, errno, stat, glob
 
 image_ext = 'png|gif|jpg|jpeg|bmp|ico'
 video_ext = "ogg|ogv|oga" # Not supported by Firefox 3.5: mkv|mpg|mpeg|mp4|avi|asf|flv|wmv|qt
@@ -36,6 +30,9 @@ url_re   = re.compile(r"[a-z]{3,8}://[^\s'\"]+\S")
 ext_re   = re.compile(r"\.([^\./]+)$")
 
 # CGI stuff ---------------------------------------------------------
+def config_get(key, default=None):
+    return globals().get(key, default)
+
 def script_name():
     return os.environ.get('SCRIPT_NAME', '')
 
@@ -47,7 +44,7 @@ def query_string():
         return os.environ.get('QUERY_STRING', '') or 'FrontPage'
 
 def privileged_path():
-    return privileged_url or script_name()
+    return config_get('privileged_url') or script_name()
 
 def remote_user():
     user = os.environ.get('REMOTE_USER', '')
@@ -83,18 +80,18 @@ def permalink(s):
 def humanlink(s):
     return re.sub(r'(?:.*[/:]|)([^:/\.]+)(?:\.[^/:]+|)$', r'\1', s.replace('_', ' '))
 
-# Split arg lists like "blah| blah blah| width=100 | align = center",
+# Split arg lists like "blah|blah blah| width=100 | align = center",
 # return a list containing anonymous arguments and a map containing the named arguments
 def parse_args(s):
     args = []
-    kwargs = {} 
+    kvargs = {}
     for arg in s.strip('<[{}]>').split('|'):
         m = re.match('\s*(\w+)\s*=\s*(.+)\s*', arg)
         if m is not None:
-            kwargs[m.group(1)] = m.group(2)
+            kvargs[m.group(1)] = m.group(2)
         else:
             args.append(arg.strip())
-    return (args, kwargs)
+    return (args, kvargs)
 
 def url_args(kvargs):
     argv = []
@@ -115,7 +112,7 @@ def send_guru(msg_text, msg_type):
     print('<pre id="guru" onclick="this.style.display = \'none\'" class="' + msg_type + '">')
     if msg_type == 'error':
         print('    Software Failure.  Press left mouse button to continue.\n')
-    print(msg_text)
+    print(cgi.escape(msg_text))
     if msg_type == 'error':
         print '\n           Guru Meditation #DEADBEEF.ABADC0DE'
     print('</pre><script language="JavaScript" type="text/javascript" src="%s" defer="defer"></script>' \
@@ -131,31 +128,32 @@ def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=Fal
     print('  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">')
     print('<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">')
 
-    print("<head><title>%s: %s</title>" % (site_name, text))
+    print("<head><title>%s: %s</title>" % (config_get('site_name', "Unconfigured Wiki"), text))
     print(' <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />')
     if not name:
         print(' <meta name="robots" content="noindex,nofollow" />')
 
-    for meta in meta_urls:
-        http_equiv, content = meta
+    for http_equiv, content in config_get('meta_urls', {}):
         print(' <meta http-equiv="%s" content="%s" />' % (http_equiv, relative_url(content)))
 
-    for link in link_urls:
+    for link in config_get('link_urls', {}):
         rel, href = link
         print(' <link rel="%s" href="%s" />' % (rel, relative_url(href)))
 
-    if name and writable and privileged_url is not None:
+    editable = name and writable and config_get('privileged_url') is not None
+    if editable:
         print(' <link rel="alternate" type="application/x-wiki" title="Edit this page" href="%s" />' \
             % (privileged_path() + '?a=edit&q=' + name))
 
-    if history_url is not None:
+    history = config_get('history_url')
+    if history is not None:
         print(' <link rel="alternate" type="application/rss+xml" title="RSS" href="%s" />' \
-            % relative_url(history_url + '?a=rss'))
+            % relative_url(history + '?a=rss'))
 
     print('</head>')
 
     # Body
-    if name and writable and privileged_url is not None:
+    if editable:
         print('<body ondblclick="location.href=\'' + privileged_path() + '?a=edit&q=' + name + '\'">')
     else:
         print('<body>')
@@ -165,20 +163,20 @@ def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=Fal
 
     # Navbar
     print('<div class="nav">')
-    print link_tag('FrontPage', site_icon or 'Home', cssclass='navlink')
+    print link_tag('FrontPage', config_get('site_icon', 'Home'), cssclass='navlink')
     if name:
         print('  <b>' + link_tag('?fullsearch=' + name, text, cssclass='navlink') + '</b> ')
     else:
         print('  <b>' + text + '</b> ')
     print(' | ' + link_tag('FindPage', 'Find Page', cssclass='navlink'))
-    if 'history_url' in globals():
-        print(' | <a href="' + relative_url(history_url) + '" class="navlink">Recent Changes</a>')
+    if history:
+        print(' | <a href="' + relative_url(history) + '" class="navlink">Recent Changes</a>')
         if name:
-            print(' | <a href="' + relative_url(history_url + '?a=history;f=' + name) + '" class="navlink">Page History</a>')
+            print(' | <a href="' + relative_url(history + '?a=history;f=' + name) + '" class="navlink">Page History</a>')
 
     if name:
         print(' | ' + link_tag(name + '?a=raw', 'Raw Text', cssclass='navlink'))
-        if privileged_url is not None:
+        if config_get('privileged_url') is not None:
             if writable:
                 print(' | ' + link_tag('?a=edit&q=' + name, 'Edit', cssclass='navlink', privileged=True))
             else:
@@ -211,7 +209,7 @@ def link_tag(dest, text=None, privileged=False, **kvargs):
         elif file_re.match(dest) and Page(dest).exists():
             link_class = 'wikilink'
         else:
-            text = nonexist_pfx + text
+            text = config_get('nonexist_pfx', '') + text
             link_class = 'nonexistent'
 
     # Prevent crawlers from following links potentially added by spammers or to generated pages
@@ -225,15 +223,22 @@ def link_inline(name, descr=None, kvargs={}):
     if not descr: descr = humanlink(name)
     url = relative_url(name)
     if video_re.match(name):
-        return '<video controls="1" src="%s">Your browser does not support the HTML5 video tag</video>' % url
+        return '<video controls="1" src="%s">Your browser does not support HTML5 video</video>' % url
     elif image_re.match(name):
         return '<a href="%s"><img border="0" src="%s" alt="%s" /></a>' % (url, url + url_args(kvargs), descr)
     elif file_re.match(name) and not ext_re.search(name): # FIXME: this guesses a wiki page
-        return Page(name).send_naked()
+        Page(name).send_naked(kvargs) # FIXME: we should return the page as a string rather than print it
+        return ''
     else:
         return '<iframe width="100%%" scrolling="auto" frameborder="0" src="%s"><a href="%s">%s</a></iframe>' \
             % (url, url, name)
 
+def link_inline_glob(pattern, descr=None, kvargs={}):
+    s = ''
+    for name in glob.glob(pattern):
+        s += link_inline(name, descr, kvargs)
+    return s
+
 # Search ---------------------------------------------------
 
 def print_search_stats(hits, searched):
@@ -323,33 +328,32 @@ def handle_get(pagename, form):
         else:
             send_httperror("403 Forbidden", pagename)
 
-# Used by macros/WordIndex and macros/TitleIndex
+# Used by sys/macros/WordIndex and sys/macros/TitleIndex
 def make_index_key():
     links = ['<a href="#%s">%s</a>' % (ch, ch) for ch in 'abcdefghijklmnopqrstuvwxyz']
     return '<p style="text-align: center">' + ' | '.join(links) + '</p>'
 
-def page_list(dirname=None, re=None):
-    if re is None:
+def page_list(dirname=None, search_re=None):
+    if search_re is None:
         # FIXME: WikiWord is too restrictive now!
-        re = re.compile(r"^\b((([A-Z][a-z0-9]+){2,}/)*([A-Z][a-z0-9]+){2,})\b$")
-    return sorted(filter(re.match, os.listdir(dirname or data_dir)))
+        search_re = re.compile(r"^\b((([A-Z][a-z0-9]+){2,}/)*([A-Z][a-z0-9]+){2,})\b$")
+    return sorted(filter(search_re.match, os.listdir(dirname or '.')))
 
 def send_footer(mtime=None):
-    if globals().get('debug_cgi', False):
+    if config_get('debug_cgi', False):
         cgi.print_arguments()
         cgi.print_form(form)
         cgi.print_environ()
-        #FIXME link_inline("sys/footer")
-    print('''
-<div id="footer"><hr />
-<p class="copyright">
-<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img class="license" alt="Creative Commons License" src="%s" /></a>
-<span class="benchmark">generated in %0.3fs</span> by <a href="http://www.codewiz.org/wiki/GeekiGeeki">GeekiGeeki</a> version %s
-</p>
-''' % (relative_url('sys/cc-by-sa.png'), clock() - start_time, __version__))
-    if mtime:
-        print('<p class="modified">last modified %s</p>' % strftime(datetime_fmt, localtime(mtime)))
-    print('</div></body></html>')
+    link_inline("sys/footer", kvargs = {
+        'LAST_MODIFIED': strftime(config_get(datetime_fmt, '%a %d %b %Y %I:%M %p'), localtime(mtime))
+    })
+    print("</body></html>")
+
+def _macro_ELAPSED_TIME(*args, **kvargs):
+    return "%03f" % (clock() - start_time)
+
+def _macro_VERSION(*args, **kvargs):
+    return __version__
 
 class WikiFormatter:
     """Object that turns Wiki markup into HTML.
@@ -357,8 +361,9 @@ class WikiFormatter:
     All formatting commands can be parsed one line at a time, though
     some state is carried over between lines.
     """
-    def __init__(self, raw):
+    def __init__(self, raw, kvargs=None):
         self.raw = raw
+        self.kvargs = kvargs or {}
         self.h_level = 0
         self.in_pre = self.in_html = self.in_table = self.in_li = False
         self.in_header = True
@@ -404,14 +409,16 @@ class WikiFormatter:
 
     def _macro_repl(self, word):
         try:
-            args, kwargs = parse_args(word)
+            args, kvargs = parse_args(word)
+            if args[0] in self.kvargs:
+                return self.kvargs[args[0]]
             macro = globals().get('_macro_' + args[0])
             if not macro:
-                exec(open("macros/" + name + ".py").read(), globals())
-                macro = globals().get('_macro_' + name)
-            return macro(*args, **kwargs)
-        except Exception:
-            msg = cgi.escape(word)
+                exec(open("sys/macros/" + args[0] + ".py").read(), globals())
+                macro = globals().get('_macro_' + args[0])
+            return macro(*args, **kvargs)
+        except Exception, e:
+            msg = cgi.escape(word) + ": " + cgi.escape(e.message)
             if not self.in_html:
                 msg = '<strong class="error">' + msg + '</strong>'
             return msg
@@ -428,10 +435,10 @@ class WikiFormatter:
             # This double div nonsense works around a limitation of the HTML block model
             return '<div class="' + kvargs.get('class', 'thumb') + '">' \
                 + '<div class="innerthumb">' \
-                + link_inline(name, descr, kvargs) \
+                + link_inline_glob(name, descr, kvargs) \
                 + '<div class="caption">' + descr + '</div></div></div>'
         else:
-            return link_inline(name, None, kvargs)
+            return link_inline_glob(name, None, kvargs)
 
     def _html_repl(self, word):
         if not self.in_html and word.startswith('<div'): word = '</p>' + word
@@ -535,7 +542,7 @@ class WikiFormatter:
             if hit:
                 return getattr(self, '_' + rule + '_repl')(hit)
         else:
-            raise "Can't handle match " + repr(match)
+            raise Exception("Can't handle match " + repr(match))
 
     def print_html(self):
         print('<div class="wiki"><p>')
@@ -624,10 +631,10 @@ class Page:
         return re.sub('([a-z])([A-Z])', r'\1 \2', self.page_name)
 
     def _filename(self):
-        return os.path.join(data_dir, self.page_name)
+        return self.page_name
 
     def _tmp_filename(self):
-        return os.path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + str(os.getpid()) + '#'))
+        return self.page_name + '.tmp' + str(os.getpid()) + '#'
 
     def _mtime(self):
         try:
@@ -664,9 +671,10 @@ class Page:
  
         for filename in page_list(self._filename(), file_re):
             if image_re.match(filename):
-                if image_maxwidth:
-                    maxwidth_arg = ' | maxwidth=' + str(image_maxwidth)
-                out += '{{' + self.page_name + '/' + filename + ' | ' + humanlink(filename) + maxwidth_arg + ' | class=thumbleft}}\n'
+                maxwidth = config_get(image_maxwidth, '')
+                if maxwidth:
+                    maxwidth = ' | maxwidth=' + str(maxwidth)
+                out += '{{' + self.page_name + '/' + filename + ' | ' + humanlink(filename) + maxwidth + ' | class=thumbleft}}\n'
             else:
                 out += ' * [[' + self.page_name + '/' + filename + ']]\n'
         return out
@@ -712,9 +720,9 @@ class Page:
     def can_read(self):
         return self.can("read", True)
 
-    def send_naked(self):
+    def send_naked(self, kvargs=None):
         if self.can_read():
-            WikiFormatter(self.get_raw_body()).print_html()
+            WikiFormatter(self.get_raw_body(), kvargs).print_html()
         else:
             send_guru("Read access denied by ACLs", "notice")
 
@@ -736,35 +744,14 @@ class Page:
             send_guru("Write access denied by ACLs", "error")
             return
 
-        filename = ''
-        if 'file' in form:
-            filename = form['file'].value
-
-        print(('<p><b>Editing ' + self.page_name
-            + ' for ' + cgi.escape(remote_user())
-            + ' from ' + cgi.escape(get_hostname(remote_host()))
-            + '</b></p>'))
-        print('<div class="editor"><form name="editform" method="post" enctype="multipart/form-data" action="%s">' % relative_url(self.page_name))
-        print('<input type="hidden" name="a" value="edit" /><input type="hidden" name="q" value="' + self.page_name + '" />')
-        print('<input type="input" id="editor" name="changelog" value="Edit page %s" accesskey="c" /><br />' % (self.page_name))
-        print('<textarea wrap="off" spellcheck="true" id="editor" name="savetext" rows="17" cols="100" accesskey="e">%s</textarea>' \
-            % cgi.escape(preview or self.get_raw_body(default='')))
-        print('<label for="file" accesskey="u">Or Upload a file:</label> <input type="file" name="file" value="%s" />' % filename)
-        print("""
-            <br />
-            <input type="submit" name="save" value="Save" accesskey="s">
-            <input type="submit" name="preview" value="Preview" accesskey="p" />
-            <input type="reset" value="Reset" />
-            <input type="submit" name="cancel" value="Cancel" />
-            <br />
-            </form></div>
-            <script language="javascript">
-            <!--
-            document.editform.savetext.focus()
-            //-->
-            </script>
-            """)
-        print("<p>" + link_tag('EditingTips') + "</p>")
+        if preview is None:
+            preview = self.get_raw_body(default='')
+
+        link_inline("sys/EditPage", kvargs = {
+            'EDIT_BODY': cgi.escape(preview),
+            #'EDIT_PREVIEW': WikiFormatter(preview).print_html(),
+        })
+
         if preview:
             print("<div class='preview'>")
             WikiFormatter(preview).print_html()
@@ -809,9 +796,12 @@ class Page:
 
         self._write_file(newdata)
         rc = 0
-        if post_edit_hook:
+        if config_get('post_edit_hook'):
             import subprocess
-            cmd = [ post_edit_hook, data_dir + '/' + self.page_name, remote_user(), remote_host(), changelog]
+            cmd = [
+                config_get('post_edit_hook'),
+                self.page_name, remote_user(),
+                remote_host(), changelog ]
             child = subprocess.Popen(cmd, stdout=subprocess.PIPE, close_fds=True)
             output = child.stdout.read()
             rc = child.wait()
@@ -825,6 +815,7 @@ class Page:
 
 try:
     exec(open("geekigeeki.conf.py").read())
+    os.chdir(config_get('data_dir', 'data'))
     form = cgi.FieldStorage()
     action = form.getvalue('a', 'get')
     handler = globals().get('handle_' + action)
diff --git a/git-bloat b/git-bloat
new file mode 100755 (executable)
index 0000000..ef73cff
--- /dev/null
+++ b/git-bloat
@@ -0,0 +1,13 @@
+#!/bin/bash
+# Copyright 2009 Bernie Innocenti <bernie@codewiz.org>
+
+if [ $# -ne 1 ]; then
+       echo "Usage: $0 {path}"
+       exit 1
+fi
+
+git log --pretty=oneline "$1" | while read log; do
+       tree=($log)
+       rev=`git ls-tree ${tree[0]} "$1" | awk '{print $3}'`
+       git cat-file blob $rev | wc -l
+done | tac | graph -T X -a 1 -y 0 1000 -X revisions -Y LOCs
diff --git a/git-cat b/git-cat
index 5b9945ca4255661837f65a189841a8eff6a424b4..91c3eb9f7294086d13b8027ea688244b42d01fce 100755 (executable)
--- a/git-cat
+++ b/git-cat
@@ -1,7 +1,10 @@
-if [ $# -ne 1 ] ; then
+#!/bin/bash
+# Copyright 2009 Bernie Innocenti <bernie@codewiz.org>
+
+if [ $# -ne 1 ]; then
        echo "Usage: $0 {path}"
        exit 1
 fi
 
 info=(`git ls-tree HEAD $1`)
-git-cat-file blob ${info[2]}
+git cat-file blob ${info[2]}
diff --git a/macros/CgiVar.py b/macros/CgiVar.py
deleted file mode 100644 (file)
index 9199514..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-def _macro_CgiVar(argv):
-    return {
-        'REMOTE_USER': remote_user(),
-        'REMOTE_HOST': get_hostname(remote_host()),
-        'REMOTE_ADDR': remote_host(),
-        'QUERY_STRING': relative_url(query_string()),
-    }[argv[1]]
diff --git a/macros/HttpGet.py b/macros/HttpGet.py
deleted file mode 100644 (file)
index 7a4b548..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-def _macro_HttpGet(argv):
-    if argv[1] in form:
-        return form[argv[1]].value
-    elif len(argv) > 2:
-        return argv[2] # default value
-    return ''
diff --git a/macros/HttpPost.py b/macros/HttpPost.py
deleted file mode 100644 (file)
index ce61f79..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-def _macro_HttpPost(argv):
-    if argv[1] in form:
-        return form[argv[1]].value
-    elif len(argv) > 2:
-        return argv[2] # default value
-    return ''
diff --git a/macros/TitleIndex.py b/macros/TitleIndex.py
deleted file mode 100644 (file)
index 04d5019..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-def _macro_TitleIndex(argv):
-    s = make_index_key()
-    pages = list(page_list())
-    pages.sort()
-    current_letter = None
-    for name in pages:
-        letter = name[0].lower()
-        if letter != current_letter:
-            s += '<a name="%s"><h3>%s</h3></a>' % (letter, letter)
-            current_letter = letter
-        else:
-            s += '<br />'
-        s += Page(name).link_to()
-    return s
diff --git a/macros/WordIndex.py b/macros/WordIndex.py
deleted file mode 100644 (file)
index 6438d0b..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-def _macro_WordIndex(argv):
-    s = make_index_key()
-    pages = list(page_list())
-    map = {}
-    word_re = re.compile('[A-Z][a-z]+')
-    for name in pages:
-        for word in word_re.findall(name):
-            try:
-                map[word].append(name)
-            except KeyError:
-                map[word] = [name]
-
-    all_words = list(map.keys())
-    all_words.sort()
-    last_letter = None
-    # set title
-    for word in all_words:
-        letter = word[0].lower()
-        if letter != last_letter:
-            s += '<a name="%s"><h3>%s</h3></a>' % (letter, letter)
-            last_letter = letter
-
-        s += '<b>%s</b><ul>' % word
-        links = map[word]
-        links.sort()
-        last_page = None
-        for name in links:
-            if name == last_page: continue
-            s += '<li>' + link_tag(name) + '</li>'
-        s += '</ul>'
-    return s