Files
ubuntu-bots/Encyclopedia/editlogs.cgi
Dennis Kaarsemaker 74af0c989f Yes, more features!
2006-10-19 16:39:11 +02:00

10 lines
272 B
Python
Executable File

#!/usr/bin/python
import sys
sys.path.append('/home/dennis/public_html')
from commoncgi import *
for file in sorted(os.listdir('/home/dennis/public_html/botlogs'),reverse=True)[1:101]:
print '<a href="/botlogs/%s">%s</a><br/>' % (file, file)
send_page('plain.tmpl')