Changes between Version 2 and Version 3 of WikiMacros


Ignore:
Timestamp:
07/19/05 21:00:01 (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiMacros

    v2 v3  
    2626admittedly not very impressive. In future Trac releases, we hope to build a library of useful macros, and will of course happily include contributed macros (see below).
    2727
    28  * '''!HelloWorld''' -- An example macro, useful for learning how to write macros.
    29  * '''Timestamp''' -- Insert the current date and time.
     28[[MacroList]]
    3029
    3130
     
    7675{{{
    7776def execute(hdf, txt, env):
    78     return env.get_config('trac', 'repository_dir')
     77    return env.config.get('trac', 'repository_dir')
    7978}}}
    8079----