Changeset 715 for confluence/irclog

Show
Ignore:
Timestamp:
02/05/10 12:33:27 (6 months ago)
Author:
confluence
Message:

fixed root directory

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • confluence/irclog/irclog.py

    r714 r715  
    55 
    66# Requirements: pygments, jinja, web.py 
     7 
     8# Put or symlink log directory structure under 'logs' in the same 
     9# directory as this file. 
    710 
    811# Copyright 2010 Adrianna Pinska 
     
    2225    '/(.*\.log)', 'logfile', 
    2326    '/(.*[^/])', 'redirect', 
     27    '/', 'redirect_log_root', 
    2428    '/(.*)', 'directory', 
    2529) 
     
    7276 
    7377 
     78class redirect_log_root: 
     79    def GET(self): 
     80        web.seeother("/logs/") 
     81 
     82 
    7483class directory: 
    7584    def GET(self, path):