Changes between Version 18 and Version 19 of NoteBoxPlugin


Ignore:
Timestamp:
Jan 30, 2012, 1:35:13 AM (12 years ago)
Author:
Ryan J Ollos
Comment:

Refs #9740.

Legend:

Unmodified
Added
Removed
Modified
  • NoteBoxPlugin

    v18 v19  
    1919 [[Image(notebox_preview_v0.1.png)]]
    2020
    21 The [http://trac.edgewall.org/browser/tags/trac-0.11/trac/wiki/api.py?marks=118-139#L118 parse_args] function from the Trac API is used to parse the input, therefore commas must be escaped with a backslash. That is, replace `,` with `\,`. Everything in the second argument is interpreted as wiki markup, however a second macro cannot be embedded within the macro.
     21The [http://trac.edgewall.org/browser/tags/trac-0.11/trac/wiki/api.py?marks=118-139#L118 parse_args] function from the Trac API is used to parse the input, therefore commas must be escaped with a backslash. That is, make the following replacement: `,` -> `\,`. Everything in the second argument is interpreted as wiki markup, however a second macro cannot be embedded within the macro.
    2222
    2323== Bugs/Feature Requests ==
     
    3737== Installation ==
    3838
     39For detailed installation steps, please refer to t:TracPlugins. The following steps should work for most Trac configurations.
     40
    3941 1. Unzip the code and type
    4042{{{
    4143$>python setup.py install
    4244}}}
    43  2. or use {{{ easy_install }}} as below then, restart web server, finally enable it at {{{ admin/general/plugins }}}
     45 2. or use {{{easy_install}}} as below then, restart web server, finally enable it at {{{admin/general/plugins}}}
    4446{{{
    4547#!sh
    4648easy_install http://trac-hacks.org/svn/noteboxplugin/0.11
    4749}}}
     50
     51If the plugin is installed and functioning correctly, you should see example of its use at WikiMacros#NoteBox-macro.
    4852
    4953== Example ==