stable

Clone or download

Read-only

chore: Remove ServiceURLCollector event

In order to limit the amount of events to declare a service in a plugin this event is removed in favor of direct usage of Service classes. Part of: story #24228 create/update/delete mediawiki-standalone in my project Change-Id: I5482d3c96127aa81bf8d1e5e16ae5c846d9bc3ad

Modified Files

Name
M plugins/baseline/include/BaselineTuleapService.php +10 −0 Go to diff View file
M plugins/baseline/include/baselinePlugin.php +0 −11 Go to diff View file
A plugins/docman/include/DocmanURL.php +54 −0 Go to diff View file
M plugins/docman/include/ServiceDocman.php +10 −0 Go to diff View file
M plugins/docman/include/docmanPlugin.php +0 −12 Go to diff View file
M plugins/document/include/documentPlugin.php +4 −16 Go to diff View file
M plugins/git/include/Git/GitService.php +10 −0 Go to diff View file
M plugins/git/include/gitPlugin.php +0 −10 Go to diff View file
M plugins/mediawiki/include/ServiceMediawiki.class.php +10 −0 Go to diff View file
M plugins/mediawiki/include/mediawikiPlugin.php +0 −11 Go to diff View file
D plugins/mediawiki/tests/unit/mediawikiPluginTest.php +0 −49 Go to diff View file
M plugins/mediawiki_standalone/include/Service/MediawikiStandaloneService.php +14 −1 Go to diff View file
M plugins/mediawiki_standalone/include/mediawiki_standalonePlugin.php +1 −11 Go to diff View file
M plugins/program_management/include/ProgramService.php +10 −0 Go to diff View file
M plugins/program_management/include/program_managementPlugin.php +0 −11 Go to diff View file
M plugins/program_management/tests/unit/program_managementPluginTest.php +0 −18 Go to diff View file
M src/common/Layout/ProjectSidebarToolsBuilder.php +1 −9 Go to diff View file
M src/common/Project/Service.class.php +5 −0 Go to diff View file
M src/common/Project/Service/AddController.php +1 −1 Go to diff View file
M src/common/Project/Service/EditController.php +3 −1 Go to diff View file
M src/common/Project/Service/ProjectDefinedService.php +32 −1 Go to diff View file
M src/common/Project/Service/ServicePOSTDataBuilder.php +11 −13 Go to diff View file
M src/common/Project/Service/ServicesPresenterBuilder.php +2 −15 Go to diff View file
M tests/unit/common/Project/Service/AddControllerTest.php +1 −1 Go to diff View file
M tests/unit/common/Project/Service/EditControllerTest.php +5 −4 Go to diff View file
M tests/unit/common/Project/Service/ServicePOSTDataBuilderTest.php +11 −58 Go to diff View file
M tests/unit/common/Project/Service/ServicesPresenterBuilderTest.php +1 −13 Go to diff View file