stable

Clone or download

Read-only

Merge commit 'refs/changes/73/4073/14' of ssh://gerrit.tuleap.net:29418/tuleap into stable

* ssh://gerrit.tuleap.net:29418/tuleap: story #8090: Export and import project ugroups with members

Modified Files

Name
M plugins/agiledashboard/include/Planning/PlanningController.class.php +11 −3 Go to diff View file
M plugins/agiledashboard/include/agiledashboardPlugin.class.php +6 −1 Go to diff View file
M plugins/cardwall/tests/Semantic/CardFieldsFactoryTest.php +17 −1 Go to diff View file
M plugins/cardwall/tests/Semantic/CardFieldsTest.php +17 −1 Go to diff View file
M plugins/hudson/tests/HudsonBuildTest.php +20 −7 Go to diff View file
M plugins/hudson/tests/HudsonTestResultTest.php +20 −7 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportHelper.class.php +2 −18 Go to diff View file
M plugins/tracker/tests/Tracker/Rule/Date/FactoryTest.php +13 −1 Go to diff View file
M plugins/tracker/tests/Tracker/Rule/List/FactoryTest.php +13 −1 Go to diff View file
M plugins/tracker/tests/TrackerXmlImportTest.php +11 −1 Go to diff View file
M plugins/tracker/tests/Tracker_CannedResponseFactoryTest.php +22 −5 Go to diff View file
M plugins/tracker/tests/Tracker_FormElement_Field_DateTest.php +15 −1 Go to diff View file
M plugins/tracker/tests/Tracker_ReportFactoryTest.php +18 −5 Go to diff View file
M plugins/tracker/tests/Tracker_SemanticFactoryTest.php +20 −4 Go to diff View file
M plugins/tracker/tests/Tracker_Semantic_ContributorFactoryTest.php +21 −5 Go to diff View file
M plugins/tracker/tests/Tracker_Semantic_ContributorTest.php +19 −4 Go to diff View file
M plugins/tracker/tests/Tracker_Semantic_StatusFactoryTest.php +21 −5 Go to diff View file
M plugins/tracker/tests/Tracker_Semantic_StatusTest.php +19 −4 Go to diff View file
M plugins/tracker/tests/Tracker_Semantic_TitleFactoryTest.php +32 −24 Go to diff View file
M plugins/tracker/tests/Tracker_Semantic_TitleTest.php +15 −0 Go to diff View file
M plugins/tracker/tests/Tracker_TooltipFactoryTest.php +22 −5 Go to diff View file
M plugins/tracker/tests/workflow/WorkflowFactoryTest.php +13 −4 Go to diff View file
M plugins/tracker/tests/workflow/WorkflowTest.php +22 −5 Go to diff View file
M src/common/autoload.php +6 −3 Go to diff View file
M src/common/project/ProjectXMLExporter.class.php +84 −10 Go to diff View file
A src/common/project/ProjectXMLExporterLogger.php +29 −0 Go to diff View file
M src/common/project/ProjectXMLImporter.class.php +126 −8 Go to diff View file
A src/common/project/ProjectXMLImporterLogger.php +29 −0 Go to diff View file
M src/common/project/UGroupManager.class.php +10 −7 Go to diff View file
A src/common/xml/XMLImportHelper.php +38 −0 Go to diff View file
A src/common/xml/resources/project.rnc +21 −0 Go to diff View file
A src/common/xml/resources/project.rng +38 −0 Go to diff View file
M src/utils/export_project_xml.php +16 −12 Go to diff View file
M src/utils/import_project_xml.php +9 −3 Go to diff View file
M src/www/project/admin/ugroup_utils.php +2 −0 Go to diff View file
M tests/lib/rest/TestDataBuilder.php +7 −2 Go to diff View file
M tests/simpletest/common/project/ProjectXMLExporterTest.php +88 −11 Go to diff View file
M tests/simpletest/common/project/ProjectXMLImporterTest.php +91 −14 Go to diff View file
A tests/simpletest/common/project/_fixtures/fake_project_with_ugroups.xml +20 −0 Go to diff View file
M tools/utils/data_generator/DataInit/ProjectHelper.php +8 −3 Go to diff View file