stable

Clone or download

Read-only

request #9630: Text card fields on Kanban should allow basic formatting

How to test this: 1. In the kanban tracker's card field semantic, add the following fields: - Text field - String field - Int field - Float field - Artifact id field - Artifact Tracker id field - Rank (priority) field 2. All those card fields should still be displayed correctly in the kanban. 3. All those card fields should change when edited using the artifact modal 4. The text field on the card with HTML tags in its content: - in Text format, should still show escaped HTML (&eacute, etc.) - in HTML format, should be stripped (only the text is shown). 5. The string field on the card with HTML tags in its content should still show escaped HTML (&eacute, etc.) Change-Id: Ia34ae5d4950de4fc6a60d772fd8802eba62abea0

Modified Files

Name
M plugins/agiledashboard/www/js/kanban/bower.json +2 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/build.config.js +2 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/card-fields/card-fields-service.js +0 −5 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/card-fields/card-fields.js +1 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/card-fields/card-text-field/card-text-field-directive.js +34 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/card-fields/card-text-field/card-text-field.tpl.html +7 −0 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/card-fields/tuleap-simple-field-directive.js +29 −0 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item-controller.js +0 −1 Go to diff View file
M plugins/agiledashboard/www/js/kanban/src/app/kanban-item/kanban-item.tpl.html +15 −9 Go to diff View file
A plugins/agiledashboard/www/js/kanban/src/app/strip-tags/strip-tags-filter.js +11 −0 Go to diff View file