stable

Clone or download

Read-only

Import select box values

I renamed the XMLFieldValue* to XMLChangesetValue otherwise it was hard to distinguish the BindValue usage between the tracker definition and the artifact usage. Part of story #19242 create Jira project with Agile configuration Change-Id: Ie4490102dd0a511b0aeeaa1dfbc9c373fd8dc37c

Modified Files

Name
M plugins/jira_import/include/JiraAgile/JiraAgileImporter.php +9 −6 Go to diff View file
M plugins/jira_import/include/JiraAgile/JiraSprint.php +23 −2 Go to diff View file
M plugins/jira_import/include/JiraAgile/ScrumTrackerBuilder.php +6 −9 Go to diff View file
M plugins/jira_import/tests/unit/JiraAgile/JiraAgileImporterTest.php +48 −0 Go to diff View file
M plugins/jira_import/tests/unit/JiraAgile/JiraSprintRetrieverFromAPITest.php +36 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Changeset/XML/XMLChangeset.php +6 −5 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XML/XMLArtifact.php +3 −2 Go to diff View file
A plugins/tracker/include/Tracker/Creation/JiraImporter/UnexpectedFormatException.php +28 −0 Go to diff View file
R plugins/tracker/include/Tracker/FormElement/Field/Date/XML/XMLDateValue.php Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindStatic/XML/XMLBindStaticChangesetValue.php +61 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindStatic/XML/XMLBindStaticValue.php +10 −2 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/XML/XMLBindValueReference.php +2 −0 Go to diff View file
A plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/XML/XMLBindValueReferenceById.php +49 −0 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/XML/XMLBindValueReferenceByLabel.php +5 −0 Go to diff View file
R plugins/tracker/include/Tracker/FormElement/Field/StringField/XML/XMLStringValue.php Go to diff View file
R plugins/tracker/include/Tracker/FormElement/Field/XML/XMLFieldValue.php Go to diff View file
M plugins/tracker/include/Tracker/XML/XMLTracker.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Field/Date/XML/XMLDateValueTest.php +5 −4 Go to diff View file
M plugins/tracker/tests/unit/Tracker/XML/XMLTrackerTest.php +81 −3 Go to diff View file