Edgewall Software

Changes between Version 6 and Version 7 of 1.1/TracTicketsCustomFields


Ignore:
Timestamp:
Jan 13, 2015, 4:37:55 AM (9 years ago)
Author:
Jun Omae
Comment:

Merged TracTicketsCustomFields@28, TracTicketsCustomFields@30, TracTicketsCustomFields@31 and TracTicketsCustomFields@32

Legend:

Unmodified
Added
Removed
Modified
  • 1.1/TracTicketsCustomFields

    v6 v7  
    2020   * format: One of:
    2121     * `plain` for plain text
    22      * `wiki` to interpret the content as WikiFormatting (''since 0.11.3'')
     22     * `wiki` to interpret the content as WikiFormatting
    2323     * `reference` to treat the content as a queryable value (''since 1.0'')
    2424     * `list` to interpret the content as a list of queryable values, separated by whitespace (''since 1.0'')
     
    4040   * label: Descriptive label.
    4141   * value: Default text.
    42    * cols: Width in columns. //(Removed in 1.1.2)//
     42   * cols: Width in columns
    4343   * rows: Height in lines.
    4444   * order: Sort order placement.
    45    * format: Either `plain` for plain text or `wiki` to interpret the content as WikiFormatting. (''since 0.11.3'')
     45   * format: Either `plain` for plain text or `wiki` to interpret the content as WikiFormatting.
    4646 * '''time''': Date (& time) picker. (''Since 1.1.1.'')
    4747   * label: Descriptive label.
     
    5454
    5555If the `label` is not specified it will be created by capitalizing the custom field name and replacing underscores with whitespaces.
     56
     57Macros will be expanded when rendering `textarea` fields with format `wiki`, but not when rendering `text` fields with format `wiki`.
    5658
    5759=== Sample Config ===
     
    139141Note in particular the `LEFT OUTER JOIN` statement here.
    140142
     143Note that if your config file uses an uppercase name, e.g.,
     144{{{
     145[ticket-custom]
     146
     147Progress_Type = text
     148}}}
     149you would use lowercase in the SQL:  `AND c.name = 'progress_type'`
     150
    141151=== Updating the database ===
    142152