Changes between Version 2 and Version 3 of TracTicketsCustomFields
- Timestamp:
- Sep 25, 2015, 8:15:49 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracTicketsCustomFields
v2 v3 20 20 * format: One of: 21 21 * `plain` for plain text 22 * `wiki` to interpret the content as WikiFormatting (''since 0.11.3'')22 * `wiki` to interpret the content as WikiFormatting 23 23 * `reference` to treat the content as a queryable value (''since 1.0'') 24 24 * `list` to interpret the content as a list of queryable values, separated by whitespace (''since 1.0'') … … 40 40 * label: Descriptive label. 41 41 * value: Default text. 42 * cols: Width in columns .42 * cols: Width in columns 43 43 * rows: Height in lines. 44 44 * 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. 46 47 Macros will be expanded when rendering `textarea` fields with format `wiki`, but not when rendering `text` fields with format `wiki`. 46 48 47 49 === Sample Config === … … 114 116 Note in particular the `LEFT OUTER JOIN` statement here. 115 117 118 Note that if your config file uses an uppercase name, e.g., 119 {{{ 120 [ticket-custom] 121 122 Progress_Type = text 123 }}} 124 you would use lowercase in the SQL: `AND c.name = 'progress_type'` 125 116 126 === Updating the database === 117 127