At line 9 changed one line |
The idea is to mix the functionality of BrushedTemplateZebraTables and BrushedTemplateGraphBars, to create markup that wraps around a table to "decorate" all the cells in a column. The column could be specified by name or index. |
The idea is to mix the functionality of BrushedTemplateZebraTables and BrushedTemplateGraphBars, to create markup that wraps around a table to "decorate" all the cells in a given column or columns. The columns could be specified by name or index. |
At line 13 changed one line |
Keep the cells as "pure" data has the advantage of being able to use plugins to generate them (e.g. InsertPage, InsertAttachment) while deciding on how to present them on the current page. It separates the concerns of data and presentation. |
Keeping the cells as "pure" data has the advantage of being able to use plugins to generate them (e.g. InsertPage, InsertAttachment) while deciding on how to present them on the current page. It separates the concerns of data and presentation. |
At line 18 changed one line |
| ageBar | <period,threshold> | Like the BrushedTemplateGraphBar, but provides a graphic display for the difference between the date in the cell and the current date. Could use different colors for dates in the future (e.g. deadlines) and dates in the past (e.g. age of a defect or task) |
| ageBar | | Like the BrushedTemplateGraphBar, but provides a graphic display for the difference between the date in the cell and the current date. Could use different colors for dates in the future (e.g. deadlines) and dates in the past (e.g. age of a defect or task) |
At line 20 changed one line |
| icon | <page> | assumes the page contains image attachments and that the cell value is the name of an attachment. Generates an image like [page/cellValue.png] |
| iconMap | <page> | assumes the page contains image attachments and that the cell value is the name of an attachment. Generates an image like [page/cellValue.png] |
At line 24 added 2 lines |
Example: |
{{{ |
At line 27 added 9 lines |
%%DecoratedTable-ageBar:Created;percentageBar:Completed;iconMap(StatusTablePage):Status |
|
|| Task || Owner || Created || Completed || Status |
| Implement data layer | Nascif | 2006/06/01 | 10% | red |
| User Interface | Dirk | 2006/05/12 | 100% | green |
| Wiki engine | Janne | 2006/04/01 | 75% | yellow |
%% |
|
}}} |