Changes between Version 40 and Version 41 of KeywordSuggestPlugin


Ignore:
Timestamp:
Nov 11, 2015, 10:35:20 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged with license

Legend:

Unmodified
Added
Removed
Modified
  • KeywordSuggestPlugin

    v40 v41  
    55== Description
    66
    7 The !KeywordsSuggestPlugin provides an autocomplete function for the '''keywords''' ticket field or any other text-based ticket field. Optionally, it is possible to restrict the list of allowed keywords.
     7This plugin provides an autocomplete function for the '''keywords''' ticket field or any other text-based ticket field. Optionally, it is possible to restrict the list of allowed keywords.
    88
    99The plugin requires a !JavaScript enabled browser. The !JavaScript portion was derived from the jQuery UI [http://jqueryui.com/demos/autocomplete#multiple autocomplete example].
     
    4747[[TicketQuery(component=KeywordSuggestPlugin,group=type,format=progress)]]
    4848
    49 == Download and Source
     49== Download
    5050
    51 Download the [download:keywordsuggestplugin zipped source], check out KeywordSuggestPlugin [/svn/keywordsuggestplugin using Subversion], or [source:keywordsuggestplugin browse the source] with Trac.
     51Download the zipped source from [export:keywordsuggestplugin here].
     52
     53== Source
     54
     55You can check out KeywordSuggestPlugin from [/svn/keywordsuggestplugin here] using Subversion, or [source:keywordsuggestplugin browse the source] with Trac.
    5256
    5357== Example
     
    6165== Configuration
    6266
    63 The following section must be added to trac.ini configuration file:
    64 {{{
    65 #!ini
     67The following section must be added to your `trac.ini` configuration file:
     68{{{#!ini
    6669[keywordsuggest]
    6770field = keywords
     
    7982 * '''mustmatch''' - optional, if specified, 'keywords' field accepts values from the '''keywords''' list only
    8083 * '''helppage''' - optional, if specified, 'keywords' label will be turned into the link to a resource. This could be a wiki page, or any resource in any realm, such as the tags page (`helppage = tags`).
    81  * '''helppage.newwindow''' - optional, whether wiki page opened in new window or not`
     84 * '''helppage.newwindow''' - optional, whether wiki page is opened in a new window or not
    8285 * '''matchcontains''' - optional, whether keywords which matched not from the beginning must be included into list
    83  * '''multipleseparator''' - which character(s) is used as separator between keywords. Must be enclosed with quotas or other characters. If not specified, ', ' is used.
     86 * '''multipleseparator''' - which character(s) is used as separator between keywords. Must be enclosed with quotas or other characters. If not specified, then ', ' is used.
    8487
    8588== Recent Changes