15 | | [[Timestamp]] |
| 23 | [[RecentChanges(Trac,3)]] |
| 24 | |
| 25 | == Available Macros == |
| 26 | |
| 27 | ''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].'' |
| 28 | |
| 29 | [[MacroList]] |
| 30 | |
| 31 | == Macros from around the world == |
| 32 | |
| 33 | The [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. |
| 34 | |
| 35 | == Developing Custom Macros == |
| 36 | Macros, like Trac itself, are written in the [http://python.org/ Python programming language]. |
| 37 | |
| 38 | For more information about developing macros, see the [wiki:TracDev development resources] on the main project site. |
| 39 | |
| 40 | |
| 41 | == Implementation == |
| 42 | |
| 43 | Here are 2 simple examples on how to create a Macro with [wiki:0.11 Trac 0.11] have a look at source:trunk/sample-plugins/Timestamp.py for an example that shows the difference between old style and new style macros and also source:trunk/wiki-macros/README which provides a little more insight about the transition. |
| 44 | |
| 45 | === Macro without arguments === |
| 46 | It should be saved as `TimeStamp.py` as Trac will use the module name as the Macro name |
| 47 | {{{ |
| 48 | #!python |
| 49 | from datetime import datetime |
| 50 | # Note: since Trac 0.11, datetime objects are used internally |
| 51 | |
| 52 | from genshi.builder import tag |
| 53 | |
| 54 | from trac.util.datefmt import format_datetime, utc |
| 55 | from trac.wiki.macros import WikiMacroBase |
| 56 | |
| 57 | class TimestampMacro(WikiMacroBase): |
| 58 | """Inserts the current time (in seconds) into the wiki page.""" |
| 59 | |
| 60 | revision = "$Rev$" |
| 61 | url = "$URL$" |
| 62 | |
| 63 | def expand_macro(self, formatter, name, args): |
| 64 | t = datetime.now(utc) |
| 65 | return tag.b(format_datetime(t, '%c')) |
| 66 | }}} |
| 67 | |
| 68 | === Macro with arguments === |
| 69 | It should be saved as `HelloWorld.py` (in the plugins/ directory) as Trac will use the module name as the Macro name |
| 70 | {{{ |
| 71 | #!python |
| 72 | from trac.wiki.macros import WikiMacroBase |
| 73 | |
| 74 | class HelloWorldMacro(WikiMacroBase): |
| 75 | """Simple HelloWorld macro. |
| 76 | |
| 77 | Note that the name of the class is meaningful: |
| 78 | - it must end with "Macro" |
| 79 | - what comes before "Macro" ends up being the macro name |
| 80 | |
| 81 | The documentation of the class (i.e. what you're reading) |
| 82 | will become the documentation of the macro, as shown by |
| 83 | the !MacroList macro (usually used in the WikiMacros page). |
| 84 | """ |
| 85 | |
| 86 | revision = "$Rev$" |
| 87 | url = "$URL$" |
| 88 | |
| 89 | def expand_macro(self, formatter, name, args): |
| 90 | """Return some output that will be displayed in the Wiki content. |
| 91 | |
| 92 | `name` is the actual name of the macro (no surprise, here it'll be |
| 93 | `'HelloWorld'`), |
| 94 | `args` is the text enclosed in parenthesis at the call of the macro. |
| 95 | Note that if there are ''no'' parenthesis (like in, e.g. |
| 96 | [[HelloWorld]]), then `args` is `None`. |
| 97 | """ |
| 98 | return 'Hello World, args = ' + unicode(args) |
| 99 | |
| 100 | # Note that there's no need to HTML escape the returned data, |
| 101 | # as the template engine (Genshi) will do it for us. |
| 102 | }}} |
| 103 | |
| 104 | |
| 105 | === {{{expand_macro}}} details === |
| 106 | {{{expand_macro}}} should return either a simple Python string which will be interpreted as HTML, or preferably a Markup object (use {{{from trac.util.html import Markup}}}). {{{Markup(string)}}} just annotates the string so the renderer will render the HTML string as-is with no escaping. You will also need to import Formatter using {{{from trac.wiki import Formatter}}}. |
| 107 | |
| 108 | If your macro creates wiki markup instead of HTML, you can convert it to HTML like this: |
20 | | Display: |
21 | | [[HelloWorld(Testing)]] |
22 | | |
23 | | |
24 | | == Available Macros == |
25 | | Macros are still a new feature, and the list of available (and distributed) macros is |
26 | | admittedly 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). |
27 | | |
28 | | * '''!HelloWorld''' -- An example macro, useful for learning how to write macros. |
29 | | * '''Timestamp''' -- Insert the current date and time. |
30 | | |
31 | | |
32 | | ---- |
33 | | |
34 | | |
35 | | == Macros from around the world == |
36 | | The [http://projects.edgewall.com/trac/ Trac Project] has a section dedicated to user-contributed macros, [http://projects.edgewall.com/trac/wiki/MacroBazaar MacroBazaar]. If you're looking for new macros, or have written new ones to share with the world, don't hesitate adding it to the [http://projects.edgewall.com/trac/wiki/MacroBazaar MacroBazaar] wiki page. |
37 | | |
38 | | http://projects.edgewall.com/trac/wiki/MacroBazaar |
39 | | |
40 | | |
41 | | ---- |
42 | | |
43 | | |
44 | | == Developing New Macros == |
45 | | Macros, 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 ''entry point'' function. Trac will display the returned data inserted into the HTML where the macro was called. |
46 | | |
47 | | It's easiest to learn from an example: |
48 | | {{{ |
49 | | # MyMacro.py -- The world's simplest macro |
50 | | |
51 | | def execute(hdf, args, env): |
52 | | return "Hello World called with args: %s" % args |
53 | | }}} |
54 | | |
55 | | === Advanced Topics: Template-enabled Macros === |
56 | | For advanced uses, macros can also render structured output in HDF, to be rendered to HTML using clearsilver templates - like most Trac output. In short, this allows more generic and well-designed advanced macros. |
57 | | |
58 | | Macros gain direct access to the main HDF tree, and are free to manipulate it. |
59 | | |
60 | | Example: |
61 | | {{{ |
62 | | def execute(hdf, args, env): |
63 | | # Currently hdf is set only when the macro is called |
64 | | # From a wiki page |
65 | | if hdf: |
66 | | hdf.setValue('wiki.macro.greeting', 'Hello World') |
67 | | |
68 | | # args will be null if the macro is called without parentesis. |
69 | | args = args or 'No arguments' |
70 | | return 'Hello World, args = ' + args |
71 | | }}} |
72 | | |
73 | | You can also use the environment (env) object to access configuration data. |
74 | | |
75 | | Example. |
76 | | {{{ |
77 | | def execute(hdf, txt, env): |
78 | | return env.get_config('trac', 'repository_dir') |
79 | | }}} |
80 | | ---- |
81 | | See also: WikiProcessors, WikiFormatting, TracGuide |