Changes between Version 21 and Version 22 of KeywordSuggestPlugin


Ignore:
Timestamp:
Nov 25, 2011, 2:34:12 AM (12 years ago)
Author:
Ryan J Ollos
Comment:

Updated for #5907.

Legend:

Unmodified
Added
Removed
Modified
  • KeywordSuggestPlugin

    v21 v22  
    44== Description ==
    55
    6 The !KeywordsSuggestPlugin provides an autocomplete function for the '''keywords''' ticket field. Optionally, it is possible to restrict the list of allowed keywords. The !KeywordSuggestPlugin uses the [http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ jQuery plugin: Autocomplete] for the javascript part. See also the LoomingCloudsPlugin.
     6The !KeywordsSuggestPlugin provides an autocomplete function for the '''keywords''' ticket field. Optionally, it is possible to restrict the list of allowed keywords. The !KeywordSuggestPlugin uses the [http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ jQuery plugin: Autocomplete] for the javascript part.
     7
     8See also LoomingCloudsPlugin.
    79
    810== Bugs/Feature Requests ==
     
    3234keywords = tag1,tag2,tag3
    3335mustmatch = True
    34 helppage = TicketKeywords
     36helppage = wiki/TicketKeywords
    3537helppage.newwindow = True
    3638matchcontains = True
     
    4042 * '''keywords''' - specifies list of comma separated values available for input
    4143 * '''mustmatch''' - optional, if specified, 'keywords' field accepts values from the '''keywords''' list only
    42  * '''helppage''' - optional, if specified, 'keywords' label will be turned into the link to wiki page
    43  * '''helppage.newwindow''' - optional, whether wiki page opened in new window or not
     44 * '''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`).
     45 * '''helppage.newwindow''' - optional, whether wiki page opened in new window or not`
    4446 * '''matchcontains''' - optional, whether keywords which matched not from the beginning must be included into list
    4547 * '''multipleseparator''' - which character(s) is used as separator between keywords. Must be enclosed with quotas or other characters. If not specified, ', ' is used.