~ubuntu-bots/ubuntu-bots/devel

« back to all changes in this revision

Viewing changes to commoncgi.py

  • Committer: Dennis Kaarsemaker
  • Date: 2007-01-23 23:42:45 UTC
  • Revision ID: dennis@ubuntu-nl.org-20070123234245-9516ada349f5481d
Made bugtracker plugin more usable
Some copyright notices

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###
 
2
# Copyright (c) 2006-2007 Dennis Kaarsemaker
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of version 2 of the GNU General Public License as
 
6
# published by the Free Software Foundation.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
###
 
14
 
1
15
import cgi, cgitb, re, sys, math, os, md5, sqlite, random, time, datetime, pytz, Cookie, StringIO
2
16
import cPickle as pickle
3
17
cgitb.enable()
42
56
 
43
57
def q(txt):
44
58
    return txt.replace('&','&amp;').replace('<','&lt;').replace('>','&gt;').replace('"','&quot;')
45
 
    
 
59