From 7791f6e416a123e6cbd62293acb04434bd4eadad Mon Sep 17 00:00:00 2001 From: Terence Simpson Date: Mon, 12 Oct 2009 19:26:35 +0100 Subject: [PATCH] Resync all running ubottu code to bzr branch, they should now be in sync again --- Bantracker/__init__.py | 2 +- Bantracker/bans.cgi | 72 +- Bantracker/config.py | 2 +- Bantracker/plugin.py | 195 ++- Bugtracker/__init__.py | 2 +- Bugtracker/config.py | 4 +- Bugtracker/plugin.py | 80 +- Encyclopedia/README.txt | 21 +- Encyclopedia/factoids.cgi | 12 +- Encyclopedia/factoids.tmpl | 65 +- Encyclopedia/logs.tmpl | 2 +- Encyclopedia/plugin.py | 303 ++++- IRCLogin/lp.py | 2 +- IRCLogin/plugin.py | 8 +- Lart/Lart.flat.db | 58 + Lart/config.py | 10 +- Lart/plugin.py | 46 +- Mess/Mess | 0 PackageInfo/packages.py | 59 +- PackageInfo/plugin.py | 123 +- PackageInfo/update_apt | 31 +- PackageInfo/update_apt_file | 35 +- Webcal/cal.ical | 182 +++ Webcal/ical.py | 299 +++-- Webcal/ical.py.bak | 299 +++++ Webcal/ical.py.bak.bac2 | 286 ++++ Webcal/icalendar/__init__.py | 16 + Webcal/icalendar/cal.py | 534 ++++++++ Webcal/icalendar/caselessdict.py | 93 ++ Webcal/icalendar/interfaces.py | 262 ++++ Webcal/icalendar/parser.py | 522 ++++++++ Webcal/icalendar/prop.py | 1513 ++++++++++++++++++++++ Webcal/icalendar/tests/__init__.py | 1 + Webcal/icalendar/tests/test_icalendar.py | 16 + Webcal/icalendar/tools.py | 53 + Webcal/icalendar/util.py | 50 + Webcal/plugin.py | 90 +- Webcal/rruler.py | 61 + Webcal/testical.py | 14 + 39 files changed, 4983 insertions(+), 440 deletions(-) create mode 100644 Lart/Lart.flat.db delete mode 100644 Mess/Mess mode change 100755 => 100644 PackageInfo/update_apt mode change 100755 => 100644 PackageInfo/update_apt_file create mode 100644 Webcal/cal.ical create mode 100644 Webcal/ical.py.bak create mode 100644 Webcal/ical.py.bak.bac2 create mode 100644 Webcal/icalendar/__init__.py create mode 100644 Webcal/icalendar/cal.py create mode 100644 Webcal/icalendar/caselessdict.py create mode 100644 Webcal/icalendar/interfaces.py create mode 100644 Webcal/icalendar/parser.py create mode 100644 Webcal/icalendar/prop.py create mode 100644 Webcal/icalendar/tests/__init__.py create mode 100644 Webcal/icalendar/tests/test_icalendar.py create mode 100644 Webcal/icalendar/tools.py create mode 100644 Webcal/icalendar/util.py create mode 100644 Webcal/rruler.py create mode 100644 Webcal/testical.py diff --git a/Bantracker/__init__.py b/Bantracker/__init__.py index 62663af..2b26bf7 100644 --- a/Bantracker/__init__.py +++ b/Bantracker/__init__.py @@ -21,7 +21,7 @@ import supybot.world as world __version__ = "0.3.1" __author__ = supybot.Author("Dennis Kaarsemaker","Seveas","dennis@kaarsemaker.net") __contributors__ = {supybot.Author("Terence Simpson", "stdin", "stdin@stdin.me.uk"): ['Alow configurable bantracker URL']} -__url__ = 'https://ubotu.ubuntu-nl.org' +__url__ = 'http://ubottu.com/' import config reload(config) diff --git a/Bantracker/bans.cgi b/Bantracker/bans.cgi index c8a2037..71973f5 100755 --- a/Bantracker/bans.cgi +++ b/Bantracker/bans.cgi @@ -15,15 +15,12 @@ import sys # This needs to be set to the location of the commoncgi.py file -sys.path.append('/home/ubottu/bot/plugins/') +sys.path.append('/var/www/bot') from commoncgi import * ### Variables -# Location of the bans database -db = '/home/ubottu/data/bans.db' -# Number of bans to show per page +db = '/home/bot/data/bans.db' num_per_page = 100 -### You shouldn't have to change anything under this line ### con = sqlite.connect(db) cur = con.cursor() @@ -33,18 +30,10 @@ error = '' user = None # Delete old sessions -# FAIL! try: - cur.execute("DELETE FROM sessions WHERE time < %d", int(time.mktime(time.gmtime())) - 2592000 * 3) - con.commit() - con.close() + cur.execute("""DELETE FROM sessions WHERE time < %d""", int(time.time()) - 2592000 * 3) except: - try: - con.commit() - except: - pass - finally: - con.close() + pass # Session handling if form.has_key('sess'): @@ -52,15 +41,10 @@ if form.has_key('sess'): if cookie.has_key('sess'): try: sess = cookie['sess'].value - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT user FROM sessions WHERE session_id=%s",sess) + cur.execute("""SELECT user FROM sessions WHERE session_id=%s""",sess) user = cur.fetchall()[0][0] - con.commit() - con.close() except: con.commit() - con.close() pass if not user: @@ -70,12 +54,9 @@ if not user: # Log if form.has_key('log'): - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT log FROM bans WHERE id=%s", form['log'].value) + cur.execute("""SELECT log FROM bans WHERE id=%s""", form['log'].value) log = cur.fetchall() con.commit() - con.close() if form.has_key('mark'): marked = form['mark'].value lines = log[0][0].splitlines() @@ -91,19 +72,12 @@ if form.has_key('log'): # Main page # Process comments if form.has_key('comment') and form.has_key('comment_id') and user: - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT ban_id FROM comments WHERE ban_id=%s and comment=%s", (form['comment_id'].value, form['comment'].value)) + cur.execute("""SELECT ban_id FROM comments WHERE ban_id=%s and comment=%s""", (form['comment_id'].value, form['comment'].value)) comm = cur.fetchall() - con.commit() - con.close() if not len(comm): - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("INSERT INTO comments (ban_id, who, comment, time) VALUES (%s, %s, %s, %s)", + cur.execute("""INSERT INTO comments (ban_id, who, comment, time) VALUES (%s, %s, %s, %s)""", (form['comment_id'].value,user,form['comment'].value,pickle.dumps(datetime.datetime.now(pytz.UTC)))) - con.commit() - con.close() + con.commit() # Write the page print '
' @@ -180,14 +154,11 @@ if not form.has_key('query'): if form.has_key('sort'): sort='&sort=' + form['sort'].value print '
·' - con = sqlite.connect(db) - cur = con.cursor() cur.execute('SELECT COUNT(id) FROM bans') - nump = math.ceil(int(cur.fetchall()[0][0]) / float(num_per_page)) - for i in range(int(nump)): + nump = int(math.ceil(int(cur.fetchall()[0][0]) / float(num_per_page))) + for i in range(nump): print '%d ·' % (i, sort, i+1) print '
' - con.close() # Empty log div, will be filled with AJAX print '
 
' @@ -206,11 +177,8 @@ for h in [['Channel',0], ['Nick/Mask',1], ['Operator',2], ['Time',6]]: print 'Log' # Select and filter bans -con = sqlite.connect(db) -cur = con.cursor() cur.execute("SELECT channel,mask,operator,time,removal,removal_op,id FROM bans ORDER BY id DESC") bans = cur.fetchall() -con.close() def myfilter(item, regex, kick, ban, oldban, mute, oldmute, floods, operator, channel): if operator: @@ -323,11 +291,8 @@ for b in bans[start:end]: print ' class="bg2"' print '>' print '' - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT who, comment, time FROM comments WHERE ban_id = %s" % b[6]) + cur.execute("""SELECT who, comment, time FROM comments WHERE ban_id = %s""" % b[6]) comments = cur.fetchall() - con.close() if len(comments) == 0: print '(No comments) ' else: @@ -336,14 +301,15 @@ for b in bans[start:end]: print u'
%s, %s

' % \ (c[0],pickle.loads(c[2]).astimezone(tz).strftime("%b %d %Y %H:%M:%S")) if user: - print 'Add comment' % b[6] - print '
' + print """Add comment""" % b[6] + print """