Metadata-Version: 1.1
Name: TracMultiSelectBoxPlugin
Version: 0.5.1
Summary: Provide simple multiple select values field
Home-page: http://trac-hacks.org/wiki/TracMultiSelectBoxPlugin
Author: Tetsuya Morimoto
Author-email: tetsuya dot morimoto at gmail dot com
License: Apache License 2.0
Description: Notes
        =====
        
        `TracMultiSelectBoxPlugin <https://trac-hacks.org/wiki/TracMultiSelectBoxPlugin>`_
        treats pseudo multipul select values with the ticket custom field.
        
        Note: TracMultiSelectBoxPlugin requires Trac 1.0 or higher since it uses
        the **list** format of text type.
        (`TracTicketsCustomFields <http://trac.edgewall.org/wiki/TracTicketsCustomFields>`_)
        
        Features
        --------
        
        -  Provide simple multiple select values field
        
        As compared to other alternatives, this plugin is intended to be simple
        and light weight, easy to use.
        
        Configuration
        =============
        
        To use multiple select values like this:
        
        ::
        
            [components]
            multiselectbox.filter.multiselectbox = enabled
        
            [ticket-custom]
            multiselectfield = text
            multiselectfield.format = list
            multiselectfield.label = my custom field
            multiselectfield.multiple = true
            multiselectfield.options = foo bar baz  ; each value is delimited with space
            multiselectfield.size = 4               ; size attribute passed to select tag
            multiselectfield.value = bar            ; default value when new ticket is created
        
        Operation Tips
        ==============
        
        revert function
        ---------------
        
        To revert multiple select values during you are editing. Unfortunately,
        Trac don't care about it. (confirmed 1.0.2) To use Trac's revert
        function, you must apply a patch included in the source distribution.
        
        ::
        
            $ cd path/to/trac
            $ patch -p0 < patch/support-multipleselct-for-reverthandler-trac10.patch
            $ restart Trac
        
        Acknowledgment
        ==============
        
        This plugin was inspired by
        `MultiSelectFieldPlugin <http://trac-hacks.org/wiki/MultiSelectFieldPlugin>`_.
        MultiSelectFieldPlugin is good choice if you're finding more rich
        selectbox.
        
        ChangeLog
        =========
        
        0.5.1 (2014-02-19)
        ------------------
        
        -  refactoring, thanks to Ryan Ollos
        
        0.5.0 (2014-02-19)
        ------------------
        
        -  first release
        
        
Keywords: trac,plugin,ticket,multiselect
Platform: UNKNOWN
Classifier: Framework :: Trac
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
