Changeset 864 for confluence/irclog

Show
Ignore:
Timestamp:
10/18/10 13:56:48 (19 months ago)
Author:
confluence
Message:

more explicit parent dir links

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • confluence/irclog/irclog.py

    r863 r864  
    6868        end_anchor = '<a name="end"></a>' 
    6969        goto_end = '<p><a href="#end">Go to newest...</a></p>' 
    70         logs_directory = '<p><a href="./">&lt;-- up ---</a></p>' 
     70        logs_directory = '<p><a href="./">&lt;-- parent directory ---</a></p>' 
    7171 
    7272        return from_string(html).render(title=path, head=[css], contents=[title, goto_end, logs, end_anchor, logs_directory]) 
     
    9191        title = '<h1>%s</h1>' % path 
    9292        links = "<br/>\n".join(['<a href="%s">%s</a>' % (escape_hash(p), p) for p in ls]) 
    93         up_directory = '<p><a href="../">&lt;-- up ---</a></p>' 
     93        up_directory = '<p><a href="../">&lt;-- parent directory ---</a></p>' 
    9494 
    9595        return from_string(html).render(title=path, contents=[title, links, up_directory])