stable
Clone or download
chore: Implements request #37539 Forbid PHP double quotes unless necessary
No functional change expected. Changes have been automated by `make phpcbf` Why ? In PHP, single-quoted strings and double-quoted strings do not have the same features [0]. Double-quoted strings allow variable interpolation, but single-quoted strings do not. The proposed style rule is to forbid double quotes unless variable interpolation or other escaped characters (like \n character) are used. The goal is to make it clear when we intend to use variable interpolation or other double-quoted strings features. Most of the time, we just want to write a plain string of characters, so those features are not needed and could be unintentionally used. Please note that this will create a difference with TypeScript where double quotes are mandatory. [0] https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.double Change-Id: I427e7f2c2d3b8c1689c5b10f82a939eff8edbce4
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/agiledashboard/db/mysql/updates/2012/201203191812_add_planning_tables.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2012/201203201103_add_column_group_id.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2012/201203230952_rename_column_release_tracker_id.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2012/201205041624_add_titles_column.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2013/201307101021_add_agiledashborad_semantic_initial_effort_table.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2013/201309251016_add_agiledashboard_criteria_table.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2014/201411251018_add_agiledashboard_kanban_table.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2014/201411261504_add_agiledashboard_kanban_configuration_table.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2014/201411281005_create_plugin_agiledashboard_configuration_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2014/201412031051_remove_project_id_in_kanban_configuration.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2015/201501061426_add_kanban_id.php | +6 | −6 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2015/201502261627_add_plugin_agiledashboard_kanban_configuration_column_table.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2017/201702211436_using_scrum_v2_table.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2017/201711161420_create_semantic_done_table.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2017/201711301606_add_kanban_tracker_reports_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2017/201712180948_add_burnup_cache_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2018/201805021100_add_kanban_widget_config_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2019/201908081533_add_burnup_subelements_cache_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2019/201908161005_add_burnup_projects_count_mode_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2019/201908241521_add_kanban_recently_visited_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2019/201910211053_create_plugin_agiledashboard_explicit_backlog_usage_table.php | +5 | −5 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2019/201910231002_add_project_id_index_explicit_backlog_artifacts.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2020/202001131436_add_tracker_workflow_add_top_backlog_table.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202306281358_activate_kanban.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202307121400_move_kanban_configuration.php | +7 | −7 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202309011811_split_modal_for_existing_users.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202309110933_remove_abbr_in_split_modal_preference.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202309290900_promote_kanban.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202311301525_add_milestones_in_sidebar_config.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202312061515_add_top_backlog_recently_visited.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/db/mysql/updates/2023/202312111445_remove_dev_mode.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/AdminController.class.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/AdminScrumPresenter.class.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Artifact/AdditionalArtifactActionBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/BacklogItemDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/ExplicitBacklog/ArtifactsInExplicitBacklogDao.php | +10 | −10 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/ExplicitBacklog/UnplannedCriterionOptionsProvider.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/ExplicitBacklog/XMLImporter.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/Burnup.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/Burnup/CountElementsCacheDao.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/Burnup/ProjectsCountModeDao.php | +6 | −6 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupDataBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupDataDAO.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupFieldPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/MessageFetcher.php | +5 | −5 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/SystemEvent/SystemEvent_BURNUP_DAILY.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/FormElement/SystemEvent/SystemEvent_BURNUP_GENERATE.php | +7 | −7 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/ArtifactView.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/BacklogItemCollectionFactory.class.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/NoRootPlanningException.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/ProvidedAddedIdIsNotInPartOfTopBacklogException.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/MilestoneDao.class.php | +10 | −10 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/MilestoneReportCriterionOptionsProvider.class.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Details/DetailsPresenterBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/PaneInfoCollector.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Milestone/Sidebar/MilestonesInSidebarXmlImport.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Planning/Admin/PlanningEditionPresenterBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Planning/RootPlanning/RootPlanningEditionEvent.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/Milestone/ProvidedRemoveIdIsNotInExplicitBacklogException.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/Milestone/RemoveNotAvailableInClassicBacklogModeException.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/REST/v1/MilestoneResource.class.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Semantic/XML/SemanticsExporter.php | +6 | −6 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Workflow/AddToTopBacklogPostActionDao.php | +12 | −12 | Go to diff View file |
M | plugins/agiledashboard/include/AgileDashboard/Workflow/REST/v1/AddToTopBacklogJsonParser.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/include/PermissionsPerGroup/AgileDashboardJSONPermissionsRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/PermissionsPerGroup/PlanningPermissionsRepresentationBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/AllowedAdditionalPanesToDisplayCollector.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/PlanningController.class.php | +5 | −5 | Go to diff View file |
M | plugins/agiledashboard/include/Planning/VirtualTopMilestonePresenterBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/include/agiledashboardPlugin.php | +6 | −6 | Go to diff View file |
M | plugins/agiledashboard/tests/integration/Builders/DatabaseBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/tests/integration/Milestone/Sidebar/MilestoneDaoTest.php | +8 | −8 | Go to diff View file |
M | plugins/agiledashboard/tests/rest/ArtifactsTest.php | +9 | −9 | Go to diff View file |
M | plugins/agiledashboard/tests/rest/ExplicitBacklog/WorkflowPostActionTest.php | +5 | −5 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/AgileDashboard_XMLExporterTest.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/BacklogItem/SubBacklogItemProviderTest.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Milestone/Backlog/AgileDashboard_Milestone_Backlog_BacklogItemCollectionFactoryTest.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Milestone/Sidebar/AgileDashboardPromotedMilestonesRetrieverTest.php | +3 | −3 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Planning/BacklogTrackersUpdateCheckerTest.php | +7 | −7 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Planning/HeaderOptionsForPlanningProviderTest.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Planning/NoMilestoneTest.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Planning/PlanningControllerTest.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Scrum/ScrumPresenterBuilderTest.php | +5 | −5 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Semantic/InitialEffortSemanticAdminPresenterBuilderTest.php | +7 | −7 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Semantic/PossibleFieldsPresenterTest.php | +4 | −4 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Tracker/TrackerHierarchyUpdateCheckerTest.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/AgileDashboard/Workflow/AddToTopBacklogPostActionFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/Builders/BurnupTestBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/Planning/Planning_RequestValidatorTest.php | +8 | −8 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/Planning/Planning_TrackerPresenterTest.php | +1 | −1 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/Planning/XML/XMLPlanningTest.php | +29 | −29 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/REST/v1/Milestone/MilestoneElementMoverTest.php | +2 | −2 | Go to diff View file |
M | plugins/agiledashboard/tests/unit/ServiceAdministration/ScrumConfigurationUpdaterTest.php | +2 | −2 | Go to diff View file |
M | plugins/archivedeleteditems/include/FileCopier.php | +2 | −2 | Go to diff View file |
M | plugins/baseline/include/Adapter/Administration/PermissionPerGroupBaselineServicePaneBuilder.php | +9 | −9 | Go to diff View file |
M | plugins/baseline/include/Adapter/Administration/RoleAssignmentFromRequestExtractor.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/include/Adapter/AuthorizationsImpl.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/include/Adapter/RoleAssignmentRepositoryAdapter.php | +2 | −2 | Go to diff View file |
M | plugins/baseline/include/Domain/BaselineService.php | +3 | −3 | Go to diff View file |
M | plugins/baseline/include/Domain/ComparisonService.php | +3 | −3 | Go to diff View file |
M | plugins/baseline/include/Domain/UserGroupDoesNotExistOrBelongToCurrentBaselineProjectException.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/include/ServiceController.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/include/baselinePlugin.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/tests/rest/BaselineFixtureData.php | +2 | −2 | Go to diff View file |
M | plugins/baseline/tests/rest/BaselinesResourceTest.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/tests/unit/Adapter/Administration/RoleAssignmentsHistoryEntryAdderTest.php | +4 | −4 | Go to diff View file |
M | plugins/baseline/tests/unit/Adapter/BaselineRepositoryAdapterTest.php | +27 | −27 | Go to diff View file |
M | plugins/baseline/tests/unit/Adapter/ComparisonRepositoryAdapterTest.php | +44 | −44 | Go to diff View file |
M | plugins/baseline/tests/unit/Domain/RoleAssignmentsHistorySaverTest.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/tests/unit/Factory/BaselineArtifactFactory.php | +3 | −3 | Go to diff View file |
M | plugins/baseline/tests/unit/REST/BaselineControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/baseline/tests/unit/REST/BaselinesPageRepresentationTest.php | +1 | −1 | Go to diff View file |
M | plugins/botmattermost/db/mysql/updates/2016/201605271655_add_channels.php | +2 | −2 | Go to diff View file |
M | plugins/botmattermost/db/mysql/updates/2016/201605311330_add_avatar_url_column.php | +2 | −2 | Go to diff View file |
M | plugins/botmattermost/db/mysql/updates/2017/201703221547_delete_channels.php | +1 | −1 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Administration/Project/CreateBotController.php | +6 | −6 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Administration/Project/DeleteBotController.php | +3 | −3 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Administration/Project/EditBotController.php | +6 | −6 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Administration/Project/ListBotController.php | +2 | −2 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Administration/Project/ProjectAdministrationPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Bot/BotDao.php | +14 | −14 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Controller/AdminController.php | +1 | −1 | Go to diff View file |
M | plugins/botmattermost/include/BotMattermost/Presenter/AdminPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/botmattermost/include/SenderServices/EncoderMessage.php | +5 | −5 | Go to diff View file |
M | plugins/botmattermost/tests/unit/BotMattermost/Administration/Request/ParameterValidatorTest.php | +15 | −15 | Go to diff View file |
M | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotCreatorTest.php | +18 | −18 | Go to diff View file |
M | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotDeletorTest.php | +2 | −2 | Go to diff View file |
M | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotEditorTest.php | +18 | −18 | Go to diff View file |
M | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotFactoryTest.php | +20 | −20 | Go to diff View file |
M | plugins/botmattermost/tests/unit/BotMattermost/Bot/BotValidityCheckerTest.php | +3 | −3 | Go to diff View file |
M | plugins/botmattermost/tests/unit/BotMattermost/SenderServices/EncoderMessageTest.php | +3 | −3 | Go to diff View file |
M | plugins/botmattermost_agiledashboard/db/mysql/updates/2016/201611030908_replace_start_date_and_duration_columns_by_send_time.php | +4 | −4 | Go to diff View file |
M | plugins/botmattermost_agiledashboard/db/mysql/updates/2017/201704110929_add_channel_for_stand_up_summary.php | +6 | −6 | Go to diff View file |
M | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/BotMattermostStandUpSummary/BotMattermostStandUpSummary.php | +1 | −1 | Go to diff View file |
M | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/BotMattermostStandUpSummary/Dao.php | +10 | −10 | Go to diff View file |
M | plugins/botmattermost_agiledashboard/include/BotMattermostAgileDashboard/Presenter/AdminNotificationPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/botmattermost_agiledashboard/tests/unit/BotMattermostAgileDashboard/BotMattermostStandUpSummary/NotificationCreator.php | +6 | −6 | Go to diff View file |
M | plugins/botmattermost_git/db/mysql/updates/2017/201703221614_add_channel_for_git_notification.php | +6 | −6 | Go to diff View file |
M | plugins/botmattermost_git/include/BotMattermostGit/BotMattermostGitNotification/Dao.php | +8 | −8 | Go to diff View file |
M | plugins/botmattermost_git/include/BotMattermostGit/SenderServices/GitNotificationBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/bugzilla_reference/db/updates/2017/201704101334_add_bugzilla_reference_table.php | +2 | −2 | Go to diff View file |
M | plugins/bugzilla_reference/db/updates/2017/201705291443_use_api_credential_for_bugzilla_server.php | +2 | −2 | Go to diff View file |
M | plugins/bugzilla_reference/db/updates/2017/201705291641_add_rest_url.php | +2 | −2 | Go to diff View file |
M | plugins/bugzilla_reference/db/updates/2017/201709271340_add_encrypted_api_key_field.php | +1 | −1 | Go to diff View file |
M | plugins/bugzilla_reference/include/Bugzilla/Administration/Presenter.php | +1 | −1 | Go to diff View file |
M | plugins/bugzilla_reference/include/Bugzilla/Administration/ReferencePresenter.php | +1 | −1 | Go to diff View file |
M | plugins/bugzilla_reference/include/Bugzilla/Reference/Dao.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/db/mysql/updates/2012/201206051455_add_cardwall_on_top_table.php | +2 | −2 | Go to diff View file |
M | plugins/cardwall/db/mysql/updates/2012/201207070819_add_cardwall_on_top_mappings_table.php | +6 | −6 | Go to diff View file |
M | plugins/cardwall/db/mysql/updates/2012/201207171819_add_freestyle_on_top_field.php | +2 | −2 | Go to diff View file |
M | plugins/cardwall/db/mysql/updates/2013/201308261539_add_cardfields_semantic_table.php | +2 | −2 | Go to diff View file |
M | plugins/cardwall/db/mysql/updates/2013/201308291505_update_cardfields_semantic_table.php | +2 | −2 | Go to diff View file |
M | plugins/cardwall/db/mysql/updates/2013/201310041431_update_existing_cardwall_configurations.php | +8 | −8 | Go to diff View file |
M | plugins/cardwall/db/mysql/updates/2018/201803201204_update_unique_index.php | +2 | −2 | Go to diff View file |
M | plugins/cardwall/include/Cardwall/CardwallIsAllowedEvent.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/CardwallConfigXmlExport.class.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/Cardwall_Renderer.class.php | +2 | −2 | Go to diff View file |
M | plugins/cardwall/include/JiraImport/CardSemanticExporter.php | +4 | −4 | Go to diff View file |
M | plugins/cardwall/include/OnTop/ColumnMappingFieldDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/cardwall/include/OnTop/ColumnMappingFieldValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/RendererPresenter.class.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/include/Semantic/BackgroundColorDao.php | +5 | −5 | Go to diff View file |
M | plugins/cardwall/include/Semantic/BackgroundColorPresenterBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/cardwall/include/Semantic/CardFields.class.php | +3 | −3 | Go to diff View file |
M | plugins/cardwall/include/Semantic/CardFieldsPresenterBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/cardwall/include/cardwallPlugin.php | +3 | −3 | Go to diff View file |
M | plugins/cardwall/tests/Tuleap/Cardwall/XML/XMLCardwallColumnTest.php | +27 | −27 | Go to diff View file |
M | plugins/cardwall/tests/Tuleap/Cardwall/XML/XMLCardwallMappingTest.php | +7 | −7 | Go to diff View file |
M | plugins/cardwall/tests/Tuleap/Cardwall/XML/XMLCardwallTest.php | +13 | −13 | Go to diff View file |
M | plugins/cardwall/tests/unit/CardInCellPresenterFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/tests/unit/Cardwall/OnTop/Config/ColumnFactoryTest.php | +4 | −4 | Go to diff View file |
M | plugins/cardwall/tests/unit/Cardwall/Semantic/CardFieldsTrackerPresenterBuilderTest.php | +5 | −5 | Go to diff View file |
M | plugins/cardwall/tests/unit/CardwallConfigXmlExport_ColumnsTest.php | +6 | −6 | Go to diff View file |
M | plugins/cardwall/tests/unit/CardwallConfigXmlImportTest.php | +8 | −8 | Go to diff View file |
M | plugins/cardwall/tests/unit/Cardwall_CardControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/cardwall/tests/unit/JiraImport/CardSemanticExporterTest.php | +2 | −2 | Go to diff View file |
M | plugins/create_test_env/db/mysql/updates/2018/201806111500_create_callmeback_configuration_table.php | +4 | −4 | Go to diff View file |
M | plugins/create_test_env/db/mysql/updates/2019/201910241530_remove_callmeback_configuration_table.php | +2 | −2 | Go to diff View file |
M | plugins/create_test_env/include/CreateTestEnv/CreateTestEnvironment.php | +1 | −1 | Go to diff View file |
M | plugins/create_test_env/include/CreateTestEnv/CreateTestUser.php | +2 | −2 | Go to diff View file |
M | plugins/create_test_env/include/CreateTestEnv/REST/CreateTestEnvResource.php | +3 | −3 | Go to diff View file |
M | plugins/create_test_env/include/create_test_envPlugin.php | +3 | −3 | Go to diff View file |
M | plugins/create_test_env/tests/unit/CreateTestEnv/XMLDateUpdater/DateUpdaterTest.php | +6 | −6 | Go to diff View file |
M | plugins/crosstracker/bin/migrate_old_crosstracker_widgets.php | +8 | −8 | Go to diff View file |
M | plugins/crosstracker/db/mysql/updates/2017/201712111426_update_crosstracker_report.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/REST/v1/CrossTrackerArtifactReportRepresentation.php | +3 | −3 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/REST/v1/CrossTrackerReportsResource.php | +7 | −7 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/CSV/CSVRepresentationBuilder.php | +10 | −10 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/CSV/Format/FormElementToValueVisitor.php | +17 | −17 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/CrossTrackerArtifactReportFactory.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Field/StaticList/StaticListFromWhereBuilder.php | +10 | −10 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Field/UGroupList/UGroupListFromWhereBuilder.php | +8 | −8 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Field/UserList/UserListFromWhereBuilder.php | +10 | −10 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Description/DescriptionFromWhereBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Title/TitleFromWhereBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/EmptyStringComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ListValueToEmptyStringComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/OperatorNotAllowedForMetadataException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/OperatorToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/StatusToSimpleValueComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ToMyselfComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ToStringComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Report/SimilarField/FieldUsedInSupportedSemanticsVisitor.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/include/CrossTracker/Widget/ProjectCrossTrackerSearch.php | +2 | −2 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/DuckTypedField/DateDuckTypedFieldTest.php | +5 | −5 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/DuckTypedField/DatetimeDuckTypedFieldTest.php | +7 | −7 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/DuckTypedField/OpenUserListDuckTypedFieldTest.php | +4 | −4 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/DuckTypedField/UserListDuckTypedFieldTest.php | +4 | −4 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Metadata/AssignedToMetadataTest.php | +4 | −4 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Metadata/LastUpdateByMetadataTest.php | +4 | −4 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Metadata/LastUpdateDateMetadataTest.php | +5 | −5 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Metadata/StatusMetadataTest.php | +2 | −2 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Metadata/SubmittedByMetadataTest.php | +4 | −4 | Go to diff View file |
M | plugins/crosstracker/tests/integration/CrossTracker/Report/Query/Advanced/Metadata/SubmittedOnMetadataTest.php | +5 | −5 | Go to diff View file |
M | plugins/crosstracker/tests/rest/CrossTracker/CrossTrackerTest.php | +26 | −26 | Go to diff View file |
M | plugins/crosstracker/tests/rest/CrossTracker/CrossTrackerTestExpertQueryTest.php | +108 | −108 | Go to diff View file |
M | plugins/crosstracker/tests/rest/CrossTracker/CrossTrackerTestNonRegressionTrackerTest.php | +7 | −7 | Go to diff View file |
M | plugins/crosstracker/tests/unit/CrossTracker/CrossTrackerReportFactoryTest.php | +3 | −3 | Go to diff View file |
M | plugins/crosstracker/tests/unit/CrossTracker/Report/Query/Advanced/InvalidTermCollectorVisitorTest.php | +1 | −1 | Go to diff View file |
M | plugins/crosstracker/tests/unit/CrossTracker/Widget/WidgetPermissionCheckerTest.php | +7 | −7 | Go to diff View file |
M | plugins/docman/bin/DocmanExport/Docman_XMLExportVisitor.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/bin/DocmanExport/XMLExport.class.php | +9 | −9 | Go to diff View file |
M | plugins/docman/bin/DocmanExport/export.php | +5 | −5 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2012/201205231210_add_notification_occurence_column.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2014/201416121631_add_link_version_table.php | +4 | −4 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2017/201703131632_copy_core_notifications_into_docman.php | +3 | −3 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2017/201703141152_add_table_notification_ugroups.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2019/201903111212_add_lock_information_for_new_file_version.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2019/201903121003_add_upload_version_table_approval_column.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2019/201904181357_add_upload_file_status_and_obsolescence_date_columns.php | +2 | −2 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2019/201905211004_add_new_version_upload_hardcoded_metadata_columns.php | +4 | −4 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2020/202004031116_make_title_and_description_not_empty.php | +2 | −2 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202202141115_add_filename_pattern.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202202141115_add_writers_allowed_to_update.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202202211726_add_filename_index.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202203101725_add_writers_allowed_to_delete.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202203171347_add_is_filename_pattern_enforced.php | +2 | −2 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202204150832_add_search_criteria_columns_tables.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202206071200_remove_icons_preference.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202206091000_remove_user_preference_for_old_ui.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/202211031410_add_coauthor_table.php | +1 | −1 | Go to diff View file |
M | plugins/docman/db/mysql/updates/2022/20221103_add_authoring_tool_column.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Item/ItemDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/NotificationCycle.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ApprovalTable/Reviewer/ReviewerDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/DeleteFailedException.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/Docman_Controller.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_Error_PermissionDenied.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_ItemDao.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/Docman_Log.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataComparator.class.php | +28 | −28 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataHtml.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataHtmlDate.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataHtmlObsolescence.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataListOfValuesElementDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_MetadataValueDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Add.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Delete.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Move.class.php | +10 | −10 | Go to diff View file |
M | plugins/docman/include/Docman_NotificationsManager_Subscribers.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_PermissionsManagerDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_ReportColumn.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Docman_ReportDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_ReportHtml.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_SqlFilterDate.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_SqlFilterGlobalText.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_SqlFilterText.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_TokenDao.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Docman_ValidateFilterDate.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Docman_VersionDao.class.php | +14 | −14 | Go to diff View file |
M | plugins/docman/include/Docman_Widget_Embedded.class.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Docman_WikiController.class.php | +21 | −21 | Go to diff View file |
M | plugins/docman/include/DocumentDeletion/DocmanWikiDeletor.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ExternalLinks/ExternalLinkParametersExtractor.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ExternalLinks/ExternalLinkRedirector.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/ExternalLinks/Link.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/FilenamePattern/EnforcedEmptyPatternException.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/FilenamePattern/FilenameBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/FilenamePattern/FilenamePatternFeedbackHandler.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/LegacySendMessageController.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Log/LogDao.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/Metadata/CustomMetadataException.php | +7 | −7 | Go to diff View file |
M | plugins/docman/include/Metadata/DocmanMetadataTypeValueFactory.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Metadata/Owner/OwnerDao.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Metadata/Owner/OwnerRequestHandler.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Notifications/UsersToNotifyDao.php | +11 | −11 | Go to diff View file |
M | plugins/docman/include/PermissionsPerGroup/PermissionPerGroupDocmanServicePaneBuilder.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanFoldersResource.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocmanItemCreator.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/REST/v1/DocumentBeforeVersionCreationValidatorVisitor.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/EmbeddedFiles/EmbeddedFileVersionRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/Files/FileVersionRepresentation.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/Files/FileVersionsDeletor.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/Folders/SearchReportBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/REST/v1/ItemRepresentationBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/Links/LinkPropertiesRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/Links/LinkVersionRepresentation.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/Links/VersionRepresentationCollectionBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/CustomMetadataRepresentationRetriever.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/HardCodedMetadataException.php | +6 | −6 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/ItemStatusMapper.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/MetadataRepresentationBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/REST/v1/Metadata/MetadataUpdator.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/REST/v1/Search/SearchColumnCollectionBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/REST/v1/VersionRepresentationCollectionBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Search/InvalidSortTypeException.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Search/SearchColumnSortChecker.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/ServiceDocman.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Settings/SettingsDAO.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Upload/Document/DocumentMetadataCreator.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Version/CoAuthorDao.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/Version/LinkVersionDao.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/Version/VersionDao.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/Widget/WidgetEmbeddedDao.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/XML/Export/XMLExportVisitor.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/docmanPlugin.php | +5 | −5 | Go to diff View file |
M | plugins/docman/include/view/Admin/AdminView.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_FilenamePattern.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Admin_Obsolete.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Display.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Header.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionActions.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionDelete.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionHistory.class.php | +4 | −4 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionNewVersion.class.php | +3 | −3 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ItemDetailsSectionUpdate.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_PositionWithinFolder.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ProjectHeader.class.php | +1 | −1 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_ReportSettings.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_Table.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/Docman_View_View.class.php | +2 | −2 | Go to diff View file |
M | plugins/docman/include/view/DocumentFooterPresenterBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanEmbeddedTest.php | +49 | −49 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanEmptyTest.php | +8 | −8 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanFilesTest.php | +55 | −55 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanFoldersTest.php | +18 | −18 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanLinksTest.php | +27 | −27 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/DocmanWikiTest.php | +7 | −7 | Go to diff View file |
M | plugins/docman/tests/rest/Docman/SearchTest.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/rest/DocmanDatabaseInitialization.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/rest/DocmanWithMetadataActivatedDataBuilder.php | +12 | −12 | Go to diff View file |
M | plugins/docman/tests/rest/Helper/DocmanFolderDataBuild.php | +7 | −7 | Go to diff View file |
M | plugins/docman/tests/rest/Helper/DocmanProjectBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/rest/Helper/DocmanSearchDataBuild.php | +2 | −2 | Go to diff View file |
M | plugins/docman/tests/rest/Helper/DocmanWikiDataBuild.php | +2 | −2 | Go to diff View file |
M | plugins/docman/tests/rest/Metadata/CustomMetadataTest.php | +40 | −40 | Go to diff View file |
M | plugins/docman/tests/rest/Metadata/HardcodedMetadataTest.php | +13 | −13 | Go to diff View file |
M | plugins/docman/tests/unit/ApprovalTable/ApprovalTableNotificationCycleTest.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/ApprovalTable/ApprovalTableUpdateActionCheckerTest.php | +2 | −2 | Go to diff View file |
M | plugins/docman/tests/unit/Docman_MetadataListOfValuesElementTest.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/unit/Docman_NotificationsManager_AddTest.php | +5 | −5 | Go to diff View file |
M | plugins/docman/tests/unit/Docman_NotificationsManager_DeleteTest.php | +9 | −9 | Go to diff View file |
M | plugins/docman/tests/unit/Docman_NotificationsManager_MoveTest.php | +12 | −12 | Go to diff View file |
M | plugins/docman/tests/unit/Docman_NotificationsManager_SubscribersTest.php | +10 | −10 | Go to diff View file |
M | plugins/docman/tests/unit/Docman_SqlReportColumnTest.php | +11 | −11 | Go to diff View file |
M | plugins/docman/tests/unit/DocumentDeletion/DocmanWikiDeletorTest.php | +44 | −44 | Go to diff View file |
M | plugins/docman/tests/unit/ExternalLinks/ExternalLinkRedirectorTest.php | +17 | −17 | Go to diff View file |
M | plugins/docman/tests/unit/FilenamePattern/FilenameBuilderTest.php | +27 | −27 | Go to diff View file |
M | plugins/docman/tests/unit/FilenamePattern/FilenamePatternFeedbackHandlerTest.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/FilenamePattern/FilenamePatternValidatorTest.php | +4 | −4 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/CreationMetadataValidatorTest.php | +4 | −4 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/CustomMetadataRepresentationRetrieverTest.php | +73 | −73 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/DocmanMetadataInputValidatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/ItemImpactedByMetadataChangeCollectionTest.php | +5 | −5 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/ListOfValuesElement/MetadataListOfValuesElementListBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/MetadataListOfValuesElementDaoTest.php | +4 | −4 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/MetadataValueUpdatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/Metadata/Owner/OwnerRequestHandlerTest.php | +7 | −7 | Go to diff View file |
M | plugins/docman/tests/unit/NotificationsManagerTest.php | +6 | −6 | Go to diff View file |
M | plugins/docman/tests/unit/NotificationsManager_MoveTest.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/DocmanItemCreatorTest.php | +7 | −7 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/DocmanItemUpdatorTest.php | +6 | −6 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/DocumentBeforeVersionCreationValidatorVisitorTest.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/EmbeddedFiles/VersionRepresentationCollectionBuilderTest.php | +5 | −5 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Files/DocmanFileVersionCreatorTest.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Folders/BuildSearchedItemRepresentationsFromSearchReportTest.php | +18 | −18 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Folders/SearchReportBuilderTest.php | +59 | −59 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/ItemRepresentationBuilderTest.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/ItemRepresentationCollectionBuilderTest.php | +7 | −7 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Links/DocmanLinkVersionCreatorTest.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Links/DocmanLinksValidityCheckerTest.php | +5 | −5 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Links/VersionRepresentationCollectionBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Metadata/CustomMetadataCollectionBuilderTest.php | +17 | −17 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Metadata/HardcodedMetdataObsolescenceDateCheckerTest.php | +4 | −4 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Metadata/MetadataUpdatorTest.php | +50 | −50 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/MetadataRepresentationBuilderTest.php | +14 | −14 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Search/SearchColumnCollectionBuilderTest.php | +26 | −26 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Search/SearchColumnCollectionTest.php | +14 | −14 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Search/SearchColumnSortCheckerTest.php | +12 | −12 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/Search/SearchColumnTest.php | +9 | −9 | Go to diff View file |
M | plugins/docman/tests/unit/REST/v1/VersionRepresentationCollectionBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/docman/tests/unit/Reference/CrossReferenceDocmanOrganizerTest.php | +13 | −13 | Go to diff View file |
M | plugins/docman/tests/unit/RenameProjectTest.php | +2 | −2 | Go to diff View file |
M | plugins/docman/tests/unit/Search/ColumnReportAugmenterTest.php | +25 | −25 | Go to diff View file |
M | plugins/docman/tests/unit/Search/SearchSortPropertyMapperTest.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/unit/Stubs/ResponseFeedbackWrapperStub.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/Stubs/StoredLogStub.php | +3 | −3 | Go to diff View file |
M | plugins/docman/tests/unit/Upload/Document/DocumentMetadataCreatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/docman/tests/unit/XML/Import/PostFileImporterTest.php | +2 | −2 | Go to diff View file |
M | plugins/docman/tests/unit/view/DocumentFooterPresenterBuilderTest.php | +4 | −4 | Go to diff View file |
M | plugins/document/include/Config/HistoryEnforcementSettings.php | +1 | −1 | Go to diff View file |
M | plugins/document/include/Config/Project/SearchView.php | +1 | −1 | Go to diff View file |
M | plugins/document/include/Config/Project/UpdateSearchView.php | +2 | −2 | Go to diff View file |
M | plugins/document/include/LinkProvider/DocumentLinkProvider.php | +4 | −4 | Go to diff View file |
M | plugins/document/include/Tree/DocumentItemPreviewUrlBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/document/include/Tree/DocumentTreeController.php | +3 | −3 | Go to diff View file |
M | plugins/document/include/Tree/DocumentTreeProjectExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/document/include/Tree/ListOfSearchCriterionPresenterBuilder.php | +5 | −5 | Go to diff View file |
M | plugins/document/tests/unit/Config/Admin/FilesDownloadLimitsAdminSaveControllerTest.php | +4 | −4 | Go to diff View file |
M | plugins/document/tests/unit/Config/Admin/HistoryEnforcementAdminSaveControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/document/tests/unit/Config/ModalDisplayerTest.php | +1 | −1 | Go to diff View file |
M | plugins/document/tests/unit/Config/Project/SearchColumnFilterTest.php | +21 | −21 | Go to diff View file |
M | plugins/document/tests/unit/Config/Project/SearchCriteriaFilterTest.php | +16 | −16 | Go to diff View file |
M | plugins/document/tests/unit/Config/Project/UpdateSearchViewTest.php | +10 | −10 | Go to diff View file |
M | plugins/document/tests/unit/Tree/ListOfSearchCriterionPresenterBuilderTest.php | +12 | −12 | Go to diff View file |
M | plugins/document/tests/unit/Tree/Search/ListOfSearchColumnDefinitionPresenterBuilderTest.php | +34 | −34 | Go to diff View file |
M | plugins/document/tests/unit/Tree/SwitchToOldUiTest.php | +3 | −3 | Go to diff View file |
M | plugins/document_generation/include/Report/ClassicCriterionValueJson.php | +1 | −1 | Go to diff View file |
M | plugins/document_generation/include/Report/DateCriterionValueJson.php | +1 | −1 | Go to diff View file |
M | plugins/document_generation/include/Report/ReportCriteriaJsonBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/document_generation/include/document_generationPlugin.php | +15 | −15 | Go to diff View file |
M | plugins/document_generation/tests/unit/Report/ReportCriteriaJsonBuilderTest.php | +36 | −36 | Go to diff View file |
M | plugins/enalean_licensemanager/include/LicenseManager/CountDueLicenses/CountDueLicensesController.php | +8 | −8 | Go to diff View file |
M | plugins/enalean_licensemanager/include/LicenseManager/CountDueLicenses/LicenseManagerCountDueLicensesCommand.php | +1 | −1 | Go to diff View file |
M | plugins/enalean_licensemanager/include/LicenseManager/CountDueLicenses/UserEvolutionHistoryExporter.php | +3 | −3 | Go to diff View file |
M | plugins/frs/db/mysql/updates/2016/2016050341101_create_plugin_frs_release_artifact.php | +2 | −2 | Go to diff View file |
M | plugins/frs/include/FRS/ArtifactView.php | +1 | −1 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/FileRepresentation.php | +4 | −4 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/FileResource.php | +1 | −1 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/PackageMinimalRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/PackageResource.php | +6 | −6 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/ReleaseRepresentation.php | +3 | −3 | Go to diff View file |
M | plugins/frs/include/FRS/REST/v1/ReleaseResource.php | +9 | −9 | Go to diff View file |
M | plugins/frs/include/FRS/ReleaseNotesController.php | +2 | −2 | Go to diff View file |
M | plugins/frs/include/FRS/ReleasePresenter.php | +3 | −3 | Go to diff View file |
M | plugins/frs/tests/rest/FRS/PackagesTest.php | +2 | −2 | Go to diff View file |
M | plugins/frs/tests/rest/FRS/ReleaseTest.php | +3 | −3 | Go to diff View file |
M | plugins/fts_meilisearch/include/CLI/PrepareStartMeilisearchServerCommand.php | +2 | −2 | Go to diff View file |
M | plugins/fts_meilisearch/include/Index/MeilisearchMetadataDAO.php | +2 | −2 | Go to diff View file |
M | plugins/fts_meilisearch/include/Server/Administration/MeilisearchAdminSettingsController.php | +1 | −1 | Go to diff View file |
M | plugins/fts_meilisearch/include/Server/Administration/MeilisearchSaveAdminSettingsController.php | +1 | −1 | Go to diff View file |
M | plugins/fts_meilisearch/include/Server/MeilisearchServerURLValidator.php | +1 | −1 | Go to diff View file |
M | plugins/fts_meilisearch/tests/unit/Index/MeilisearchHandlerTest.php | +4 | −4 | Go to diff View file |
M | plugins/fts_meilisearch/tests/unit/Server/Administration/MeilisearchAdminSettingsControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/fts_meilisearch/tests/unit/Server/Administration/MeilisearchSaveAdminSettingsControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/bin/convert_gitolite_full_logs.php | +2 | −2 | Go to diff View file |
M | plugins/git/bin/gl-membership.php | +1 | −1 | Go to diff View file |
M | plugins/git/bin/gl-rename-project.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/201102090815_add_column_repository_events_mailing_prefix.php | +1 | −1 | Go to diff View file |
M | plugins/git/db/mysql/updates/201106281541_add_backend_type.php | +1 | −1 | Go to diff View file |
M | plugins/git/db/mysql/updates/2012/201201251529_update_push_date.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2013/201304111018_add_remote_server_key.php | +1 | −1 | Go to diff View file |
M | plugins/git/db/mysql/updates/2013/201310111459_drop_remote_server_deleted_column.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2013/201312171433_remove_git_foreign_keys.php | +1 | −1 | Go to diff View file |
M | plugins/git/db/mysql/updates/2013/201312231005_remove_not_null_http_port_remote_gerrit_servers.php | +1 | −1 | Go to diff View file |
M | plugins/git/db/mysql/updates/2014/201409251452_add_table_plugin_git_mirrors.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2014/201410031707_add_mirrored_information_on_repository.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2014/201410061023_modify_table_plugin_git_mirrors.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2014/201410061451_add_table_plugin_git_repository_mirrors.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2014/201411061153_add_name_to_table_plugin_git_mirrors.php | +4 | −4 | Go to diff View file |
M | plugins/git/db/mysql/updates/2014/201411101016_add_backup_path_for_repositories.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2015/20150421_add_hostname_info_to_mirror.php | +1 | −1 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201601141739_add_plugin_git_default_project_mirrors_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201605191647_add_plugin_git_webhook_url_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201605241434_add_plugin_git_webhook_log_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201606031138_add_plugin_git_repository_fine_grained_permissions_enabled_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201606061643_add_repository_fine_grained_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201606061654_add_repository_fine_grained_ugroup_tables.php | +4 | −4 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201606081702_add_unique_constraint_pattern.php | +1 | −1 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201606081712_add_project_fine_grained_enable_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201606090850_add_project_fine_grained_ugroup_tables.php | +6 | −6 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201610041409_create_plugin_git_full_history_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201610051400_use_timestamp_in_stats.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201610060900_create_plugin_git_file_logs_parse_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201610171336_create_plugin_git_fine_grained_regexp_enabled.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201610171725_create_plugin_git_default_fine_grained_regexp.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2016/201610171725_create_plugin_git_repository_fine_grained_regexp.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201701061020_add_missing_index_full_history.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201702071518_add_gerrit_servers_project_restriction_tables.php | +5 | −5 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201702151712_create_table_to_notify_user.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201702161651_create_table_to_notify_ugroup.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201702211530_create_global_parameters_table.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201703301111_create_table_plugin_git_log_read.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201704031442_create_table_plugin_git_full_history_checkpoint.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2017/201710241704_update_git_file_logs_parse_to_bigint.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2018/201812061206_add_index_to_sort_git_repo_alphabetically.php | +7 | −7 | Go to diff View file |
M | plugins/git/db/mysql/updates/2019/201910191514_purge_logs_for_delete_webhooks.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2020/202006161036_add_reference_group_for_project.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2021/202101041133_create_commit_details_cache_table.php | +2 | −2 | Go to diff View file |
M | plugins/git/db/mysql/updates/2021/202101051426_add_committer_to_commit_details_cache_table.php | +3 | −3 | Go to diff View file |
M | plugins/git/db/mysql/updates/2021/202105061544_add_git_tag_reference.php | +2 | −2 | Go to diff View file |
M | plugins/git/hooks/post-receive.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Artifact/Action/CreateBranchButtonFetcher.php | +7 | −7 | Go to diff View file |
M | plugins/git/include/DefaultBranch/CannotSetANonExistingBranchAsDefaultException.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/DiskUsage/Collector.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Events/GetPullRequestDashboardViewEvent.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/AdminGerritController.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/AdminGitoliteConfig.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/AdminGitoliteConfigPresenter.php | +8 | −8 | Go to diff View file |
M | plugins/git/include/Git/BigObjectAuthorization/BigObjectAuthorizationDao.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/Git/Ci.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/DefaultSettings/Pane/AccessControl.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/Driver/Gerrit/MembershipManager.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Driver/GerritREST.class.php | +27 | −27 | Go to diff View file |
M | plugins/git/include/Git/GitPluginDefaultController.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/GitRepositoryBrowserController.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/Git/GitService.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/ConfigPermissionsSerializer.class.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/Gitolite3LogParser.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/GitoliteConfWriter.php | +6 | −6 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/GitoliteFullLogsToAggregatedLogs.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/GitoliteRCReader.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/ProjectSerializer.class.php | +14 | −14 | Go to diff View file |
M | plugins/git/include/Git/Gitolite/SSHKey/Provider/GitoliteAdmin.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/HTTP/Command.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/HTTP/HTTPController.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/HTTP/Wrapper.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/LatestHeartbeatsCollector.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Permissions/DefaultFineGrainedPermission.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Permissions/DefaultFineGrainedPermissionFactory.php | +5 | −5 | Go to diff View file |
M | plugins/git/include/Git/Permissions/FineGrainedPermission.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Permissions/FineGrainedPermissionFactory.php | +5 | −5 | Go to diff View file |
M | plugins/git/include/Git/PermissionsPerGroup/GitJSONPermissionsRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/PermissionsPerGroup/GitPanePresenter.php | +5 | −5 | Go to diff View file |
M | plugins/git/include/Git/PermissionsPerGroup/RepositoryFineGrainedRepresentationBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/Reference/CommitDetailsCacheDao.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/RemoteServer/Gerrit/MigrationHandler.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/Git/Repository/CollectAssets.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Repository/DescriptionUpdater.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/Repository/RepositoryCreator.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Repository/View/DefaultCloneURLSelector.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Repository/View/GerritStatusPresenter.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/Git/Repository/View/RepositoryHeaderPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Git/Repository/View/RepositoryHeaderPresenterBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/RepositoryList/DaoByRepositoryPathSorter.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/RepositoryList/GitRepositoryListController.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Git/RepositoryList/GitRepositoryListPresenter.php | +8 | −8 | Go to diff View file |
M | plugins/git/include/GitActions.class.php | +12 | −12 | Go to diff View file |
M | plugins/git/include/GitBundle.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/GitDao.class.php | +7 | −7 | Go to diff View file |
M | plugins/git/include/GitForkPermissionsManager.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitLegacyURLRedirectController.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/Commit/CommitPresenter.php | +10 | −10 | Go to diff View file |
M | plugins/git/include/GitPHP/NotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Blame.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Blob.php | +7 | −7 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Blobdiff.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Commit.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Commitdiff.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_History.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Log.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Search.php | +5 | −5 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Snapshot.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Tag.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/GitPHP/controller/Controller_Tree.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitPHP/git/Archive.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/git/Blob.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/GitPHP/git/FileDiff.php | +10 | −10 | Go to diff View file |
M | plugins/git/include/GitPHP/git/FilesystemObject.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/git/GitObject.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/git/Pack.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/git/Project.php | +8 | −8 | Go to diff View file |
M | plugins/git/include/GitPHP/git/TmpDir.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/GitPHP/git/TreeDiff.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitPHP/smartyplugins/modifier.agestring.php | +8 | −8 | Go to diff View file |
M | plugins/git/include/GitPHP/smartyplugins/modifier.highlight.php | +6 | −6 | Go to diff View file |
M | plugins/git/include/GitRepository.class.php | +7 | −7 | Go to diff View file |
M | plugins/git/include/GitRepositoryManager.class.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/GitRepositoryUrlManager.class.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/GitViews/RepoManagement/Pane/Gerrit.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/GitXMLExporter.php | +19 | −19 | Go to diff View file |
M | plugins/git/include/GitXmlImporter.class.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/Git_Backend_Gitolite.class.php | +7 | −7 | Go to diff View file |
M | plugins/git/include/Git_GitoliteDriver.class.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/Git_LogDao.class.php | +4 | −4 | Go to diff View file |
M | plugins/git/include/Git_Widget_UserPushes.class.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/Hook/PostReceiveMailSender.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/Hook/PreReceive/PreReceiveAction.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Hook/PreReceive/PreReceiveCommand.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/Hook/PreReceive/PreReceiveHookData.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/PathJoinUtil.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/PullRequestEndpointsAvailableEvent.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/REST/v1/Branch/BranchCreator.php | +7 | −7 | Go to diff View file |
M | plugins/git/include/REST/v1/GitCommitRepresentationBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/REST/v1/GitObjectTypeNotSupportedException.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/REST/v1/ReferenceRepresentation.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/REST/v1/ReferenceRepresentationBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/git/include/REST/v1/RepositoryResource.class.php | +9 | −9 | Go to diff View file |
M | plugins/git/include/SystemEvents/ProjectIsSuspended.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/SystemEvents/SystemEvent_GIT_GERRIT_MIGRATION.class.php | +6 | −6 | Go to diff View file |
M | plugins/git/include/SystemEvents/SystemEvent_GIT_REGENERATE_GITOLITE_CONFIG.php | +2 | −2 | Go to diff View file |
M | plugins/git/include/SystemEvents/SystemEvent_GIT_REPO_DELETE.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/SystemEvents/SystemEvent_GIT_USER_RENAME.class.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/exceptions/RepositoryAlreadyInQueueForMigrationException.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/exceptions/RepositoryCannotBeMigratedException.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/exceptions/RepositoryCannotBeMigratedOnRestrictedGerritServerException.php | +1 | −1 | Go to diff View file |
M | plugins/git/include/gitPlugin.php | +3 | −3 | Go to diff View file |
M | plugins/git/tests/integration/GitXmlImporterTest.php | +3 | −3 | Go to diff View file |
M | plugins/git/tests/integration/Gitolite/GitoliteDriverTest.php | +3 | −3 | Go to diff View file |
M | plugins/git/tests/integration/Gitolite/SSHKeyDumperTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/integration/Gitolite/SSHKeyMassDumperTest.php | +2 | −2 | Go to diff View file |
M | plugins/git/tests/rest/Git/ProjectTest.php | +2 | −2 | Go to diff View file |
M | plugins/git/tests/rest/Git/RepositoryTest.php | +33 | −33 | Go to diff View file |
M | plugins/git/tests/unit/Artifact/Action/CreateBranchButtonFetcherTest.php | +7 | −7 | Go to diff View file |
M | plugins/git/tests/unit/CommitMetadata/AuthorRetrieverTest.php | +3 | −3 | Go to diff View file |
M | plugins/git/tests/unit/CommitMetadata/CommitMessageRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/Git/Driver/Gerrit/ProjectCreatorCallToGerritTest.php | +4 | −4 | Go to diff View file |
M | plugins/git/tests/unit/Git/Driver/Gerrit/ProjectCreatorTest.php | +3 | −3 | Go to diff View file |
M | plugins/git/tests/unit/Git/Driver/Gerrit/Template/TemplateProcessorTest.php | +5 | −5 | Go to diff View file |
M | plugins/git/tests/unit/Git/Driver/GerritRESTTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/Git/REST/v1/GitCommitRepresentationBuilderTest.php | +39 | −39 | Go to diff View file |
M | plugins/git/tests/unit/Git/REST/v1/GitTreeRepresentationFactoryTest.php | +23 | −23 | Go to diff View file |
M | plugins/git/tests/unit/Git/REST/v1/ReferenceRepresentationBuilderTest.php | +25 | −25 | Go to diff View file |
M | plugins/git/tests/unit/Git/ReferenceManagerTest.php | +2 | −2 | Go to diff View file |
M | plugins/git/tests/unit/Git/RemoteServer/GerritServerTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/Git/RemoteServer/MigrationHandlerTest.php | +7 | −7 | Go to diff View file |
M | plugins/git/tests/unit/Git/Repository/View/RepositoryHeaderTabsURLBuilderTest.php | +16 | −16 | Go to diff View file |
M | plugins/git/tests/unit/Git/SystemEventManagerTest.php | +2 | −2 | Go to diff View file |
M | plugins/git/tests/unit/GitActionsProjectPrivacyTest.php | +4 | −4 | Go to diff View file |
M | plugins/git/tests/unit/GitForkCrossProjectTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/GitPHP/TagTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/GitRepositoryManagerForkTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/GitRepositoryManagerRepositoryNameTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/GitXMLExporterTest.php | +4 | −4 | Go to diff View file |
M | plugins/git/tests/unit/GitXMLImportDefaultBranchRetrieverTest.php | +5 | −5 | Go to diff View file |
M | plugins/git/tests/unit/Git_Backend_GitoliteTest.php | +8 | −8 | Go to diff View file |
M | plugins/git/tests/unit/Git_ExecTest.php | +22 | −22 | Go to diff View file |
M | plugins/git/tests/unit/Git_PostReceiveMailManagerTest.php | +1 | −1 | Go to diff View file |
M | plugins/git/tests/unit/Hook/PreReceive/PreReceiveActionTest.php | +7 | −7 | Go to diff View file |
M | plugins/git/tests/unit/Hook/PreReceive/PreReceiveHookDataTest.php | +5 | −5 | Go to diff View file |
M | plugins/git/tests/unit/Hook/PreReceive/PreReceiveHookDataWithoutTechnicalReferenceTest.php | +4 | −4 | Go to diff View file |
M | plugins/git/tests/unit/REST/v1/Branch/BranchCreatorTest.php | +29 | −29 | Go to diff View file |
M | plugins/git/tests/unit/SystemEvents/SystemEvent_GIT_GERRIT_ADMIN_KEY_DUMPTest.php | +2 | −2 | Go to diff View file |
M | plugins/git/tests/unit/SystemEvents/SystemEvent_GIT_GERRIT_MIGRATION_BaseTest.php | +10 | −10 | Go to diff View file |
M | plugins/git/tests/unit/SystemEvents/SystemEvent_GIT_REPO_UPDATETest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/db/mysql/202011181154_drop_path_column.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/db/mysql/202012161200_create_plugin_gitlab_commit_info_table.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/db/mysql/202012221028_add_branch_column.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202101151549_rename_gitlab_id_column.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202101181830_rename_full_url.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202101191000_create_plugin_gitlab_merge_request_info_table.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202104271611_create_plugin_gitlab_tag_info_table.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202104301405_add_unique_in_plugin_gitlab_tag_info_table.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202105171414_each_repository_integration_is_unique.php | +30 | −30 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202106021530_create_plugin_gitlab_branch_info_table.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/db/mysql/2021/202106181024_create_plugin_gitlab_create_branch_prefix_table.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/db/mysql/202101071404_create_plugin_gitlab_bot_api_token_table.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/db/mysql/2022/202208231630_add_group_tables.php | +6 | −6 | Go to diff View file |
M | plugins/gitlab/db/mysql/2022/202210101103_delete_stored_group_link.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/API/ClientWrapper.php | +11 | −11 | Go to diff View file |
M | plugins/gitlab/include/API/GitlabProjectBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/API/Group/GitlabGroupApiDataRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/API/Group/GitlabGroupInformationRetriever.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/API/Tag/GitlabTag.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/API/Tag/GitlabTagRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Admin/GitLabLinkGroupController.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Admin/GitLabLinkGroupTabPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Artifact/Action/CreateBranchButtonFetcher.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/Artifact/Action/CreateBranchPrefixDao.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/Artifact/MergeRequestTitleCreatorFromArtifact.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/REST/v1/GitlabBranchCreator.php | +11 | −11 | Go to diff View file |
M | plugins/gitlab/include/REST/v1/GitlabMergeRequestCreator.php | +9 | −9 | Go to diff View file |
M | plugins/gitlab/include/REST/v1/GitlabRepositoryResource.php | +6 | −6 | Go to diff View file |
M | plugins/gitlab/include/Reference/GitlabCrossReferenceOrganizer.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Reference/TuleapReferencedArtifactNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/GitlabRepositoryIntegration.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/GitlabRepositoryIntegrationDao.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/GitlabRepositoryWebhookController.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/IntegrationWebhookController.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Project/GitlabRepositoryProjectDao.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/Bot/BotCommentReferencePresenter.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/Bot/InvalidCredentialsNotifier.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/EmptyBranchNameException.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/MissingEventHeaderException.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostMergeRequest/CrossReferenceFromMergeRequestCreator.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostMergeRequest/MergeRequestTuleapReferenceDao.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostMergeRequest/PostMergeRequestBotCommenter.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostMergeRequest/PostMergeRequestWebhookActionProcessor.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostMergeRequest/PostMergeRequestWebhookDataBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostMergeRequest/TuleapReferencesFromMergeRequestDataExtractor.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/Branch/BranchInfoDao.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/Branch/BranchNameTuleapReferenceParser.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/Branch/PostPushWebhookActionBranchHandler.php | +6 | −6 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/Commits/CommitTuleapReferenceDao.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/PostPushCommitBotCommenter.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/PostPushWebhookActionProcessor.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/PostPushWebhookCloseArtifactHandler.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/PostPush/PostPushWebhookDataBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/Secret/SecretHeaderNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/Secret/SecretHeaderNotMatchingException.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/TagPush/TagInfoDao.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/TagPush/TagPushWebhookCreateAction.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/TagPush/TagPushWebhookData.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/TagPush/TagPushWebhookDataBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/WebhookActions.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/WebhookCreator.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/WebhookDataBranchNameExtractor.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/WebhookDataExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/include/Repository/Webhook/WebhookDeletor.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/include/gitlabPlugin.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/integration/Group/GitlabApiTokenDAOTest.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/tests/rest/Gitlab/GroupTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/rest/Gitlab/RepositoryTest.php | +6 | −6 | Go to diff View file |
M | plugins/gitlab/tests/unit/API/ClientWrapperTest.php | +10 | −10 | Go to diff View file |
M | plugins/gitlab/tests/unit/API/GitlabProjectBuilderTest.php | +25 | −25 | Go to diff View file |
M | plugins/gitlab/tests/unit/API/GitlabTagTest.php | +18 | −18 | Go to diff View file |
M | plugins/gitlab/tests/unit/API/Group/GitlabGroupApiDataRepresentationTest.php | +9 | −9 | Go to diff View file |
M | plugins/gitlab/tests/unit/API/Group/GitlabGroupInformationRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Admin/GitLabLinkGroupTabPresenterTest.php | +6 | −6 | Go to diff View file |
M | plugins/gitlab/tests/unit/Artifact/Action/CreateBranchButtonFetcherTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Artifact/BranchNameCreatorFromArtifactTest.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/tests/unit/Artifact/MergeRequestTitleCreatorFromArtifactTest.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/tests/unit/Group/GroupLinkCreatorTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/Group/GroupLinkSynchronizerTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/Group/GroupLinkUpdateHandlerTest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Group/GroupLinkUpdaterTest.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/tests/unit/Group/Token/GroupLinkTokenRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Plugin/GitlabIntegrationAvailabilityCheckerTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/REST/v1/FaultMapperTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/REST/v1/GitlabBranchCreatorTest.php | +15 | −15 | Go to diff View file |
M | plugins/gitlab/tests/unit/REST/v1/GitlabMergeRequestCreatorTest.php | +22 | −22 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/Branch/GitlabBranchCrossReferenceEnhancerTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/Branch/GitlabBranchReferenceSplitValuesBuilderTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/Commit/GitlabCommitCrossReferenceEnhancerTest.php | +8 | −8 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/Commit/GitlabCommitFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/GitlabCrossReferenceOrganizerTest.php | +18 | −18 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/GitlabReferenceBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/GitlabReferenceValueWithoutSeparatorSplitValuesBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/MergeRequest/GitlabMergeRequestTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/Tag/GitlabTagReferenceSplitValuesBuilderTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Reference/TuleapReferenceRetrieverTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/GitlabRepositoryCreatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/GitlabRepositoryDeletorTest.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/GitlabRepositoryIntegrationUpdatorTest.php | +14 | −14 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/Bot/BotCommentReferencePresenterBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/Bot/CredentialsRetrieverTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostMergeRequest/CrossReferenceFromMergeRequestCreatorTest.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostMergeRequest/PostMergeRequestBotCommenterTest.php | +15 | −15 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostMergeRequest/PostMergeRequestWebhookActionProcessorTest.php | +11 | −11 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostMergeRequest/PostMergeRequestWebhookAuthorDataRetrieverTest.php | +2 | −2 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostMergeRequest/PostMergeRequestWebhookDataBuilderTest.php | +18 | −18 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostMergeRequest/PreviouslySavedReferencesRetrieverTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostPush/Branch/BranchNameTuleapReferenceParserTest.php | +10 | −10 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostPush/Branch/PostPushWebhookActionBranchHandlerTest.php | +29 | −29 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostPush/PostPushCommitBotCommenterTest.php | +19 | −19 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostPush/PostPushCommitWebhookDataExtractorTest.php | +31 | −31 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostPush/PostPushWebhookActionProcessorTest.php | +23 | −23 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostPush/PostPushWebhookCloseArtifactHandlerTest.php | +17 | −17 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/PostPush/PostPushWebhookDataBuilderTest.php | +35 | −35 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/TagPush/TagPushWebhookActionProcessorTest.php | +24 | −24 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/TagPush/TagPushWebhookCreateActionTest.php | +50 | −50 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/TagPush/TagPushWebhookDataBuilderTest.php | +40 | −40 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/TagPush/TagPushWebhookDataTest.php | +6 | −6 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/TagPush/TagPushWebhookDeleteActionTest.php | +10 | −10 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/WebhookActionsTest.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/WebhookCreatorTest.php | +3 | −3 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/WebhookDataBranchNameExtractorTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/WebhookDataExtractorTest.php | +37 | −37 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/WebhookDeletorTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Repository/Webhook/WebhookTuleapReferencesParserTest.php | +5 | −5 | Go to diff View file |
M | plugins/gitlab/tests/unit/Test/Stubs/ClientInterfaceWithSeveralCallsStub.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/tests/unit/Test/Stubs/CreateGitlabRepositoriesStub.php | +1 | −1 | Go to diff View file |
M | plugins/gitlab/tests/unit/Test/Stubs/RetrieveGitlabGroupInformationStub.php | +4 | −4 | Go to diff View file |
M | plugins/gitlab/tests/unit/Test/Stubs/RetrieveIntegrationDaoStub.php | +5 | −5 | Go to diff View file |
M | plugins/gitlfs/include/Batch/Response/BatchSuccessfulResponseBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/gitlfs/include/GitPHPDisplay/Detector.php | +1 | −1 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Controller/LFSLockDeleteController.php | +2 | −2 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Request/LockListRequest.php | +3 | −3 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Response/LockResponseConflictErrorRepresentation.php | +2 | −2 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Response/LockResponseErrorRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Response/LockResponseLockRepresentation.php | +5 | −5 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Response/LockResponseSuccessfulCreationRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Response/LockResponseSuccessfulDestructionRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Response/LockResponseSuccessfulListRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/gitlfs/include/Lock/Response/LockResponseSuccessfulVerifyRepresentation.php | +2 | −2 | Go to diff View file |
M | plugins/gitlfs/include/gitlfsPlugin.php | +4 | −4 | Go to diff View file |
M | plugins/gitlfs/tests/unit/Lock/LockDestructorTest.php | +3 | −3 | Go to diff View file |
M | plugins/gitlfs/tests/unit/Lock/Response/LockResponseBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/db/mysql/updates/2011/201111191507_add_burndown.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/db/mysql/updates/2012/201210291756_add_old_id_column_on_chart.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/db/mysql/updates/2013/201302271529_add_cumulative_flow_chart_table.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/include/GraphOnTrackersV5_Renderer.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/GraphOnTrackersV5_Widget_Chart.class.php | +4 | −4 | Go to diff View file |
M | plugins/graphontrackersv5/include/Widget/WidgetChartDao.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/include/common/HTML_Element_Selectbox_TrackerFields_DatesV5.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/common/HTML_Element_Selectbox_TrackerFields_Int_TextFieldsV5.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/common/HTML_Element_Selectbox_TrackerFields_NumericFieldsV5.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/common/HTML_Element_Selectbox_TrackerFields_SelectboxesAndTextsV5.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/common/HTML_Element_Selectbox_TrackerFields_SelectboxesV5.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_ChartDao.class.php | +11 | −11 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_ChartFactory.class.php | +2 | −2 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_Burndown.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_CumulativeFlow.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/CumulativeFlowDAO.php | +4 | −4 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/DataBuilderV5.class.php | +56 | −56 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Burndown_DataBuilder.class.php | +4 | −4 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Chart_BarDataBuilder.class.php | +5 | −5 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Chart_PieDataBuilder.class.php | +4 | −4 | Go to diff View file |
M | plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_CumulativeFlow_DataBuilder.class.php | +5 | −5 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/BarChartDataBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Bar.class.php | +3 | −3 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Burndown.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_CumulativeFlow.class.php | +4 | −4 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Gantt.class.php | +22 | −22 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphic-library/GraphOnTrackersV5_Engine_Pie.class.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/include/graphontrackersv5Plugin.php | +1 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/tests/Tuleap/GraphOnTrackersV5/DataTransformation/GraphOnTrackersV5ChartBarDataBuilderTest.php | +5 | −5 | Go to diff View file |
M | plugins/graphontrackersv5/tests/unit/GraphOnTrackersV5_BurndownDataTest.php | +11 | −11 | Go to diff View file |
M | plugins/graphontrackersv5/tests/unit/graphic-library/GraphOnTrackersV5_Engine_BurndownTest.php | +2 | −2 | Go to diff View file |
M | plugins/hudson/db/mysql/updates/2015/201512071530_add_svn_paths.php | +2 | −2 | Go to diff View file |
M | plugins/hudson/include/HudsonBuild.class.php | +2 | −2 | Go to diff View file |
M | plugins/hudson/include/HudsonJob.class.php | +30 | −30 | Go to diff View file |
M | plugins/hudson/include/HudsonTestResult.class.php | +1 | −1 | Go to diff View file |
M | plugins/hudson/include/PluginHudsonJobDao.class.php | +12 | −12 | Go to diff View file |
M | plugins/hudson/include/TestResultsPieChart/TestResultsPieChartDisplayer.php | +1 | −1 | Go to diff View file |
M | plugins/hudson/include/TestResultsPieChart/TestResultsPieChartPresenter.php | +18 | −18 | Go to diff View file |
M | plugins/hudson/include/hudson.class.php | +4 | −4 | Go to diff View file |
M | plugins/hudson/include/hudsonActions.class.php | +2 | −2 | Go to diff View file |
M | plugins/hudson/include/hudsonPlugin.php | +4 | −4 | Go to diff View file |
M | plugins/hudson/include/hudson_Widget_MyMonitoredJobs.class.php | +2 | −2 | Go to diff View file |
M | plugins/hudson/tests/unit/HudsonBuildTest.php | +7 | −7 | Go to diff View file |
M | plugins/hudson/tests/unit/HudsonTestResultTest.php | +4 | −4 | Go to diff View file |
M | plugins/hudson/tests/unit/Reference/HudsonCrossReferenceOrganizerTest.php | +19 | −19 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2016/201604071042_create_hudson_git_job.php | +2 | −2 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2016/201604121535_alter_table_hudson_git_job.php | +1 | −1 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2020/202002131613_add_plugin_hudson_git_project_server_table.php | +1 | −1 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2020/202002171529_add_id_in_plugin_hudson_git_project_server_table.php | +6 | −6 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2020/202002241506_add_plugin_hudson_git_project_server_job_table.php | +3 | −3 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2020/202003021509_add_and_populate_polling_url_tables.php | +15 | −15 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2020/202003021632_add_branch_source_tables.php | +5 | −5 | Go to diff View file |
M | plugins/hudson_git/db/mysql/updates/2020/202011161327_add_is_commit_reference_needded_column.php | +4 | −4 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/AddController.php | +9 | −9 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/AdministrationController.php | +3 | −3 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/AdministrationPaneBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/AjaxController.php | +12 | −12 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/DeleteController.php | +6 | −6 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/JenkinsServerDao.php | +8 | −8 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/URLBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/XML/XMLExporter.php | +6 | −6 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Git/Administration/XML/XMLImporter.php | +6 | −6 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/GitWebhooksSettingsEnhancer.php | +1 | −1 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Hook/HookController.php | +3 | −3 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/JenkinsWebhookPresenter.php | +2 | −2 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Job/ProjectJobDao.php | +4 | −4 | Go to diff View file |
M | plugins/hudson_git/include/HudsonGit/Log/LogCreator.php | +2 | −2 | Go to diff View file |
M | plugins/hudson_git/include/hudson_gitPlugin.php | +2 | −2 | Go to diff View file |
M | plugins/hudson_git/tests/unit/HudsonGit/Git/Administration/AdministrationPaneBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/hudson_git/tests/unit/HudsonGit/Git/Administration/XML/XMLExporterTest.php | +5 | −5 | Go to diff View file |
M | plugins/hudson_git/tests/unit/HudsonGit/Hook/HookTriggerControllerTest.php | +6 | −6 | Go to diff View file |
M | plugins/hudson_svn/include/BuildParams.php | +4 | −4 | Go to diff View file |
M | plugins/hudson_svn/include/ContinuousIntegrationCollector.php | +3 | −3 | Go to diff View file |
M | plugins/hudson_svn/include/Job/Dao.php | +9 | −9 | Go to diff View file |
M | plugins/hudson_svn/include/Job/Launcher.php | +3 | −3 | Go to diff View file |
M | plugins/hudson_svn/tests/unit/Job/LauncherTest.php | +2 | −2 | Go to diff View file |
M | plugins/jira_import/include/JiraAgile/Board/Backlog/JiraBoardBacklogRetrieverFromAPI.php | +1 | −1 | Go to diff View file |
M | plugins/jira_import/include/JiraAgile/JiraAgileImporter.php | +12 | −12 | Go to diff View file |
M | plugins/jira_import/include/JiraAgile/JiraBoardsRetrieverFromAPI.php | +1 | −1 | Go to diff View file |
M | plugins/jira_import/include/JiraAgile/JiraEpic.php | +1 | −1 | Go to diff View file |
M | plugins/jira_import/include/Project/CreateProjectFromJira.php | +11 | −11 | Go to diff View file |
M | plugins/jira_import/include/Project/CreateProjectFromJiraCommand.php | +4 | −4 | Go to diff View file |
M | plugins/jira_import/include/Project/Dashboard/RoadmapDashboardCreator.php | +11 | −11 | Go to diff View file |
M | plugins/jira_import/include/Project/Kanban/JiraKanbanActivator.php | +7 | −7 | Go to diff View file |
M | plugins/jira_import/include/Project/ReplayCreateProjectFromJiraCommand.php | +3 | −3 | Go to diff View file |
M | plugins/jira_import/include/Project/ReplayImportCommand.php | +2 | −2 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/Board/Backlog/JiraBoardBacklogRetrieverFromAPITest.php | +40 | −40 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/Board/JiraBoardConfigurationTest.php | +18 | −18 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/IssuesLinkedToEpicsRetrieverTest.php | +4 | −4 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/JiraAgileImporterTest.php | +24 | −24 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/JiraBoardsRetrieverFromAPITest.php | +49 | −49 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/JiraEpicRetrieverFromAPITest.php | +10 | −10 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/JiraSprintIssuesRetrieverFromAPITest.php | +44 | −44 | Go to diff View file |
M | plugins/jira_import/tests/unit/JiraAgile/JiraSprintRetrieverFromAPITest.php | +47 | −47 | Go to diff View file |
M | plugins/jira_import/tests/unit/Project/ArtifactLinkType/ArtifactLinkTypeImporterTest.php | +5 | −5 | Go to diff View file |
M | plugins/jira_import/tests/unit/Project/GroupMembers/GroupMembersImporterTest.php | +74 | −74 | Go to diff View file |
M | plugins/jira_import/tests/unit/Project/Kanban/JiraKanbanActivatorTest.php | +5 | −5 | Go to diff View file |
M | plugins/kanban/include/Kanban/Home/CreateKanbanController.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanColumnDao.php | +6 | −6 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanDao.php | +16 | −16 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanItemDao.class.php | +4 | −4 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanSemanticStatusAllColumnIdsNotProvidedException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanSemanticStatusBasedOnASharedFieldException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanSemanticStatusColumnIdsNotInOpenSemanticException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanSemanticStatusNotBoundToStaticValuesException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanSemanticStatusNotDefinedException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanSemanticTitleNotDefinedException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanTrackerNotDefinedException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanUserNotAdminException.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/KanbanUserPreferences.php | +2 | −2 | 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/KanbanAddRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/REST/v1/KanbanColumnPATCHRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/REST/v1/KanbanColumnPOSTRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/REST/v1/KanbanColumnRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/REST/v1/KanbanResource.php | +4 | −4 | Go to diff View file |
M | plugins/kanban/include/Kanban/REST/v1/KanbanTrackerRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/RealTimeMercure/MercureJWTController.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/TrackerReport/ReportFilterFromWhereBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/kanban/include/Kanban/TrackerReport/TrackerReportDao.php | +7 | −7 | Go to diff View file |
M | plugins/kanban/include/Kanban/Widget/ProjectKanban.php | +2 | −2 | Go to diff View file |
M | plugins/kanban/include/Kanban/Widget/WidgetKanbanConfigDAO.php | +8 | −8 | Go to diff View file |
M | plugins/kanban/include/Kanban/Widget/WidgetKanbanDao.php | +6 | −6 | Go to diff View file |
M | plugins/kanban/include/Kanban/Widget/WidgetKanbanPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/Widget/WidgetKanbanXMLImporter.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/include/Kanban/XML/KanbanXMLExporter.php | +4 | −4 | Go to diff View file |
M | plugins/kanban/include/Kanban/XML/KanbanXmlImporter.php | +6 | −6 | Go to diff View file |
M | plugins/kanban/include/kanbanPlugin.php | +1 | −1 | Go to diff View file |
M | plugins/kanban/tests/rest/REST/KanbanColumnsTest.php | +5 | −5 | Go to diff View file |
M | plugins/kanban/tests/rest/REST/KanbanTest.php | +21 | −21 | Go to diff View file |
M | plugins/kanban/tests/unit/KanbanColumnManagerTest.php | +2 | −2 | Go to diff View file |
M | plugins/kanban/tests/unit/RealTime/KanbanRealtimeArtifactMessageSenderTest.php | +2 | −2 | Go to diff View file |
M | plugins/kanban/tests/unit/XML/KanbanXmlImporterTest.php | +1 | −1 | Go to diff View file |
M | plugins/label/include/Label/REST/v1/ProjectResource.php | +1 | −1 | Go to diff View file |
M | plugins/label/include/Label/Widget/Dao.php | +5 | −5 | Go to diff View file |
M | plugins/label/include/Label/Widget/ProjectLabeledItems.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/bin/convertSvnToLdap.php | +9 | −9 | Go to diff View file |
M | plugins/ldap/bin/ldap_sync.php | +12 | −12 | Go to diff View file |
M | plugins/ldap/bin/registerUser.php | +4 | −4 | Go to diff View file |
M | plugins/ldap/db/mysql/updates/2014/201405191003_add_ldap_suspended_user_table.php | +2 | −2 | Go to diff View file |
M | plugins/ldap/include/BindMembersConfirmController.php | +2 | −2 | Go to diff View file |
M | plugins/ldap/include/LDAP.class.php | +5 | −5 | Go to diff View file |
M | plugins/ldap/include/LDAP_CleanUpManager.class.php | +7 | −7 | Go to diff View file |
M | plugins/ldap/include/LDAP_DirectorySynchronization.class.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/include/LDAP_SearchPeople.class.php | +2 | −2 | Go to diff View file |
M | plugins/ldap/include/LDAP_SyncMail.class.php | +2 | −2 | Go to diff View file |
M | plugins/ldap/include/LDAP_SyncNotificationManager.class.php | +1 | −1 | Go to diff View file |
M | plugins/ldap/include/LDAP_SyncReminderNotificationManager.class.php | +2 | −2 | Go to diff View file |
M | plugins/ldap/include/LDAP_UserGroupDao.class.php | +6 | −6 | Go to diff View file |
M | plugins/ldap/include/LDAP_UserManager.class.php | +4 | −4 | Go to diff View file |
M | plugins/ldap/include/LDAP_UserSync.class.php | +6 | −6 | Go to diff View file |
M | plugins/ldap/include/User/UserDao.php | +2 | −2 | Go to diff View file |
M | plugins/ldap/include/ldapPlugin.php | +12 | −12 | Go to diff View file |
M | plugins/ldap/tests/unit/LDAPGroupManagerTest.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/bin/clean-unused-db.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/bin/move_to_single_db.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/bin/mw-drop-wikis.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/bin/mw-maintenance-wrapper.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/bin/mw-plugin-init.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2014/201402141002_seed_mapping_table.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2014/201402191017_add_mwgroups_table.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2014/201402211651_remove_confirmed_mapping.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2014/201407041004_add_and_fill_database_table.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2014/201407231643_fill_database_table_with_dash_named_projects.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2014/20140805_add_admin_options_table.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2015/20150408_add_site_restricted_features_table.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2015/20150629_add_mediawiki_access_control_table.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2015/20150922_alter_mediawiki_admin_options_table.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2015/201510011501_add_plugin_mediawiki_version_table.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2015/201510011503_fill_Mediawiki_version_table.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/db/mysql/updates/2015/201510051531_add_plugin_mediawiki_extension_table.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/extensions/TuleapArtLinks/TuleapArtLinks.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/fusionforge/FusionForge.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/fusionforge/compat/utils.php | +3 | −3 | Go to diff View file |
M | plugins/mediawiki/include/Maintenance/CleanUnused.php | +16 | −16 | Go to diff View file |
M | plugins/mediawiki/include/Maintenance/CleanUnusedDao.php | +14 | −14 | Go to diff View file |
M | plugins/mediawiki/include/MediaWikiXMLImporter.class.php | +3 | −3 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiDao.class.php | +30 | −30 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiInstantiater.class.php | +6 | −6 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiMaintenanceWrapper.php | +5 | −5 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiManager.class.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiVersionDao.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/include/MediawikiVersionManager.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/include/Migration/MediawikiMigrator.php | +3 | −3 | Go to diff View file |
M | plugins/mediawiki/include/Migration/MoveToCentralDbDao.php | +3 | −3 | Go to diff View file |
M | plugins/mediawiki/include/PermissionsPerGroup/PermissionPerGroupPaneBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/include/UnsupportedLanguageException.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/include/XML/XMLExportMediawikiServiceNotUsedFault.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/include/XMLMediaWikiExporter.php | +5 | −5 | Go to diff View file |
M | plugins/mediawiki/include/events/SystemEvent_MEDIAWIKI_TO_CENTRAL_DB.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/include/mediawikiPlugin.php | +9 | −9 | Go to diff View file |
M | plugins/mediawiki/mediawiki-skin/Tuleap.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/tests/unit/CleanUnusedTest.php | +45 | −45 | Go to diff View file |
M | plugins/mediawiki/tests/unit/Tests/Stub/CheckXMLMediawikiExportabilityStub.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/tests/unit/XML/XMLMediawikiExportabilityCheckerTest.php | +6 | −6 | Go to diff View file |
M | plugins/mediawiki/www/DatabaseForgeMysql.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/www/DatabaseForgeMysql123.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki/www/DatabaseForgePgsql.php | +4 | −4 | Go to diff View file |
M | plugins/mediawiki/www/LocalSettings.php | +12 | −12 | Go to diff View file |
M | plugins/mediawiki/www/frame.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki/www/skins/Tuleap123/Tuleap123.php | +5 | −5 | Go to diff View file |
M | plugins/mediawiki_standalone/include/Instance/CreateInstance.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki_standalone/include/Instance/InstanceManagement.php | +3 | −3 | Go to diff View file |
M | plugins/mediawiki_standalone/include/Instance/Migration/LegacyMediawikiLanguageDao.php | +2 | −2 | Go to diff View file |
M | plugins/mediawiki_standalone/include/Instance/Migration/MigrateInstance.php | +4 | −4 | Go to diff View file |
M | plugins/mediawiki_standalone/include/Instance/Migration/ServiceMediawikiSwitcher.php | +4 | −4 | Go to diff View file |
M | plugins/mediawiki_standalone/include/Permissions/Admin/PermissionPerGroupServicePaneBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/mediawiki_standalone/include/Permissions/Admin/PermissionsFromRequestExtractor.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki_standalone/include/XML/XMLMediaWikiImporter.php | +1 | −1 | Go to diff View file |
M | plugins/mediawiki_standalone/tests/unit/Permissions/Admin/RejectNonMediawikiAdministratorMiddlewareTest.php | +1 | −1 | Go to diff View file |
M | plugins/oauth2_server/include/AuthorizationServer/OAuth2ConsentRequiredResponseBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/onlyoffice/include/Administration/OnlyOfficeSecretKeyValidator.php | +2 | −2 | Go to diff View file |
M | plugins/onlyoffice/include/Administration/OnlyOfficeServerUrlValidator.php | +2 | −2 | Go to diff View file |
M | plugins/onlyoffice/include/Save/OnlyOfficeCallbackDocumentSaver.php | +1 | −1 | Go to diff View file |
M | plugins/onlyoffice/include/Save/OnlyOfficeSaveController.php | +2 | −2 | Go to diff View file |
M | plugins/onlyoffice/tests/integration/DocumentServer/DocumentServerDaoTest.php | +1 | −1 | Go to diff View file |
M | plugins/openidconnectclient/db/mysql/2016/201602181030_add_column_last_used_user_mapping.php | +2 | −2 | Go to diff View file |
M | plugins/openidconnectclient/db/mysql/2016/201603171433_add_icon_color_columns.php | +2 | −2 | Go to diff View file |
M | plugins/openidconnectclient/db/mysql/2016/201610141445_allow_to_login_with_multiple_accounts_on_the_same_provider.php | +2 | −2 | Go to diff View file |
M | plugins/openidconnectclient/db/mysql/2016/201611221600_be_able_to_define_a_provider_as_unique_authentication_endpoint.php | +2 | −2 | Go to diff View file |
M | plugins/openidconnectclient/db/mysql/2019/201927111425_update_provider_table.php | +4 | −4 | Go to diff View file |
M | plugins/openidconnectclient/db/mysql/2019/201928110957_add_azure_openid_table.php | +2 | −2 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/Login/Registration/AutomaticUserRegistration.php | +1 | −1 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/Provider/AzureADProvider/AzureADProvider.php | +4 | −4 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/Provider/AzureADProvider/AzureADProviderDao.php | +7 | −7 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/Provider/GenericProvider/GenericProviderDao.php | +9 | −9 | Go to diff View file |
M | plugins/openidconnectclient/include/OpenIDConnectClient/Provider/ProviderDao.php | +7 | −7 | Go to diff View file |
M | plugins/openidconnectclient/tests/unit/Login/Registration/UsernameGeneratorTest.php | +11 | −11 | Go to diff View file |
M | plugins/pluginsadministration/include/PluginDisablerVerifier.php | +1 | −1 | Go to diff View file |
M | plugins/pluginsadministration/tests/unit/LifecycleHookCommand/PluginUpdateHookCommandTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/db/mysql/2021/202103150900_add_labels_table_for_program_increment.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Events/BuildRedirectFormActionEventProxy.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Admin/ProgramAdminPresenter.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Admin/ProgramBacklogPresenter.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/PendingSynchronizationDao.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/SynchronizeTeamProcessor.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/CreationCheck/RequiredFieldVerifier.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/CreationCheck/StatusIsAlignedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/ProgramIncrement/ProgramIncrementInfoBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/ProgramIncrement/Source/Fields/SynchronizedFieldsGatherer.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Backlog/TopBacklog/Workflow/AddToTopBacklogPostActionDAO.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Feature/Links/ArtifactsLinkedToParentDao.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Feature/UserStoriesInMirroredProgramIncrementsPlanner.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/include/Adapter/Program/Feature/UserStoryInOneMirrorPlanner.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/include/Adapter/Redirections/IterationRedirectionParametersProxy.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/include/Adapter/Redirections/ProgramRedirectionParametersProxy.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/XML/Exceptions/CannotFindPlannableTrackerInMappingException.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/XML/Exceptions/CannotFindSourceTrackerUsingXmlReference.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/XML/Exceptions/CannotFindUserGroupInProjectException.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/XML/ProgramManagementConfigXMLImporter.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Adapter/XML/ProgramManagementXMLConfigExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/DisplayPlanIterationsController.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/DisplayProgramBacklogController.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Admin/Configuration/SemanticStatusNoField.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/Feature/FieldData.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/Feature/ProgramIncrementsPlanner.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/Iteration/IterationTrackerNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/ProgramIncrementTrackerNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/Source/Fields/SynchronizedFieldFromProgramAndTeamTrackersCollection.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/ProgramIncrement/Source/Fields/TitleFieldHasIncorrectTypeException.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/TeamSynchronization/MissingProgramIncrementCreator.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Domain/Program/Backlog/TeamSynchronization/SynchronizationCleaner.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Domain/Team/TeamIsNotAggregatedByProgramException.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/ProgramManagementLogger.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/REST/v1/FeatureElementToOrderInvolvedInChangeRepresentation.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/SynchronizeTeamController.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/include/Templates/ProgramTemplate.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/Templates/TeamTemplate.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/include/program_managementPlugin.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/rest/v1/Helper/ProgramDataBuilder.php | +19 | −19 | Go to diff View file |
M | plugins/program_management/tests/rest/v1/ProjectResourceTest.php | +46 | −46 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Admin/Configuration/ConfigurationErrorsCollectorTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Events/BuildRedirectFormActionEventProxyTest.php | +5 | −5 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Events/ProgramIncrementUpdateEventProxyTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Events/TeamSynchronizationEventProxyTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/AsynchronousCreation/IterationUpdateDispatcherTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/AsynchronousCreation/StatusValueMapperTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/AsynchronousCreation/SynchronizeTeamProcessorTest.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/CreationCheck/RequiredFieldVerifierTest.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/CreationCheck/SemanticsVerifierTest.php | +6 | −6 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/CreationCheck/WorkflowVerifierTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/ProgramIncrement/Source/Fields/SynchronizedFieldsGathererTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/Rank/FeaturesRankOrdererTest.php | +5 | −5 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/TeamSynchronization/MissingProgramIncrementCreatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/TopBacklog/ArtifactTopBacklogActionBuilderTest.php | +5 | −5 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/TopBacklog/FeaturesToReorderProxyTest.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/TopBacklog/ProcessTopBacklogChangeTest.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/TopBacklog/Workflow/AddToTopBacklogPostActionFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/TopBacklog/Workflow/AddToTopBacklogPostActionTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Backlog/TopBacklog/Workflow/AddToTopBacklogPostActionValueUpdaterTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/Plan/PlannableTrackersRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Program/ProgramIncrementTracker/VisibleProgramIncrementTrackerRetrieverTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/ProgramManagementProjectAdapterTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Redirections/IterationRedirectionParametersProxyTest.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Team/PossibleParentSelectorProxyTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Workspace/ProjectProxyTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/Workspace/UserCanSubmitInTrackerVerifierTest.php | +6 | −6 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/XML/ProgramManagementConfigXMLImporterTest.php | +5 | −5 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/XML/ProgramManagementXMLConfigExtractorTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/XML/ProgramManagementXMLConfigParserTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Adapter/XML/ProgramManagementXMLConfigTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Builder/FeatureBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Builder/IterationIdentifierBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Builder/PendingIterationCreationBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Builder/ProgramIncrementCreationBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Builder/ProgramIncrementTrackerIdentifierBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Builder/ProgramIncrementUpdateBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/DisplayAdminProgramManagementControllerTest.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/tests/unit/DisplayProgramBacklogControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/ArtifactLinks/ArtifactLinksNewTypesCheckerTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Admin/Configuration/TrackerErrorPresenterTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Admin/Configuration/TrackerErrorTest.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Admin/PotentialTeam/PotentialTeamsCollectionTest.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Backlog/AsynchronousCreation/IterationCreationTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Backlog/Feature/ProgramIncrementsPlannerTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Backlog/Iteration/IterationTest.php | +6 | −6 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Backlog/Iteration/IterationsRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Backlog/ProgramIncrement/Content/ContentChangeTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Backlog/ProgramIncrement/Content/ContentModifierTest.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Plan/PlanChangeTest.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Program/Plan/ProgramUserGroupTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Redirections/BuildRedirectFormActionHandlerTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Redirections/RedirectToIterationsProcessorTest.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Redirections/RedirectToProgramManagementProcessorTest.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Redirections/RedirectUserAfterArtifactCreationOrUpdateEventProxyTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Domain/Team/PossibleParentHandlerTest.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/REST/v1/IterationRepresentationTest.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/ArtifactCreatedEventStub.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/BuildUGroupRepresentationStub.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/CreatePlanStub.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/ExtractXMLConfigStub.php | +3 | −3 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/IterationRedirectionParametersStub.php | +4 | −4 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/ProgramRedirectionParametersStub.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/RetrieveCrossRefStub.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/RetrieveUriStub.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/RetrieveUserStub.php | +1 | −1 | Go to diff View file |
M | plugins/program_management/tests/unit/Stub/SearchVisibleTeamsOfProgramStub.php | +2 | −2 | Go to diff View file |
M | plugins/program_management/tests/unit/SynchronizeTeamControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/project_ownership/include/ProjectOwner/ProjectOwnerRemover.php | +1 | −1 | Go to diff View file |
M | plugins/project_ownership/include/SystemEvents/ProjectOwnerStatusNotificationSystemEvent.php | +1 | −1 | Go to diff View file |
M | plugins/projectlinks/include/ProjectLinks_Widget_HomePageLinks.class.php | +6 | −6 | Go to diff View file |
M | plugins/projectlinks/include/form_utils.php | +133 | −133 | Go to diff View file |
M | plugins/projectlinks/include/projectlinksPlugin.php | +181 | −181 | Go to diff View file |
M | plugins/projectmilestones/db/mysql/updates/2020/202002271022_add_table_project_milestones_widget.php | +6 | −6 | Go to diff View file |
M | plugins/projectmilestones/db/mysql/updates/2020/202003171349_change_name_plugin_project_milestones.php | +1 | −1 | Go to diff View file |
M | plugins/projectmilestones/include/Widget/DashboardProjectMilestones.php | +1 | −1 | Go to diff View file |
M | plugins/projectmilestones/include/Widget/MyProjectMilestones.php | +1 | −1 | Go to diff View file |
M | plugins/projectmilestones/include/Widget/ProjectMilestonesPreferencesPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/projectmilestones/include/Widget/ProjectMilestonesPresenterBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/projectmilestones/include/Widget/ProjectMilestonesWidgetRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/projectmilestones/include/projectmilestonesPlugin.php | +1 | −1 | Go to diff View file |
M | plugins/projectmilestones/tests/unit/Widget/ProjectMilestonesPresenterBuilderTest.php | +36 | −36 | Go to diff View file |
M | plugins/projectmilestones/tests/unit/Widget/ProjectMilestonesWidgetRetrieverTest.php | +6 | −6 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201602151010_add_plugin_pullrequest_comments_table.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201604181056_add_title_and_description_for_pull_requests.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201604260945_add_post_date_for_comments.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201604291015_add_plugin_pullrequest_inline_comments_table.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201605131519_add_repo_dest_id_for_pull_requests.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201605310945_add_timeline_event_table.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201605311559_add_merge_status_for_pull_requests.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2016/201608091537_add_system_references.php | +4 | −4 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2018/201809171115_add_inline_comment_position_column.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2022/202210281100_add_pullrequest_parent_in_comment_table.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2023/202311021100_add_last_edition_date_to_comments_tables.php | +4 | −4 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2024/202402061536_add_index_pull_request_label.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/db/mysql/updates/2024/202402191403_add_pr_fulltext_index_on_title_and_description.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Comment/ThreadCommentColorRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Criterion/MalformedQueryFault.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Criterion/PullRequestSortOrder.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Criterion/StatusCriterion.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Dao.php | +9 | −9 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/DefaultSettings/DefaultSettingsController.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/DefaultSettings/PullRequestPane.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Exception/PullRequestAlreadyExistsException.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Exception/PullRequestAnonymousUserException.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Exception/PullRequestCannotBeCreatedException.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Exception/PullRequestNotCreatedException.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Exception/PullRequestNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Exception/PullRequestRepositoryMigratedOnGerritException.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Factory.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/FrontendApps/FeatureFlagSetOldHomepageViewByDefault.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/FrontendApps/PullRequestApp.php | +6 | −6 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/GitExec.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/GitRestRouteAdditionalInformations.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Label/LabeledItemCollector.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/MergeSetting/MergeSettingDAO.php | +10 | −10 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/NavigationTab/NavigationTabPresenterBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/PullRequest.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/PullRequestNotFoundFault.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/Info/PullRequestInfoUpdater.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/MimeDetector.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestWithGitReferenceRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/PullRequestsResource.php | +6 | −6 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/RepositoryPullRequests/GETHandler.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/RepositoryResource.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/StatusPatcher.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/REST/v1/UserNotFoundFault.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Reference/HTMLURLBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/RepoManagement/PullRequestPane.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/RepoManagement/RepoManagementController.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Reviewer/ReviewerDAO.php | +4 | −4 | Go to diff View file |
M | plugins/pullrequest/include/PullRequest/Timeline/TimelineComment.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/include/pullrequestPlugin.php | +3 | −3 | Go to diff View file |
M | plugins/pullrequest/tests/integration/Comment/ThreadCommentDaoTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/integration/DaoTest.php | +25 | −25 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Comment/CommentTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Comment/Notification/PullRequestNewCommentNotificationTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Comment/Notification/UpdatedCommentEventTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Comment/Notification/UpdatedCommentNotificationTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/FrontendApps/PullRequestAppTest.php | +3 | −3 | Go to diff View file |
M | plugins/pullrequest/tests/unit/FrontendApps/PullRequestAppsLoaderTest.php | +7 | −7 | Go to diff View file |
M | plugins/pullrequest/tests/unit/GitExecTest.php | +18 | −18 | Go to diff View file |
M | plugins/pullrequest/tests/unit/InlineComment/Notification/PullRequestNewInlineCommentNotificationTest.php | +4 | −4 | Go to diff View file |
M | plugins/pullrequest/tests/unit/InlineComment/Notification/UpdatedInlineCommentEventTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/InlineComment/Notification/UpdatedInlineCommentNotificationTest.php | +4 | −4 | Go to diff View file |
M | plugins/pullrequest/tests/unit/InlineComment/Notification/UpdatedInlineCommentNotificationToProcessBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/tests/unit/PullRequestEmptyStatePresenterBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/PullRequestReopenerTest.php | +6 | −6 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/BrokenGitReferenceCheckTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/Comment/PATCHCommentHandlerTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/FaultMapperTest.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/Info/PullRequestInfoUpdaterTest.php | +19 | −19 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/Permissions/PullRequestIsMergeableCheckerTest.php | +3 | −3 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/PullRequestStatusInfoRepresentationBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/PullRequestWithGitReferenceRetrieverTest.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/RepositoryPullRequests/GETHandlerTest.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/RepositoryPullRequests/QueryToSearchCriteriaConverterTest.php | +19 | −19 | Go to diff View file |
M | plugins/pullrequest/tests/unit/REST/v1/StatusPatcherTest.php | +1 | −1 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Reference/CrossReferencePullRequestOrganizerTest.php | +9 | −9 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Tests/Builders/PullRequestTestBuilder.php | +6 | −6 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Tests/Stub/GenerateGitoliteAccessURLStub.php | +2 | −2 | Go to diff View file |
M | plugins/pullrequest/tests/unit/Tests/Stub/SearchReviewersStub.php | +23 | −23 | Go to diff View file |
M | plugins/roadmap/db/mysql/updates/2021/202106161205_multiple_trackers_in_roadmap.php | +6 | −6 | Go to diff View file |
M | plugins/roadmap/include/Roadmap/FilterReportDao.php | +5 | −5 | Go to diff View file |
M | plugins/roadmap/include/Roadmap/REST/v1/RoadmapTasksRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/roadmap/include/Roadmap/REST/v1/TaskRepresentationBuilderForTracker.php | +1 | −1 | Go to diff View file |
M | plugins/roadmap/include/Roadmap/RoadmapProjectWidget.php | +3 | −3 | Go to diff View file |
M | plugins/roadmap/include/Roadmap/RoadmapWidgetDao.php | +6 | −6 | Go to diff View file |
M | plugins/roadmap/include/Roadmap/Widget/PreferencePresenter.php | +1 | −1 | Go to diff View file |
M | plugins/roadmap/include/Roadmap/Widget/RoadmapConfigureAtXMLImport.php | +2 | −2 | Go to diff View file |
M | plugins/roadmap/tests/integration/Roadmap/FilterReportDaoTest.php | +20 | −20 | Go to diff View file |
M | plugins/roadmap/tests/integration/Roadmap/RoadmapWidgetDaoTest.php | +1 | −1 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/REST/v1/IterationsRetrieverTest.php | +4 | −4 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/REST/v1/RoadmapTasksRetrieverTest.php | +7 | −7 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/REST/v1/SubtasksRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/REST/v1/TaskOutOfDateDetectorTest.php | +42 | −42 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/REST/v1/TaskRepresentationBuilderForTrackerTest.php | +1 | −1 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/RoadmapProjectWidgetTest.php | +25 | −25 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/Widget/RoadmapConfigureAtXMLImportTest.php | +35 | −35 | Go to diff View file |
M | plugins/roadmap/tests/unit/Roadmap/Widget/RoadmapWidgetPresenterBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/statistics/db/mysql/updates/2015/201504081124_create_plugin_statistics_configuration_table.php | +3 | −3 | Go to diff View file |
M | plugins/statistics/db/mysql/updates/2015/201510131700_create_plugin_statistics_aggregation_table.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/include/CSV/CSVBuilder.php | +35 | −35 | Go to diff View file |
M | plugins/statistics/include/DiskUsage/Subversion/Collector.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/DiskUsagePie/DiskUsagePieMountPointPresenter.php | +8 | −8 | Go to diff View file |
M | plugins/statistics/include/Events/StatisticsRefreshDiskUsage.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/Frequencies/GraphDataBuilders/Sample.php | +3 | −3 | Go to diff View file |
M | plugins/statistics/include/Frequencies/GraphDataBuilders/SampleFactory.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/Frequencies/GraphDataBuilders/SampleGraph.php | +6 | −6 | Go to diff View file |
M | plugins/statistics/include/ProjectQuotaHtml.class.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/include/ProjectQuotaManager.class.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/include/Statistics_ConfigurationDao.class.php | +3 | −3 | Go to diff View file |
M | plugins/statistics/include/Statistics_DiskUsageDao.class.php | +3 | −3 | Go to diff View file |
M | plugins/statistics/include/Statistics_DiskUsageGraph.class.php | +11 | −11 | Go to diff View file |
M | plugins/statistics/include/Statistics_DiskUsageManager.class.php | +7 | −7 | Go to diff View file |
M | plugins/statistics/include/Statistics_DiskUsagePurger.class.php | +4 | −4 | Go to diff View file |
M | plugins/statistics/include/Statistics_Formatter_Scm.class.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/include/Statistics_ProjectQuotaDao.class.php | +7 | −7 | Go to diff View file |
M | plugins/statistics/include/Statistics_ScmSvnDao.class.php | +19 | −19 | Go to diff View file |
M | plugins/statistics/include/Statistics_ServicesUsageDao.class.php | +10 | −10 | Go to diff View file |
M | plugins/statistics/include/SystemEvent_STATISTICS_DAILY.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/include/statisticsPlugin.php | +2 | −2 | Go to diff View file |
M | plugins/statistics/tests/unit/Statistics_Services_UsageFormatterTest.php | +12 | −12 | Go to diff View file |
M | plugins/statistics/www/project_stat.php | +1 | −1 | Go to diff View file |
M | plugins/statistics/www/usage_stat.php | +1 | −1 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201601081758_create_plugin_svn_repositories_table.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201602021420_create_plugin_svn_accessfile_history_table.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201602091209_create_plugin_svn_mailing_header.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201602161822_add_accessfile_reference_in_svn_repository.php | +1 | −1 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201603071042_svn_repository_pre_commit_must_contain_reference.php | +1 | −1 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201603161523_create_plugin_svn_immutable_tag.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201603231523_hook_commit_message_can_change.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201607181149_add_deletetion_date_in_svn_repository.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2016/201608251326_create_plugin_svn_full_history_table.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2017/201704031412_create_svn_notif_user_table.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2017/201704031421_create_autoincrement_key_in_notif.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2017/201704031658_create_svn_notif_group_table.php | +2 | −2 | Go to diff View file |
M | plugins/svn/db/mysql/updates/2017/201704121621_modify_autoincrement_key_in_notif.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/REST/v1/RepositoryResource.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/AccessControl/AccessControlController.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/AccessControl/AccessFileHistoryCreator.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/AccessControl/SVNCheckRepositoriesWithDuplicatedAccessFileSections.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/AccessControl/SVNRefreshAllAccessFilesCommand.php | +5 | −5 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/AdminController.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/GlobalAdministratorsController.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/GlobalAdministratorsUpdater.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/ImmutableTagCreator.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/MailHeaderManager.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/MailNotificationManager.php | +5 | −5 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/MailReceivedFromUserExtractor.php | +3 | −3 | Go to diff View file |
M | plugins/svn/include/SVN/Admin/MailReference.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Commit/CommitInfoEnhancer.php | +3 | −3 | Go to diff View file |
M | plugins/svn/include/SVN/Commit/CommitMessageValidator.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Commit/FileSizeValidator.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Commit/ImmutableTagCommitValidator.php | +3 | −3 | Go to diff View file |
M | plugins/svn/include/SVN/Dao.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/DiskUsage/DiskUsageDao.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/DiskUsage/DiskUsageRetriever.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/Explorer/ExplorerController.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Explorer/RepositoryDisplayController.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Explorer/RepositoryDisplayPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Hooks/PostCommit.php | +7 | −7 | Go to diff View file |
M | plugins/svn/include/SVN/Hooks/PreCommit.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Hooks/PreRevpropChange.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Hooks/RestoreMissingHooks.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Logs/QueryBuilder.php | +10 | −10 | Go to diff View file |
M | plugins/svn/include/SVN/Notifications/CannotAddUgroupsNotificationException.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Notifications/CannotAddUsersNotificationException.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Notifications/NotificationsEmailsBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/PermissionsPerGroup/SVNJSONPermissionsRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/Exception/RepositoryNameIsInvalidException.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/HookConfigUpdator.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/HookDao.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/ProjectHistoryFormatter.php | +11 | −11 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/RepositoryCreator.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/RepositoryDeleter.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/RepositoryManager.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/RepositoryRegexpBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/Settings/EmptyNotificationsFault.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/Settings/NonAuthorizedDynamicUgroupFault.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/Settings/Settings.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/Repository/Settings/SettingsBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/ServiceSvn.php | +2 | −2 | Go to diff View file |
M | plugins/svn/include/SVN/Statistic/SCMUsageCollector.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/SvnAdmin.php | +8 | −8 | Go to diff View file |
M | plugins/svn/include/SVN/SvnPermissionManager.php | +1 | −1 | Go to diff View file |
M | plugins/svn/include/SVN/SvnRouter.php | +15 | −15 | Go to diff View file |
M | plugins/svn/include/SVN/ViewVC/ViewVCProxy.php | +18 | −18 | Go to diff View file |
M | plugins/svn/include/SVN/XMLImporter.php | +3 | −3 | Go to diff View file |
M | plugins/svn/include/SVN/XMLRepositoryImporter.php | +4 | −4 | Go to diff View file |
M | plugins/svn/include/SVN/XMLSvnExporter.php | +11 | −11 | Go to diff View file |
M | plugins/svn/include/Setup/SetupSVNCommand.php | +3 | −3 | Go to diff View file |
M | plugins/svn/include/svnPlugin.php | +1 | −1 | Go to diff View file |
M | plugins/svn/tests/integration/SVN/Commit/SvnlookTest.php | +1 | −1 | Go to diff View file |
M | plugins/svn/tests/rest/SVN/RepositoryTest.php | +88 | −88 | Go to diff View file |
M | plugins/svn/tests/rest/SVN/RepositoryTestNonRegressionTest.php | +146 | −146 | Go to diff View file |
M | plugins/svn/tests/rest/TestBase.php | +32 | −32 | Go to diff View file |
M | plugins/svn/tests/unit/REST_Backend/NotificationUpdateCheckerTest.php | +42 | −42 | Go to diff View file |
M | plugins/svn/tests/unit/REST_Backend/RepositoryResourceUpdaterTest.php | +26 | −26 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/AccessFile/AccessFileHistoryCreatorTest.php | +2 | −2 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/AccessFile/SVNRefreshAllAccessFilesCommandTest.php | +2 | −2 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/DiskUsage/DiskUsageRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Hooks/PreCommitSHA1CollisionTest.php | +1 | −1 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Hooks/PreCommitTest.php | +7 | −7 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Hooks/PreRevpropChangeTest.php | +1 | −1 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Repository/HookConfigUpdatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Repository/RepositoryCreatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Repository/RepositoryRegexpBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Repository/RuleNameTest.php | +41 | −41 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/Repository/Settings/SettingsBuilderTest.php | +8 | −8 | Go to diff View file |
M | plugins/svn/tests/unit/SVN/XMLExporterTest.php | +3 | −3 | Go to diff View file |
M | plugins/taskboard/include/AgileDashboard/MilestoneIsAllowedChecker.php | +3 | −3 | Go to diff View file |
M | plugins/taskboard/include/Column/FieldValuesToColumnMapping/Freestyle/FreestyleMappingDao.php | +6 | −6 | Go to diff View file |
M | plugins/taskboard/include/REST/v1/Card/CardPatcher.php | +1 | −1 | Go to diff View file |
M | plugins/taskboard/include/REST/v1/Cell/AddValidator.php | +1 | −1 | Go to diff View file |
M | plugins/taskboard/include/REST/v1/Cell/CardMappedFieldUpdater.php | +2 | −2 | Go to diff View file |
M | plugins/taskboard/include/REST/v1/Cell/CellPatcher.php | +1 | −1 | Go to diff View file |
M | plugins/taskboard/include/Routing/MilestoneExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/taskboard/include/Routing/TaskboardController.php | +1 | −1 | Go to diff View file |
M | plugins/taskboard/include/taskboardPlugin.php | +1 | −1 | Go to diff View file |
M | plugins/taskboard/tests/rest/TaskboardCellTest.php | +1 | −1 | Go to diff View file |
M | plugins/taskboard/tests/unit/Admin/ScrumBoardTypeSelectorControllerTest.php | +3 | −3 | Go to diff View file |
M | plugins/taskboard/tests/unit/Column/ColumnColorRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/taskboard/tests/unit/REST/v1/Card/CardPatcherTest.php | +2 | −2 | Go to diff View file |
M | plugins/taskboard/tests/unit/REST/v1/Cell/CellPatcherTest.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2015/201505061050_rename_to_trafficlights.php | +5 | −5 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2017/201708101140_add_issue_tracker_to_trafficlights.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2017/201709111000_rename_db_tables.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2018/2018005141637_add_stepdef_table.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2018/201803091459_add_jenkins_configuration_to_campaign.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2018/201804131646_add_execution_table.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2018/201804171521_fill_execution_table.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2018/201805171520_add_stepexec_table.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2018/201805281435_add_description_format.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2018/201806251206_add_expected_results.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/db/mysql/updates/2020/202001291605_remove_required_from_issue_tracker.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/include/RealTime/MercureJWTController.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/ArtifactDao.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Campaign/CloseCampaignController.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Campaign/Execution/ExecutionDao.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Campaign/OpenCampaignController.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Campaign/StatusChangedRedirectURLBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Campaign/StatusUpdater.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Dao.class.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/GetURIForMilestoneFromTTM.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Heartbeat/LatestHeartbeatsCollector.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/IndexController.class.php | +8 | −8 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/IndexPresenter.class.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/REST/v1/ArtifactNodeDao.php | +4 | −4 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/REST/v1/CampaignRepresentation.class.php | +8 | −8 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/REST/v1/ExecutionRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/REST/v1/ExecutionWithAutomatedTestDataProvider.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/REST/v1/ExecutionsResource.class.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/REST/v1/ExtractedTestResultFromJunit.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/REST/v1/TestsDataJUnitExtraction/TestsDataFromJunitExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Router.class.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Step/Definition/Field/StepDefinition.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Step/Definition/Field/StepDefinitionDataConverter.php | +4 | −4 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/Step/StepChecker.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/TestmanagementTrackersConfigurator.php | +4 | −4 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/TrackerComesFromLegacyEngineException.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/TestManagement/XML/XMLImport.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/include/testmanagementPlugin.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/tests/rest/TestManagement/ArtifactsTest.php | +40 | −40 | Go to diff View file |
M | plugins/testmanagement/tests/rest/TestManagement/CampaignsTest.php | +5 | −5 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Administration/AdminTrackersRetrieverTest.php | +58 | −58 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Administration/TrackerCheckerTest.php | +14 | −14 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Campaign/CloseCampaignControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Campaign/OpenCampaignControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Campaign/StatusChangedRedirectURLBuilderTest.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Campaign/StatusUpdaterTest.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/CampaignCreatorTest.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/FirstConfigCreatorTest.php | +37 | −37 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Heartbeat/LatestHeartbeatsCollectorTest.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/ExecutionChangesExtractorTest.php | +2 | −2 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/ExecutionFromAutomatedTestsUpdaterTest.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/ExecutionWithAutomatedTestDataProviderTest.php | +5 | −5 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/FormattedChangesetValueForListFieldRetrieverTest.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/ListOfExecutionsWithAutomatedTestDataRetrieverTest.php | +4 | −4 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/TestsDataFromJunitExtractorTest.php | +22 | −22 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/v1/CampaignArtifactUpdateFieldValuesBuilderTest.php | +4 | −4 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/v1/DefinitionRepresentations/DefinitionRepresentationBuilderTest.php | +3 | −3 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/v1/DefinitionRepresentations/DefinitionRepresentationTest.php | +4 | −4 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/REST/v1/ListOfDefinitionsForCampaignRetrieverTest.php | +11 | −11 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Step/Definition/Field/StepDefinitionDataConverterTest.php | +26 | −26 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Step/Definition/Field/StepDefinitionTest.php | +17 | −17 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/Step/StepCheckerTest.php | +28 | −28 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/TestmanagementTrackersConfiguratorTest.php | +13 | −13 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/TestmanagementTrackersCreatorTest.php | +8 | −8 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/XML/ImportXMLFromTrackerTest.php | +4 | −4 | Go to diff View file |
M | plugins/testmanagement/tests/unit/TestManagement/XML/TrackerArtifactXMLImportXMLImportFieldStrategyStepsTest.php | +4 | −4 | Go to diff View file |
M | plugins/testplan/include/TestDefinition/TestPlanLinkedTestDefinitions.php | +1 | −1 | Go to diff View file |
M | plugins/testplan/include/TestPlanController.php | +4 | −4 | Go to diff View file |
M | plugins/testplan/include/TestPlanPresenterBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/testplan/tests/unit/TestDefinition/EventRedirectAfterArtifactCreationOrUpdateProcessorTest.php | +23 | −23 | Go to diff View file |
M | plugins/testplan/tests/unit/TestDefinition/RedirectParameterInjectorTest.php | +15 | −15 | Go to diff View file |
M | plugins/testplan/tests/unit/TestDefinition/TestPlanTestDefinitionWithTestStatusTest.php | +1 | −1 | Go to diff View file |
M | plugins/testplan/tests/unit/TestPlanControllerTest.php | +1 | −1 | Go to diff View file |
M | plugins/testplan/tests/unit/TestPlanPresenterBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/timetracking/db/mysql/updates/2018/201805301018_change_time_key.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/db/mysql/updates/2019/201901161452_add_timetracking_report.php | +4 | −4 | Go to diff View file |
M | plugins/timetracking/db/mysql/updates/2019/201905061046_change_timetracking_overview_report_name.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/db/mysql/updates/2019/201905061047_add_widget_title.php | +4 | −4 | Go to diff View file |
M | plugins/timetracking/db/mysql/updates/2021/202102171416_modify_step_to_text.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimeTrackingBadDateFormatException.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimeTrackingMissingTimeException.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimeTrackingNoTimeException.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimeTrackingNotAllowedToAddException.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimeTrackingNotAllowedToDeleteException.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimeTrackingNotAllowedToEditException.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimeTrackingNotBelongToUserException.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Exceptions/TimetrackingOverviewWidgetNoTitle.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/JiraImporter/Configuration/JiraTimetrackingConfigurationRetriever.php | +2 | −2 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/JiraImporter/JiraXMLExport.php | +7 | −7 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/JiraImporter/Worklog/Worklog.php | +6 | −6 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/ProjectResource.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingDatesExtractor.php | +4 | −4 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingOverviewRepresentationsBuilder.php | +4 | −4 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingPOSTRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingQueryChecker.php | +7 | −7 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingReportRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingReportResource.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/REST/v1/TimetrackingResource.php | +3 | −3 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Router.php | +8 | −8 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Time/DateFormatter.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Time/TimeChecker.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Time/TimeRetriever.php | +2 | −2 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Widget/TimeTrackingOverview.php | +3 | −3 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/Widget/UserWidget.php | +2 | −2 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/XML/XMLExport.php | +8 | −8 | Go to diff View file |
M | plugins/timetracking/include/Timetracking/XML/XMLImport.php | +2 | −2 | Go to diff View file |
M | plugins/timetracking/include/timetrackingPlugin.php | +3 | −3 | Go to diff View file |
M | plugins/timetracking/tests/rest/Timetracking/TimetrackingReportTest.php | +16 | −16 | Go to diff View file |
M | plugins/timetracking/tests/rest/Timetracking/TimetrackingTest.php | +50 | −50 | Go to diff View file |
M | plugins/timetracking/tests/unit/JiraImporter/Configuration/JiraTimetrackingConfigurationRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/timetracking/tests/unit/JiraImporter/JiraXMLExportTest.php | +11 | −11 | Go to diff View file |
M | plugins/timetracking/tests/unit/JiraImporter/Worklog/WorklogRetrieverTest.php | +67 | −67 | Go to diff View file |
M | plugins/timetracking/tests/unit/JiraImporter/Worklog/WorklogTest.php | +59 | −59 | Go to diff View file |
M | plugins/timetracking/tests/unit/Report/TimetrackingDatesExtractorTest.php | +7 | −7 | Go to diff View file |
M | plugins/timetracking/tests/unit/Report/TimetrackingReportFactoryTest.php | +2 | −2 | Go to diff View file |
M | plugins/timetracking/tests/unit/Time/DateFormatterTest.php | +8 | −8 | Go to diff View file |
M | plugins/timetracking/tests/unit/Time/TimeCheckerTest.php | +7 | −7 | Go to diff View file |
M | plugins/timetracking/tests/unit/Time/TimeUpdaterTest.php | +16 | −16 | Go to diff View file |
M | plugins/timetracking/tests/unit/Time/TimetrackingOverviewRepresentationsBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/timetracking/tests/unit/Time/TimetrackingQueryCheckerTest.php | +7 | −7 | Go to diff View file |
M | plugins/timetracking/tests/unit/XML/XMLExportTest.php | +8 | −8 | Go to diff View file |
M | plugins/timetracking/tests/unit/XML/XMLImportTest.php | +16 | −16 | Go to diff View file |
M | plugins/tracker/bin/create_tracker_structure_from_tv3.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/bin/emailgateway.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/bin/remove_multiple_artifacts.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/bin/store_stripped_body_of_comments.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2011/201110051717_add_postaction_field_date_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201202031104_add_shared_field_columns.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201202221109_add_index_on_changeset_value_list.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201203021527_add_tracker_hierarchy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201203081704_set_child_id_as_primary_key_in_tracker_hierarchy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201204051134_add_index_on_sementic_title_and_artifact.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201206211032_add_postaction_field_int_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201206211619_add_artifact_priority.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201206221322_populate_artifact_priority.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201206221459_add_postaction_field_float_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201206291629_add_missing_renderer_table_rows.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201209201812_populate_artifact_priority_for_fresh_install.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201210300845_add_from_tv3_id_column.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201211121137_add_transition_condition_field_notempty_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201211211457_refactor_tracker_rule_tables.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201211221712_create_tracker_rule_date_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2012/201211281116_remove_unused_keys_from_tracker_rule_tables.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201301021153_add_postaction_cibuild_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201302051223_add_burndown_field_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201302181740_remove_burndown_field_table.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201303200939_add_per_tracker_artifact_id.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201304230915_create_burndown_field_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201305101622_remove_orphan_decorators.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201307311726_add_workflow_trigger_tables.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201309191741_remove_burndown_field_table.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201309201623_add_cross_references_indexes.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2013/201312250950_add_reminder_roles_table.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201403181036_add_tracker_fileinfo_temporary_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201403191118_add_offset_column_to_fileinfo_temporary_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201403281402_add_index_for_reverse_link.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201405060841_add_index_for_semantic_and_artifact.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/20140514_add_index_for_last_changeset_id_tracker_id.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201408121036_add_artifact_unsubscribe_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201409031059_add_display_time_option.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201410081156_add_burndown_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201411051547_add_fast_compute_option.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2014/201412041555_add_tracker_field_computed_cache_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201501191123_create_tracker_artifact_priority_history_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201501201037_add_show_priority_changes_in_tracker_table.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201501211009_add_raised_context_project_columns_in_priority_history_table.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201501221126_rename_show_priority_changes_column_in_tracker_table.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201510071857_add_semantic_description.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201510141100_add_plugin_tracker_config.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201510281350_add_incomingmail_table.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2015/201512091100_create_tracker_notification_assigned_to_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201601271554_add_nature_in_artifactlink.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201603080951_create_tracker_artifactlink_natures_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201603111508_create_tracker_artifactlink_natures_allowed_projects_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201603231358_add_nature_index_for_artifact_link_changeset.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201603251450_add_index_on_nature_column.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201604061535_add_nature_in_table_columns.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201604071310_replace_primary_key_in_table_columns.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201604140955_add_nature_format_in_table_columns.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201606021408_create_tracker_changeset_value_computed_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201608041550_create_condition_comment_not_empty.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201609261450_remove_rogue_artifacts.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201612091720_use_only_rank_for_artifact_priority.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201612161050_add_is_in_expert_mode_column.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2016/201612291507_add_report_config.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201701091557_update_default_limit_in_report_config.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201703091758_add_table_global_notification_users.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201703131434_add_table_global_notification_ugroups.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201704041614_add_index_to_display_attachments.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201704051751_add_index_to_tracker_changeset_value_list.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201704051759_add_index_on_tracker_changeset_value_artifactlink.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201708231717_add_table_cross_tracker_report.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201710161346_add_table_to_store_fulltext_of_comment.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201710171318_add_artifact_link_usage_table.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201710201025_add_unused_artifact_link_type_table.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2017/201712131642_add_changesets_notification_log_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2018/201802051707_add_report_comment_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2018/201804091400_add_plugin_tracker_artifacts_deleted_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2018/201806181019_custom_email_sender.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2018/201806281722_add_index_tracker_field_list_bind_static_value.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2018/201809171653_clean_up_broken_triggers.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2018/201809241410_add_pending_artifact_removal_table.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2019/201902121635_map_workflow_pre_condiction_new_artifact_with_old_behaviour.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2019/201904181800_rename_postaction_readonly_tables.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2019/201910071357_add_default_value_for_computed_fields.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2019/201910151454_create_modal_new_layout_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2019/201910161558_add_index_tracker_priority_rank.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2019/201927091548_add_index_tracker_hierarchy.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2020/202004291558_remove_filename_from_tracker_xml_changeset.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2020/202007221453_add_is_hidden_collumns_for_open_value.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2020/202010121049_improve_workflow_transition_index.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2021/202104301336_add_artifact_link_nature_column_in_tracker_semantic_progress.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2022/202201101116_clean_hidden_fieldsets_post_action_from_deleted_workflows.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2022/202203221026_clean_workflow_transitions.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2022/202208021644_clean_workflow_transitions.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2022/202211280910_add_missing_artifacts_ranks.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2023/202302031615_remove_feature_flag_use_list_pickers_in_trackers_and_modals.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2023/202302161403_reminder_on_closed_artifacts.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2023/202309250847_rename_in_new_dropdown_table.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2023/202311141151_add_calendar_event_config.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/db/mysql/updates/2024/202401161010_add_forbidden_move_action.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/grammar/test_parser.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/PermissionsPerGroup/TrackerPermissionPerGroupJSONRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/PermissionsPerGroup/TrackerPermissionPerGroupRepresentationBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/Artifact/ArtifactRepresentation.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/Artifact/FlatArtifactRepresentationTransformer.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/REST/Artifact/MovedArtifactValueBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/Artifact/StatusValueRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/Helpers/OrderRepresentation.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/REST/v1/ArtifactLinkRepresentation.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/REST/v1/ArtifactsResource.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Event/GetTrackersWithCriteria.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/v1/GetTrackersQueryChecker.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Move/BeforeMoveChecker.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Move/MovePatchAction.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Move/PostMoveArtifactRESTAddFeedback.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/REST/v1/ProjectTrackersResource.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/v1/TrackerFieldsResource.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/REST/v1/TrackersResource.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/RunJobRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/SetFieldValueRepresentation.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/UnsupportedDateValueException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/Update/CIBuildJsonParser.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/Update/FrozenFieldsJsonParser.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/Update/HiddenFieldsetsJsonParser.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/Update/SetDateValueJsonParser.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/Update/SetFloatValueJsonParser.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/REST/v1/Workflow/PostAction/Update/SetIntValueJsonParser.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/AfterArtifactCopiedEvent.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanPermissionsBeFullyMovedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanStaticFieldValuesBeFullyMovedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanUserFieldValuesBeFullyMovedVerifier.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CanUserGroupValuesBeFullyMovedVerifier.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CollectMovableExternalFieldEvent.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/CreateArtifact.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/DryRunDuckTypingFieldCollector.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/MegaMoverArtifactByDuckTyping.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Action/UpdateArtifact.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/ArtifactLinksUsageDao.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/ArtifactsDeletion/ArtifactsDeletionConfigController.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/ArtifactsDeletion/ArtifactsDeletionConfigDAO.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/GlobalAdmin/Trackers/MarkTrackerAsDeletedController.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/GlobalAdmin/Trackers/PromoteTrackersController.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/MoveArtifacts/MoveActionAllowedDAO.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/MoveArtifacts/MoveActionForbiddenFault.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/MoveArtifacts/MoveArtifactsAdminController.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/MoveArtifacts/MoveArtifactsAdminUpdateController.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Admin/TrackerGeneralSettingsChecker.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/AdditionalArtifactActionButtonsFetcher.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/AdditionalButtonLinkPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactMoveButtonPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactMoveButtonPresenterBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ActionButtons/MoveArtifactActionAllowedByPluginRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Artifact.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactDoesNotExistFault.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactNotificationSubscriber.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArchiveAndDeleteArtifactTask.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArtifactChangesetValueDeletorDAO.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArtifactsDeletionDAO.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArtifactsDeletionLimitReachedException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/AsynchronousArtifactsDeletionActionsRunner.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/DeletionContext.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/PendingArtifactRemovalDao.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/ChangesetDataInitializator.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/ChangesetFromXmlDisplayer.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/Comment/PrivateComment/TrackerPrivateCommentUGroupEnabledDao.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/Comment/PrivateComment/TrackerPrivateCommentUGroupPermissionDao.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/InitialChangesetCreator.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/CalendarEvent/EventOrganizerRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/EmailNotificationTask.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/MailSender.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/TextDiff/ChangesetsForDiffRetriever.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/TextDiff/DiffProcessor.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Changeset/TextDiff/TextDiffRetriever.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/ChangesetValue/ArtifactLink/ReverseLinkWithNoType.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Closure/ArtifactCloser.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/LatestHeartbeatsCollector.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/ArtifactDoesNotExistException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/ArtifactIdMissingException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/InvalidMailHeadersException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/MailGateway.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/MultipleUsersExistException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/RecipientFactory.class.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/RecipientInvalidHashException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/RecipientUserDoesNotExistException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/TrackerDoesNotExistException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/TrackerIdMissingException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/TrackerMissingSemanticException.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Presenter/FollowUpCommentsPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/RedirectAfterArtifactCreationOrUpdateEvent.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/BuildArtifactFormActionEvent.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/EditAbstractRenderer.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/EditInPlaceRenderer.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/EditRenderer.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/FieldsDataFromRequestRetriever.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Renderer/ReadOnlyRenderer.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_Changeset.class.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetValue_Text.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_Changeset_Comment.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/View/Edit.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLExport.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport.class.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/ArtifactFieldsDataBuilder.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyArtifactLink.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyAttachment.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportZipArchive.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/dao/PriorityDao.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/dao/Tracker_ArtifactDao.class.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/dao/Tracker_Artifact_ChangesetDao.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/dao/Tracker_Artifact_Changeset_CommentDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/ArtifactWithTrackerStructureExporter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Chart/Burndown.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Chart/BurndownView.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Colorpicker/ColorpickerMountPointPresenterBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/ClientWrapper.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Configuration/PlatformConfigurationRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/FromJiraTrackerCreator.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/AlwaysThereFieldsExporter.php | +18 | −18 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Attachment/AttachmentDownloader.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/JiraCloudChangelogEntriesBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/JiraServerChangelogEntriesBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/CommentXMLValueEnhancer.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/JiraCloudCommentValuesBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Comment/JiraServerCommentValuesBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/DataChangesetXMLExporter.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/FieldChangeXMLExporter.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/IssueAsArtifactXMLExporter.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/ChangelogSnapshotBuilder.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/CurrentSnapshotBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/InitialSnapshotBuilder.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/IssueSnapshotCollectionBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/JiraAllIssuesMonoTrackersInXmlExporter.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/JiraAllIssuesMultiTrackersInXmlExporter.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/JiraIssuesFromIssueTypeInDedicatedTrackerInXmlExporter.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/JiraIssuesFromProjectInMonoTrackerInXmlExporter.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDoneIssuesExporter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlReportOpenIssuesExporter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Reports/XmlTQLReportExporter.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Semantic/SemanticsXMLExporter.php | +37 | −37 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Structure/AppendFieldsFromCreateMetaAPI.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Structure/AppendFieldsFromCreateMetaServer9API.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Structure/JiraToTuleapFieldTypeMapper.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/User/JiraMinimalUserInformationMissingException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/Import/Values/StatusValuesCollection.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/JiraConnectionException.php | +22 | −22 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/UserRole/UserRolesChecker.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/UserRole/UserRolesCheckerJiraCloud.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/JiraImporter/UserRole/UserRolesCheckerJiraServer.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Creation/TrackerCreationProcessorController.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/DateReminderDao.php | +18 | −18 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminderFactory.class.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminderManager.class.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminderRenderer.class.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Assignee.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Commenter.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/DateReminder/Tracker_DateReminder_Role_Submitter.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Events/IsFieldUsedInASemanticEvent.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Exception/Migration/StructureCreationException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ArtifactLinkFieldDoesNotExistFault.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ArtifactLinkValidator.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/BurndownCacheDateRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/BurndownFieldPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ChartCachedDaysComparator.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ChartConfigurationFieldRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/ChartConfigurationValueRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/DateFormatter.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/DateTimeFormatter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/ArtifactLinkFieldValueDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/FieldDataBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Type/TypeDao.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Type/TypeTablePresenter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/ValidateArtifactLinkValueEvent.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownCacheGenerationChecker.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownCommonDataBuilder.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownDataBuilderForLegacy.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownDataBuilderForREST.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Computed/ComputedFieldDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Date/CSVFormatter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Date/DateFieldDao.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Date/DateValueDao.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/FieldDao.php | +24 | −24 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/File/IdForXMLImportExportConvertor.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/FloatingPointNumber/FloatFieldDao.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/FloatingPointNumber/FloatValueDao.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Integer/IntegerFieldDao.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/Integer/IntegerValueDao.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindDecoratorRetriever.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindStaticValueDao.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindStaticXmlExporter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindUgroupsValueDao.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/ListFields/ListValueDao.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Field/PermissionsOnArtifact/PermissionsOnArtifactFieldValueDao.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/FormElementListValueAdminViewPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/FormElementListValueAdminViewPresenterBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/SystemEvent/SystemEvent_BURNDOWN_DAILY.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/SystemEvent/SystemEvent_BURNDOWN_GENERATE.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElementFactory.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_ArtifactId.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_ArtifactLink.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Burndown.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Checkbox.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Computed.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Date.php | +28 | −28 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_File.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Float.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Integer.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_LastModifiedBy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_LastUpdateDate.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_Static.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_StaticValue.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_StaticValue_None.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_Ugroups.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_Users.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_OpenList.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_PerTrackerArtifactIdclass.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_PermissionsOnArtifact.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Selectbox.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_SubmittedBy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_SubmittedOn.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_Text.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/View/Admin.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/FormElement/View/Admin/Visitor.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Hierarchy/HierarchyDAO.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Hierarchy/TrackerHierarchyUpdateEvent.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/LegacyTrackerMigrationDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/MailLogger.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/MigrationManager.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/ColumnsDao.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/FieldDependenciesDao.class.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/FieldsDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/FieldsDefaultValuesDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/FieldsetsDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/RemindersDao.class.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/RenderersGraphDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/RenderersTableDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Migration/V3/ReportsDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Notifications/ConfigNotificationEmailCustomSenderDao.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Notifications/GlobalNotificationDuplicationDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Notifications/GlobalNotificationsAddressesBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Notifications/TrackerForceNotificationsLevelCommand.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/PromotedTrackerDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/AdditionalCriteria/CommentDao.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/CollectionOfListValuesExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/DateFormat.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/CollectionOfAlphaNumericValuesExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/CollectionOfDateValuesExtractor.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateToEmptyStringTermException.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateToMySelfComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateToStringComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FieldIsNotSupportedAtAllException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FieldIsNotSupportedForComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/File/FileToMySelfComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/File/FileToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/File/FileToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FloatFields/FloatToEmptyStringTermException.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FloatFields/FloatToMySelfComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FloatFields/FloatToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FloatFields/FloatToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FloatFields/FloatToStringComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerToEmptyStringTermException.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerToMySelfComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerToStringComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/ListToEmptyStringTermException.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/ListToMySelfForAnonymousComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/ListToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/ListToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/ListValueDoNotExistComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/SubmittedByUserDoesntExistException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Text/TextToMySelfComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Text/TextToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Text/TextToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/Comment/CommentToMySelfComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/Comment/CommentToNowComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/Comment/CommentToStatusOpenComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/InvalidMetadataForComparisonException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/ListFieldBindValueNormalizer.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenComparison/ForLastUpdateDate.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenComparison/ForSubmittedOn.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/DateTimeFieldFromWhereBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/DateTimeReadOnlyFieldFromWhereBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/DateTimeValueRounder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForLastUpdateDate.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForLastUpdatedBy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForSubmittedBy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForSubmittedOn.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForText.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereComparisonFieldReadOnlyBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereSearchableVisitor.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparison/ForLastUpdateDate.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparison/ForSubmittedOn.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanOrEqualComparison/ForLastUpdateDate.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanOrEqualComparison/ForSubmittedOn.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparison/ForLastUpdateDate.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparison/ForSubmittedOn.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanOrEqualComparison/ForLastUpdateDate.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanOrEqualComparison/ForSubmittedOn.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataBetweenComparisonFromWhereBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataEqualComparisonFromWhereBuilder.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataGreaterThanComparisonFromWhereBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataGreaterThanOrEqualComparisonFromWhereBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataInComparisonFromWhereBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataLesserThanComparisonFromWhereBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataLesserThanOrEqualComparisonFromWhereBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataNotEqualComparisonFromWhereBuilder.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataNotInComparisonFromWhereBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForLastUpdateDate.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForLastUpdatedBy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForSubmittedBy.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForSubmittedOn.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Query/QueryDao.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/TrackerReportConfigDao.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Tracker_Report.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Tracker_ReportFactory.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Tracker_Report_REST.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Tracker_Report_Renderer_Table.class.php | +23 | −23 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/Tracker_Report_Session.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/WidgetAdditionalButtonPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/ReportCriteriaDao.php | +20 | −20 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_ReportDao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Report/dao/Tracker_Report_Renderer_Table_ColumnsDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Date/Dao.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/List/Dao.class.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Tracker_RuleFactory.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/Tracker_RulesManager.class.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Rule/dao/Tracker_RuleDao.class.php | +15 | −15 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/ArtifactCannotBeCreatedReasonsGetter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Progress/MethodBasedOnEffort.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Progress/MethodNotConfigured.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Status/Done/SemanticDoneDao.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Status/Done/SemanticDoneNotDefinedException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Status/Done/SemanticDoneValueNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Status/SemanticStatusClosedValueNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Status/SemanticStatusNotDefinedException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Status/SemanticStatusOpenValueNotFoundException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Timeframe/Events/DoesAPluginRenderAChartBasedOnSemanticTimeframeForTrackerEvent.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Timeframe/SemanticTimeframe.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Timeframe/SemanticTimeframeImpliedFromAnotherTrackerRepresentation.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/TimeframeConfigInvalid.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_Semantic_Status.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker.class.php | +15 | −15 | Go to diff View file |
M | plugins/tracker/include/Tracker/TrackerManager.class.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/include/Tracker/Webhook/Actions/AdminWebhooks.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Webhook/Actions/WebhookCreateController.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Webhook/Actions/WebhookDeleteController.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Webhook/Actions/WebhookEditController.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Webhook/WebhookDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Widget/Tracker_Widget_Renderer.class.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Widget/WidgetRendererDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/Workflow/WorkflowTransitionController.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Exporter/TrackerStructureXMLExporter.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/BindOpenValueForDuckTypingUpdater.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/BindValueForDuckTypingUpdater.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/FieldChangeArtifactLinksUpdater.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/MoveChangesetXMLDuckTypingUpdater.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/Updater/OpenListUserGroupsByDuckTypingUpdater.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/XML/XMLTracker.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/dao/TrackerDao.class.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Tracker/dao/Tracker_GlobalNotificationDao.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/TrackerXmlImport.class.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/include/Workflow/NoPossibleValueException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/FrozenFields/FrozenFieldsDao.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/HiddenFieldsets/HiddenFieldsetsDao.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/include/Workflow/PostAction/Update/Internal/IncompatibleWorkflowModeException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/SimpleMode/SimpleWorkflowDao.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/Transition.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/Transition/Condition/CommentNotEmpty.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/Transition/Condition/CommentNotEmpty/Dao.class.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Workflow/Transition/Condition/FieldNotEmpty/Dao.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/TransitionDeletionException.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Workflow/Trigger/RulesManager.class.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/include/Workflow/Trigger/TriggersDao.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/include/Workflow/WorkflowFactory.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/trackerPlugin.php | +15 | −15 | Go to diff View file |
M | plugins/tracker/include/tracker_permissions.php | +21 | −21 | Go to diff View file |
M | plugins/tracker/tests/integration/Artifact/PaginatedArtifactDaoTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/integration/PriorityDaoPerformancesTest.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/tests/integration/Report/dao/ReportCriteriaDaoTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/integration/Test/Builders/TrackerDatabaseBuilder.php | +19 | −19 | Go to diff View file |
M | plugins/tracker/tests/rest/Artifacts/ArtifactsTest.php | +17 | −17 | Go to diff View file |
M | plugins/tracker/tests/rest/Artifacts/LinkedArtifactsTest.php | +31 | −31 | Go to diff View file |
M | plugins/tracker/tests/rest/ArtifactsActions/ArtifactsActionsTest.php | +17 | −17 | Go to diff View file |
M | plugins/tracker/tests/rest/DataBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/rest/FileFieldArtifactChangeset/FileFieldArtifactChangesetTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/rest/OpenLists/OpenListsTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/rest/PrivateComment/PrivateCommentArtifactTest.php | +69 | −69 | Go to diff View file |
M | plugins/tracker/tests/rest/Report/TrackerReportTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/rest/TQL/TQLTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/rest/TrackerBase.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/rest/TrackerFields/TrackerFieldsTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/rest/Workflows/SimpleModeTest.php | +17 | −17 | Go to diff View file |
M | plugins/tracker/tests/rest/Workflows/SwitchTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/rest/Workflows/TrackerWorkflowTransitionsTest.php | +87 | −87 | Go to diff View file |
M | plugins/tracker/tests/rest/Workflows/TrackerWorkflowsTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/rest/XML/ArtifactTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Artifact/Changeset/InitialChangesetCreatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Artifact/Closure/ArtifactCloserTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Artifact/Tracker_Artifact_XMLImportTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/ArtifactTestBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/Fields/DateFieldBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/Fields/ExternalFieldBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/Fields/FileFieldBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/Fields/List/ListStaticBindBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/Fields/OpenListFieldBuilder.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/Fields/StringFieldBuilder.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Builders/TypePresenterBuilder.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/Artifact/ArtifactCreatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/Artifact/ArtifactRepresentationBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/Artifact/ArtifactRepresentationTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/Artifact/Changeset/ChangesetRepresentationBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/Artifact/ChangesetValue/ArtifactLink/NewArtifactLinkInitialChangesetValueBuilderTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/FaultMapperTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/MovedArtifactValueBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/SetFieldValueRepresentationTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/CIBuildJsonParserTest.php | +18 | −18 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/FrozenFieldsJsonParserTest.php | +19 | −19 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/HiddenFieldsetsJsonParserTest.php | +19 | −19 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/PostActionCollectionJsonParserTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/SetDateValueJsonParserTest.php | +45 | −45 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/SetFloatValueJsonParserTest.php | +46 | −46 | Go to diff View file |
M | plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/SetIntValueJsonParserTest.php | +45 | −45 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/CheckArtifactRestUpdateConditionsStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/CollectDryRunTypingFieldStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/FeedbackFieldCollectorInterfaceStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/MoveRestArtifactStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Stub/Tracker/Artifact/ChangesetValue/ArtifactLink/ConvertAddReverseLinksStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/CanPermissionsBeFullyMovedVerifierTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/CanStaticFieldValuesBeFullyMovedVerifierTest.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/CanUserFieldValuesBeFullyMovedVerifierTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/CanUserGroupValuesBeFullyMovedVerifierTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/DryRunDuckTypingFieldCollectorTest.php | +71 | −71 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/StaticListFieldVerifierTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/Tracker_Action_CreateArtifactTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/Tracker_Action_UpdateArtifactTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Action/UserListFieldVerifierTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/ActionButton/ArtifactMoveButtonPresenterBuilderTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Admin/ArtifactDeletion/ArtifactsDeletionConfigTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Admin/GlobalAdmin/Trackers/TrackersDisplayPresenterTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Admin/TrackerGeneralSettingsCheckerTest.php | +50 | −50 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/ArtifactsDeletion/ArtifactDeletorTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/ArtifactsDeletion/ArtifactDependenciesDeletorTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/ArtifactsDeletion/PostArtifactMoveReferencesCleanerTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/ChangesetFromXmlDisplayerTest.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/Comment/CommentPresenterBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/Comment/PrivateComment/CachingTrackerPrivateCommentInformationRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/Comment/PrivateComment/TrackerPrivateCommentUGroupPermissionRetrieverTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/NewChangesetFieldValueSaverTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/NewChangesetPostProcessorTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/NewChangesetValidatorTest.php | +15 | −15 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/PostCreation/AsynchronousActionsRunnerTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/PostCreation/CalendarEvent/EventDatesRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/PostCreation/CalendarEvent/EventDescriptionRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/PostCreation/CalendarEvent/EventSummaryRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/PostCreation/EmailNotificationAttachmentProviderTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/PostCreation/NotifierCustomSenderTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/TextDiff/ChangesetsForDiffRetrieverTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Changeset/TextDiff/TextDiffRetrieverTest.php | +15 | −15 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/ChangesetValue/ArtifactLink/ReverseLinksRetrieverTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/ChangesetValue/ArtifactLinkDiffTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Creation/ReverseLinksAdderTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Link/ArtifactLinkerTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Presenter/FollowUpCommentsPresenterTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Renderer/FieldsDataFromRequestRetrieverTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/RichTextareaProviderTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/StatusBadgeBuilderTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/TrackerArtifactCreatorTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Tracker_ArtifactTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/Tracker_Artifact_ChangesetValue_TextTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/XMLImport/XMLImportFieldStrategyArtifactLinkTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/XMLImport/XMLImportFieldStrategyAttachmentTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/XMLImport/XMLImportFieldStrategyListTest.php | +19 | −19 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Artifact/XmlImportTest.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/ClientWrapperBuilderTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/ClientWrapperTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/AlwaysThereFieldsExporterTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/ArtifactLinkTypeConverterTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/ArtifactsInDedicatedTrackerXMLExporterTest.php | +32 | −32 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/ArtifactsInMonoTrackerXMLExporterTest.php | +32 | −32 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Attachment/AttachmentDownloaderTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Attachment/AttachmentTest.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Attachment/AttachmentXMLExporterTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/CreationStateListValueFormatterTest.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/JiraCloudChangelogEntryItemsRepresentationTest.php | +38 | −38 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/JiraCloudChangelogEntryValueRepresentationTest.php | +26 | −26 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/JiraServerChangelogEntriesBuilderTest.php | +22 | −22 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Changelog/ListFieldChangeInitialValueRetrieverTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Comment/CommentXMLValueEnhancerTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Comment/JiraCloudCommentTest.php | +20 | −20 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/FieldChangeXMLExporterTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/ChangelogSnapshotBuilderTest.php | +161 | −161 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/CurrentSnapshotBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/InitialSnapshotBuilderTest.php | +238 | −238 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Artifact/Snapshot/IssueSnapshotCollectionBuilderTest.php | +62 | −62 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/JiraClientMonoTrackerStub.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/JiraIssuesFromIssueTypeInDedicatedTrackerInXmlExporterTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/JiraIssuesFromProjectInMonoTrackerInXmlExporterTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportAllIssuesExporterTest.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportCreatedRecentlyExporterTest.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDefaultCriteriaExporterTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportDoneIssuesExporterTest.php | +16 | −16 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportOpenIssuesExporterTest.php | +17 | −17 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Reports/XmlReportUpdatedRecentlyExporterTest.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Semantic/SemanticsXMLExporterTest.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Structure/JiraFieldRetrieverTest.php | +89 | −89 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/Structure/JiraToTuleapFieldTypeMapperTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/User/JiraAuthorRetrieverTest.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/Import/XML/JiraXMLNodeBuilderTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/JiraProjectBuilderTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/JiraTrackerBuilderTest.php | +21 | −21 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/JiraImporter/UserRole/UserRolesCheckerTest.php | +42 | −42 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/PostCreationProcessorTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/TrackerCreationBreadCrumbsBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/TrackerCreationDataCheckerTest.php | +30 | −30 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Creation/TrackerCreatorTest.php | +35 | −35 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/AdminTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/ArtifactLinkValidatorTest.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/ChartConfigurationFieldRetrieverTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ArtifactLink/ArtifactLinkUpdaterDataFormaterTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ArtifactLink/SubmittedValueEmptyCheckerTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ArtifactLink/Type/NatureValidatorTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ArtifactLink/ValidateArtifactLinkValueEventTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/Burndown/BurndownDataBuilderForLegacyTest.php | +8 | −8 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/Burndown/BurndownDataBuilderForRESTTest.php | +38 | −38 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/Burndown/BurndownRemainingEffortAdderForRESTTest.php | +41 | −41 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ListFields/Bind/BindDecoratorExporterTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ListFields/Bind/BindListUserValueGetterTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ListFields/Bind/BindStaticXmlExporterTest.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ListFields/Bind/BoundDecoratorEditorTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/ListFields/Bind/BoundDecoratorSaverTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/PermissionsOnArtifact/ChangesCheckerTest.php | +19 | −19 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/PermissionsOnArtifact/PermissionDuckTypingMatcherTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/String/TrackerFormElementFieldStringRESTTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/String/TrackerFormElementFieldStringTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Field/Text/TextValueValidatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/TrackerFormElementJsonTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/TrackerFormElementUserPermissionsTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_Artifact_getArtifactLinks_Test.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_ArtifactLinkTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_BurndownTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_ComputedTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_DateTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_IntegerTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_ListTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_List_BindFactoryTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_List_BindTest.php | +18 | −18 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_StaticTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_TextTest.php | +38 | −38 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/FormElementListValueAdminViewPresenterBuilderTest.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/GetTrackersQueryCheckerTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Hierarchy/ControllerTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Hierarchy/HierarchicalTrackerFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Hierarchy/HierarchyControllerTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Migration/MigrationLoggerTest.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/NewDropdown/TrackerLinksInNewDropdownCollectorTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Notifications/ConfigNotificationEmailCustomSenderFormatterTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Permission/PermissionCheckerTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/REST/v1/Move/BeforeMoveCheckerTest.php | +22 | −22 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/REST/v1/Move/DryRunMoverTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/REST/v1/Move/RestArtifactMoverTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/REST/v1/Report/MatchingArtifactRepresentationBuilderTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/REST/v1/TrackerRepresentationBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/RealTimeMercure/RealTimeMercureArtifactMessageSenderTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Reference/CrossReferenceValidatorTest.php | +24 | −24 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/Query/Advanced/Grammar/ParserTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/Query/Advanced/InvalidTermCollectorVisitorTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/Query/Advanced/QueryBuilderVisitorTest.php | +20 | −20 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/Query/Advanced/SizeValidatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/Renderer/Table/TableRendererForReportRetrieverTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/TrackerReportRESTGetTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/TrackerReportRendererTableTest.php | +16 | −16 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/Tracker_ReportFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Report/Tracker_Report_RESTTest.php | +18 | −18 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Rules/TrackerRulesListValidatorTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Rules/TrackerRulesManager/TrackerRulesManagerForbiddenTest.php | +33 | −33 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Rules/TrackerRulesManager/TrackerRulesManagerValidationTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/ArtifactCannotBeCreatedReasonsGetterTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/CollectionOfCannotCreateArtifactReasonTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/CollectionOfCreationSemanticToCheckTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/CreationSemanticToCheckTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Progress/Administration/SemanticProgressAdminPresenterBuilderTest.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Progress/InvalidMethodTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Progress/MethodBasedOnLinksCountTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Progress/MethodNotConfiguredTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Progress/SemanticProgressDuplicatorTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Status/Done/DoneValueRetrieverTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Status/Done/SemanticDoneValueCheckerTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Status/Open/AdminPresenterBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Status/StatusColorForChangesetProviderTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Status/StatusValueRetrieverTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Timeframe/Administration/SemanticTimeframeCurrentConfigurationPresenterBuilderTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Timeframe/SemanticTimeframeBuilderTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Timeframe/SemanticTimeframeFromXMLBuilderTest.php | +17 | −17 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Timeframe/SemanticTimeframeUpdatorTest.php | +15 | −15 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Timeframe/TimeframeImpliedFromAnotherTrackerTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Tooltip/OtherSemantic/ProgressTooltipEntryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Semantic/Tooltip/SelectOptionsBuilderTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/TrackerFactoryTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/TrackerPermissionsTest.php | +9 | −9 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/TrackerTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/TrackerXmlImportTest.php | +35 | −35 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Tracker_Artifact_ChangesetValue_OpenListTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Tracker_Artifact_ChavesetValue_ListTest.php | +17 | −17 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/FrozenFields/FrozenFieldsFactoryTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/FrozenFields/FrozenFieldsRetrieverTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/HiddenFieldsets/HiddenFieldsetsFactoryTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/HiddenFieldsets/HiddenFieldsetsRetrieverTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/CIBuildRepositoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/SetDateValueRepositoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/SetFloatValueRepositoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/SetIntValueRepositoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/PostActionCollectionUpdaterTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/Workflow/WorkflowFactoryTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/ChangesetValue/Tracker_XML_Exporter_ChangesetValue_ChangesetValueFileXMLExporterTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/FieldChange/FieldChangeDateBuilderTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/FieldChange/FieldChangeFileBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/FieldChange/FieldChangeFloatBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/FieldChange/FieldChangeListBuilderTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/FieldChange/FieldChangeStringBuilderTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/FieldChange/FieldChangeTextBuilderTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/TrackerStructureXMLExporterTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Exporter/TrackerXmlExportTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Importer/Tracker_XML_Importer_CopyArtifactInformationsAggregatorTest.php | +11 | −11 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/BindOpenValueForDuckTypingUpdaterTest.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/BindValueForDuckTypingUpdaterTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/FieldChangeArtifactLinksUpdaterTest.php | +3 | −3 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/MoveChangesetXMLDuckTypingUpdaterTest.php | +55 | −55 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/MoveChangesetXMLUpdaterTest.php | +14 | −14 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/OpenListUserGroupsByDuckTypingUpdaterTest.php | +10 | −10 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker/XML/Updater/PermissionsByDuckTypingUpdaterTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/TrackerXmlFieldsMapping_FromAnotherPlatformTest.php | +15 | −15 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker_Artifact_ChangesetTest.php | +52 | −52 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker_Artifact_ChangesetValue_DateTest.php | +13 | −13 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker_Artifact_ChangesetValue_IntegerTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker_Artifact_ChangesetValue_StringTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker_Artifact_Changeset_CommentTest.php | +12 | −12 | Go to diff View file |
M | plugins/tracker/tests/unit/Tracker_FormElement_FieldTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/Action/Rules/Tracker_Workflow_Action_Rules_EditRulesTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/FirstPossibleValueInListRetrieverTest.php | +6 | −6 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/PostAction/CIBuild/Transition_PostAction_CIBuildFactoryTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/PostAction/Field/Transition_PostAction_FieldFactoryTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/PostAction/Field/Transition_PostAction_Field_DateTest.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/Trigger/Tracker_Workflow_Trigger_RulesBuilderDataTest.php | +7 | −7 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/Trigger/Tracker_Workflow_Trigger_RulesManagerTest.php | +4 | −4 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/ValidValuesAccordingToTransitionsRetrieverTest.php | +5 | −5 | Go to diff View file |
M | plugins/tracker/tests/unit/Workflow/WorkflowTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker_date_reminder/include/ArtifactDateReminder.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker_date_reminder/include/ArtifactDateReminderFactory.class.php | +16 | −16 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminder_ArtifactField.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminder_ArtifactFieldHtml.class.php | +7 | −7 | Go to diff View file |
M | plugins/tracker_date_reminder/include/TrackerDateReminder_Logger.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker_date_reminder/include/tracker_date_reminderPlugin.php | +5 | −5 | Go to diff View file |
M | plugins/tracker_encryption/db/mysql/2017/201701251410_create_encrypted_field_tables.php | +3 | −3 | Go to diff View file |
M | plugins/tracker_encryption/include/Dao/TrackerPublicKeyDao.php | +4 | −4 | Go to diff View file |
M | plugins/tracker_encryption/include/Dao/ValueDao.php | +5 | −5 | Go to diff View file |
M | plugins/tracker_encryption/include/Tracker_FormElement_Field_Encrypted.class.php | +3 | −3 | Go to diff View file |
M | plugins/tracker_functions/include/TrackerFunctions/Administration/CustomCodeExecutionHistorySaver.php | +1 | −1 | Go to diff View file |
M | plugins/tracker_functions/include/TrackerFunctions/WASM/ExecuteWASMResponse.php | +1 | −1 | Go to diff View file |
M | plugins/tracker_functions/tests/unit/TrackerFunctions/CustomCodeExecutionTaskTest.php | +2 | −2 | Go to diff View file |
M | plugins/tracker_functions/tests/unit/TrackerFunctions/WASM/ProcessWASMResponseTest.php | +2 | −2 | Go to diff View file |
M | plugins/userlog/db/mysql/2021/202109291736_correct_request_method_to_allow_patch.php | +1 | −1 | Go to diff View file |
M | plugins/userlog/include/UserLogRouter.php | +1 | −1 | Go to diff View file |
M | plugins/velocity/db/mysql/updates/2018/201803211554_create_velocity_semantic_table.php | +2 | −2 | Go to diff View file |
M | plugins/velocity/db/mysql/updates/2019/201903221356_update_semantic_field_primary_key.php | +3 | −3 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/BacklogRequiredTrackerCollectionFormatter.php | +8 | −8 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/ChildrenRequiredTrackerCollection.php | +5 | −5 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/RequiredTrackerPresenter.php | +3 | −3 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/SemanticVelocity.php | +7 | −7 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/SemanticVelocityAdminPresenter.php | +9 | −9 | Go to diff View file |
M | plugins/velocity/include/Velocity/Semantic/SemanticVelocityPresenter.php | +1 | −1 | Go to diff View file |
M | plugins/velocity/include/Velocity/VelocityRepresentation.php | +1 | −1 | Go to diff View file |
M | plugins/velocity/include/velocityPlugin.php | +5 | −5 | Go to diff View file |
M | plugins/velocity/tests/unit/Velocity/VelocityRepresentationBuilderTest.php | +10 | −10 | Go to diff View file |
M | plugins/webdav/include/BrowserPlugin.class.php | +27 | −27 | Go to diff View file |
M | plugins/webdav/tests/unit/WebDAVDocmanFolderTest.php | +1 | −1 | Go to diff View file |
M | plugins/webdav/tests/unit/WebDAVFRSReleaseTest.php | +10 | −10 | Go to diff View file |
M | src/common/BrowserDetection/BrowserDeprecationMessage.php | +1 | −1 | Go to diff View file |
M | src/common/CLI/Command/ConfigResetCommand.php | +1 | −1 | Go to diff View file |
M | src/common/CLI/Command/ConfigSetCommand.php | +1 | −1 | Go to diff View file |
M | src/common/CLI/Command/ImportProjectXMLCommand.php | +28 | −28 | Go to diff View file |
M | src/common/CLI/Command/UserPasswordCommand.php | +1 | −1 | Go to diff View file |
M | src/common/Config/ConfigDao.php | +2 | −2 | Go to diff View file |
M | src/common/Cryptography/SecretKeyFileOnFileSystem.php | +3 | −3 | Go to diff View file |
M | src/common/DB/ThereIsAnOngoingTransactionChecker.php | +1 | −1 | Go to diff View file |
M | src/common/Dashboard/Project/DashboardXMLExporter.php | +4 | −4 | Go to diff View file |
M | src/common/Dashboard/Project/DisplayCreatedProjectModalPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/Dashboard/Project/ProjectDashboardController.php | +1 | −1 | Go to diff View file |
M | src/common/Dashboard/Project/ProjectDashboardDao.php | +10 | −10 | Go to diff View file |
M | src/common/Dashboard/Project/ProjectDashboardXMLImporter.php | +4 | −4 | Go to diff View file |
M | src/common/Dashboard/Widget/DashboardWidgetDao.php | +5 | −5 | Go to diff View file |
M | src/common/Dashboard/XML/XMLLine.php | +1 | −1 | Go to diff View file |
M | src/common/Date/Admin/RelativeDatesDisplaySaveController.php | +1 | −1 | Go to diff View file |
M | src/common/Date/DateHelper.php | +5 | −5 | Go to diff View file |
M | src/common/Date/TlpRelativeDatePresenterBuilder.php | +6 | −6 | Go to diff View file |
M | src/common/Error/PermissionDeniedMailSender.php | +3 | −3 | Go to diff View file |
M | src/common/Error/PermissionDeniedPrivateProjectController.php | +4 | −4 | Go to diff View file |
M | src/common/Error/PermissionDeniedRestrictedAccountController.php | +2 | −2 | Go to diff View file |
M | src/common/Error/PermissionDeniedRestrictedAccountProjectController.php | +4 | −4 | Go to diff View file |
M | src/common/Error/PlaceHolderBuilder.php | +2 | −2 | Go to diff View file |
M | src/common/Error/ProjectAccessSuspendedController.php | +2 | −2 | Go to diff View file |
M | src/common/FRS/CorrectFrsRepositoryPermissionsCommand.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/Events/GetReleaseNotesLink.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/FRSFileFactory.class.php | +16 | −16 | Go to diff View file |
M | src/common/FRS/FRSMetricsDAO.php | +12 | −12 | Go to diff View file |
M | src/common/FRS/FRSPackageController.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/FRSPackagePermissionPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/FRSPermissionCreator.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/FRSPermissionDao.php | +2 | −2 | Go to diff View file |
M | src/common/FRS/FRSReleaseFactory.class.php | +2 | −2 | Go to diff View file |
M | src/common/FRS/FRSReleasePermissionPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/FRSRouter.php | +2 | −2 | Go to diff View file |
M | src/common/FRS/FRSValidator.php | +2 | −2 | Go to diff View file |
M | src/common/FRS/FRSXMLImporter.class.php | +9 | −9 | Go to diff View file |
M | src/common/FRS/FileModuleMonitorFactory.class.php | +3 | −3 | Go to diff View file |
M | src/common/FRS/LicenseAgreement/LicenseAgreementDisplay.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/PermissionsPerGroup/FRSPermissionPerGroupURLBuilder.php | +2 | −2 | Go to diff View file |
M | src/common/FRS/PermissionsPerGroup/PackagePermissionPerGroupJSONRepresentationRetriever.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/PermissionsPerGroup/PackagePermissionPerGroupReleaseRepresentationBuilder.php | +4 | −4 | Go to diff View file |
M | src/common/FRS/PermissionsPerGroup/PackagePermissionPerGroupRepresentationBuilder.php | +3 | −3 | Go to diff View file |
M | src/common/FRS/ServiceFile.class.php | +5 | −5 | Go to diff View file |
M | src/common/FRS/UploadedLinkPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/FRS/UploadedLinksRequestFormatter.php | +3 | −3 | Go to diff View file |
M | src/common/ForgeAccess/AdminController.php | +1 | −1 | Go to diff View file |
M | src/common/ForgeAccess/ForgeAccess.php | +2 | −2 | Go to diff View file |
M | src/common/ForgeUpgrade/ForgeUpgrade.php | +12 | −12 | Go to diff View file |
M | src/common/Forum/ForumDao.php | +2 | −2 | Go to diff View file |
M | src/common/Forum/MessageRetriever.php | +5 | −5 | Go to diff View file |
M | src/common/HelpDropdown/HelpDropdownPresenterBuilder.php | +6 | −6 | Go to diff View file |
M | src/common/HelpDropdown/ReleaseLinkDao.php | +4 | −4 | Go to diff View file |
M | src/common/HelpDropdown/ReleaseNoteManager.php | +3 | −3 | Go to diff View file |
M | src/common/HelpDropdown/TuleapVersionNotExtractedException.php | +1 | −1 | Go to diff View file |
M | src/common/Http/Client/FilteredOutboundHTTPResponseAlerter.php | +2 | −2 | Go to diff View file |
M | src/common/Http/Client/OutboundHTTPRequestProxy.php | +1 | −1 | Go to diff View file |
M | src/common/Http/Client/OutboundHTTPRequestSettings.php | +2 | −2 | Go to diff View file |
M | src/common/Http/Client/SmokescreenConfiguration.php | +1 | −1 | Go to diff View file |
M | src/common/Http/Response/Stream/CallbackNoBufferStream.php | +1 | −1 | Go to diff View file |
M | src/common/Http/Server/Authentication/BasicAuthLoginExtractor.php | +1 | −1 | Go to diff View file |
M | src/common/Instrument/Prometheus/Prometheus.php | +2 | −2 | Go to diff View file |
M | src/common/InviteBuddy/AccountCreationFeedback.php | +2 | −2 | Go to diff View file |
M | src/common/InviteBuddy/AccountCreationFeedbackEmailNotifier.php | +1 | −1 | Go to diff View file |
M | src/common/InviteBuddy/Admin/InviteBuddyAdminController.php | +1 | −1 | Go to diff View file |
M | src/common/InviteBuddy/Admin/InviteBuddyAdminUpdateController.php | +4 | −4 | Go to diff View file |
M | src/common/InviteBuddy/InvitationCleaner.php | +1 | −1 | Go to diff View file |
M | src/common/InviteBuddy/InvitationDao.php | +5 | −5 | Go to diff View file |
M | src/common/InviteBuddy/InvitationEmailLoginPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/InviteBuddy/InvitationEmailNotifier.php | +7 | −7 | Go to diff View file |
M | src/common/InviteBuddy/InvitationEmailRegisterPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/InviteBuddy/InvitationLimitChecker.php | +9 | −9 | Go to diff View file |
M | src/common/InviteBuddy/InvitationSender.php | +2 | −2 | Go to diff View file |
M | src/common/InviteBuddy/InvitationSenderGateKeeper.php | +1 | −1 | Go to diff View file |
M | src/common/InviteBuddy/InviteBuddyConfiguration.php | +1 | −1 | Go to diff View file |
M | src/common/InviteBuddy/ProjectMemberAccordingToInvitationAdder.php | +3 | −3 | Go to diff View file |
M | src/common/JWT/generators/MercureJWTGeneratorBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Layout/BaseLayout.php | +2 | −2 | Go to diff View file |
M | src/common/Layout/HomePage/NewsCollectionBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Layout/HomePage/StatisticsCollectionBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Layout/Layout.class.php | +7 | −7 | Go to diff View file |
M | src/common/Layout/Logo/CachedCustomizedLogoDetector.php | +2 | −2 | Go to diff View file |
M | src/common/Layout/ProjectSidebar/Internationalization/ProjectSidebarInternationalization.php | +7 | −7 | Go to diff View file |
M | src/common/Layout/ServiceUrlCollector.php | +1 | −1 | Go to diff View file |
M | src/common/Log/LogToGraylog2.php | +4 | −4 | Go to diff View file |
M | src/common/Mail/Codendi_Mail.class.php | +1 | −1 | Go to diff View file |
M | src/common/Mail/MailFilter.php | +10 | −10 | Go to diff View file |
M | src/common/Mail/MailPresenterFactory.class.php | +37 | −37 | Go to diff View file |
M | src/common/Mail/MailProjectNotificationMustBeApprovedPresenter.class.php | +1 | −1 | Go to diff View file |
M | src/common/Mail/MailProjectNotificationPresenter.class.php | +1 | −1 | Go to diff View file |
M | src/common/Mail/MailProjectOneStepRegisterPresenter.class.php | +3 | −3 | Go to diff View file |
M | src/common/Mail/MassmailSender.class.php | +1 | −1 | Go to diff View file |
M | src/common/Mail/Transport/MailTransportBuilder.php | +2 | −2 | Go to diff View file |
M | src/common/Mail/Transport/SmtpOptions/SmtpOptionsBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Mail/TuleapRegisterMail.class.php | +6 | −6 | Go to diff View file |
M | src/common/News/Admin/AdminNewsDao.php | +1 | −1 | Go to diff View file |
M | src/common/News/Admin/PermissionsPerGroup/NewsJSONPermissionsRetriever.php | +1 | −1 | Go to diff View file |
M | src/common/OAuth2ServerCore/App/AppDao.php | +2 | −2 | Go to diff View file |
M | src/common/OAuth2ServerCore/App/OAuth2AppNotFoundException.php | +1 | −1 | Go to diff View file |
M | src/common/Platform/Banner/BannerDao.php | +1 | −1 | Go to diff View file |
M | src/common/Platform/Banner/CannotCreateAnAlreadyExpiredBannerException.php | +1 | −1 | Go to diff View file |
M | src/common/Platform/Banner/REST/v1/BannerResource.php | +1 | −1 | Go to diff View file |
M | src/common/Plugin/Plugin.php | +1 | −1 | Go to diff View file |
M | src/common/Plugin/PluginFactory.php | +1 | −1 | Go to diff View file |
M | src/common/Plugin/PluginInstallCommand.php | +2 | −2 | Go to diff View file |
M | src/common/Plugin/PluginLoader.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Categories/InvalidValueForRootCategoryException.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Categories/MissingMandatoryCategoriesException.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Categories/NbMaxValuesException.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Categories/NotRootCategoryException.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Categories/UpdateController.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Admin/DescriptionFields/DescriptionFieldAdminPresenterBuilder.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Admin/DescriptionFields/FieldUpdator.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Admin/Export/ProjectExportController.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Navigation/HeaderNavigationDisplayer.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Admin/Navigation/NavigationPermissionsDropdownPresenterBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Navigation/NavigationPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Navigation/NavigationPresenterBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/ProjectDetails/ProjectDetailsController.php | +16 | −16 | Go to diff View file |
M | src/common/Project/Admin/ProjectHistoryResultsPresenter.php | +9 | −9 | Go to diff View file |
M | src/common/Project/Admin/ProjectHistorySearchPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/ProjectMembers/ProjectMembersAdditionalModalCollectionPresenter.php | +3 | −3 | Go to diff View file |
M | src/common/Project/Admin/ProjectMembers/ProjectMembersController.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/ProjectRenameChecker.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/ProjectUGroup/BindingController.php | +3 | −3 | Go to diff View file |
M | src/common/Project/Admin/ProjectUGroup/Details/MemberPresenter.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Admin/ProjectVisibilityPresenter.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Admin/Reference/Browse/LegacyReferenceAdministrationBrowsingRenderer.php | +3 | −3 | Go to diff View file |
M | src/common/Project/Admin/Reference/ReferenceAdministrationActions.class.php | +3 | −3 | Go to diff View file |
M | src/common/Project/Admin/Reference/ReferenceAdministrationViews.php | +9 | −9 | Go to diff View file |
M | src/common/Project/Admin/Service/ProjectServiceActivator.php | +3 | −3 | Go to diff View file |
M | src/common/Project/Admin/Visibility/UpdateVisibilityChecker.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Banner/BannerDao.php | +2 | −2 | Go to diff View file |
M | src/common/Project/DefaultProjectVisibilityRetriever.php | +1 | −1 | Go to diff View file |
M | src/common/Project/DescriptionFieldsDao.php | +4 | −4 | Go to diff View file |
M | src/common/Project/Email/EmailCopier.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Event/GetUriFromCrossReference.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Event/ProjectUnixNameIsEditable.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Group.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Icons/EmojiCodepointConverter.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Label/IndexPresenter.php | +2 | −2 | Go to diff View file |
M | src/common/Project/ProjectBackground/ProjectBackground.php | +1 | −1 | Go to diff View file |
M | src/common/Project/ProjectBackground/ProjectBackgroundDao.php | +1 | −1 | Go to diff View file |
M | src/common/Project/ProjectCreationData.php | +9 | −9 | Go to diff View file |
M | src/common/Project/ProjectCreationDataServiceFromXmlInheritor.php | +1 | −1 | Go to diff View file |
M | src/common/Project/ProjectCreationNotifier.php | +1 | −1 | Go to diff View file |
M | src/common/Project/ProjectCreator.class.php | +19 | −19 | Go to diff View file |
M | src/common/Project/ProjectManager.class.php | +6 | −6 | Go to diff View file |
M | src/common/Project/ProjectXMLExporter.class.php | +4 | −4 | Go to diff View file |
M | src/common/Project/ProjectXMLImporter.class.php | +15 | −15 | Go to diff View file |
M | src/common/Project/REST/HeartbeatsEntryRepresentation.php | +2 | −2 | Go to diff View file |
M | src/common/Project/REST/v1/GetProjectsQueryChecker.php | +3 | −3 | Go to diff View file |
M | src/common/Project/REST/v1/Project/PostProjectCreated.php | +1 | −1 | Go to diff View file |
M | src/common/Project/REST/v1/Project/ProjectCreationDataPOSTProjectBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Project/REST/v1/Project/ProjectRepresentationBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/Project/REST/v1/ProjectResource.class.php | +4 | −4 | Go to diff View file |
M | src/common/Project/REST/v1/UserGroupResource.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Registration/AnonymousNotAllowedException.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/LimitedToSiteAdministratorsException.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/MaxNumberOfProjectReachedForPlatformException.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/MaxNumberOfProjectReachedForUserException.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/ProjectDescriptionMandatoryException.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Registration/ProjectInvalidFullNameException.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/ProjectInvalidShortNameException.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/ProjectRegistrationController.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Registration/RestrictedUsersNotAllowedException.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/Template/AgileALMTemplate.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Registration/Template/CustomProjectArchiveFeatureFlag.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Registration/Template/EmptyTemplate.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Registration/Template/Upload/ProjectArchiveOngoingUploadDao.php | +1 | −1 | Go to diff View file |
M | src/common/Project/RestrictedUserCanAccessUrlOrProjectVerifier.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Service.class.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Service/AddController.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Service/ServiceCreator.php | +1 | −1 | Go to diff View file |
M | src/common/Project/Service/ServiceDisabledCollector.php | +2 | −2 | Go to diff View file |
M | src/common/Project/Service/ServicePOSTDataBuilder.php | +2 | −2 | Go to diff View file |
M | src/common/Project/ServiceManager.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/SystemEventRunner.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/UGroupManager.class.php | +1 | −1 | Go to diff View file |
M | src/common/Project/UGroups/Membership/DynamicUGroups/DynamicUGroupMembersUpdater.php | +2 | −2 | Go to diff View file |
M | src/common/Project/UserRemover.php | +1 | −1 | Go to diff View file |
M | src/common/Project/XML/Export/ZipArchive.php | +1 | −1 | Go to diff View file |
M | src/common/Project/XML/InvalidXMLContentFault.php | +2 | −2 | Go to diff View file |
M | src/common/Project/XML/XMLFileContentRetriever.php | +2 | −2 | Go to diff View file |
M | src/common/Queue/NbBackendWorkersConfigValidator.php | +2 | −2 | Go to diff View file |
M | src/common/Queue/Redis/RedisPersistentQueue.php | +2 | −2 | Go to diff View file |
M | src/common/Queue/Worker.php | +2 | −2 | Go to diff View file |
M | src/common/Queue/WorkerEventProcessorFinder.php | +1 | −1 | Go to diff View file |
M | src/common/REST/Event/GetAdditionalCriteria.php | +1 | −1 | Go to diff View file |
M | src/common/REST/Exceptions/InvalidTokenException.class.php | +1 | −1 | Go to diff View file |
M | src/common/REST/Header.class.php | +2 | −2 | Go to diff View file |
M | src/common/REST/I18NRestException.php | +1 | −1 | Go to diff View file |
M | src/common/REST/ProjectAuthorization.php | +3 | −3 | Go to diff View file |
M | src/common/REST/v1/ProjectFieldRepresentation.php | +1 | −1 | Go to diff View file |
M | src/common/RSS/RSS.php | +1 | −1 | Go to diff View file |
M | src/common/RealTimeMercure/MercureClient.php | +3 | −3 | Go to diff View file |
M | src/common/Reference/CheckCrossReferenceValidityEvent.php | +1 | −1 | Go to diff View file |
M | src/common/Reference/CrossReference.php | +4 | −4 | Go to diff View file |
M | src/common/Reference/CrossReferenceByNatureOrganizer.php | +1 | −1 | Go to diff View file |
M | src/common/Reference/CrossReferenceFactory.php | +8 | −8 | Go to diff View file |
M | src/common/Reference/CrossReferencesDao.php | +18 | −18 | Go to diff View file |
M | src/common/Reference/NatureCollection.php | +1 | −1 | Go to diff View file |
M | src/common/Reference/Presenters/CrossReferenceByNaturePresenterBuilder.php | +3 | −3 | Go to diff View file |
M | src/common/Reference/Presenters/CrossReferenceFieldPresenter.php | +2 | −2 | Go to diff View file |
M | src/common/Reference/Presenters/CrossReferenceLinkListPresenterBuilder.php | +3 | −3 | Go to diff View file |
M | src/common/Reference/Presenters/CrossReferenceLinkPresenterCollectionBuilder.php | +12 | −12 | Go to diff View file |
M | src/common/Reference/Reference.php | +1 | −1 | Go to diff View file |
M | src/common/Reference/ReferenceManager.php | +6 | −6 | Go to diff View file |
M | src/common/Reference/ReferenceOpenGraph.php | +1 | −1 | Go to diff View file |
M | src/common/Reference/ReferenceValidator.php | +1 | −1 | Go to diff View file |
M | src/common/Reference/ReservedKeywordsRetriever.php | +26 | −26 | Go to diff View file |
M | src/common/Request/RouteCollector.php | +5 | −5 | Go to diff View file |
M | src/common/SVNCore/Cache/ParameterDao.php | +1 | −1 | Go to diff View file |
M | src/common/SVNCore/SVNAccessFileReader.php | +1 | −1 | Go to diff View file |
M | src/common/SVNCore/SVNAccessFileSectionParser.php | +1 | −1 | Go to diff View file |
M | src/common/SVNCore/SVN_Apache.class.php | +3 | −3 | Go to diff View file |
M | src/common/SVNCore/SVN_Apache_SvnrootConf.class.php | +1 | −1 | Go to diff View file |
M | src/common/SVNCore/SVN_LogDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/SVNCore/Tokens/SVN_TokenDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/Search/Presenters/SearchForumResultPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/Search/SearchTrackerV3.class.php | +12 | −12 | Go to diff View file |
M | src/common/Service/ServiceCreator.php | +1 | −1 | Go to diff View file |
M | src/common/System/DaemonLocker.php | +1 | −1 | Go to diff View file |
M | src/common/System/ServiceControl.php | +1 | −1 | Go to diff View file |
M | src/common/User/AccessKey/AccessKeyCreationController.php | +2 | −2 | Go to diff View file |
M | src/common/User/AccessKey/REST/AccessKeyResource.php | +1 | −1 | Go to diff View file |
M | src/common/User/Account/Appearance/LanguagePresenterBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/User/Account/LostPassword/LostPasswordController.php | +3 | −3 | Go to diff View file |
M | src/common/User/Account/Register/ConfirmationHashEmailSender.php | +1 | −1 | Go to diff View file |
M | src/common/User/Account/Register/ConfirmationPageDisplayer.php | +8 | −8 | Go to diff View file |
M | src/common/User/Account/Register/NewUserByAdminEmailSender.php | +1 | −1 | Go to diff View file |
M | src/common/User/Account/Register/RegisterFormHandler.php | +2 | −2 | Go to diff View file |
M | src/common/User/Admin/PendingProjectBuilder.php | +1 | −1 | Go to diff View file |
M | src/common/User/Admin/UserDetailsPresenter.php | +1 | −1 | Go to diff View file |
M | src/common/User/Admin/UserListResultsPresenter.php | +5 | −5 | Go to diff View file |
M | src/common/User/Admin/UserListSearchFieldsPresenter.php | +9 | −9 | Go to diff View file |
M | src/common/User/ForgeUserGroupPermission.class.php | +1 | −1 | Go to diff View file |
M | src/common/User/Password/Reset/LostPasswordDAO.php | +5 | −5 | Go to diff View file |
M | src/common/User/Profile/ProfileController.php | +1 | −1 | Go to diff View file |
M | src/common/User/REST/v1/UserMembershipRepresentation.class.php | +1 | −1 | Go to diff View file |
M | src/common/User/REST/v1/UserResource.php | +10 | −10 | Go to diff View file |
M | src/common/User/Settings/UserSettingsController.php | +1 | −1 | Go to diff View file |
M | src/common/User/Settings/UserSettingsUpdateController.php | +1 | −1 | Go to diff View file |
M | src/common/User/User.class.php | +3 | −3 | Go to diff View file |
M | src/common/User/UserHelper.class.php | +4 | −4 | Go to diff View file |
M | src/common/User/UserImport.class.php | +1 | −1 | Go to diff View file |
M | src/common/User/UserImportCollection.php | +3 | −3 | Go to diff View file |
M | src/common/User/UserManager.class.php | +2 | −2 | Go to diff View file |
M | src/common/User/UserNameNormalizer.php | +1 | −1 | Go to diff View file |
M | src/common/User/UserStatusManager.class.php | +1 | −1 | Go to diff View file |
M | src/common/User/UserSuspensionManager.php | +26 | −26 | Go to diff View file |
M | src/common/User/XML/Import/MappingFileOptimusPrimeTransformer.php | +2 | −2 | Go to diff View file |
M | src/common/User/XML/Import/UsersXMLNotFoundException.php | +1 | −1 | Go to diff View file |
M | src/common/WebAssembly/FFIWASMCaller.php | +5 | −5 | Go to diff View file |
M | src/common/Widget/Event/GetProjectsWithCriteria.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Event/UserWithStarBadgeCollector.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/MyProjects.php | +9 | −9 | Go to diff View file |
M | src/common/Widget/Note/Note.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/ProjectHeartbeat.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/ProjectMembers/ProjectMembers.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Widget.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Widget_ImageViewer.class.php | +2 | −2 | Go to diff View file |
M | src/common/Widget/Widget_MyAdmin.class.php | +4 | −4 | Go to diff View file |
M | src/common/Widget/Widget_MyArtifacts.class.php | +13 | −13 | Go to diff View file |
M | src/common/Widget/Widget_MyBookmarks.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Widget_MyMonitoredForums.class.php | +13 | −13 | Go to diff View file |
M | src/common/Widget/Widget_MyMonitoredFp.class.php | +13 | −13 | Go to diff View file |
M | src/common/Widget/Widget_ProjectDescription.class.php | +1 | −1 | Go to diff View file |
M | src/common/Widget/Widget_ProjectPublicAreas.class.php | +10 | −10 | Go to diff View file |
M | src/common/Widget/Widget_Rss.class.php | +4 | −4 | Go to diff View file |
M | src/common/Widget/Widget_Static.class.php | +5 | −5 | Go to diff View file |
M | src/common/admin/Admin_ProjectListExporter.class.php | +3 | −3 | Go to diff View file |
M | src/common/admin/Admin_UserListExporter.class.php | +1 | −1 | Go to diff View file |
M | src/common/admin/HelpDropdown/AdminReleaseNoteLinkController.php | +2 | −2 | Go to diff View file |
M | src/common/admin/HelpDropdown/PostAdminReleaseNoteLinkController.php | +4 | −4 | Go to diff View file |
M | src/common/admin/Homepage/Dao.php | +2 | −2 | Go to diff View file |
M | src/common/admin/Homepage/LogoFinder.php | +4 | −4 | Go to diff View file |
M | src/common/admin/PendingElements/PendingDocumentsRetriever.php | +1 | −1 | Go to diff View file |
M | src/common/admin/ProjectCreation/ProjectFields/ProjectFieldsDao.php | +15 | −15 | Go to diff View file |
M | src/common/admin/ProjectCreation/ProjectFields/ProjectFieldsDisplayController.php | +1 | −1 | Go to diff View file |
M | src/common/admin/ProjectCreation/ProjectFields/ProjectsFieldDescriptionUpdater.php | +1 | −1 | Go to diff View file |
M | src/common/admin/ProjectCreation/ProjectVisibility/ProjectVisibilityConfigManager.php | +1 | −1 | Go to diff View file |
M | src/common/admin/ProjectEdit/ProjectEditController.php | +1 | −1 | Go to diff View file |
M | src/common/backend/BackendAliases.class.php | +12 | −12 | Go to diff View file |
M | src/common/backend/BackendLogger.class.php | +1 | −1 | Go to diff View file |
M | src/common/backend/BackendSVN.class.php | +5 | −5 | Go to diff View file |
M | src/common/backend/BackendSystem.class.php | +2 | −2 | Go to diff View file |
M | src/common/chart/Chart.class.php | +4 | −4 | Go to diff View file |
M | src/common/chart/Chart_Gantt.class.php | +1 | −1 | Go to diff View file |
M | src/common/chart/Chart_GanttBar.class.php | +1 | −1 | Go to diff View file |
M | src/common/chart/Chart_GanttMilestone.class.php | +1 | −1 | Go to diff View file |
M | src/common/chart/ColorsForCharts.php | +442 | −442 | Go to diff View file |
M | src/common/dao/ArtifactFieldDao.class.php | +4 | −4 | Go to diff View file |
M | src/common/dao/ArtifactGlobalNotificationDao.class.php | +10 | −10 | Go to diff View file |
M | src/common/dao/ArtifactReportFieldDao.class.php | +14 | −14 | Go to diff View file |
M | src/common/dao/ArtifactRuleDao.class.php | +22 | −22 | Go to diff View file |
M | src/common/dao/FRSFileDao.class.php | +17 | −17 | Go to diff View file |
M | src/common/dao/FRSFileTypeDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/dao/FRSPackageDao.class.php | +1 | −1 | Go to diff View file |
M | src/common/dao/FRSProcessorDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/dao/FRSReleaseDao.class.php | +7 | −7 | Go to diff View file |
M | src/common/dao/FileModuleMonitorDao.class.php | +19 | −19 | Go to diff View file |
M | src/common/dao/MailGatewaySaltDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/dao/PermissionsDao.class.php | +10 | −10 | Go to diff View file |
M | src/common/dao/PluginDao.class.php | +11 | −11 | Go to diff View file |
M | src/common/dao/ProjectDao.class.php | +12 | −12 | Go to diff View file |
M | src/common/dao/ProjectHistoryDao.class.php | +1 | −1 | Go to diff View file |
M | src/common/dao/ReferenceDao.class.php | +26 | −26 | Go to diff View file |
M | src/common/dao/SystemEventDao.class.php | +9 | −9 | Go to diff View file |
M | src/common/dao/TrackerIdSharingDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/dao/UGroupDao.class.php | +6 | −6 | Go to diff View file |
M | src/common/dao/UGroupUserDao.class.php | +1 | −1 | Go to diff View file |
M | src/common/dao/UserDao.class.php | +15 | −15 | Go to diff View file |
M | src/common/dao/UserGroupDao.class.php | +8 | −8 | Go to diff View file |
M | src/common/dao/include/DataAccessObject.class.php | +3 | −3 | Go to diff View file |
M | src/common/encoding/SupportedXmlCharEncoding.class.php | +2 | −2 | Go to diff View file |
M | src/common/html/HTML_Element_Input_Date.class.php | +2 | −2 | Go to diff View file |
M | src/common/html/HTML_Element_Selectbox.class.php | +2 | −2 | Go to diff View file |
M | src/common/html/HTML_Element_Selectbox_Scale.class.php | +1 | −1 | Go to diff View file |
M | src/common/html/HTML_Element_Selectbox_TrackerFields_Dates.class.php | +1 | −1 | Go to diff View file |
M | src/common/html/HTML_Element_Selectbox_TrackerFields_Int_TextFields.class.php | +1 | −1 | Go to diff View file |
M | src/common/html/HTML_Element_Selectbox_TrackerFields_Numerics.class.php | +1 | −1 | Go to diff View file |
M | src/common/html/HTML_Element_Selectbox_TrackerFields_Selectboxes.class.php | +1 | −1 | Go to diff View file |
M | src/common/html/HTML_Element_Selectbox_TrackerFields_Texts.class.php | +1 | −1 | Go to diff View file |
M | src/common/include/Codendi_BlockDiffFormatter.php | +3 | −3 | Go to diff View file |
M | src/common/include/Codendi_Diff.php | +1 | −1 | Go to diff View file |
M | src/common/include/Codendi_DiffFormatter.php | +5 | −5 | Go to diff View file |
M | src/common/include/Codendi_DiffOp.php | +1 | −1 | Go to diff View file |
M | src/common/include/Codendi_HTMLPurifier.class.php | +1 | −1 | Go to diff View file |
M | src/common/include/Codendi_HWLDF_WordAccumulator.php | +3 | −3 | Go to diff View file |
M | src/common/include/Codendi_HtmlUnifiedDiffFormatter.php | +1 | −1 | Go to diff View file |
M | src/common/include/Codendi_UnifiedDiffFormatter.php | +4 | −4 | Go to diff View file |
M | src/common/include/GroupFactory.class.php | +4 | −4 | Go to diff View file |
M | src/common/include/TemplateSingleton.class.php | +1 | −1 | Go to diff View file |
M | src/common/include/URL.class.php | +2 | −2 | Go to diff View file |
M | src/common/include/URLVerification.class.php | +1 | −1 | Go to diff View file |
M | src/common/language/BaseLanguage.class.php | +8 | −8 | Go to diff View file |
M | src/common/resource_restrictor/RestrictedResourceDao.class.php | +5 | −5 | Go to diff View file |
M | src/common/system_event/SystemEvent.class.php | +32 | −32 | Go to diff View file |
M | src/common/system_event/SystemEventProcessor.class.php | +3 | −3 | Go to diff View file |
M | src/common/system_event/SystemEventProcessorMutex.class.php | +1 | −1 | Go to diff View file |
M | src/common/system_event/include/Massmail.php | +6 | −6 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_PROJECT_CREATE.class.php | +2 | −2 | Go to diff View file |
M | src/common/system_event/include/SystemEvent_PROJECT_DELETE.class.php | +6 | −6 | Go to diff View file |
M | src/common/templating/presenter/ButtonDropdownsOptionWithModal.class.php | +1 | −1 | Go to diff View file |
M | src/common/tracker/Artifact.class.php | +212 | −212 | Go to diff View file |
M | src/common/tracker/ArtifactFactory.class.php | +28 | −28 | Go to diff View file |
M | src/common/tracker/ArtifactField.class.php | +154 | −154 | Go to diff View file |
M | src/common/tracker/ArtifactFieldFactory.class.php | +52 | −52 | Go to diff View file |
M | src/common/tracker/ArtifactFieldSet.class.php | +5 | −5 | Go to diff View file |
M | src/common/tracker/ArtifactFieldSetFactory.class.php | +14 | −14 | Go to diff View file |
M | src/common/tracker/ArtifactFile.class.php | +5 | −5 | Go to diff View file |
M | src/common/tracker/ArtifactImport.class.php | +97 | −97 | Go to diff View file |
M | src/common/tracker/ArtifactReport.class.php | +139 | −139 | Go to diff View file |
M | src/common/tracker/ArtifactReportFactory.class.php | +20 | −20 | Go to diff View file |
M | src/common/tracker/ArtifactReportField.class.php | +5 | −5 | Go to diff View file |
M | src/common/tracker/ArtifactType.class.php | +98 | −98 | Go to diff View file |
M | src/common/tracker/ArtifactTypeFactory.class.php | +30 | −30 | Go to diff View file |
M | src/common/tracker/ArtifactXMLExporterArtifact.class.php | +5 | −5 | Go to diff View file |
M | src/common/tracker/ArtifactXMLExporterDao.class.php | +2 | −2 | Go to diff View file |
M | src/common/tracker/ArtifactXMLNodeHelper.class.php | +1 | −1 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactCannedHtml.class.php | +5 | −5 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactFieldHtml.class.php | +19 | −19 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactHtml.class.php | +18 | −18 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactImportHtml.class.php | +15 | −15 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactReportHtml.class.php | +27 | −27 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactRulesManagerHtml.class.php | +3 | −3 | Go to diff View file |
M | src/common/tracker/HTML/ArtifactTypeHtml.class.php | +207 | −207 | Go to diff View file |
M | src/common/trove/SoftwareMapPresenter.php | +7 | −7 | Go to diff View file |
M | src/common/trove/TroveCatCollectionRetriever.php | +2 | −2 | Go to diff View file |
M | src/common/trove/TroveCatDao.php | +2 | −2 | Go to diff View file |
M | src/common/trove/TroveCatListController.php | +10 | −10 | Go to diff View file |
M | src/common/valid/Rule_FRSFileName.php | +1 | −1 | Go to diff View file |
M | src/common/valid/Rule_ProjectName.php | +1 | −1 | Go to diff View file |
M | src/common/valid/Rule_RealName.php | +1 | −1 | Go to diff View file |
M | src/common/valid/Rule_UserName.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/Events/GetItemsReferencingWikiPageCollectionEvent.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/PermissionsPerGroup/PHPWikiPermissionPerGroupPaneBuilder.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/WikiService.class.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/actions/WikiServiceAdminActions.class.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/lib/Wiki.class.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/lib/WikiAttachment.class.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/lib/WikiAttachmentRevision.class.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/lib/WikiCloner.class.php | +33 | −33 | Go to diff View file |
M | src/common/wiki/lib/WikiPage.class.php | +67 | −67 | Go to diff View file |
M | src/common/wiki/lib/WikiPageWrapper.class.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/codendi.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/phpwiki/index.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ASCIIMathPHP/ASCIIMathPHP.class.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/BlockParser.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/CachedMarkup.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/DbaDatabase.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/DbaListSet.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/EditToolbar.php | +120 | −120 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ErrorManager.php | +17 | −17 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ExternalReferrer.php | +49 | −49 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/FileFinder.php | +19 | −19 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/HtmlElement.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/HtmlParser.php | +39 | −39 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/IniConfig.php | +40 | −40 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/InlineParser.php | +34 | −34 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/PageList.php | +41 | −41 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/PagePerm.php | +24 | −24 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/PageType.php | +24 | −24 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RSSWriter091.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/Request.php | +29 | −29 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RssParser.php | +42 | −42 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RssWriter.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/RssWriter2.php | +15 | −15 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/SemanticWeb.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/Template.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/TextSearchQuery.php | +35 | −35 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/Theme.php | +46 | −46 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiCallback.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB.php | +40 | −40 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/SQL.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend.php | +21 | −21 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/PearDB.php | +76 | −76 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/PearDB_mysql.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiDB/backend/dumb/TextSearchIter.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiGroup.php | +19 | −19 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiPlugin.php | +13 | −13 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiPluginCached.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiUser.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/WikiUserNew.php | +80 | −80 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/XmlElement.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/XmlParserPHPWiki.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/config.php | +15 | −15 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/diff.php | +22 | −22 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/diff3.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/difflib.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/display.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/editpage.php | +34 | −34 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/fortune.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/gif.php | +21 | −21 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/install.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/loadsave.php | +84 | −84 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/main.php | +104 | −104 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/pear/PEAR.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AddComment.php | +13 | −13 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AllPages.php | +10 | −10 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AllUsers.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AppendText.php | +15 | −15 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AsciiMath.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/AuthorHistory.php | +18 | −18 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/BackLinks.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/BlogArchives.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/BlogJournal.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Calendar.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CalendarList.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CategoryPage.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Comment.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CreateBib.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CreatePage.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/CreateToc.php | +33 | −33 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/DeadEndPages.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Diff.php | +25 | −25 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/EditMetaData.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/ExternalSearch.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FileInfo.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FrameInclude.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FullTextSearch.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/FuzzyPages.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/GoTo.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/HelloWorld.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/HtmlConverter.php | +27 | −27 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/IncludePage.php | +10 | −10 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/IncludePages.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/IncludeSiteMap.php | +2 | −2 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/InterWikiSearch.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/JabberPresence.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/LikePages.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/LinkDatabase.php | +18 | −18 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/ListPages.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/ListSubpages.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/MostPopular.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/NoCache.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/OldStyleTable.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/OrphanedPages.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageDump.php | +45 | −45 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageGroup.php | +26 | −26 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageHistory.php | +17 | −17 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageInfo.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PageTrail.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PhotoAlbum.php | +120 | −120 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PhpHighlight.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PluginManager.php | +15 | −15 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PopularNearby.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/PrevNext.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RandomPage.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RdfDefinition.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentChanges.php | +51 | −51 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentChangesCached.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentComments.php | +10 | −10 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RecentEdits.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RedirectTo.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RelatedChanges.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RichTable.php | +21 | −21 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/RssFeed.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SearchHighlight.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SiteMap.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SyntaxHighlighter.php | +14 | −14 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/SystemInfo.php | +48 | −48 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Template.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/TitleSearch.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/Transclude.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/TranslateText.php | +20 | −20 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/UnfoldSubpages.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/UpLoad.php | +24 | −24 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/UserPreferences.php | +17 | −17 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WantedPages.php | +10 | −10 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WantedPagesOld.php | +17 | −17 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminChmod.php | +24 | −24 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminChown.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminMarkup.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminRemove.php | +18 | −18 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminRename.php | +23 | −23 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminSearchReplace.php | +23 | −23 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminSelect.php | +16 | −16 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminSetAcl.php | +34 | −34 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiAdminUtils.php | +29 | −29 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiBlog.php | +22 | −22 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiForm.php | +7 | −7 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiFormRich.php | +19 | −19 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/WikiForum.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_AuthInfo.php | +32 | −32 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_BackendInfo.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_GroupInfo.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_PreferencesInfo.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/_WikiTranslation.php | +87 | −87 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/plugin/text2png.php | +19 | −19 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/prepend.php | +6 | −6 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/removepage.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/stdlib.php | +73 | −73 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/upgrade.php | +47 | −47 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/wikilens/Buddy.php | +11 | −11 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/wikilens/PageListColumns.php | +9 | −9 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/wikilens/Utils.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/lib/ziplib.php | +63 | −63 | Go to diff View file |
M | src/common/wiki/phpwiki/locale/fr/LC_MESSAGES/phpwiki.php | +2032 | −2032 | Go to diff View file |
M | src/common/wiki/phpwiki/passencrypt.php | +5 | −5 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi-light-printer-version/hyperapplet.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi-light-printer-version/hyperwiki.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi-light-printer-version/themeinfo.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi-lite/hyperapplet.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi-lite/hyperwiki.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi-lite/themeinfo.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi/hyperapplet.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi/hyperwiki.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Codendi/themeinfo.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Sidebar/clock.php | +1 | −1 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/Sidebar/themeinfo.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/default/hyperapplet.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/default/hyperwiki.php | +3 | −3 | Go to diff View file |
M | src/common/wiki/phpwiki/themes/default/themeinfo.php | +4 | −4 | Go to diff View file |
M | src/common/wiki/views/WikiServiceAdminViews.class.php | +12 | −12 | Go to diff View file |
M | src/common/wiki/views/WikiServiceViews.class.php | +8 | −8 | Go to diff View file |
M | src/common/wiki/views/WikiViews.class.php | +3 | −3 | Go to diff View file |
M | src/common/xml/RNGValidator.class.php | +2 | −2 | Go to diff View file |
M | src/core/goto.php | +3 | −3 | Go to diff View file |
M | src/core/sparklines.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2010/201012240808_add_table_frs_log.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2011/201111021759_id_sharing.php | +4 | −4 | Go to diff View file |
M | src/db/mysql/updates/2012/201201181909_add_index_on_svn_commits_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2012/201201231552_add_table_soap_limits.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2012/201210121809_purge_bad_sshkeys_from_db.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2013/201302091402_add_frs_file_comment.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2013/201305161743_remove_unique_from_svn_checkins.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2013/201306110951_add_parent_child_project_link_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2013/201307021504_remove_server.php.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2013/201310171433_add_rest_authentication_token_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2013/201311081011_remove_codex_themes.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2014/201403061540_add_forge_permissions_table.php | +5 | −5 | Go to diff View file |
M | src/db/mysql/updates/2014/201404281427_rename_experimental_to_flamingparrot.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2014/201405051118_add_svn_accessfile_history_table_with_first_version.php | +5 | −5 | Go to diff View file |
M | src/db/mysql/updates/2014/201405051133_modify_groups_table_to_use_svn_accessfile_history_id.php | +5 | −5 | Go to diff View file |
M | src/db/mysql/updates/2014/201405061202_modify_svn_accessfile_history_table.php | +5 | −5 | Go to diff View file |
M | src/db/mysql/updates/2014/201405071410_replace_svn_accessfile_column_name_in_groups.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2014/201405071644_replace_version_date_column_values_by_timestamp.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2014/201405141602_remove_fontsize_preference.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2014/201406041516_add_email_gateway_salt.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2014/201407041153_add_tour_usage_statistic_table.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2014/201407081125_add_missing_column_in_tour_usage_statistics.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2015/201503061743_add_homepage.php | +4 | −4 | Go to diff View file |
M | src/db/mysql/updates/2015/201503061743_add_homepage_headline.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2015/201503271456_add_forgeconfig.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201504081720_allow_restricted_project_access.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2015/201504091644_add_authenticated_user_group.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201504171343_restore_FRS_owner_group.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201505051630_add_new_password_field.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201505131103_project_admin_can_choose_visibility.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201506011450_increase_unix_password_field_size.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201506031610_add_svn_immutable_tags_whitelist_table.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2015/201506031658_enlarge_your_tinyint.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2015/201507152200_increase_session_ip_field_size.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201508171048_add_svn_immutable_tags_table.php | +5 | −5 | Go to diff View file |
M | src/db/mysql/updates/2015/201508241048_add_truncated_emails_column.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201508271443_add_index_on_system_event_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2015/201509020939_drop_priority_plugin_hook.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2015/201510011056_add_index_on_service_table.php | +4 | −4 | Go to diff View file |
M | src/db/mysql/updates/2015/201511231728_add_trovecat_mandatory_column.php | +3 | −3 | Go to diff View file |
M | src/db/mysql/updates/2015/201512171700_add_svn_token_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2015/201512281119_add_svn_token_usage_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2016/201601051638_add_trovecat_display_column.php | +5 | −5 | Go to diff View file |
M | src/db/mysql/updates/2016/201607221530_cleanup_csrf_token_from_userprefs.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2016/201607281135_create_plugin_frs_global_permissions.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2016/201607281200_migrate_existing_permissions.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2016/201608041530_migrate_existing_read_permissions.php | +7 | −7 | Go to diff View file |
M | src/db/mysql/updates/2016/201608091610_add_index_for_frs_permissions.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2016/201608291800_migrate_incoherent_permissions_for_release.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2016/201608298050_migrate_incoherent_permissions.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2016/201611031112_add_svn_cache_parameter_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2017/201705121210_update_table_user_dashboards.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2017/201705121719_update_table_project_dashboards.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2017/201706091011_migrate_old_dashboard.php | +18 | −18 | Go to diff View file |
M | src/db/mysql/updates/2017/201709261432_add_index_for_cross_references.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2017/201712131537_add_missing_index_in_table_group_desc_value.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2018/201801081147_add_project_membership_delegation.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2018/201801221530_remove_unusable_session.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2018/201804051645_add_missing_index_in_table_ugroup.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2018/201805171738_update_wrong_pk_forgeconfig.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2018/201810251455_add_user_ldap_index.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2019/201902061527_add_project_flag_info.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2019/201908071006_add_api_key_expiration_date.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2019/201909241447_add_project_banner_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2019/201910081629_add_index_on_system_events.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2019/201910291413_add_tables_for_frs_download_agreement.php | +4 | −4 | Go to diff View file |
M | src/db/mysql/updates/2019/201911071703_add_default_frs_agreement_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2019/201912061448_add_table_for_disabled_project_widgets.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2020/202007211933_add_has_custom_avatar_column.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2020/202009291619_create_invitations_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2020/202009301445_add_index_for_email_on_invitations_table.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2020/202010011135_add_created_user_id_on_invitations_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2020/202010060853_create_project_background_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2020/202011021100_add_platform_banner_table.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2020/202011261625_add_index_on_system_event.php | +1 | −1 | Go to diff View file |
M | src/db/mysql/updates/2021/202109241452_add_project_icon.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2023/2023120611315_add_project_dashboards_recently_visited.php | +2 | −2 | Go to diff View file |
M | src/db/mysql/updates/2023/202312151422_remove_svn_core_service.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph.php | +94 | −94 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_bar.php | +25 | −25 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_canvas.php | +2 | −2 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_canvtools.php | +4 | −4 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_date.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_errhandler.inc.php | +15 | −15 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_error.php | +2 | −2 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_gantt.php | +143 | −143 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_gradient.php | +13 | −13 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_iconplot.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_led.php | +2 | −2 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_legend.inc.php | +4 | −4 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_line.php | +7 | −7 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_log.php | +7 | −7 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_pie.php | +43 | −43 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_pie3d.php | +11 | −11 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_plotband.php | +17 | −17 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_plotmark.inc.php | +22 | −22 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_polar.php | +14 | −14 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_radar.php | +2 | −2 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_scatter.php | +8 | −8 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_table.php | +4 | −4 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_text.inc.php | +16 | −16 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_ttf.inc.php | +50 | −50 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_utils.inc.php | +1 | −1 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_utils_func.php | +6 | −6 | Go to diff View file |
M | src/embedded_vendor/jpgraph/jpgraph_windrose.php | +4 | −4 | Go to diff View file |
M | src/embedded_vendor/jpgraph/lang/en.inc.php | +1 | −1 | Go to diff View file |
M | src/themes/BurningParrot/include/BurningParrotTheme.php | +1 | −1 | Go to diff View file |
M | src/themes/BurningParrot/include/HeaderPresenter.php | +1 | −1 | Go to diff View file |
M | src/themes/FlamingParrot/include/BodyPresenter.class.php | +1 | −1 | Go to diff View file |
M | src/themes/FlamingParrot/include/NavBarPresenter.class.php | +1 | −1 | Go to diff View file |
M | src/tuleap-cfg/Command/Docker/SSHDaemon.php | +2 | −2 | Go to diff View file |
M | src/tuleap-cfg/Command/Docker/Tuleap.php | +5 | −5 | Go to diff View file |
M | src/tuleap-cfg/Command/SetupTuleapCommand.php | +9 | −9 | Go to diff View file |
M | src/tuleap-cfg/Command/SiteDeploy/Apache/SiteDeployApache.php | +5 | −5 | Go to diff View file |
M | src/tuleap-cfg/Command/SiteDeploy/FPM/SiteDeployFPM.php | +2 | −2 | Go to diff View file |
M | src/tuleap-cfg/Command/SiteDeploy/Gitolite3/SiteDeployGitolite3.php | +1 | −1 | Go to diff View file |
M | src/tuleap-cfg/Command/SiteDeploy/Gitolite3/SiteDeployGitolite3Hooks.php | +1 | −1 | Go to diff View file |
M | src/tuleap-cfg/Command/SiteDeploy/Nginx/SiteDeployNginx.php | +3 | −3 | Go to diff View file |
M | src/tuleap-cfg/Command/SiteDeploy/Realtime/SiteDeployRealtime.php | +1 | −1 | Go to diff View file |
M | src/utils/TrackerV3-data-exporter.php | +1 | −1 | Go to diff View file |
M | src/utils/collect_xml_data.php | +1 | −1 | Go to diff View file |
M | src/utils/export_project_xml.php | +6 | −6 | Go to diff View file |
M | src/utils/httpd/postrotate.php | +2 | −2 | Go to diff View file |
M | src/www/account/index.php | +1 | −1 | Go to diff View file |
M | src/www/account/login.php | +2 | −2 | Go to diff View file |
M | src/www/admin/approve-pending.php | +1 | −1 | Go to diff View file |
M | src/www/admin/approve_pending_users.php | +11 | −11 | Go to diff View file |
M | src/www/admin/grouplist.php | +2 | −2 | Go to diff View file |
M | src/www/admin/index.php | +1 | −1 | Go to diff View file |
M | src/www/admin/lastlogins.php | +6 | −6 | Go to diff View file |
M | src/www/admin/massmail.php | +4 | −4 | Go to diff View file |
M | src/www/admin/projecthistory.php | +1 | −1 | Go to diff View file |
M | src/www/admin/system_events/index.php | +1 | −1 | Go to diff View file |
M | src/www/admin/usergroup.php | +1 | −1 | Go to diff View file |
M | src/www/admin/userlist.php | +15 | −15 | Go to diff View file |
M | src/www/api/index.php | +1 | −1 | Go to diff View file |
M | src/www/file/admin/editproc.php | +2 | −2 | Go to diff View file |
M | src/www/file/admin/frsajax.php | +3 | −3 | Go to diff View file |
M | src/www/file/admin/manageprocessors.php | +9 | −9 | Go to diff View file |
M | src/www/file/admin/release.php | +1 | −1 | Go to diff View file |
M | src/www/file/file_utils.php | +32 | −32 | Go to diff View file |
M | src/www/file/showfiles.php | +20 | −20 | Go to diff View file |
M | src/www/forum/admin/index.php | +7 | −7 | Go to diff View file |
M | src/www/forum/forum.php | +16 | −16 | Go to diff View file |
M | src/www/forum/forum_utils.php | +64 | −64 | Go to diff View file |
M | src/www/forum/index.php | +4 | −4 | Go to diff View file |
M | src/www/forum/message.php | +6 | −6 | Go to diff View file |
M | src/www/forum/monitor.php | +5 | −5 | Go to diff View file |
M | src/www/forum/monitor_thread.php | +5 | −5 | Go to diff View file |
M | src/www/forum/save.php | +8 | −8 | Go to diff View file |
M | src/www/include/bookmarks.php | +4 | −4 | Go to diff View file |
M | src/www/include/check_pw.php | +1 | −1 | Go to diff View file |
M | src/www/include/exit.php | +2 | −2 | Go to diff View file |
M | src/www/include/html.php | +8 | −8 | Go to diff View file |
M | src/www/include/massmail_to_project_admins.php | +1 | −1 | Go to diff View file |
M | src/www/include/pre.php | +7 | −7 | Go to diff View file |
M | src/www/include/proj_email.php | +5 | −5 | Go to diff View file |
M | src/www/include/session.php | +2 | −2 | Go to diff View file |
M | src/www/include/trove.php | +3 | −3 | Go to diff View file |
M | src/www/include/user.php | +14 | −14 | Go to diff View file |
M | src/www/include/utils.php | +41 | −41 | Go to diff View file |
M | src/www/my/bookmark_add.php | +5 | −5 | Go to diff View file |
M | src/www/my/bookmark_delete.php | +2 | −2 | Go to diff View file |
M | src/www/my/bookmark_edit.php | +4 | −4 | Go to diff View file |
M | src/www/my/massmail_to_project_members.php | +2 | −2 | Go to diff View file |
M | src/www/my/my_utils.php | +1 | −1 | Go to diff View file |
M | src/www/my/redirect.php | +1 | −1 | Go to diff View file |
M | src/www/my/stop_monitor.php | +3 | −3 | Go to diff View file |
M | src/www/news/admin/index.php | +9 | −9 | Go to diff View file |
M | src/www/news/index.php | +6 | −6 | Go to diff View file |
M | src/www/news/news_utils.php | +10 | −10 | Go to diff View file |
M | src/www/news/submit.php | +1 | −1 | Go to diff View file |
M | src/www/project/admin/permission_request.php | +2 | −2 | Go to diff View file |
M | src/www/project/admin/permissions.php | +58 | −58 | Go to diff View file |
M | src/www/project/admin/project_admin_utils.php | +18 | −18 | Go to diff View file |
M | src/www/project/admin/project_history.php | +1 | −1 | Go to diff View file |
M | src/www/project/admin/ugroup_utils.php | +54 | −54 | Go to diff View file |
M | src/www/project/admin/userperms.php | +18 | −18 | Go to diff View file |
M | src/www/project/autocomplete.php | +1 | −1 | Go to diff View file |
M | src/www/project/export/project_export_utils.php | +8 | −8 | Go to diff View file |
M | src/www/project/memberlist.php | +8 | −8 | Go to diff View file |
M | src/www/project/stats/source_code_access.php | +16 | −16 | Go to diff View file |
M | src/www/project/stats/source_code_access_utils.php | +112 | −112 | Go to diff View file |
M | src/www/service/index.php | +5 | −5 | Go to diff View file |
M | src/www/softwaremap/trove_list.php | +33 | −33 | Go to diff View file |
M | src/www/themes/FlamingParrot/FlamingParrot_Theme.class.php | +1 | −1 | Go to diff View file |
M | src/www/tos/privacy.php | +1 | −1 | Go to diff View file |
M | src/www/tos/tos.php | +2 | −2 | Go to diff View file |
M | src/www/tracker/add.php | +2 | −2 | Go to diff View file |
M | src/www/tracker/admin/field_values_details.php | +4 | −4 | Go to diff View file |
M | src/www/tracker/admin/index.php | +12 | −12 | Go to diff View file |
M | src/www/tracker/admin/restore.php | +1 | −1 | Go to diff View file |
M | src/www/tracker/browse.php | +3 | −3 | Go to diff View file |
M | src/www/tracker/copy.php | +1 | −1 | Go to diff View file |
M | src/www/tracker/detail.php | +3 | −3 | Go to diff View file |
M | src/www/tracker/download.php | +1 | −1 | Go to diff View file |
M | src/www/tracker/gotoid.php | +4 | −4 | Go to diff View file |
M | src/www/tracker/group_selection.php | +6 | −6 | Go to diff View file |
M | src/www/tracker/import_admin.php | +1 | −1 | Go to diff View file |
M | src/www/tracker/index.php | +16 | −16 | Go to diff View file |
M | src/www/tracker/mod.php | +3 | −3 | Go to diff View file |
M | src/www/user/autocomplete.php | +2 | −2 | Go to diff View file |
M | tests/e2e/full/phpunit/SVN/SVNCLITest.php | +6 | −6 | Go to diff View file |
M | tests/integration/tests/Backend/BackendSVNTest.php | +14 | −14 | Go to diff View file |
M | tests/integration/tests/DB/ThereIsAnOngoingTransactionCheckerTest.php | +1 | −1 | Go to diff View file |
M | tests/integration/tests/InviteBuddy/InvitationDaoTest.php | +19 | −19 | Go to diff View file |
M | tests/integration/tests/OAuth2ServerCore/AccessToken/OAuth2AccessTokenDAOTest.php | +2 | −2 | Go to diff View file |
M | tests/integration/tests/OAuth2ServerCore/Grant/AuthorizationCode/OAuth2AuthorizationCodeDAOTest.php | +4 | −4 | Go to diff View file |
M | tests/integration/tests/OAuth2ServerCore/RefreshToken/OAuth2RefreshTokenDAOTest.php | +4 | −4 | Go to diff View file |
M | tests/integration/tests/Test/Builders/CoreDatabaseBuilder.php | +3 | −3 | Go to diff View file |
M | tests/integration/tests/TrackersV3ToV5/DefectTrackerTest.php | +18 | −18 | Go to diff View file |
M | tests/integration/tests/TrackersV3ToV5/TaskTrackerTest.php | +20 | −20 | Go to diff View file |
M | tests/lib/Builders/LayoutInspectorPermanentRedirection.php | +1 | −1 | Go to diff View file |
M | tests/lib/Builders/LayoutInspectorRedirection.php | +1 | −1 | Go to diff View file |
M | tests/lib/PHPUnit/TestIntegrationTestCase.php | +4 | −4 | Go to diff View file |
M | tests/lib/Stubs/BuildDisplayNameStub.php | +1 | −1 | Go to diff View file |
M | tests/lib/TemporaryTestDirectory.php | +2 | −2 | Go to diff View file |
M | tests/lib/TestDataBuilder.php | +1 | −1 | Go to diff View file |
M | tests/phpcs/non-psr-rules.xml | +4 | −0 | Go to diff View file |
M | tests/psalm/tuleap-baseline.xml | +306 | −1087 | Go to diff View file |
M | tests/rest/lib/ArtifactsTestExecutionHelper.php | +12 | −12 | Go to diff View file |
M | tests/rest/lib/Cache.php | +1 | −1 | Go to diff View file |
M | tests/rest/lib/RestBase.php | +5 | −5 | Go to diff View file |
M | tests/rest/lib/TestDataBuilder.php | +11 | −11 | Go to diff View file |
M | tests/rest/lib/TuleapConfig.php | +2 | −2 | Go to diff View file |
M | tests/rest/lib/bootstrap.php | +1 | −1 | Go to diff View file |
M | tests/rest/tests/AccessKeyTest.php | +1 | −1 | Go to diff View file |
M | tests/rest/tests/ArtifactFilesTest.php | +4 | −4 | Go to diff View file |
M | tests/rest/tests/ArtifactsChangesetsTest.php | +1 | −1 | Go to diff View file |
M | tests/rest/tests/ArtifactsTest.php | +63 | −63 | Go to diff View file |
M | tests/rest/tests/BacklogItemsTest.php | +7 | −7 | Go to diff View file |
M | tests/rest/tests/CardsTest.php | +1 | −1 | Go to diff View file |
M | tests/rest/tests/InvitationsTest.php | +4 | −4 | Go to diff View file |
M | tests/rest/tests/MilestonesBacklogPatchTest.php | +4 | −4 | Go to diff View file |
M | tests/rest/tests/MilestonesBacklogTest.php | +8 | −8 | Go to diff View file |
M | tests/rest/tests/MilestonesCardwallTest.php | +9 | −9 | Go to diff View file |
M | tests/rest/tests/MilestonesContentTest.php | +14 | −14 | Go to diff View file |
M | tests/rest/tests/PlanningTest.php | +1 | −1 | Go to diff View file |
M | tests/rest/tests/ProjectFieldsTest.php | +8 | −8 | Go to diff View file |
M | tests/rest/tests/ProjectMilestonesPeriodTest.php | +3 | −3 | Go to diff View file |
M | tests/rest/tests/ProjectTest.php | +38 | −38 | Go to diff View file |
M | tests/rest/tests/ReadOnlyAdministrator/ArtifactsTest.php | +2 | −2 | Go to diff View file |
M | tests/rest/tests/ReadOnlyAdministrator/ProjectTest.php | +1 | −1 | Go to diff View file |
M | tests/rest/tests/SystemEventTest.php | +1 | −1 | Go to diff View file |
M | tests/rest/tests/TokenTest.php | +4 | −4 | Go to diff View file |
M | tests/rest/tests/TrackersTest.php | +29 | −29 | Go to diff View file |
M | tests/rest/tests/UserGroupTest.php | +16 | −16 | Go to diff View file |
M | tests/rest/tests/UserMembershipTest.php | +4 | −4 | Go to diff View file |
M | tests/rest/tests/UsersTest.php | +9 | −9 | Go to diff View file |
M | tests/rest/tests/regressions/PutSoloCardTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/Tuleap/Massmail/RecipientUsersRetrieverTest.php | +19 | −19 | Go to diff View file |
M | tests/unit/Tuleap/User/UserEmailCollectionTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/Admin/HelpDropdown/AdminReleaseNoteLinkControllerTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Admin/HelpDropdown/PostAdminReleaseNoteLinkControllerTest.php | +5 | −5 | Go to diff View file |
M | tests/unit/common/Backend/BackendAliasesTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Backend/BackendTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/Config/ConfigSetTestSecretValidator.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Config/ConfigSetTestValueValidator.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Config/FeatureFlagControllerTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Dashboard/Project/DashboardXMLExporterTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/Dashboard/Project/ProjectDashboardXMLImporterLinesTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Date/DatePeriodWithWeekEndTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Date/DatePeriodWithoutWeekEndTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Date/helper/DateHelperDistanceTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Date/helper/DateHelperTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/Error/FrontendErrorCollectorControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/FRS/CorrectRepositoryPermissions/CorrectFrsRepositoryPermissionsCommandTest.php | +13 | −13 | Go to diff View file |
M | tests/unit/common/FRS/Events/GetReleaseNotesLinkTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/FRS/FRSFileFactoryTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/FRS/FRSXMLImporterTest.php | +9 | −9 | Go to diff View file |
M | tests/unit/common/FRS/PermissionsPerGroup/PackagePermissionPerGroupRepresentationBuilderTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/FRS/PermissionsPerGroup/PermissionPerTypeExtractorTest.php | +15 | −15 | Go to diff View file |
M | tests/unit/common/FRS/UploadedLinksRequestFormatterTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/HelpDropdown/HelpDropdownPresenterBuilderTest.php | +7 | −7 | Go to diff View file |
M | tests/unit/common/HelpDropdown/ReleaseNoteManagerTest.php | +27 | −27 | Go to diff View file |
M | tests/unit/common/Include/Codendi_HTTPPurifierTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Include/Codendi_RequestTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Include/ResponseTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Include/SimpleSanitizerTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/InviteBuddy/AccountCreationFeedbackTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/InviteBuddy/Admin/InviteBuddyAdminControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/InviteBuddy/InvitationCleanerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/InviteBuddy/InvitationSenderGateKeeperTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/InviteBuddy/InvitationSenderTest.php | +19 | −19 | Go to diff View file |
M | tests/unit/common/InviteBuddy/InvitationToOneRecipientSenderStub.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/InviteBuddy/InvitationToOneRecipientWithoutVerificationSenderTest.php | +5 | −5 | Go to diff View file |
M | tests/unit/common/InviteBuddy/InviteBuddyConfigurationTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/InviteBuddy/ProjectMemberAccordingToInvitationAdderTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/JWT/generators/MercureJWTGeneratorBuilderTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Layout/Logo/CachedCustomizedLogoDetectorTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Layout/Logo/FileContentComparatorTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/Layout/NewDropdown/NewDropdownPresenterBuilderTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Log/TruncateLevelLoggerTest.php | +28 | −28 | Go to diff View file |
M | tests/unit/common/Mail/Transport/SmtpOptions/SmtpOptionsBuilderTest.php | +7 | −7 | Go to diff View file |
M | tests/unit/common/OAuth2ServerCore/User/UserInfoControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Platform/Banner/BannerCreatorTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/Project/Admin/Categories/ProjectCategoriesUpdaterTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/Admin/Categories/UpdateControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/Admin/DescriptionFields/DescriptionFieldAdminPresenterBuilderTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Project/Admin/DescriptionFields/ProjectRegistrationSubmittedFieldsCollectionConsistencyCheckerTest.php | +5 | −5 | Go to diff View file |
M | tests/unit/common/Project/Admin/DescriptionFields/ProjectRegistrationSubmittedFieldsCollectionTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/Project/Admin/ProjectCreation/ProjectsFieldDescriptionUpdaterTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Project/Admin/ProjectEditControllerTest.php | +9 | −9 | Go to diff View file |
M | tests/unit/common/Project/Admin/ProjectUGroup/MemberAdditionControllerTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Project/Admin/ProjectUGroup/MemberRemovalControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/Admin/Visibility/UpdateVisibilityCheckerTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Project/HeartbeatsEntryCollectionTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/Icon/EmojiCodepointConverterTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Project/Icon/ProjectIconCheckerTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Project/ProjectDetails/ProjectDetailsControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/ProjectXMLExporterTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/Project/ProjectXMLExporterWithSynchronizedUGroupsTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Project/REST/GetProjectsQueryCheckerTest.php | +18 | −18 | Go to diff View file |
M | tests/unit/common/Project/REST/UserGroupQueryParameterParserTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Project/REST/v1/ProjectCreationDataPOSTProjectBuilderTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/REST/v1/RestProjectCreatorTest.php | +13 | −13 | Go to diff View file |
M | tests/unit/common/Project/REST/v1/Service/ServiceUpdateCheckerTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Project/REST/v1/ServiceRepresentationTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Project/Registration/ProjectRegistrationBaseCheckerTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/Project/Registration/ProjectRegistrationPresenterBuilderTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/Registration/Template/TemplateFactoryTest.php | +15 | −15 | Go to diff View file |
M | tests/unit/common/Project/Registration/Template/Upload/ExtractArchiveAndCreateProjectTest.php | +5 | −5 | Go to diff View file |
M | tests/unit/common/Project/Registration/Template/Upload/FileToUploadCreatorTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/Registration/Template/Upload/Tus/ProjectFileUploadCancelerTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Project/Registration/Template/Upload/Tus/ProjectFileUploadFinisherTest.php | +8 | −8 | Go to diff View file |
M | tests/unit/common/Project/UGroupManagerGetUGroupTest.php | +12 | −12 | Go to diff View file |
M | tests/unit/common/Project/UserRemoverTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/XML/Export/ExportOptionsTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Project/XML/XMLFileContentRetrieverTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/Queue/NbBackendWorkersConfigValidatorTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/REST/JsonCastTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/REST/QueryParameterParserTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Reference/ByNature/FRS/CrossReferenceFRSOrganizerTest.php | +47 | −47 | Go to diff View file |
M | tests/unit/common/Reference/ByNature/Forum/CrossReferenceForumOrganizerTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/Reference/CrossReferenceByDirectionPresenterBuilderTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/Reference/CrossReferenceByDirectionPresenterTest.php | +10 | −10 | Go to diff View file |
M | tests/unit/common/Reference/CrossReferenceByNatureOrganizerTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/Reference/CrossReferenceNaturePresenterTest.php | +13 | −13 | Go to diff View file |
M | tests/unit/common/Reference/CrossReferencePresenterFactoryTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Reference/CrossReferencePresenterTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/Reference/CrossReferenceSectionPresenterTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Reference/Presenters/CrossReferenceByNaturePresenterBuilderTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/Reference/Presenters/CrossReferenceLinkPresenterCollectionBuilderTest.php | +18 | −18 | Go to diff View file |
M | tests/unit/common/Reference/ReferenceTest.php | +8 | −8 | Go to diff View file |
M | tests/unit/common/Reference/ReferenceValidatorTest.php | +15 | −15 | Go to diff View file |
M | tests/unit/common/Request/FrontRouterTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/SVNCore/Event/UpdateProjectAccessFilesSchedulerTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/SVNCore/SVNAccessFileDefaultBlockGeneratorTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/SystemEvent/include/SystemEvent_PROJECT_DELETE_Test.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/SystemEvent/include/SystemEvent_UGROUP_MODIFY_Test.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/Tracker/XML/Exporter/FileInfoXMLExporterTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/TreeNode/InjectSpanPaddingInTreeNodeVisitorTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/TreeNode/InjectSpanPaddingWith2ChildrenAndTheFirstWith2ChildrenTest.php | +5 | −5 | Go to diff View file |
M | tests/unit/common/TreeNode/InjectSpanPaddingWith2ChildrenAndTheFirstWithOneChildTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/TreeNode/InjectSpanPaddingWith3ChildrenAtRootFirstWithOneChildLastWith2ChildrenTest.php | +7 | −7 | Go to diff View file |
M | tests/unit/common/TreeNode/InjectSpanPaddingWithADepthOf3Test.php | +20 | −20 | Go to diff View file |
M | tests/unit/common/User/AccessKey/AccessKeyCreatorTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/AccessKey/AccessKeyVerifierTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/Account/Appearance/LanguagePresenterBuilderTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/Account/DisplayAccountInformationControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/Account/UpdateAccountInformationControllerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/RequestFromAutocompleterTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/User/SessionManagerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/SwitchToPresenterBuilderTest.php | +10 | −10 | Go to diff View file |
M | tests/unit/common/User/UserHelperTest.php | +19 | −19 | Go to diff View file |
M | tests/unit/common/User/UserNameNormalizerTest.php | +5 | −5 | Go to diff View file |
M | tests/unit/common/User/UserSuspensionManagerTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/User/UserTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/User_LoginManagerTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/User_SSHKeyValidator_InputManagementTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/User/User_SSHKeyValidator_KeyValidationTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/Widget/Rule_Widget_OwnerTest.php | +9 | −9 | Go to diff View file |
M | tests/unit/common/Widget/Valid_Widget_OwnerTest.php | +11 | −11 | Go to diff View file |
M | tests/unit/common/encoding/SupportedXmlCharEncodingTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/common/language/BaseLanguageFactoryTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/tracker/ArtifactImportTest.php | +19 | −19 | Go to diff View file |
M | tests/unit/common/tracker/ArtifactRulesManagerTest.php | +38 | −38 | Go to diff View file |
M | tests/unit/common/tracker/ArtifactTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/tracker/ArtifactXMLExporterTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/valid/Rule_EmailTest.php | +7 | −7 | Go to diff View file |
M | tests/unit/common/valid/Rule_FRSFileNameTest.php | +4 | −4 | Go to diff View file |
M | tests/unit/common/valid/Rule_ProjectFullNameTest.php | +9 | −9 | Go to diff View file |
M | tests/unit/common/valid/Rule_ProjectNameIntegrationTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/valid/Rule_ProjectNameTest.php | +92 | −92 | Go to diff View file |
M | tests/unit/common/valid/Rule_RealNameTest.php | +3 | −3 | Go to diff View file |
M | tests/unit/common/valid/Rule_StringTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/common/valid/Rule_UserNameIntegrationTest.php | +6 | −6 | Go to diff View file |
M | tests/unit/common/valid/Rule_UserNameTest.php | +97 | −97 | Go to diff View file |
M | tests/unit/tuleap-cfg/Command/ConfigureCommandTest.php | +2 | −2 | Go to diff View file |
M | tests/unit/tuleap-cfg/Command/SiteDeploy/SiteDeployGitolite3HooksTest.php | +1 | −1 | Go to diff View file |
M | tests/unit/www/include/UtilsHTTPTest.php | +4 | −4 | Go to diff View file |
M | tools/stats/generate.php | +15 | −15 | Go to diff View file |
M | tools/utils/TuleapDev/AddLDAPGroupCommand.php | +6 | −6 | Go to diff View file |
M | tools/utils/TuleapDev/AddLDAPUserCommand.php | +9 | −9 | Go to diff View file |
M | tools/utils/TuleapDev/GerritSetupCommand.php | +5 | −5 | Go to diff View file |
M | tools/utils/dump_trackerv3_attachments.php | +4 | −4 | Go to diff View file |
M | tools/utils/generate-po.php | +9 | −9 | Go to diff View file |
M | tools/utils/preload/check-preload.php | +2 | −2 | Go to diff View file |
M | tools/utils/preload/generate-preload.php | +1 | −1 | Go to diff View file |
M | tools/utils/purge_bad_sshkeys.php | +1 | −1 | Go to diff View file |