Changeset 1706

Show
Ignore:
Timestamp:
12/17/06 09:58:46 (2 years ago)
Author:
coderanger
Message:

HierWikiPlugin:

Restore old behvior of the SubWiki macro.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • hierwikiplugin/0.10/hierwiki/macros/subwiki.py

    r1698 r1706  
    5353                title = md.group(1) 
    5454            good_pages.append((p, title)) 
    55         return html.UL([html.LI(html.A(t, title=t, href=req.href.wiki(p))) for p,t in good_pages]) 
     55        return html.UL([html.LI(html.A(p, title=t, href=req.href.wiki(p)), ' ', t) for p,t in good_pages]) 
    5656