Changes between Initial Version and Version 1 of WikiMacros


Ignore:
Timestamp:
Apr 20, 2011, 10:35:12 PM (13 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiMacros

    v1 v1  
     1=  Wiki Macros =
     2Trac macros are plugins to extend the Trac engine with custom 'functions' written in Python. A macro inserts dynamic HTML data in any context supporting WikiFormatting.
     3
     4Another kind of macros are WikiProcessors. They typically deal with alternate markup formats and representation of larger blocks of information (like source code highlighting).
     5
     6== Using Macros ==
     7Macro calls are enclosed in two ''square brackets''. Like Python functions, macros can also have arguments, a comma separated list within parentheses.
     8
     9=== Examples ===
     10
     11{{{
     12 [[Timestamp]]
     13}}}
     14Display:
     15 [[Timestamp]]
     16
     17{{{
     18 [[HelloWorld(Testing)]]
     19}}}
     20Display:
     21 [[HelloWorld(Testing)]]
     22
     23== Available Macros ==
     24
     25''Note that the following list will only contain the macro documentation if you've not enabled `-OO` optimizations, or not set the `PythonOptimize` option for [wiki:TracModPython mod_python].''
     26
     27[[MacroList]]
     28
     29== Macros from around the world ==
     30
     31The [http://trac-hacks.org/ Trac Hacks] site provides a wide collection of macros and other Trac [TracPlugins plugins] contributed by the Trac community. If you're looking for new macros, or have written one that you'd like to share with the world, please don't hesitate to visit that site.
     32
     33== Developing Custom Macros ==
     34Macros, like Trac itself, are written in the [http://www.python.org/ Python programming language]. They are very simple modules, identified by the filename and should contain a single `execute()` function. Trac will display the returned data inserted into the HTML representation of the Wiki page where the macro is called.
     35
     36It's easiest to learn from an example:
     37{{{
     38#!python
     39# MyMacro.py -- The world's simplest macro
     40
     41def execute(hdf, args, env):
     42    return "Hello World called with args: %s" % args
     43}}}
     44
     45You can also use the environment (`env`) object, for example to access configuration data and the database, for example:
     46{{{
     47#!python
     48def execute(hdf, txt, env):
     49    return env.config.get('trac', 'repository_dir')
     50}}}
     51
     52Note that since version 0.9, wiki macros can also be written as TracPlugins. This gives them some capabilities that “classic” macros do not have, such as being able to directly access the HTTP request.
     53
     54For more information about developing macros, see the [http://projects.edgewall.com/trac/wiki/TracDev development resources] on the main project site.
     55
     56----
     57See also:  WikiProcessors, WikiFormatting, TracGuide