Merge pylint/pychecker cleanups from branch master of trinity
authorBernie Innocenti <bernie@codewiz.org>
Mon, 15 Dec 2008 03:24:36 +0000 (22:24 -0500)
committerBernie Innocenti <bernie@codewiz.org>
Mon, 15 Dec 2008 03:26:10 +0000 (22:26 -0500)
Conflicts:
geekigeeki.py

1  2 
geekigeeki.py

diff --combined geekigeeki.py
index a9aa019400d5e166e662668def9a1c8fd6ba7bec,0ff2e7a007527f0d2fa2ce9e9212ceffd839e88e..ca16283d5ea2f2c78c573b3863a371add9c15aef
@@@ -1,4 -1,4 +1,4 @@@
 -#!/usr/bin/python
 +#!/usr/bin/python3.0
  # -*- coding: utf-8 -*-
  #
  # Copyright 1999, 2000 Martin Pool <mbp@humbug.org.au>
@@@ -24,7 -24,6 +24,6 @@@ from time import cloc
  start_time = clock()
  
  import cgi, sys, os, re, errno, stat
- from os import path, environ
  
  # Regular expression defining a WikiWord
  # (but this definition is also assumed in other places)
@@@ -41,25 -40,25 +40,25 @@@ title_done = Fals
  # CGI stuff ---------------------------------------------------------
  
  def script_name():
-     return environ.get('SCRIPT_NAME', '')
+     return os.environ.get('SCRIPT_NAME', '')
  
  def privileged_path():
      return privileged_url or script_name()
  
  def remote_user():
-     user = environ.get('REMOTE_USER', '')
+     user = os.environ.get('REMOTE_USER', '')
      if user is None or user == '' or user == 'anonymous':
          user = 'AnonymousCoward'
      return user
  
  def remote_host():
-     return environ.get('REMOTE_ADDR', '')
+     return os.environ.get('REMOTE_ADDR', '')
  
  def get_hostname(addr):
      try:
          from socket import gethostbyaddr
          return gethostbyaddr(addr)[0] + ' (' + addr + ')'
-     except Exception as er:
+     except Exception:
          return addr
  
  def relative_url(pathname, privileged=False):
@@@ -76,19 -75,19 +75,19 @@@ def permalink(s)
  
  # Formatting stuff --------------------------------------------------
  def emit_header(mime_type="text/html"):
 -    print "Content-type: " + mime_type + "; charset=utf-8\n"
 +    print("Content-type: " + mime_type + "; charset=utf-8\n")
  
  def send_guru(msg_text, msg_type):
      if not msg_text: return
 -    print '<pre id="guru" onclick="this.style.display = \'none\'" class="' + 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('    Software Failure.  Press left mouse button to continue.\n')
 +    print(msg_text)
      if msg_type == 'error':
 -        print '\n      Guru Meditation #DEADBEEF.ABADC0DE'
 -    print '</pre>'
 +        print('\n      Guru Meditation #DEADBEEF.ABADC0DE')
 +    print('</pre>')
      # FIXME: This little JS snippet is harder to pass than ACID 3.0 
 -    print """
 +    print("""
      <script language="JavaScript" type="text/javascript">
          var guru = document.getElementById('guru');
          // Firefox 2.0 doesn't take border-color, but returns border-top-color fine
              //window.alert("enabled! color='" + color + "'");
              guruOn();
          }
 -    </script>"""
 +    </script>""")
  
  def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=False):
      global title_done
  
      # Head
      emit_header()
 -    print '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"'
 -    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('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"')
 +    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">')
  
