Changes between Version 5 and Version 6 of ListOfWikiPagesMacro


Ignore:
Timestamp:
Nov 12, 2008, 11:19:02 PM (15 years ago)
Author:
Martin Scharrer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ListOfWikiPagesMacro

    v5 v6  
    1 = List all Wiki Pages with Last Changed Data and Author =
     1= List all Wiki Pages with Last Changed Data and Author or Last Changes By Author =
    22
    33== Description ==
    44
    5 This macro prints a table of all (user generated, i.e. non-trac-default) wiki pages with last changed date and author as requested in Request-a-Hack #2427.
     5The macro `ListOfWikiPages` prints a table of all (user generated, i.e. non-trac-default) wiki pages with last changed date and author as requested in Request-a-Hack #2427.
     6
     7The second macro provided by this package is `LastChangesBy` which prints the last changes made by the given user or the logged-in user if no username is given.
    68
    79
     
    4648Download the [download:listofwikipagesmacro zipped source], check out [/svn/listofwikipagesmacro using Subversion from here], or [source:listofwikipagesmacro browse the source] with Trac.
    4749
    48 == Example ==
     50== Examples ==
    4951
    50 You can use this macro like this:
     52=== !ListOfWikiPages ===
     53You can use the `ListOfWikiPages` macro like this:
    5154{{{
    5255[[ListOfWikiPages]]
     
    6467}}}
    6568
     69=== !LastChangesBy ===
     70This macro prints a table similar to the one above only with the ''By'' column missing and the author name in the table head.
     71{{{
     72[[LastChangesBy(martin_s)]]        # the last 5 changes by user `martin_s`
     73[[LastChangesBy(martin_s,10)]]     # the last 10 changes by user `martin_s`
     74
     75[[LastChangesBy]]          # or
     76[[LastChangesBy()]]                # the last 5 changes by the current user (i.e. every user sees it's own changes, if logged-on)
     77[[LastChangesBy(,12)]]             # the last 12 changes by the current user
     78}}}
    6679
    6780== Recent Changes ==