stable

Clone or download

Read-only

story #9283: allow to pass a parameter that force references update

This commit introduce the configurator object but without having an impact Change-Id: Ied701d0a737f870d0143054fed9a4450bf597c45

Modified Files

Name
M plugins/git/include/GitXmlImporter.class.php +9 −6 Go to diff View file
M plugins/git/include/gitPlugin.class.php +1 −1 Go to diff View file
M plugins/git/tests/GitXmlImporterTest.php +2 −2 Go to diff View file
M plugins/mediawiki/include/MediaWikiXMLImporter.class.php +9 −4 Go to diff View file
M plugins/mediawiki/include/mediawikiPlugin.class.php +1 −1 Go to diff View file
M plugins/referencealias_core/include/ReferenceAliasCore/ReferencesImporter.class.php +2 −1 Go to diff View file
M plugins/referencealias_core/include/referencealias_corePlugin.class.php +4 −1 Go to diff View file
M plugins/referencealias_core/tests/ReferencesImporterTest.php +6 −4 Go to diff View file
M plugins/referencealias_git/include/ReferenceAliasGit/ReferencesImporter.php +2 −1 Go to diff View file
M plugins/referencealias_git/include/referencealias_gitPlugin.class.php +1 −1 Go to diff View file
M plugins/referencealias_git/tests/ReferencesImporterTest.php +4 −4 Go to diff View file
M plugins/referencealias_mediawiki/include/ReferencesImporter.class.php +2 −1 Go to diff View file
M plugins/referencealias_mediawiki/include/referencealias_mediawikiPlugin.class.php +1 −1 Go to diff View file
M plugins/referencealias_mediawiki/tests/ReferencesImporterTest.php +3 −2 Go to diff View file
M plugins/referencealias_svn/include/ReferenceAliasSVN/ReferencesImporter.php +2 −1 Go to diff View file
M plugins/referencealias_svn/include/referencealias_svnPlugin.class.php +1 −1 Go to diff View file
M plugins/referencealias_svn/tests/ReferencesImporterTest.php +4 −4 Go to diff View file
M plugins/referencealias_tracker/include/ReferenceAliasTracker/ReferencesImporter.class.php +2 −1 Go to diff View file
M plugins/referencealias_tracker/include/referencealias_trackerPlugin.class.php +1 −2 Go to diff View file
M plugins/referencealias_tracker/tests/ReferencesImporterTest.php +9 −6 Go to diff View file
M plugins/svn/include/Svn/XMLImporter.class.php +5 −2 Go to diff View file
M plugins/svn/include/Svn/XMLRepositoryImporter.class.php +5 −2 Go to diff View file
M plugins/svn/include/svnPlugin.class.php +1 −0 Go to diff View file
M plugins/svn/tests/Svn/XMLImporterTest.php +2 −0 Go to diff View file
M plugins/tracker/include/TrackerXmlImport.class.php +3 −0 Go to diff View file
M plugins/tracker/include/trackerPlugin.class.php +1 −0 Go to diff View file
M plugins/tracker/tests/TrackerXmlImportTest.php +35 −13 Go to diff View file
M src/common/autoload.php +3 −2 Go to diff View file
M src/common/event/Event.class.php +7 −5 Go to diff View file
M src/common/frs/FRSXMLImporter.class.php +4 −1 Go to diff View file
M src/common/project/ProjectXMLImporter.class.php +14 −10 Go to diff View file
A src/common/project/XML/Import/ImportConfig.php +36 −0 Go to diff View file
M src/utils/import_project_xml.php +21 −4 Go to diff View file
M tests/integration/ProjectImportTest.php +1 −1 Go to diff View file
M tests/lib/rest/TestDataBuilder.php +1 −1 Go to diff View file
M tests/simpletest/common/frs/FRSXMLImporterTest.php +6 −6 Go to diff View file
M tests/simpletest/common/project/ProjectXMLImporterTest.php +11 −6 Go to diff View file