stable

Clone or download

Read-only

refactor: move "all" kanban files to kanban

The remaining kanban files that are still in agiledashboard are: * db upgrade scripts * kanban dedicated mustache files for a.d homepage Those don't need to be moved. No functional changes. Part of request #32645: Extract kanban from agiledashboard Change-Id: I79b5491c96af2f4d45b436f6dbaf59de3490f402

Modified Files

Name
M plugins/agiledashboard/Makefile +0 −2 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/AdminController.class.php +10 −10 Go to diff View file
D plugins/agiledashboard/include/AgileDashboard/AdminKanbanPresenter.class.php +0 −85 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/AgileDashboardLegacyController.php +1 −1 Go to diff View file
D plugins/agiledashboard/include/AgileDashboard/FirstKanbanCreator.php +0 −172 Go to diff View file
D plugins/agiledashboard/include/AgileDashboard/KanbanItemManager.class.php +0 −87 Go to diff View file
M plugins/agiledashboard/include/AgileDashboardRouter.class.php +4 −3 Go to diff View file
M plugins/agiledashboard/include/AgileDashboardRouterBuilder.php +3 −2 Go to diff View file
M plugins/agiledashboard/include/Planning/PlanningController.class.php +3 −2 Go to diff View file
M plugins/agiledashboard/include/agiledashboardPlugin.php +8 −7 Go to diff View file
M plugins/agiledashboard/site-content/fr_FR/LC_MESSAGES/tuleap-agiledashboard.po +0 −38 Go to diff View file
M plugins/agiledashboard/site-content/pt_BR/LC_MESSAGES/tuleap-agiledashboard.po +0 −32 Go to diff View file
M plugins/agiledashboard/tests/e2e/cypress/cypress/support/commands.ts +0 −9 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboard/AgileDashboardControllerTest.php +3 −2 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboard/Planning/PlanningControllerTest.php +2 −2 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboardRouterTest.php +2 −1 Go to diff View file
A plugins/kanban/Makefile +5 −0 Go to diff View file
A plugins/kanban/include/Kanban/AdminKanbanPresenter.class.php +55 −0 Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/Kanban/BreadCrumbBuilder.php Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/Kanban/ColumnIdentifier.php Go to diff View file
A plugins/kanban/include/Kanban/FirstKanbanCreator.php +147 −0 Go to diff View file
M plugins/kanban/include/Kanban/Home/KanbanSummaryPresenter.php +2 −2 Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/AgileDashboardKanbanConfigurationUpdater.class.php Go to diff View file
A plugins/kanban/include/Kanban/KanbanItemManager.class.php +46 −0 Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/KanbanManager.class.php Go to diff View file
M plugins/kanban/include/Kanban/KanbanPresenter.php +2 −2 Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/Kanban/KanbanURL.php Go to diff View file
M plugins/kanban/include/Kanban/NewDropdown/NewDropdownCurrentContextSectionForKanbanProvider.php +1 −1 Go to diff View file
M plugins/kanban/include/Kanban/REST/v1/CumulativeFlowDiagram/OrderedColumnRepresentationsBuilder.php +1 −1 Go to diff View file
M plugins/kanban/include/Kanban/REST/v1/ItemCollectionRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/kanban/include/Kanban/REST/v1/ItemRepresentationBuilder.php +6 −6 Go to diff View file
M plugins/kanban/include/Kanban/REST/v1/KanbanItemRepresentation.php +1 −1 Go to diff View file
M plugins/kanban/include/Kanban/REST/v1/KanbanItemsResource.php +2 −2 Go to diff View file
M plugins/kanban/include/Kanban/REST/v1/KanbanResource.php +7 −7 Go to diff View file
M plugins/kanban/include/Kanban/REST/v1/TrackerReport/FilteredItemCollectionRepresentationBuilder.php +2 −2 Go to diff View file
M plugins/kanban/include/Kanban/RealTime/KanbanArtifactMessageBuilder.php +1 −1 Go to diff View file
M plugins/kanban/include/Kanban/RealTimeMercure/KanbanArtifactMessageBuilderMercure.php +1 −1 Go to diff View file
M plugins/kanban/include/Kanban/ShowKanbanController.php +2 −3 Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/ReportFilterFromWhereBuilder.php Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/TrackerReportBuilder.php Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/TrackerReportDao.php Go to diff View file
R plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/TrackerReportUpdater.php Go to diff View file
M plugins/kanban/include/Kanban/Widget/KanbanWidget.php +4 −4 Go to diff View file
M plugins/kanban/include/Kanban/XML/KanbanXmlImporter.php +2 −2 Go to diff View file
A plugins/kanban/package.json +13 −0 Go to diff View file
A plugins/kanban/pnpm-lock.yaml +9 −0 Go to diff View file
A plugins/kanban/resources/templates/.gitkeep +0 −0 Go to diff View file
M plugins/kanban/site-content/fr_FR/LC_MESSAGES/tuleap-kanban.po +54 −1 Go to diff View file
R plugins/agiledashboard/templates/kanban.mustache Go to diff View file
A plugins/kanban/tests/e2e/cypress/cypress.config.ts +6 −0 Go to diff View file
R plugins/agiledashboard/tests/e2e/cypress/cypress/e2e/kanban.cy.ts Go to diff View file
A plugins/kanban/tests/e2e/cypress/cypress/support/commands.ts +40 −0 Go to diff View file
A plugins/kanban/tests/e2e/cypress/cypress/support/e2e.ts +22 −0 Go to diff View file
A plugins/kanban/tests/e2e/cypress/tsconfig.json +4 −0 Go to diff View file
M plugins/kanban/tests/rest/REST/DataBuilder.php +3 −3 Go to diff View file
M plugins/kanban/tests/rest/REST/KanbanTest.php +37 −37 Go to diff View file
R plugins/agiledashboard/tests/unit/AgileDashboard/FirstKanbanCreatorTest.php Go to diff View file
R plugins/agiledashboard/tests/unit/AgileDashboard/Kanban/KanbanURLTest.php Go to diff View file
M plugins/kanban/tests/unit/XML/KanbanXmlImporterTest.php +2 −2 Go to diff View file