Edgewall Software

Changes between Version 7 and Version 8 of WorkFlow


Ignore:
Timestamp:
Jan 27, 2006, 4:06:22 PM (18 years ago)
Author:
Alec Thomas
Comment:

Resolved one issue, created one

Legend:

Unmodified
Added
Removed
Modified
  • WorkFlow

    v7 v8  
    1616 * Add a `checkbox` field type. This would store the data in the field value as `check1|check2|check4`. I'm not sure about this one, or how it would be presented in the query module, but I figured that people might find it useful.
    1717 * Remove `ticket_custom_props()` macro? It does not appear to be referenced.
    18  * Need a clean way to differentiate between fields that should not be displayed in the summary and those that should not be displayed at all. eg. `summary` should be hidden in the ticket summary (as it is used for the title), and should only be editable by users with `TICKET_ADMIN` privileges. Perhaps the logic should be that if a field is `hidden` it is not displayed anywhere, unless it is also `editable`, in which case it is only displayed in the ticket properties.
     18 * ~~Need a clean way to differentiate between fields that should not be displayed in the summary and those that should not be displayed at all. eg. `summary` should be hidden in the ticket summary (as it is used for the title), and should only be editable by users with `TICKET_ADMIN` privileges. Perhaps the logic should be that if a field is `hidden` it is not displayed anywhere, unless it is also `editable`, in which case it is only displayed in the ticket properties.~~ [2837]
     19 * There are a number of locations in the ticket code where permissions are hard coded. As an example, the `TICKET_CREATE` permission is required to create a new ticket. Should this be overridable by `ITicketWorkflow` implementors?