ubuntu-bots/Encyclopedia/editlogs.cgi

10 lines
272 B
Plaintext
Raw Normal View History

2006-10-19 14:39:11 +00:00
#!/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')