Changes between Version 8 and Version 9 of CategorizedFieldsPlugin


Ignore:
Timestamp:
Apr 20, 2018, 3:40:35 PM (6 years ago)
Author:
Cauly
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CategorizedFieldsPlugin

    v8 v9  
    22
    33= Categorizing ticket fields in Trac
     4
     5== Important
     6
     7I've misspelled 'categorized' to 'catagorized' in old 1.x versions, which I have fixed in 2.0+ version. As a result if you are upgrading from 1.x you should do a replacement in trac.ini .
    48
    59== Description
     
    2226== !Bugs/Feature Requests
    2327
    24 Existing bugs and feature requests for CatagorizedFieldsPlugin are
     28Existing bugs and feature requests for CategorizedFieldsPlugin are
    2529[report:9?COMPONENT=CatagorizedFieldsPlugin here].
    2630
     
    2933
    3034[[TicketQuery(component=CatagorizedFieldsPlugin&group=type,format=progress)]]
    31 
    32 == Download
    33 
    34 Download the zipped source from [export:catagorizedfieldsplugin here].
    35 
    36 == Source
    37 
    38 You can check out CatagorizedFieldsPlugin from [/svn/catagorizedfieldsplugin here] using Subversion, or [source:catagorizedfieldsplugin browse the source] with Trac.
    3935
    4036== Installation
     
    4541{{{#!ini
    4642[components]
    47 catagorizedfields.catagorizedfields = enabled
     43categorizedfields.categorizedfields = enabled
    4844}}}
    49  2. Create a {{{[catagorized-fields]}}} section, and add the categories, for example:
     45 2. Create a {{{[categorized-fields]}}} section, and add the categories, for example:
    5046{{{#!ini
    51 [catagorized-fields]
    52 # declare a catagory in syntax "(catagory_id) = (catagory_display_name)"
    53 cat1 = catagory_one
     47[categorized-fields]
     48# declare a category in syntax "(category_id) = (category_display_name)"
     49cat1 = category_one
    5450
    55 # specify the hide condition in syntax "(catagory_id).hide_when_(condition-field) = (field-value1)[, (field-value2), ..]"
     51# specify the hide condition in syntax "(category_id).hide_when_(condition-field) = (field-value1)[, (field-value2), ..]"
    5652cat1.hide_when_status = new, closed
    5753
     
    6460custom_field1 = text
    6561
    66 # declare one field with catagory in syntax "(field_id).catagory = (catagory_id)"
    67 custom_field1.catagory = cat1
     62# declare one field with category in syntax "(field_id).category = (category_id)"
     63custom_field1.category = cat1
    6864
    6965# the order of field: the smaller the index, the closer the field is to the top
     
    7167}}}
    7268
    73 == Recent Changes
    7469
    75 [[ChangeLog(catagorizedfieldsplugin, 3)]]
     70
     71== Download
     72
     73Download the zipped source from [https://github.com/trac-hacks/TracCategorizedFieldsPlugin/archive/master.zip here].
     74
     75== Source
     76
     77You can check out TracCategorizedFieldsPlugin from [https://github.com/trac-hacks/TracCategorizedFieldsPlugin.git here] using Git, or [https://github.com/trac-hacks/TracCategorizedFieldsPlugin browse the source].
     78
     79== Installation
     80
     81General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    7682
    7783== !Author/Contributors