11 | | {{{ |
12 | | [[Timestamp]] |
| 9 | == Using Macros |
| 10 | |
| 11 | Macro calls are enclosed in two ''square brackets'' `[[..]]`. Like Python functions, macros can also have arguments, a comma separated list within parentheses `[[..(,)]]`. |
| 12 | |
| 13 | === Getting Detailed Help |
| 14 | |
| 15 | The list of available macros and the full help can be obtained using the !MacroList macro, as seen [#AvailableMacros below]. |
| 16 | |
| 17 | A brief list can be obtained via `[[MacroList(*)]]` or `[[?]]`. |
| 18 | |
| 19 | Detailed help on a specific macro can be obtained by passing it as an argument to !MacroList, e.g. `[[MacroList(MacroList)]]`, or, more conveniently, by appending a question mark (`?`) to the macro's name, like in `[[MacroList?]]`. |
| 20 | |
| 21 | === Example |
| 22 | |
| 23 | A list of the 3 most recently changed wiki pages starting with 'Trac': |
| 24 | |
| 25 | ||= Wiki Markup =||= Display =|| |
| 26 | {{{#!td |
| 27 | {{{ |
| 28 | [[RecentChanges(Trac,3)]] |
| 29 | }}} |
14 | | Display: |
15 | | [[Timestamp]] |
| 31 | {{{#!td style="padding-left: 2em;" |
| 32 | [[RecentChanges(Trac,3)]] |
| 33 | }}} |
| 34 | |----------------------------------- |
| 35 | {{{#!td |
| 36 | {{{ |
| 37 | [[RecentChanges?(Trac,3)]] |
| 38 | }}} |
| 39 | }}} |
| 40 | {{{#!td style="padding-left: 2em;" |
| 41 | [[RecentChanges?(Trac,3)]] |
| 42 | }}} |
| 43 | |----------------------------------- |
| 44 | {{{#!td |
| 45 | {{{ |
| 46 | [[?]] |
| 47 | }}} |
| 48 | }}} |
| 49 | {{{#!td style="padding-left: 2em" |
| 50 | {{{#!html |
| 51 | <div style="font-size: 80%" class="trac-macrolist"> |
| 52 | <h3><code>[[Image]]</code></h3>Embed an image in wiki-formatted text. |
37 | | It's easiest to learn from an example: |
| 75 | Macros, like Trac itself, are written in the [http://python.org/ Python programming language] and are developed as part of TracPlugins. |
| 76 | |
| 77 | For more information about developing macros, see the [trac:TracDev development resources] on the main project site. |
| 78 | |
| 79 | Here are 2 simple examples showing how to create a Macro. Also, have a look at [trac:source:tags/trac-1.0.2/sample-plugins/Timestamp.py Timestamp.py] for an example that shows the difference between old style and new style macros and at the [trac:source:tags/trac-0.11/wiki-macros/README macros/README] which provides a little more insight about the transition. |
| 80 | |
| 81 | === Macro without arguments |
| 82 | |
| 83 | To test the following code, you should saved it in a `timestamp_sample.py` file located in the TracEnvironment's `plugins/` directory. |
42 | | def execute(hdf, args, env): |
43 | | return "Hello World called with args: %s" % args |
| 89 | from genshi.builder import tag |
| 90 | |
| 91 | from trac.util.datefmt import format_datetime, utc |
| 92 | from trac.wiki.macros import WikiMacroBase |
| 93 | |
| 94 | class TimeStampMacro(WikiMacroBase): |
| 95 | """Inserts the current time (in seconds) into the wiki page.""" |
| 96 | |
| 97 | revision = "$Rev$" |
| 98 | url = "$URL$" |
| 99 | |
| 100 | def expand_macro(self, formatter, name, text): |
| 101 | t = datetime.now(utc) |
| 102 | return tag.strong(format_datetime(t, '%c')) |
49 | | def execute(hdf, txt, env): |
50 | | return env.get_config('trac', 'repository_dir') |
| 110 | from genshi.core import Markup |
| 111 | |
| 112 | from trac.wiki.macros import WikiMacroBase |
| 113 | |
| 114 | class HelloWorldMacro(WikiMacroBase): |
| 115 | """Simple HelloWorld macro. |
| 116 | |
| 117 | Note that the name of the class is meaningful: |
| 118 | - it must end with "Macro" |
| 119 | - what comes before "Macro" ends up being the macro name |
| 120 | |
| 121 | The documentation of the class (i.e. what you're reading) |
| 122 | will become the documentation of the macro, as shown by |
| 123 | the !MacroList macro (usually used in the WikiMacros page). |
| 124 | """ |
| 125 | |
| 126 | revision = "$Rev$" |
| 127 | url = "$URL$" |
| 128 | |
| 129 | def expand_macro(self, formatter, name, text, args): |
| 130 | """Return some output that will be displayed in the Wiki content. |
| 131 | |
| 132 | `name` is the actual name of the macro (no surprise, here it'll be |
| 133 | `'HelloWorld'`), |
| 134 | `text` is the text enclosed in parenthesis at the call of the macro. |
| 135 | Note that if there are ''no'' parenthesis (like in, e.g. |
| 136 | [[HelloWorld]]), then `text` is `None`. |
| 137 | `args` are the arguments passed when HelloWorld is called using a |
| 138 | `#!HelloWorld` code block. |
| 139 | """ |
| 140 | return 'Hello World, text = %s, args = %s' % \ |
| 141 | (Markup.escape(text), Markup.escape(repr(args))) |
| 142 | |
57 | | ---- |
58 | | See also: WikiProcessors, WikiFormatting, TracGuide |
| 153 | {{{#!HelloWorld |
| 154 | <Hello World!> |
| 155 | }}} |
| 156 | |
| 157 | [[HelloWorld(<Hello World!>)]] |
| 158 | }}} |
| 159 | One should get: |
| 160 | {{{ |
| 161 | Hello World, text = <Hello World!> , args = {'style': u'polite', 'silent': False, 'verbose': True} |
| 162 | Hello World, text = <Hello World!> , args = {} |
| 163 | Hello World, text = <Hello World!> , args = None |
| 164 | }}} |
| 165 | |
| 166 | Note that the return value of `expand_macro` is '''not''' HTML escaped. Depending on the expected result, you should escape it by yourself (using `return Markup.escape(result)`) or, if this is indeed HTML, wrap it in a Markup object (`return Markup(result)`) with `Markup` coming from Genshi, (`from genshi.core import Markup`). |
| 167 | |
| 168 | You can also recursively use a wiki Formatter (`from trac.wiki import Formatter`) to process the `text` as wiki markup: |
| 169 | |
| 170 | {{{ |
| 171 | #!python |
| 172 | from genshi.core import Markup |
| 173 | from trac.wiki.macros import WikiMacroBase |
| 174 | from trac.wiki import Formatter |
| 175 | import StringIO |
| 176 | |
| 177 | class HelloWorldMacro(WikiMacroBase): |
| 178 | def expand_macro(self, formatter, name, text, args): |
| 179 | text = "whatever '''wiki''' markup you want, even containing other macros" |
| 180 | # Convert Wiki markup to HTML, new style |
| 181 | out = StringIO.StringIO() |
| 182 | Formatter(self.env, formatter.context).format(text, out) |
| 183 | return Markup(out.getvalue()) |
| 184 | }}} |