From: Bernie Innocenti
Date: Mon, 15 Dec 2008 03:06:31 +0000 (-0500)
Subject: Converted to Python 3.0 by 2to3
X-Git-Tag: v4.0~20
X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=2fcd242301699667836d3dce840cb101bec904c7;p=geekigeeki.git
Converted to Python 3.0 by 2to3
---
diff --git a/geekigeeki.py b/geekigeeki.py
old mode 100755
new mode 100644
index 1221e70..b85a3a2
--- a/geekigeeki.py
+++ b/geekigeeki.py
@@ -59,7 +59,7 @@ def get_hostname(addr):
try:
from socket import gethostbyaddr
return gethostbyaddr(addr)[0] + ' (' + addr + ')'
- except Exception, er:
+ except Exception as er:
return addr
def relative_url(pathname, privileged=False):
@@ -76,19 +76,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 ''
+ print('')
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 ' '
+ print('\n Guru Meditation #DEADBEEF.ABADC0DE')
+ print(' ')
# FIXME: This little JS snippet is harder to pass than ACID 3.0
- print """
+ print("""
"""
+ """)
def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=False):
global title_done
@@ -116,75 +116,75 @@ def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=Fal
# Head
emit_header()
- print ''
- print ''
+ print('')
+ print('')
site_name = globals().get('site_name', 'Unconfigured Site')
- print "%s: %s " % (site_name, text)
- print ' '
+ print("%s: %s " % (site_name, text))
+ print(' ')
if not name:
- print ' '
+ print(' ')
for meta in meta_urls:
http_equiv, content = meta
- print ' ' % (http_equiv, relative_url(content))
+ print(' ' % (http_equiv, relative_url(content)))
for link in link_urls:
rel, href = link
- print ' ' % (rel, relative_url(href))
+ print(' ' % (rel, relative_url(href)))
if name and writable and privileged_url is not None:
- print ' ' \
- % (privileged_path() + '?edit=' + name)
+ print(' ' \
+ % (privileged_path() + '?edit=' + name))
if history_url is not None:
- print ' ' \
- % relative_url(history_url + '?a=rss')
+ print(' ' \
+ % relative_url(history_url + '?a=rss'))
- print ''
+ print('')
# Body
if name and writable and privileged_url is not None:
- print ''
+ print('')
else:
- print ''
+ print('')
title_done = True
send_guru(msg_text, msg_type)
# Navbar
- print ''
+ print('
')
if name:
- print '
' + link_tag('?fullsearch=' + name, text, 'navlink') + ' '
+ print('
' + link_tag('?fullsearch=' + name, text, 'navlink') + ' ')
else:
- print '
' + text + ' '
- print ' | ' + link_tag('FrontPage', 'Home', 'navlink')
- print ' | ' + link_tag('FindPage', 'Find Page', 'navlink')
+ print('
' + text + ' ')
+ print(' | ' + link_tag('FrontPage', 'Home', 'navlink'))
+ print(' | ' + link_tag('FindPage', 'Find Page', 'navlink'))
if 'history_url' in globals():
- print ' |
Recent Changes '
+ print(' |
Recent Changes ')
if name:
- print ' |
Page History '
+ print(' |
Page History ')
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 ' |
Immutable Page '
+ print(' |
Immutable Page ')
user = remote_user()
if user != 'AnonymousCoward':
- print ' |
logged in as ' + cgi.escape(user) + ' '
+ print(' |
logged in as ' + cgi.escape(user) + ' ')
- print '
'
+ print('
')
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)
@@ -220,13 +220,13 @@ def handle_fullsearch(needle):
hits.sort()
hits.reverse()
- print "")
print_search_stats(len(hits), len(all_pages))
@@ -236,17 +236,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 "")
print_search_stats(len(hits), len(all_pages))
def print_search_stats(hits, searched):
- print "%d hits out of %d pages searched.
" % (hits, searched)
+ print("%d hits out of %d pages searched.
" % (hits, searched))
def handle_raw(pagename):
if not file_re.match(pagename):
@@ -278,7 +278,7 @@ def handle_edit(pagename):
pg.send_editor(text)
def make_index_key():
- links = map(lambda ch: '%s ' % (ch, ch), 'abcdefghijklmnopqrstuvwxyz')
+ links = ['%s ' % (ch, ch) for ch in 'abcdefghijklmnopqrstuvwxyz']
return '
'+ ' | '.join(links) + '
'
def page_list(dir = None, re = word_re):
@@ -289,16 +289,16 @@ def send_footer(name, mod_string=None):
cgi.print_arguments()
cgi.print_form(form)
cgi.print_environ()
- print '''
+ print('''
'
+ print('last modified %s
' % mod_string)
+ print('')
class WikiFormatter:
"""Object that turns Wiki markup into HTML.
@@ -366,13 +366,13 @@ class WikiFormatter:
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, er:
+ exec(open("macros/" + name + ".py").read(), globals())
+ except IOError as er:
if er.errno == errno.ENOENT:
pass
macro = globals().get('_macro_' + name)
@@ -493,14 +493,14 @@ class WikiFormatter:
return res
def replace(self, match):
- for type, hit in match.groupdict().items():
+ for type, hit in list(match.groupdict().items()):
if hit:
return getattr(self, '_' + type + '_repl')(hit)
else:
- raise "Can't handle match " + `match`
+ raise "Can't handle match " + repr(match)
def print_html(self):
- print ''
+ print('
')
# For each line, we scan through looking for magic
# strings, outputting verbatim any intervening text
@@ -555,23 +555,23 @@ class WikiFormatter:
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 '
'
+ print('
')
if blank_re.match(self.line):
- print '
'
+ print('
')
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 ''
- if self.in_table: print '
'
- print self._undent()
- print '
'
+ if self.in_pre: print('')
+ if self.in_table: print('
')
+ print(self._undent())
+ print('
')
class Page:
def __init__(self, page_name):
@@ -587,13 +587,13 @@ class Page:
return path.join(data_dir, self.page_name)
def _tmp_filename(self):
- return path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + `os.getpid()` + '#'))
+ return path.join(data_dir, ('#' + self.page_name.replace('/','_') + '.' + repr(os.getpid()) + '#'))
def exists(self):
try:
os.stat(self._filename())
return True
- except OSError, er:
+ except OSError as er:
if er.errno == errno.ENOENT:
return False
raise er
@@ -608,7 +608,7 @@ class Page:
def get_raw_body(self):
try:
return open(self._filename(), 'rb').read()
- except IOError, er:
+ except IOError as er:
if er.errno == errno.ENOENT:
return '' # just doesn't exist, use default
if er.errno == errno.EISDIR:
@@ -644,7 +644,7 @@ class Page:
break
self.attrs[m.group(1)] = m.group(2).strip()
#print "bernie: attrs[" + m.group(1) + "] = " + m.group(2) + " \n"
- except IOError, er:
+ except IOError as er:
if er.errno != errno.ENOENT and er.errno != errno.EISDIR:
raise er
return self.attrs
@@ -662,7 +662,7 @@ class Page:
if user == remote_user() or user == "All":
return action in perms.split(',')
return False
- except Exception, er:
+ except Exception as er:
if acl:
self.msg_text = 'Illegal acl line: ' + acl
return default
@@ -695,7 +695,7 @@ class Page:
try:
from time import localtime, strftime
modtime = localtime(os.stat(self._filename())[stat.ST_MTIME])
- except OSError, er:
+ except OSError as er:
if er.errno != errno.ENOENT:
raise er
return None
@@ -711,16 +711,16 @@ class Page:
if 'file' in form:
file = form['file'].value
- print ('Editing ' + self.page_name
+ print(('
Editing ' + self.page_name
+ ' for ' + cgi.escape(remote_user())
+ ' from ' + cgi.escape(get_hostname(remote_host()))
- + '
')
- print '