stable

Clone or download

Read-only

Import and display a string field

This commit introduce the end-to-end management of an field generation with it's permissions and usage of if in a renderer and a search criteria. The goal is to show how to manage field references in various scenario. Part of story #19242 create Jira project with Agile configuration Change-Id: Ib07533cfdfcc9e097344c18ff5ee64e8e432f48f

Modified Files

Name
M plugins/jira_import/include/JiraAgile/JiraAgileImporter.php +2 −12 Go to diff View file
A plugins/jira_import/include/JiraAgile/ScrumTrackerBuilder.php +82 −0 Go to diff View file
M plugins/jira_import/tests/unit/JiraAgile/JiraAgileImporterTest.php +41 −18 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Definition/Field/XML/XMLStepDefinition.php +2 −2 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/JiraXmlExporter.php +1 −3 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Permissions/PermissionsXMLExporter.php +7 −15 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportAllIssuesExporter.php +8 −16 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDefaultCriteriaExporter.php +6 −4 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDoneIssuesExporter.php +9 −10 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportOpenIssuesExporter.php +9 −22 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportTableExporter.php +15 −36 Go to diff View file
M plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlTQLReportExporter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Container/XML/XMLContainer.php +8 −3 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/String/XML/XMLStringField.php +38 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/XML/GroupPermission.php +47 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/XML/ReadPermission.php +32 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/XML/SubmitPermission.php +32 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/XML/UpdatePermission.php +32 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/XML/XMLField.php +55 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/XML/XMLFieldPermission.php +57 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/XML/XMLFormElement.php +8 −6 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/XML/XMLFormElementFlattenedCollection.php +92 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/XML/XMLFormElementImpl.php +3 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/XML/XMLReference.php +32 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/XML/XMLReferenceByID.php +45 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/XML/XMLReferenceByName.php +48 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Renderer/Table/Column/XML/XMLColumn.php +48 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Renderer/Table/XML/XMLTable.php +81 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Renderer/XML/XMLRenderer.php +69 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/XML/XMLReport.php +135 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/XML/XMLReportCriterion.php +68 −0 Go to diff View file
M plugins/tracker/include/Tracker/XML/XMLTracker.php +34 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportAllIssuesExporterTest.php +1 −2 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportCreatedRecentlyExporterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDoneIssuesExporterTest.php +2 −2 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportOpenIssuesExporterTest.php +2 −4 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportTableExporterTest.php +3 −9 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportUpdatedRecentlyExporterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/XML/XMLTrackerTest.php +192 −0 Go to diff View file