stable

Clone or download

Read-only

story #7857: diplay fields in the same order than in artifact view

thanks to tracker structure This commit also matches story #7233: see tracker architecture Change-Id: I0af527b4a34a3a993d69b1fa563b22e6e58632b8

Modified Files

Name
M plugins/agiledashboard/www/js/planning-v2/src/app/app-planning-controller.js +4 −3 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/app-planning-controller.spec.js +4 −1 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-in-backlog.tpl.html +2 −2 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/backlog-item/backlog-item-in-submilestone.tpl.html +2 −2 Go to diff View file
A plugins/agiledashboard/www/js/planning-v2/src/app/modal/field.tpl.html +0 −0 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-instance-controller.js +16 −22 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-instance-controller.spec.js +3 −55 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-model-factory.js +6 −3 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-model-factory.spec.js +59 −59 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-service.js +48 −10 Go to diff View file
A plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-service.spec.js +58 −0 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-tuleap-factory.js +48 −7 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal-tuleap-factory.spec.js +84 −0 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal.js +1 −0 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal.less +56 −0 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/modal/modal.tpl.html +140 −79 Go to diff View file
M plugins/agiledashboard/www/js/planning-v2/src/app/planning.tpl.html +4 −2 Go to diff View file
M plugins/agiledashboard/www/themes/FlamingParrot/css/style.less +5 −0 Go to diff View file
M plugins/tracker/include/REST/FieldRepresentation.class.php +22 −7 Go to diff View file
A plugins/tracker/include/REST/StructureElementRepresentation.class.php +43 −0 Go to diff View file
M plugins/tracker/include/REST/TrackerRepresentation.class.php +7 −1 Go to diff View file
M plugins/tracker/include/REST/TrackerRestBuilder.class.php +20 −2 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement.class.php +9 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElementFactory.class.php +6 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Container.class.php +43 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Container_Fieldset.class.php +7 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_StaticField.class.php +46 −17 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_StaticField_RichText.class.php +4 −0 Go to diff View file
M plugins/tracker/include/autoload.php +3 −2 Go to diff View file
M plugins/tracker/tests/REST_Backend/TrackerRestBuilderTestPHP53.php +1 −0 Go to diff View file
M tests/rest/TrackersTest.php +2 −0 Go to diff View file