-     site_name = globals().get('site_name', 'Unconfigured Site')
 -    print "<head><title>%s: %s</title>" % (site_name, text)
 -    print ' <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />'
 +    print("<head><title>%s: %s</title>" % (site_name, text))
 +    print(' <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />')
      if not name:
 -        print ' <meta name="robots" content="noindex,nofollow" />'
 +        print(' <meta name="robots" content="noindex,nofollow" />')
  
      for meta in meta_urls:
          http_equiv, content = meta
 -        print ' <meta http-equiv="%s" content="%s" />' % (http_equiv, relative_url(content))
 +        print(' <meta http-equiv="%s" content="%s" />' % (http_equiv, relative_url(content)))
  
      for link in link_urls:
          rel, href = link
 -        print ' <link rel="%s" href="%s" />' % (rel, relative_url(href))
 +        print(' <link rel="%s" href="%s" />' % (rel, relative_url(href)))
  
      if name and writable and privileged_url is not None:
 -        print ' <link rel="alternate" type="application/x-wiki" title="Edit this page" href="%s" />' \
 -            % (privileged_path() + '?edit=' + name)
 +        print(' <link rel="alternate" type="application/x-wiki" title="Edit this page" href="%s" />' \
 +            % (privileged_path() + '?edit=' + name))
  
      if history_url is not None:
 -        print ' <link rel="alternate" type="application/rss+xml" title="RSS" href="%s" />' \
 -            % relative_url(history_url + '?a=rss')
 +        print(' <link rel="alternate" type="application/rss+xml" title="RSS" href="%s" />' \
 +            % relative_url(history_url + '?a=rss'))
  
 -    print '</head>'
 +    print('</head>')
  
      # Body
      if name and writable and privileged_url is not None:
 -        print '<body ondblclick="location.href=\'' + privileged_path() + '?edit=' + name + '\'">'
 +        print('<body ondblclick="location.href=\'' + privileged_path() + '?edit=' + name + '\'">')
      else:
 -        print '<body>'
 +        print('<body>')
  
      title_done = True
      send_guru(msg_text, msg_type)
  
      # Navbar
 -    print '<div class="nav">'
 +    print('<div class="nav">')
      if name:
 -        print '  <b>' + link_tag('?fullsearch=' + name, text, 'navlink') + '</b> '
 +        print('  <b>' + link_tag('?fullsearch=' + name, text, 'navlink') + '</b> ')
      else:
 -        print '  <b>' + text + '</b> '
 -    print ' | ' + link_tag('FrontPage', 'Home', 'navlink')
 -    print ' | ' + link_tag('FindPage', 'Find Page', 'navlink')
 +        print('  <b>' + text + '</b> ')
 +    print(' | ' + link_tag('FrontPage', 'Home', 'navlink'))
 +    print(' | ' + link_tag('FindPage', 'Find Page', 'navlink'))
      if 'history_url' in globals():
 -        print ' | <a href="' + relative_url(history_url) + '" class="navlink">Recent Changes</a>'
 +        print(' | <a href="' + relative_url(history_url) + '" 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_url + '?a=history;f=' + name) + '" class="navlink">Page History</a>')
  
      if name:
 -        print ' | ' + link_tag('?raw=' + name, 'Raw Text', 'navlink')
 +        print(' | ' + link_tag('?raw=' + name, 'Raw Text', 'navlink'))
          if privileged_url is not None:
              if writable:
 -                print ' | ' + link_tag('?edit=' + name, 'Edit', 'navlink', privileged=True)
 +                print(' | ' + link_tag('?edit=' + name, 'Edit', 'navlink', privileged=True))
              else:
 -                print ' | ' + link_tag(name, 'Login', 'navlink', privileged=True)
 +                print(' | ' + link_tag(name, 'Login', 'navlink', privileged=True))
  
      else:
 -        print ' | <i>Immutable Page</i>'
 +        print(' | <i>Immutable Page</i>')
  
      user = remote_user()
      if user != 'AnonymousCoward':
 -        print ' | <span class="login"><i>logged in as <b>' + cgi.escape(user) + '</b></i></span>'
 +        print(' | <span class="login"><i>logged in as <b>' + cgi.escape(user) + '</b></i></span>')
  
 -    print '<hr /></div>'
 +    print('<hr /></div>')
  
  def send_httperror(status="403 Not Found", query=""):
 -    print "Status: %s" % status
 +    print("Status: %s" % status)
      send_title(None, msg_text=("%s: on query '%s'" % (status, query)))
-     send_footer(None)
+     send_footer()
  
  def link_tag(params, text=None, ss_class=None, privileged=False):
      if text is None:
@@@ -220,13 -218,13 +218,13 @@@ def handle_fullsearch(needle)
      hits.sort()
      hits.reverse()
  
 -    print "<ul>"
 +    print("<ul>")
      for (count, page_name) in hits:
 -        print '<li><p>' + Page(page_name).link_to()
 -        print ' . . . . ' + `count`
 -        print ['match', 'matches'][count != 1]
 -        print '</p></li>'
 -    print "</ul>"
 +        print('<li><p>' + Page(page_name).link_to())
 +        print(' . . . . ' + repr(count))
 +        print(['match', 'matches'][count != 1])
 +        print('</p></li>')
 +    print("</ul>")
  
      print_search_stats(len(hits), len(all_pages))
  
@@@ -236,17 -234,17 +234,17 @@@ def handle_titlesearch(needle)
  
      needle_re = re.compile(needle, re.IGNORECASE)
      all_pages = page_list()
 -    hits = filter(needle_re.search, all_pages)
 +    hits = list(filter(needle_re.search, all_pages))
  
 -    print "<ul>"
 +    print("<ul>")
      for filename in hits:
 -        print '<li><p>' + Page(filename).link_to() + "</p></li>"
 -    print "</ul>"
 +        print('<li><p>' + Page(filename).link_to() + "</p></li>")
 +    print("</ul>")
  
      print_search_stats(len(hits), len(all_pages))
  
  def print_search_stats(hits, searched):
 -    print "<p>%d hits out of %d pages searched.</p>" % (hits, searched)
 +    print("<p>%d hits out of %d pages searched.</p>" % (hits, searched))
  
  def handle_raw(pagename):
      if not file_re.match(pagename):
@@@ -278,27 -276,27 +276,27 @@@ def handle_edit(pagename)
          pg.send_editor(text)
  
  def make_index_key():
 -    links = map(lambda ch: '<a href="#%s">%s</a>' % (ch, ch), 'abcdefghijklmnopqrstuvwxyz')
 +    links = ['<a href="#%s">%s</a>' % (ch, ch) for ch in 'abcdefghijklmnopqrstuvwxyz']
      return '<p><center>'+ ' | '.join(links) + '</center></p>'
  
- def page_list(dir = None, re = word_re):
-     return sorted(filter(re.match, os.listdir(dir or data_dir)))
+ def page_list(dirname = None, re = word_re):
+     return sorted(filter(re.match, os.listdir(dirname or data_dir)))
  
- def send_footer(name, mod_string=None):
+ def send_footer(mod_string=None):
      if globals().get('debug_cgi', False):
          cgi.print_arguments()
          cgi.print_form(form)
          cgi.print_environ()
 -    print '''
 +    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="http://i.creativecommons.org/l/by-sa/3.0/80x15.png" /></a>
  <span class="benchmark">generated in %0.3fs</span> by <a href="http://www.codewiz.org/wiki/GeekiGeeki">GeekiGeeki</a> version %s
  </p>
 -''' % (clock() - start_time, __version__)
 +''' % (clock() - start_time, __version__))
      if mod_string:
 -        print '<p class="modified">last modified %s</p>' % mod_string
 -    print '</div></body></html>'
 +        print('<p class="modified">last modified %s</p>' % mod_string)
 +    print('</div></body></html>')
  
  class WikiFormatter:
      """Object that turns Wiki markup into HTML.
          return Page(word).link_to()
  
      def _img_repl(self, word):
-         path = relative_url(word)
-         return '<a href="%s"><img border="0" src="%s" /></a>' % (path, path)
+         pathname = relative_url(word)
+         return '<a href="%s"><img border="0" src="%s" /></a>' % (pathname, pathname)
  
      def _url_repl(self, word):
          if img_re.match(word):
          argv = [name]
          if m.group(2):
              argv.extend(m.group(2).split('|'))
 -        argv = map(str.strip, argv)
 +        argv = list(map(str.strip, argv))
  
          macro = globals().get('_macro_' + name)
          if not macro:
              try:
 -                execfile("macros/" + name + ".py", globals())
 -            except IOError, err:
 +                exec(open("macros/" + name + ".py").read(), globals())
-             except IOError as er:
-                 if er.errno == errno.ENOENT:
-                     pass
++            except IOError as err:
+                 if err.errno == errno.ENOENT: pass
              macro = globals().get('_macro_' + name)
          if macro:
              return macro(argv)
          return res
  
      def replace(self, match):
-         for type, hit in list(match.groupdict().items()):
 -        for rule, hit in match.groupdict().items():
++        for rule, hit in list(match.groupdict().items()):
              if hit:
-                 return getattr(self, '_' + type + '_repl')(hit)
+                 return getattr(self, '_' + rule + '_repl')(hit)
          else:
              raise "Can't handle match " + repr(match)
  
      def print_html(self):
 -        print '<div class="wiki"><p>'
 +        print('<div class="wiki"><p>')
  
          # For each line, we scan through looking for magic
          # strings, outputting verbatim any intervening text
          indent_re = re.compile(r"^\s*")
          tr_re = re.compile(r"^\s*\|\|")
          eol_re = re.compile(r"\r?\n")
-         for self.line in eol_re.split(str(self.raw).expandtabs()):
-             # Skip ACLs
 -        for self.line in eol_re.split(self.raw.expandtabs()):
++        for self.line in eol_re.split(str(self.raw.expandtabs())):
+             # Skip pragmas
              if self.in_header:
                  if self.line.startswith('#'):
                      continue
                  self.in_header = False
  
              if self.in_pre:
 -                print re.sub(pre_re, self.replace, self.line)
 +                print(re.sub(pre_re, self.replace, self.line))
              else:
                  if self.in_table and not tr_re.match(self.line):
                      self.in_table = False
 -                    print '</tbody></table><p>'
 +                    print('</tbody></table><p>')
  
                  if blank_re.match(self.line):
 -                    print '</p><p>'
 +                    print('</p><p>')
                  else:
                      indent = indent_re.match(self.line)
 -                    print self._indent_to(len(indent.group(0))) ,
 -                    print re.sub(scan_re, self.replace, self.line)
 +                    print(self._indent_to(len(indent.group(0))), end=' ')
 +                    print(re.sub(scan_re, self.replace, self.line))
  
 -        if self.in_pre: print '</pre>'
 -        if self.in_table: print '</tbody></table><p>'
 -        print self._undent()
 -        print '</p></div>'
 +        if self.in_pre: print('</pre>')
 +        if self.in_table: print('</tbody></table><p>')
 +        print(self._undent())
 +        print('</p></div>')
  
  class Page:
      def __init__(self, page_name):
          return re.sub('([a-z])([A-Z])', r'\1 \2', self.page_name)
  
      def _filename(self):
-         return path.join(data_dir, self.page_name)
+         return os.path.join(data_dir, self.page_name)
  
      def _tmp_filename(self):
-         return path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + repr(os.getpid()) + '#'))
 -        return os.path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + `os.getpid()` + '#'))
++        return os.path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + repr(os.getpid()) + '#'))
  
      def exists(self):
          try:
              os.stat(self._filename())
              return True
-         except OSError as er:
-             if er.errno == errno.ENOENT:
 -        except OSError, err:
++        except OSError as err:
+             if err.errno == errno.ENOENT:
                  return False
-             raise er
+             raise err
  
      def link_to(self):
          word = self.page_name
      def get_raw_body(self):
          try:
              return open(self._filename(), 'rb').read()
-         except IOError as er:
-             if er.errno == errno.ENOENT:
 -        except IOError, err:
++        except IOError as err:
+             if err.errno == errno.ENOENT:
                  return '' # just doesn't exist, use default
-             if er.errno == errno.EISDIR:
+             if err.errno == errno.EISDIR:
                  return self.format_dir()
-             raise er
+             raise err
  
      def format_dir(self):
          out = '== '
-         path = ''
-         for dir in self.page_name.split('/'):
-             path = (path + '/' + dir) if path else dir
-             out += '[[' + path + '|' + dir + ']]/'
+         pathname = ''
+         for dirname in self.page_name.split('/'):
+             pathname = (pathname + '/' + dirname) if pathname else dirname
+             out += '[[' + pathname + '|' + dirname + ']]/'
          out += ' ==\n'
   
-         for file in page_list(self._filename(), file_re):
-             if img_re.match(file):
+         for filename in page_list(self._filename(), file_re):
+             if img_re.match(filename):
                  if image_maxwidth:
                      maxwidth_arg = '|maxwidth=' + str(image_maxwidth)
-                 out += '{{' + self.page_name + '/' + file + '|' + file + maxwidth_arg + '}}\n'
+                 out += '{{' + self.page_name + '/' + filename + '|' + filename + maxwidth_arg + '}}\n'
              else:
-                 out += ' * [[' + self.page_name + '/' + file + ']]\n'
+                 out += ' * [[' + self.page_name + '/' + filename + ']]\n'
          return out
-     def get_attrs(self):
-         if 'attrs' in self.__dict__:
-             return self.attrs
-         self.attrs = {}
-         try:
-             file = open(self._filename(), 'rt')
-             attr_re = re.compile(r"^#(\S*)(.*)$")
-             for line in file:
-                 m = attr_re.match(line)
-                 if not m:
-                     break
-                 self.attrs[m.group(1)] = m.group(2).strip()
-                 #print "bernie: attrs[" + m.group(1) + "] = " + m.group(2) + "<br>\n"
-         except IOError as er:
-             if er.errno != errno.ENOENT and er.errno != errno.EISDIR:
-                 raise er
-         return self.attrs
-     def get_attr(self, name, default):
-         return self.get_attrs().get(name, default)
+     def pragmas(self):
+         if not '_pragmas' in self.__dict__:
 -            self._pragmas = {}
+             try:
 -                f = open(self._filename(), 'rt')
++                file = open(self._filename(), 'rt')
+                 attr_re = re.compile(r"^#(\S*)(.*)$")
 -                for line in f:
++                for line in file:
+                     m = attr_re.match(line)
+                     if not m:
+                         break
+                     self._pragmas[m.group(1)] = m.group(2).strip()
 -                    #print "bernie: _pragmas[" + m.group(1) + "] = " + m.group(2) + "<br>\n"
 -            except IOError, err:
++                    #print "bernie: pragmas[" + m.group(1) + "] = " + m.group(2) + "<br>\n"
++            except IOError as err:
+                 if err.errno != errno.ENOENT and err.errno != errno.EISDIR:
 -                    raise err
++                    raise er
+         return self._pragmas
+     def pragma(self, name, default):
+         return self.pragmas().get(name, default)
  
      def can(self, action, default=True):
          acl = None
          try:
              #acl SomeUser:read,write All:read
-             acl = self.get_attr("acl", None)
+             acl = self.pragma("acl", None)
              for rule in acl.split():
                  (user, perms) = rule.split(':')
                  if user == remote_user() or user == "All":
                      return action in perms.split(',')
              return False
-         except Exception as er:
+         except Exception:
              if acl:
                  self.msg_text = 'Illegal acl line: ' + acl
          return default
  
      def format(self):
          #css foo.css
-         value = self.get_attr("css", None)
+         value = self.pragma("css", None)
          if value:
              global link_urls
              link_urls += [ [ "stylesheet", value ] ]
          send_title(self.page_name, self.split_title(),
              msg_text=self.msg_text, msg_type=self.msg_type, writable=self.can_write())
          self.send_naked()
-         send_footer(self.page_name, self._last_modified())
+         send_footer(self._last_modified())
  
      def _last_modified(self):
          try:
              from time import localtime, strftime
              modtime = localtime(os.stat(self._filename())[stat.ST_MTIME])
-         except OSError as er:
-             if er.errno != errno.ENOENT:
-                 raise er
 -        except OSError, err:
++        except OSError as err:
+             if err.errno != errno.ENOENT:
+                 raise err
              return None
          return strftime(datetime_fmt, modtime)
  
              send_guru("Write access denied by ACLs", "error")
              return
  
-         file = ''
+         filename = ''
          if 'file' in form:
-             file = form['file'].value
+             filename = form['file'].value
  
 -        print ('<p><b>Editing ' + self.page_name
 +        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="edit" value="%s">' % (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())
 -        print '<label for="file" accesskey="u">Or Upload a file:</label> <input type="file" name="file" value="%s" />' % filename
 -        print """
 +            + '</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="edit" value="%s">' % (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()))
-         print('<label for="file" accesskey="u">Or Upload a file:</label> <input type="file" name="file" value="%s" />' % file)
++        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" />
              document.editform.savetext.focus()
              //-->
              </script>
 -            """
 -        print "<p>" + Page('EditingTips').link_to() + "</p>"
 +            """)
 +        print("<p>" + Page('EditingTips').link_to() + "</p>")
          if preview:
 -            print "<div class='preview'>"
 +            print("<div class='preview'>")
              WikiFormatter(preview).print_html()
 -            print "</div>"
 +            print("</div>")
-         send_footer(self.page_name)
+         send_footer()
  
      def send_raw(self, mimetype='text/plain'):
          if self.can_read():
              body = self.get_raw_body()
              emit_header(mimetype)
 -            print body
 +            print(body)
          else:
              send_title(None, msg_text='Read access denied by ACLs', msg_type='notice')
  
              # Bad Bill!  POSIX rename ought to replace. :-(
              try:
                  os.remove(name)
-             except OSError as er:
-                 if er.errno != errno.ENOENT: raise er
 -            except OSError, err:
++            except OSError as err:
+                 if err.errno != errno.ENOENT: raise err
          os.rename(tmp_filename, name)
  
      def save(self, newdata, changelog):
              self.msg_text = 'Thank you for your contribution.  Your attention to detail is appreciated.'
              self.msg_type = 'success'
  
- # Main ---------------------------------------------------------------
- try:
-     exec(open("geekigeeki.conf.py").read())
-     form = cgi.FieldStorage()
+ def main():
      for cmd in form:
          handler = globals().get('handle_' + cmd)
          if handler:
              handler(form[cmd].value)
              break
      else:
-         path_info = environ.get('PATH_INFO', '')
+         path_info = os.environ.get('PATH_INFO', '')
          if len(path_info) and path_info[0] == '/':
              query = path_info[1:] or 'FrontPage'
          else:
-             query = environ.get('QUERY_STRING', '') or 'FrontPage'
+             query = os.environ.get('QUERY_STRING', '') or 'FrontPage'
  
          if file_re.match(query):
              if word_re.match(query):
                  Page(query).format()
              else:
                  from mimetypes import MimeTypes
-                 type, encoding = MimeTypes().guess_type(query)
-                 #type = type or 'text/plain'
-                 #Page(query).send_raw(mimetype=type)
-                 if type:
-                     if type.startswith('image/'):
-                         Page(query).send_image(mimetype=type,args=form)
+                 mimetype, encoding = MimeTypes().guess_type(query)
+                 if mimetype:
+                     if mimetype.startswith('image/'):
+                         Page(query).send_image(mimetype=mimetype, args=form)
                      else:
-                         Page(query).send_raw(mimetype=type)
+                         Page(query).send_raw(mimetype=mimetype)
                  else:
                      Page(query).format()
          else:
              send_httperror("403 Forbidden", query)
 -    execfile("geekigeeki.conf.py")
+ try:
++    exec(open("geekigeeki.conf.py").read())
+     form = cgi.FieldStorage()
+     main()
  except Exception:
      import traceback
      msg_text = traceback.format_exc()
          send_guru(msg_text, "error")
      else:
          send_title(None, msg_text=msg_text)
-     send_footer(None)
+     send_footer()
  
  sys.stdout.flush()