Changes between Version 3 and Version 4 of ListOfWikiPagesMacro


Ignore:
Timestamp:
Nov 9, 2008, 11:59:10 AM (15 years ago)
Author:
Martin Scharrer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ListOfWikiPagesMacro

    v3 v4  
    44
    55This 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.
     6
     7
     8== Installation ==
     9This macro is installable using python's `easy_install` utility:
     10{{{
     11easy_install http://trac-hacks.org/svn/listofwikipages/0.11
     12}}}
     13There seem to be some issues with `easy_install` and Subversion 1.5 working directories which can be avoided using:
     14{{{
     15svn export http://trac-hacks.org/svn/listofwikipages/0.11 listofwikipages
     16easy_install listofwikipages
     17rm -rf listofwikipages
     18}}}
     19
     20People without Subversion installed can download the [download:listofwikipagesmacro/0.11 ZIP file], unpack it and run the following in the `0.11` directory:
     21{{{
     22python setup.py install
     23}}}
     24
     25
     26To enable this macro put the below text into your `trac.ini` configuration file, which is located in the `config` directory of your Trac installation.
     27You need to restart trac to reread the macro file and the configuration file.
     28{{{
     29[components]
     30traclistofwikipages.* = enabled
     31
     32[listofwikipages]
     33# Optional list of ignored users, defaults to 'trac' to ignore trac's default wiki pages:
     34#ignore_users = trac
     35}}}
    636
    737== Bugs/Feature Requests ==