Changes between Version 2 and Version 3 of TracMultiSelectBoxPlugin


Ignore:
Timestamp:
Feb 19, 2014, 2:31:33 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Leading whitespace in the configuration section can cause problems with copy and paste, as we've seen with #11581.

Legend:

Unmodified
Added
Removed
Modified
  • TracMultiSelectBoxPlugin

    v2 v3  
    55== Description ==
    66
    7 TracMultiSelectBoxPlugin treats pseudo multipul select values with the ticket custom field.
     7TracMultiSelectBoxPlugin treats pseudo multiple select values with the ticket custom field.
    88
    99Note: TracMultiSelectBoxPlugin requires Trac 1.0 or higher since it uses
     
    2323To use multiple select values like this:
    2424
    25 {{{ #!ini
    26     [components]
    27     multiselectbox.filter.multiselectbox = enabled
     25 {{{#!ini
     26[components]
     27multiselectbox.filter.multiselectbox = enabled
    2828
    29     [ticket-custom]
    30     multiselectfield = text
    31     multiselectfield.format = list
    32     multiselectfield.label = my custom field
    33     multiselectfield.multiple = true
    34     multiselectfield.options = foo bar baz  # each value is delimited with space
    35     multiselectfield.size = 4               # size attribute passed to select tag
    36     multiselectfield.value = bar            # default value when new ticket is created
     29[ticket-custom]
     30multiselectfield = text
     31multiselectfield.format = list
     32multiselectfield.label = my custom field
     33multiselectfield.multiple = true
     34multiselectfield.options = foo bar baz  # each value is delimited with space
     35multiselectfield.size = 4               # size attribute passed to select tag
     36multiselectfield.value = bar            # default value when new ticket is created
    3737}}}
    3838