Changes between Version 7 and Version 8 of MilnCheckboxPlugin


Ignore:
Timestamp:
Nov 22, 2017, 11:45:29 PM (6 years ago)
Author:
figaro
Comment:

Moved example to description

Legend:

Unmodified
Added
Removed
Modified
  • MilnCheckboxPlugin

    v7 v8  
    55== Description
    66
    7 This plugin converts brackets into graphical checkboxes within Trac wiki pages. It matches pairs of square brackets within your Trac wiki pages. The brackets need to brace one of the following characters be matched: ' ' (space), '+', 'x', or 'X'.
     7This plugin converts brackets into graphical checkboxes within Trac where wiki formatting exists. This can be either a wiki page or ticket. It matches pairs of square brackets within Trac. The brackets need to be one of the following characters to be matched: ' ' (space), '+', 'x', or 'X'.
    88
    9 When matches are found, the brackets are replaced with HTML checkboxes.
     9The following wiki formatted list contains four pairs of brackets that will be matched by Miln Checkbox:
     10
     11 * [ ] space within brackets
     12 * [x] lowercase x within brackets
     13 * [X] uppercase X within brackets
     14 * [+] plus within brackets
     15
     16When matches are found, the brackets are replaced with HTML checkboxes:
     17
     18{{{#!html
     19<ul>
     20<li><input type="checkbox" disabled="disabled" /> space within brackets
     21</li><li><input type="checkbox" disabled="disabled" checked="checked" /> lowercase x within brackets
     22</li><li><input type="checkbox" disabled="disabled" checked="checked" /> uppercase X within brackets
     23</li><li><input type="checkbox" disabled="disabled" checked="checked" /> plus within brackets
     24</li>
     25</ul>
     26}}}
    1027
    1128See http://miln.eu/open/checkbox for canonical source of Miln Checkbox.
     
    3350General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    3451
    35 == Example
    36 
    37 The following wiki formatted list contains four pairs of brackets that will be matched by Miln Checkbox:
    38 
    39  * [ ] space within brackets
    40  * [x] lowercase x within brackets
    41  * [X] uppercase X within brackets
    42  * [+] plus within brackets
    43 
    44 When matches are found, the brackets are replaced with checkboxes:
    45 
    46 {{{#!html
    47 <ul>
    48 <li><input type="checkbox" disabled="disabled" /> space within brackets
    49 </li><li><input type="checkbox" disabled="disabled" checked="checked" /> lowercase x within brackets
    50 </li><li><input type="checkbox" disabled="disabled" checked="checked" /> uppercase X within brackets
    51 </li><li><input type="checkbox" disabled="disabled" checked="checked" /> plus within brackets
    52 </li>
    53 </ul>
    54 }}}
    55 
    5652== Recent Changes
    5753