stable

Clone or download

Read-only

Display page content

This is part of story #15122 [release management] management of Aggregator projects The contributor projects and their plannable items trackers are now displayed in the Aggregator top planning read only page. To test it, you have to uninstall and reinstall the plugin and then add data by hand in the two plugin tables. No custom CSS has been done for now. It will be done in a dedicate commit Change-Id: I02ad13fb427dbbc0324eb4f28532578217f1f9cf

Modified Files

Name
M plugins/agiledashboard/include/AgileDashboard/AdminKanbanPresenter.class.php +1 −6 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/AdminScrumPresenter.class.php +0 −5 Go to diff View file
M plugins/agiledashboard/templates/admin-kanban.mustache +1 −1 Go to diff View file
M plugins/agiledashboard/templates/admin-scrum.mustache +1 −1 Go to diff View file
M plugins/multi_project_backlog/db/install.sql +6 −0 Go to diff View file
M plugins/multi_project_backlog/db/uninstall.sql +1 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/AggregatorAdminPresenter.php +70 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/PlannableItems.php +64 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/PlannableItemsCollection.php +47 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/PlannableItemsCollectionBuilder.php +78 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/PlannableItemsTrackersDao.php +44 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/Presenter/PlannableItemPresenter.php +47 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/Presenter/PlannableItemsPerContributorPresenter.php +51 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/Presenter/PlannableItemsPerContributorPresenterCollection.php +47 −0 Go to diff View file
A plugins/multi_project_backlog/include/Aggregator/PlannableItems/Presenter/PlannableItemsPerContributorPresenterCollectionBuilder.php +79 −0 Go to diff View file
M plugins/multi_project_backlog/include/Aggregator/ReadOnlyAggregatorAdminViewController.php +44 −5 Go to diff View file
M plugins/multi_project_backlog/include/multi_project_backlogPlugin.php +18 −1 Go to diff View file
M plugins/multi_project_backlog/site-content/fr_FR/LC_MESSAGES/tuleap-multi_project_backlog.po +26 −0 Go to diff View file
A plugins/multi_project_backlog/templates/aggregator-admin.mustache +66 −0 Go to diff View file
A plugins/multi_project_backlog/tests/unit/Aggregator/PlannableItems/PlannableItemsCollectionBuilderTest.php +169 −0 Go to diff View file
A plugins/multi_project_backlog/tests/unit/Aggregator/PlannableItems/Presenter/PlannableItemsPerContributorPresenterCollectionBuilderTest.php +172 −0 Go to diff View file
M plugins/multi_project_backlog/tests/unit/Aggregator/ReadOnlyAggregatorAdminViewControllerTest.php +49 −5 Go to diff View file