blob: a399124234ca6f13227fe317c10f9dc5c6b060b1 [file] [log] [blame]
#!/usr/bin/python
import sys, os
import MySQLdb
import urllib, db, unique_cookie
def body():
db_obj = db.db()
uid = unique_cookie.unique_id('tko_history')
condition = "uid='%s'" % uid
where = (condition,[])
try:
rows = db_obj.select("time_created,user_comment,url",
"query_history", where)
except MySQLdb.ProgrammingError, err:
print err
rows = ()
for row in rows:
(time_created, user_comment, tko_url) = row
print "<hr>"
print time_created + "&nbsp;"*3
print user_comment + "<br>"
print '<a href="%s">%s</a>' % (tko_url, tko_url)
def main():
print "Content-type: text/html\n"
print
# create the actual page
print '<html><head><title>'
print 'History of TKO usage'
print '</title></head><body>'
body()
print '</body></html>'
main()