Metadata-Version: 1.1
Name: TracMultiSelectBoxPlugin
Version: 0.5.0
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
        
        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.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
