stable

Clone or download

Read-only

Copyright range for Enalean's files should be XXXX - Present

Expected copyright line for files edited by Enalean should looks like: `Copyright (c) Enalean, XXXX - Present. All Rights Reserved`. There are remaining files with the legacy form (`Copyright (c) Enalean, XXXX - YYYY. All Rights Reserved`) and contributors, sometimes (or most of the times in my case), forgot to update it whenever they touch a file. This generates noise in the reviewing process, so we should align every files. No functional changes expected. To update the file I used the following commands: ``` git grep -Pl 'Copyright.* Enalean.* 20\d\d\s*[-−–—]\s*\d' | xargs \ sed -rie 's/(Copyright.* Enalean.* [[:digit:]]{4})\s*[-−–—]\s*[[:digit:]]{4}/\1 - Present/' git grep -Pl 'Copyright.* Enalean.* 20\d\d\s*\.' | xargs \ sed -rie 's/(Copyright.* Enalean.* [[:digit:]]{4}\s*)\./\1 - Present./' ``` Remaining bits are detected with the following command and manually edited: ``` git grep Enalean | grep Copyright | grep -vi Present ``` Note: Unless I did something wrong in the previous command, sed is creating temporary files and do not delete them (while it should). So I must ran the following in order to remove leftovers (I could use `git clean` but I have untracked files I want to keep): ``` find . -type f -not -path '*node_modules/*' -a -not -path '*vendor/*' \ \( -name "*.tse" \ -o -name "*.jse" \ -o -name "*.cgie" \ -o -name "*.vuee" \ -o -name "*.diste" \ -o -name "*.ple" \ -o -name "*.tabe" \ -o -name "*.sqle" \ -o -name "*.pye" \ -o -name "*.ince" \ -o -name "*.phpe" \ -o -name "*.scsse" \ -o -name "*.xmle" \ -o -name "*.tple" \ -o -name "*.htmle" \ -o -name "*examplee" \ -o -name "*log_accume" \ -o -name "*.she" \ -o -name "*.mustachee" \ -o -name "*.txte" \) \ -exec rm "{}" \; ``` Part of request #19361: Copyright range for Enalean's files should be XXXX - Present Change-Id: I4cfef89a3736ac3daf990c6074c82338b673ac25

Modified Files

Name
M plugins/admindelegation/include/AdminDelegationBuilder.php +1 −1 Go to diff View file
M plugins/admindelegation/include/AdminDelegation_UserServiceDao.class.php +1 −1 Go to diff View file
M plugins/admindelegation/include/AdminDelegation_UserServiceLogDao.class.php +1 −1 Go to diff View file
M plugins/admindelegation/include/AdminDelegation_UserServiceManager.class.php +1 −1 Go to diff View file
M plugins/admindelegation/tests/unit/AdminDelegation_UserServiceTest.php +1 −1 Go to diff View file
M plugins/admindelegation/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2012/201203191812_add_planning_tables.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2012/201203201103_add_column_group_id.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2012/201203230952_rename_column_release_tracker_id.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2012/201205041624_add_titles_column.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2013/201307101021_add_agiledashborad_semantic_initial_effort_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2013/201309251016_add_agiledashboard_criteria_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2014/201411251018_add_agiledashboard_kanban_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2014/201411261504_add_agiledashboard_kanban_configuration_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2014/201411281005_create_plugin_agiledashboard_configuration_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2014/201412031051_remove_project_id_in_kanban_configuration.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2015/201501061426_add_kanban_id.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2015/201501201118_add_titles.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2015/201502061635_add_planning_priority_change_permission.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2015/201502261627_add_plugin_agiledashboard_kanban_configuration_column_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2017/201702211436_using_scrum_v2_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2017/20170731211_add_kanban_widget_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2017/201711161420_create_semantic_done_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2017/201711301606_add_kanban_tracker_reports_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2017/201712131015_remove_kanban_widget_of_non_existing_kanban.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2017/201712180948_add_burnup_cache_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2018/201805021100_add_kanban_widget_config_table.php +1 −1 Go to diff View file
M plugins/agiledashboard/db/mysql/updates/2018/201811051700_rename_burnup_daily_sysevent_with_wrong_case.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/AgileDashboardConfigurationResponse.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/AgileDashboardKanbanConfigurationUpdater.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/AgileDashboardStatisticsAggregator.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/BacklogItem/PaginatedBacklogItemsRepresentations.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/BacklogItem/SubBacklogItemDao.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/BacklogItem/SubBacklogItemProvider.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/BaseController.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/BreadCrumbDropdown/AdministrationCrumbBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/BreadCrumbDropdown/MilestoneCrumbBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/BreadCrumbDropdown/VirtualTopMilestoneCrumbBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/ConfigurationDao.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Event/GetAdditionalScrumAdminPaneContent.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FieldPriorityAugmenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FirstScrumCreator.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCacheChecker.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCacheDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCacheDateRetriever.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCacheGenerator.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupCalculator.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupEffort.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/BurnupFieldRetriever.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/FormElementController.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/MessageFetcher.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/FormElement/ViewAdminBurnupField.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/HierarchyChecker.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/JavascriptDependenciesProvider.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/ColumnIdentifier.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/KanbanXmlImporter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/RealTime/KanbanArtifactMessageBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/RealTime/KanbanArtifactMovedMessageRepresentation.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/RealTime/KanbanArtifactUpdatedMessageRepresentation.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/ReportFilterFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/TrackerReportBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/TrackerReportDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Kanban/TrackerReport/TrackerReportUpdater.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanCannotAccessException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanColumn.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanColumnDao.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanColumnFactory.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanColumnNotFoundException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanColumnNotRemovableException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanCumulativeFlowDiagramDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanItemDao.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanItemManager.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanManager.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanNotFoundException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanPresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanRightsPresenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanSemanticStatusAllColumnIdsNotProvidedException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanSemanticStatusBasedOnASharedFieldException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanSemanticStatusColumnIdsNotInOpenSemanticException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanSemanticStatusNotBoundToStaticValuesException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanSemanticStatusNotDefinedException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanSemanticTitleNotDefinedException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanSummaryPresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanTrackerNotDefinedException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/KanbanUserCantAddInPlaceException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/AllBreadCrumbsForMilestoneBuilder.php +1 −1 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/Backlog.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/BacklogItemBuilder.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/BacklogItemPresenterBuilder.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/BacklogItemPresenterCollection.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/BacklogRowPresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/DescendantItemsCollection.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/DescendantItemsFinder.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/IBacklogItem.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Backlog/IBuildBacklogItemAndBacklogItemCollection.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/MilestoneParentLinker.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/MilestoneStatusCounter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Details/DetailsChartPresenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Details/DetailsChartPresentersRetriever.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Details/DetailsPane.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Details/DetailsPaneInfo.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Details/DetailsPresenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Details/DetailsPresenterBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/PaneInfo.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/PanePresenterBuilderFactory.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Planning/PlanningV2Pane.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/Planning/PlanningV2PaneInfo.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/PresenterData.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/Pane/TopPlanning/TopPlanningV2PaneInfo.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/ParentTrackerRetriever.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Milestone/SelectedMilestoneProvider.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/MonoMilestone/MonoMilestoneBacklogItemDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/MonoMilestone/MonoMilestoneItemsFinder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/MonoMilestone/ScrumForMonoMilestoneChecker.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/MonoMilestone/ScrumForMonoMilestoneDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/MonoMilestone/ScrumForMonoMilestoneDisabler.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/MonoMilestone/ScrumForMonoMilestoneEnabler.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Pane.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/PaneIconLinkPresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/PaneInfoFactory.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/PaneInfoIdentifier.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/PermissionsManager.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Planning/NearestPlanningTrackerProvider.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/QueryToCriterionStatusConverter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Artifact/BurnupPointRepresentation.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactCannotBeChildrenOfException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactCannotBeInBacklogOfException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactDoesNotExistException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactIsClosedOrAlreadyPlannedInAnotherMilestone.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactIsNotInBacklogTrackerException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactIsNotInMilestoneContentException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactIsNotInUnassignedBacklogItemsException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ArtifactIsNotInUnplannedBacklogItemsException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/BacklogItemRepresentationFactory.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ColumnRepresentation.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ElementCannotBeSubmilestoneException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/FilterValidBacklogItems.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/FilterValidContent.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/FilterValidSubmilestones.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/IValidateElementsToAdd.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/IdsFromBodyAreNotUniqueException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/CumulativeFlowDiagram/DiagramPointRepresentation.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/CumulativeFlowDiagram/TooManyPointsException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/ItemCollectionRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/TimeInfoFactory.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Kanban/TrackerReport/FilteredItemCollectionRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/MilestoneContentUpdater.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/MilestoneInfoRepresentation.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/OrderIdOutOfBoundException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/OrderValidator.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/PatchAddBacklogItemsValidator.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/PatchAddContentValidator.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/PatchAddRemoveValidator.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/ProjectPlanningsResource.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/SubMilestoneAlreadyHasAParentException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/SubMilestoneDoesNotExistException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/UserCannotReadSubMilestoneException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/REST/v1/UserCannotUpdateMilestoneException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/RealTime/RealTimeArtifactMessageController.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/Dao/Dao_InitialEffort.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/Dao/InitialEffortDao.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/Dao/SemanticDoneDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/MoveChangesetXMLUpdater.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/MoveSemanticInitialEffortChecker.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/SemanticDoneAdminPresenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/SemanticDoneFactory.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/SemanticDoneIntroPresenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/SemanticDoneValueChecker.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Semantic/Semantic_InitialEffort.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/SemanticStatusNotFoundException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/UserNotAdminException.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/Kanban.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/MyKanban.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/ProjectKanban.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetAddToDashboardDropdownRepresentation.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetAddToDashboardDropdownRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanConfigDAO.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanConfigRetriever.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanConfigUpdater.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanCreator.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanDao.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanDeletor.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanPresenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanReportSelectorPresenter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanRetriever.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/Widget/WidgetKanbanXMLImporter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/XMLExporterUnableToGetValueException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/XMLFullStructureExporter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboard/XMLImporterInvalidTrackerMappingsException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboardPluginDescriptor.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/AgileDashboardPluginInfo.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Dao.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/PaneRedirectionExtractor.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/PermissionsPerGroup/AgileDashboardJSONPermissionsRetriever.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/PermissionsPerGroup/AgileDashboardPermissionsRepresentation.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/PermissionsPerGroup/AgileDashboardPermissionsRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/PermissionsPerGroup/PlanningPermissionRepresentation.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/PermissionsPerGroup/PlanningPermissionsRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/ArtifactParentsSelector.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/ArtifactParentsSelector/Command.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/ArtifactParentsSelector/NearestMilestoneWithBacklogTrackerCommand.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/ArtifactParentsSelector/ParentInSameHierarchyCommand.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/ArtifactParentsSelector/SameTrackerCommand.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/ArtifactParentsSelectorEventListener.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/CardDisplayPreferences.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/MilestonePermissionDeniedException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/MilestonePresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/MilestoneRedirectParameter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/MilestoneSelectorController.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/NoPlanningsException.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/Planning.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/PlanningParameters.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/PlanningPresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/PlanningRequestValidator.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/Presenters/LastLevelMilestone.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/Presenters/MilestoneAccessPresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/ScrumPlanningFilter.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/Planning/TrackerPresenter.class.php +1 −1 Go to diff View file
M plugins/agiledashboard/include/constants.php +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/burnup-chart/src/gettext-provider.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/cumulative-flow-diagram/cumulative-chart.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/cumulative-flow-diagram/index.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/home.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/kanban/src/app/feedback-state.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/permissions-per-group/src/index.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/permissions-per-group/src/rest-querier.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/planning-v2/src/app/infinite-scroll/infinite-scroll-directive.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/planning-v2/src/app/open-tlp-dropdown-directive.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/scrum-header.js +1 −1 Go to diff View file
M plugins/agiledashboard/tests/rest/ArtifactBase.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/rest/DataBuilder.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/rest/KanbanTest.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/rest/TestBase.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/rest/_fixtures/burnup/project.xml +1 −1 Go to diff View file
M plugins/agiledashboard/tests/rest/bootstrap.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboard/FormElement/BurnupCalculatorTest.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboard/Semantic/MoveChangesetXMLUpdaterTest.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboard/Semantic/MoveSemanticInitialEffortCheckerTest.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboard/Semantic/SemanticDoneValueCheckerTest.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/unit/AgileDashboard/Widget/WidgetKanbanXMLImporterTest.php +1 −1 Go to diff View file
M plugins/agiledashboard/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/agiledashboard/themes/BurningParrot/css/_card-fields.scss +1 −1 Go to diff View file
M plugins/agiledashboard/themes/BurningParrot/css/kanban/_feedback.scss +1 −1 Go to diff View file
M plugins/agiledashboard/themes/BurningParrot/css/scrum/planning/_backlog.scss +1 −1 Go to diff View file
M plugins/agiledashboard/themes/BurningParrot/css/scrum/planning/_item-progress.scss +1 −1 Go to diff View file
M plugins/agiledashboard/themes/BurningParrot/css/scrum/planning/_milestones.scss +1 −1 Go to diff View file
M plugins/archivedeleteditems/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/artifactsfolders/bin/convert_from_folders_to_scrum.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/ArtifactsFoldersPluginDescriptor.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/ArtifactsFoldersPluginInfo.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Converter/AncestorFolderChecker.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Converter/ArtifactsFoldersToScrumV2Converter.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Converter/CollectionOfLinksToAdd.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Converter/ConverterDao.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/ArtifactLinkInformationPrepender.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/ArtifactPresenter.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/ArtifactPresenterBuilder.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/ArtifactView.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/Controller.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/Dao.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/DataFromRequestAugmentor.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/FolderHierarchicalRepresentation.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/FolderHierarchicalRepresentationCollection.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/FolderHierarchicalRepresentationCollectionBuilder.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/FolderUsageRetriever.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/HierarchyOfFolderBuilder.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/Presenter.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Folder/Router.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/Nature/NatureInFolderPresenter.php +1 −1 Go to diff View file
M plugins/artifactsfolders/include/constants.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/db/updates/2017/201704101334_add_bugzilla_reference_table.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/db/updates/2017/201705291443_use_api_credential_for_bugzilla_server.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/db/updates/2017/201705291641_add_rest_url.php +1 −1 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/db/updates/2017/201709280900_mark_cleartext_api_key.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Administration/Controller.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/CrossReferenceCreator.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Plugin/Descriptor.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Plugin/Info.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/bugzilla_reference/include/Bugzilla/Reference/KeywordIsAlreadyUsedException.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/KeywordIsInvalidException.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/RESTURLIsInvalidException.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/Reference.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/ReferenceDestructor.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/ReferenceRetriever.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/ReferenceSaver.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/RequiredFieldEmptyException.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/ServerIsInvalidException.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Reference/UnableToCreateSystemReferenceException.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/include/constants.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/tests/unit/Bugzilla/CrossReferenceCreatorTest.php +1 −1 Go to diff View file
M plugins/bugzilla_reference/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/Administration/DisplayController.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/Administration/Presenter.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/Configuration.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/ConfigurationDataAccessException.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/ConfigurationMalformedDataException.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/ConfigurationNotFoundException.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/ConfigurationRetriever.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/ConfigurationSaver.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/DataAccessObject.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/Plugin/Descriptor.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/Plugin/Info.php +1 −1 Go to diff View file
M plugins/captcha/include/Captcha/Registration/Presenter.php +1 −1 Go to diff View file
M plugins/captcha/include/constants.php +1 −1 Go to diff View file
M plugins/captcha/tests/unit/ConfigurationRetrieverTest.php +1 −1 Go to diff View file
M plugins/captcha/tests/unit/ConfigurationSaverTest.php +1 −1 Go to diff View file
M plugins/captcha/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2012/201206051455_add_cardwall_on_top_table.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2012/201207070819_add_cardwall_on_top_mappings_table.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2012/201207171819_add_freestyle_on_top_field.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2013/201308261539_add_cardfields_semantic_table.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2013/201308271726_set_default_semantic.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2013/201308291505_update_cardfields_semantic_table.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2013/201310041431_update_existing_cardwall_configurations.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2018/201803201204_update_unique_index.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2018/201805311618_add_table_for_semantic_color_field_storage.php +1 −1 Go to diff View file
M plugins/cardwall/db/mysql/updates/2018/201806061545_add_tlp_color_name_cardwall_column.php +1 −1 Go to diff View file
M plugins/cardwall/include/Board.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardController.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardControllerBuilderRequestDataException.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardControllerBuilderRequestIdException.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardControllerBuilderRequestPlanningIdException.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardFieldPresenter.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardFields.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardInCellPresenter.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardInCellPresenterBuilder.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardInCellPresenterFactory.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardInCellPresenterNode.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardPresenter.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardResourceBadValueFormatException.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Cardwall/AccentColor/AccentColor.php +1 −1 Go to diff View file
M plugins/cardwall/include/Cardwall/Agiledashboard/PaneInfo.php +1 −1 Go to diff View file
M plugins/cardwall/include/Cardwall/AllowedFieldRetriever.php +1 −1 Go to diff View file
M plugins/cardwall/include/Cardwall/BackgroundColor/BackgroundColor.php +1 −1 Go to diff View file
M plugins/cardwall/include/Cardwall/BackgroundColor/BackgroundColorBuilder.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardwallConfigXml.class.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/CardwallConfigXmlImport.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardwallFromXmlImportCannotBeEnabledException.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardwallPluginDescriptor.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/CardwallPluginInfo.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Cardwall_RendererDao.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/EffortProgressPresenter.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/FieldNotOnCardException.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/FieldsExtractor.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Form.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/InitialEffortNotDefinedException.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Mapping.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/MappingCollection.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/ColumnDao.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/ColumnMappingFieldDao.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/ColumnCollection.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/ColumnFreestyleCollection.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/ColumnStatusCollection.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/ColumnsVisitor.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/CreateColumn.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/CreateMappingField.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/DeleteColumns.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/DeleteMappingFields.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/EnableCardwallOnTop.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/EnableFreestyleColumns.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/UpdateColumns.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Command/UpdateMappingFields.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/TrackerMappingField.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/TrackerMappingFreestyle.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/TrackerMappingNoField.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/TrackerMappingStatus.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/Updater.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/ValueMappingFactory.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Config/View/Admin.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/ConfigEmpty.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/ConfigFactory.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/Dao.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OnTop/IConfig.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/OpenClosedEffortProgressPresenter.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/PaneBoardBuilder.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/REST/ResourcesInjector.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/REST/v1/CardUpdater.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/REST/v1/CardsResource.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/RawBoardBuilder.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/RemainingEffortProgressPresenter.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/RendererBoardBuilder.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/BackgroundColorDao.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/BackgroundColorFieldRetriever.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/BackgroundColorFieldSaver.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/BackgroundColorPresenterBuilder.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/BackgroundColorSelectorPresenter.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/BackgroundColorSemanticFactory.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/BackgroundColorSemanticFieldNotFoundException.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/CardFieldXmlExporter.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/CardFieldXmlExtractor.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/CardFields.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/CardFieldsFactory.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/CardFieldsPresenterBuilder.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/CardsPreviewBuilder.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/Dao/CardFieldsDao.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/FieldPresenter.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/FieldUsedInSemanticObjectChecker.php +1 −1 Go to diff View file
M plugins/cardwall/include/Semantic/SemanticCardPresenter.php +1 −1 Go to diff View file
M plugins/cardwall/include/Swimline.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/SwimlineFactory.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/SwimlineSolo.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/SwimlineSoloNoMatchingColumns.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/SwimlineTrackerRenderer.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/UserPreferences/Autostack/AutostackRenderer.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/UserPreferences/UserPreferencesAutostack.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/UserPreferences/UserPreferencesAutostackFactory.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/UserPreferences/UserPreferencesController.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/UserPreferences/UserPreferencesDisplayUser.class.php +1 −1 Go to diff View file
M plugins/cardwall/include/constants.php +1 −1 Go to diff View file
M plugins/cardwall/scripts/CardsEditInPlace.js +1 −1 Go to diff View file
M plugins/cardwall/scripts/ajaxInPlaceEditorExtensions.js +1 −1 Go to diff View file
M plugins/cardwall/scripts/cardwall.js +1 −1 Go to diff View file
M plugins/cardwall/scripts/custom-mapping.js +1 −1 Go to diff View file
M plugins/cardwall/scripts/script.js +1 −1 Go to diff View file
M plugins/cardwall/site-content/en_US/script_locale.js +1 −1 Go to diff View file
M plugins/cardwall/site-content/fr_FR/script_locale.js +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/Cardwall/AccentColor/AccentColorBuilderTest.php +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/Cardwall/AllowedFieldRetrieverTest.php +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/Cardwall/BackgroundColor/BackgroundColorBuilderTest.php +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/Cardwall/OnTop/Config/ColumnFactoryTest.php +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/Cardwall/Semantic/CardFieldXmlExtractorTest.php +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/Cardwall/Semantic/CardFieldsTrackerPresenterBuilderTest.php +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/Cardwall/Semantic/FieldUsedInSemanticObjectCheckerTest.php +1 −1 Go to diff View file
M plugins/cardwall/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/create_test_env/db/mysql/updates/2018/201806111500_create_callmeback_configuration_table.php +1 −1 Go to diff View file
M plugins/create_test_env/db/mysql/updates/2018/201809250859_create_log_tables.php +1 −1 Go to diff View file
M plugins/create_test_env/db/mysql/updates/2019/201910241530_remove_callmeback_configuration_table.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/ActivityLogger/ActivityLoggerDao.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/CreateTestProjectPresenter.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/CreateTestUser.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/CreateTestEnvException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/EmailNotUniqueException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/InvalidInputException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/InvalidLoginException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/InvalidPasswordException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/InvalidProjectFullNameException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/InvalidProjectUnixNameException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/InvalidRealNameException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/ProjectImportFailureException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/ProjectNotCreatedException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/UnableToCreateTemporaryDirectoryException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Exception/UnableToWriteFileException.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/NotificationBotDao.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/NotificationBotIndexController.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/NotificationBotPresenter.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/NotificationBotSaveController.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Notifier.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/REST/CreateTestEnvResource.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/REST/ResourcesInjector.php +1 −1 Go to diff View file
M plugins/create_test_env/include/CreateTestEnv/REST/TestEnvironmentRepresentation.php +1 −1 Go to diff View file
M plugins/create_test_env/tests/rest/CreateTestEnvResourceTest.php +1 −1 Go to diff View file
M plugins/create_test_env/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/crosstracker/bin/migrate_old_crosstracker_widgets.php +1 −1 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/CrossTrackerArtifactReportDao.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/CrossTrackerReport.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/CrossTrackerReportDao.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/CrossTrackerReportFactory.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/CrossTrackerReportNotFoundException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Permission/CrossTrackerPermissionGate.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Permission/CrossTrackerUnauthorizedColumnFieldException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Permission/CrossTrackerUnauthorizedException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Permission/CrossTrackerUnauthorizedProjectException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Permission/CrossTrackerUnauthorizedSearchFieldException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Permission/CrossTrackerUnauthorizedTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/REST/ResourcesInjector.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/BadRequestException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/CSVRepresentation.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/CSVRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/CSVRepresentationFactory.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/BindToValueParameters.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/BindToValueVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/BindValueIsEmptyException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/CSVFormatterVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/DateValue.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/EmptyValue.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/FormElementToValueVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/FormatterParameters.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/FormatterVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/NumericValue.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/TextValue.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/UserValue.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/Format/ValueVisitable.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/PaginatedCollectionOfCSVRepresentations.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CSV/SimilarFieldsFormatter.php +1 −1 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/AllowedMetadata.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/InvalidComparisonCollectorParameters.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/InvalidComparisonCollectorVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/InvalidSearchableCollectorParameters.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/InvalidSearchableCollectorVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/InvalidSearchablesCollectionBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/CrossTrackerExpertQueryReportDao.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/BetweenComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/DateValueExtractor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/EqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/FromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/GreaterThanComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/GreaterThanOrEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/LesserThanComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/LesserThanOrEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Date/NotEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/EqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/FromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/InComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/NotEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/AlwaysThereField/Users/NotInComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/BetweenComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/ComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/EqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/FromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/GreaterThanComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/GreaterThanOrEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/InComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/LesserThanComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/LesserThanOrEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/ListValueExtractor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/NotEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/NotInComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/EqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/FromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/InComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/NotEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/AssignedTo/NotInComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Description/DescriptionFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Description/EqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Description/FromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Description/NotEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Status/EqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Status/FromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Status/NotEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Title/EqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Title/FromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/Metadata/Semantic/Title/NotEqualComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/SearchableVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/SearchableVisitorParameters.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilderVisitor.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilderVisitorParameters.php +1 −1 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/GreaterThan/GreaterThanOrEqualComparisonChecker.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ListToEmptyStringException.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/ListValueValidator.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/NonExistentListValueException.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/Query/Advanced/QueryValidation/InvalidQueryException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/AssignedToIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/DescriptionIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/ICheckMetadataForAComparison.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/LastUpdateByIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/LastUpdateDateIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/MetadataChecker.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/MetadataUsageChecker.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/StatusIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/SubmittedByIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/SubmittedOnIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryValidation/Metadata/TitleIsMissingInAtLeastOneTrackerException.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/IProvideParametrizedFromAndWhereSQLFragments.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/ParametrizedAndFromWhere.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/ParametrizedFrom.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/ParametrizedFromWhere.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/ParametrizedOrFromWhere.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/SimilarField/BindNameVisitor.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/Report/SimilarField/SimilarFieldCandidate.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/SimilarField/SimilarFieldCollection.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/SimilarField/SimilarFieldIdentifier.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/SimilarField/SimilarFieldType.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/SimilarField/SimilarFieldsFilter.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/SimilarField/SimilarFieldsMatcher.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/SimilarField/SupportedFieldsDao.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Widget/ProjectCrossTrackerSearchPresenter.php +1 −1 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Widget/WidgetPermissionChecker.php +1 −1 Go to diff View file
M plugins/crosstracker/include/constants.php +1 −1 Go to diff View file
M plugins/crosstracker/include/crosstrackerPlugin.php +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/backend-cross-tracker-report.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ArtifactTableRow.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ErrorInactiveProjectMessage.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ErrorMessage.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ExportCSVButton.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ListBindUser.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/helpers/bom-helper.ts +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/helpers/download-helper.ts +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/index.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/reading-mode/TrackerListReadingMode.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/reading-mode/reading-cross-tracker-report.ts +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/store/getters.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/store/getters.test.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/store/index.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/store/mutations.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/store/mutations.test.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/store/state.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/user-service.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/TrackerListWritingMode.test.js +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/TrackerListWritingMode.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/WritingMode.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/writing-cross-tracker-report.ts +1 −1 Go to diff View file
M plugins/crosstracker/tests/rest/CrossTracker/CrossTrackerTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/rest/CrossTracker/CrossTrackerTestExpertQueryTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/rest/CrossTracker/CrossTrackerTestNonRegressionTrackerTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/rest/CrossTrackerDataBuilder.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/CrossTrackerReportFactoryTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/CrossTrackerReportTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Permission/CrossTrackerPermissionGateTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/CSV/CSVRepresentationBuilderTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/CSV/CSVRepresentationTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/CSV/Format/BindToValueVisitorTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/CSV/Format/CSVFormatterVisitorTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/Query/Advanced/InvalidSemantic/MetadataUsageCheckerTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/Query/Advanced/QueryValidation/Comparison/ListValueValidatorTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/Query/ParametrizedFromTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/SimilarField/FieldUsedInSupportedSemanticsVisitorTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/SimilarField/SimilarFieldCollectionTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/SimilarField/SimilarFieldsFilterTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Report/SimilarField/SimilarFieldsMatcherTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/CrossTracker/Widget/WidgetPermissionCheckerTest.php +1 −1 Go to diff View file
M plugins/crosstracker/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/crosstracker/themes/BurningParrot/css/_reading-mode.scss +1 −1 Go to diff View file
M plugins/crosstracker/themes/BurningParrot/css/_writing-mode.scss +1 −1 Go to diff View file
M plugins/docman/bin/DocmanExport/export.php +1 −1 Go to diff View file
M plugins/docman/bin/DocmanImport/ImportFromDocmanV1.class.php +1 −1 Go to diff View file
M plugins/docman/bin/import_from_docman_v1.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/201203281214_update_documentation_links.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/201203291146_delete_deprecated_doc.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2014/201416121631_add_link_version_table.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2015/201512291430_add_indexes_for_docman_statistics.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2017/201703131632_copy_core_notifications_into_docman.php +1 −1 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/2018/20181218_add_plugin_docman_new_document_upload_table.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2018/20181221_share_docman_item_id_between_tables.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2019/201901231543_remove_no_more_used_user_preference.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2019/201902151447_add_upload_version_file_table.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2019/201902211515_insert_default_docman_settings_values.php +1 −1 Go to diff View file
M plugins/docman/db/mysql/updates/2019/201902251703_add_index_on_docman_new_version_upload.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/include/ApprovalTable/ApprovalTableStateMapper.php +1 −1 Go to diff View file
M plugins/docman/include/ApprovalTable/ApprovalTableUpdater.php +1 −1 Go to diff View file
M plugins/docman/include/ApprovalTable/FactoriesFactory.class.php +1 −1 Go to diff View file
M plugins/docman/include/ApprovalTable/File/FileDao.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/CannotInstantiateItemWeHaveJustCreatedInDBException.php +1 −1 Go to diff View file
M plugins/docman/include/DocmanPluginInfo.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_BuildItemMappingVisitor.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_EmbeddedFile.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_Empty.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_File.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_HtmlFilter.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_HtmlFilterDate.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_HtmlFilterDateAdvanced.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_HtmlFilterFactory.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_HtmlFilterList.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_HtmlFilterListAdvanced.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_HtmlFilterText.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_Icons.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_LinkVersionDao.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_LinkVersionFactory.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_LockDao.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_LogDao.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MIMETypeDetector.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetaMetadataHtml.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_MetadataHtmlFactory.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetadataHtmlList.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_MetadataHtmlOwner.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetadataHtmlString.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetadataHtmlText.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetadataListOfValuesElementFactory.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetadataValue.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetadataValueList.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_MetadataValueScalar.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_ProjectItemsBatchIterator.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_SOAPController.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_Sample.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_Token.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_ValidateMetadataIsNotEmpty.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_ValidateMetadataListIsNotEmpty.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_ValidatePresenceOf.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_ValidateValueNotEmpty.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_Validator.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_Widget_ProjectEmbedded.class.php +1 −1 Go to diff View file
M plugins/docman/include/Docman_Wiki.class.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/ExternalLinksManager.php +1 −1 Go to diff View file
M plugins/docman/include/ExternalLinks/Link.php +1 −1 Go to diff View file
M plugins/docman/include/FolderNotCreatedException.php +1 −1 Go to diff View file
M plugins/docman/include/Item/ItemIsNotAFolderException.php +1 −1 Go to diff View file
M plugins/docman/include/Item/PaginatedDocmanItemCollection.php +1 −1 Go to diff View file
M plugins/docman/include/Log/LogEventAdder.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/CollectionOfUgroupMonitoredItemsBuilder.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/NotificationEventAdder.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/NotifiedPeopleRetriever.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/UGroupsRetriever.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/UgroupMonitoredItem.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/UgroupsToNotifyDao.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/UgroupsUpdater.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/UsersRetriever.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/UsersToNotifyDao.php +1 −1 Go to diff View file
M plugins/docman/include/Notifications/UsersUpdater.php +1 −1 Go to diff View file
M plugins/docman/include/PermissionsPerGroup/DocmanGlobalAdminPermissionCollection.php +1 −1 Go to diff View file
M plugins/docman/include/PermissionsPerGroup/PermissionPerGroupDocmanServicePaneBuilder.php +1 −1 Go to diff View file
M plugins/docman/include/REST/v1/CannotCreateThisItemTypeException.php +1 −1 Go to diff View file
M plugins/docman/include/REST/v1/DocmanFolderPermissionChecker.php +1 −1 Go to diff View file
M plugins/docman/include/REST/v1/DocmanItemsRequest.php +1 −1 Go to diff View file
M plugins/docman/include/REST/v1/ExceptionItemIsLockedByAnotherUser.php +1 −1 Go to diff View file
M plugins/docman/include/REST/v1/Folders/DocmanItemCreatorBuilder.php +1 −1 Go to diff View file
M plugins/docman/include/REST/v1/ItemRepresentationCollectionBuilder.php +1 −1 Go to diff View file
M plugins/docman/include/REST/v1/NullResponseFeedbackWrapper.php +1 −1 Go to diff View file
M plugins/docman/include/Reference/Reference.php +1 −1 Go to diff View file
M plugins/docman/include/Reference/ReferenceFactory.php +1 −1 Go to diff View file
M plugins/docman/include/ResponseFeedbackWrapper.php +1 −1 Go to diff View file
M plugins/docman/include/SystemCheck.php +1 −1 Go to diff View file
M plugins/docman/include/SystemCheckDao.php +1 −1 Go to diff View file
M plugins/docman/include/SystemCheckProjectRetriever.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Document/DocumentDataStore.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Document/DocumentOngoingUploadRetriever.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Document/DocumentToUpload.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Document/DocumentUploadCanceler.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Document/DocumentUploadCleaner.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Document/DocumentUploadFinisher.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/UploadCreationConflictException.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/UploadCreationException.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/UploadCreationFileMismatchException.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/UploadMaxSizeExceededException.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/UploadPathAllocatorBuilder.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Version/DocumentOnGoingVersionToUploadDAO.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Version/VersionDataStore.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Version/VersionOngoingUploadRetriever.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Version/VersionToUpload.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Version/VersionToUploadCreator.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Version/VersionUploadCanceler.php +1 −1 Go to diff View file
M plugins/docman/include/Upload/Version/VersionUploadCleaner.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_AjaxReferenceTooltip.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ApprovalCreate.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Delete.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Details.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Display.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Edit.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Extra.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_GetMenuItemsVisitor.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Header.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemDetails.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemDetailsSectionEditProperties.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemDetailsSectionMove.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemDetailsSectionPaste.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemDetailsSectionPermissions.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemDetailsSectionReferences.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemDetailsSectionStatistics.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ItemRanking.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Move.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_NewVersion.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_ParentsTree.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_Paste.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_PasteInProgress.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/Docman_View_PermissionDeniedError.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_Update.class.php +1 −1 Go to diff View file
M plugins/docman/include/view/DocumentFooterPresenter.php +1 −1 Go to diff View file
M plugins/docman/include/view/DocumentFooterPresenterBuilder.php +1 −1 Go to diff View file
M plugins/docman/include/view/soap/Docman_View_SOAP_List.class.php +1 −1 Go to diff View file
M plugins/docman/scripts/embedded_file.js +1 −1 Go to diff View file
M plugins/docman/tests/bootstrap.php +1 −1 Go to diff View file
M plugins/docman/tests/soap/DocmanTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/ApprovalTable/ApprovalTableRetrieverTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/ApprovalTable/ApprovalTableUpdaterTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/ExternalLinks/ExternalLinkParametersExtractorTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/ExternalLinks/ExternalLinkRedirectorTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/Upload/Document/DocumentBeingUploadedInformationProviderTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/Upload/Document/DocumentUploadCancelerTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/Upload/Document/DocumentUploadCleanerTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/Upload/Version/VersionToUploadCreatorTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/Upload/Version/VersionUploadCancelerTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/Upload/Version/VersionUploadCleanerTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/Upload/Version/VersionUploadFinisherTest.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/docman/tests/unit/view/DocumentFooterPresenterBuilderTest.php +1 −1 Go to diff View file
M plugins/document/include/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/document/include/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/document/scripts/document/api/lock-rest-querier.ts +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Breadcrumb/DocumentBreadcrumb.test.js +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Breadcrumb/DocumentBreadcrumbElement.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ChildFolder.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/CreationErrorDragndropErrorModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/CurrentFolderDropZone.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/DocumentLockedForEditionErrorModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/DocumentNeedsApprovalErrorModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/ErrorModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/FileAlreadyExistsDragndropErrorModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/MaxFilesDragndropErrorModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/DragNDrop/MaxSizeDragndropErrorModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/EmptyState/EmptyFolderForReaders.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/EmptyState/EmptyFolderForWriters.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/Error/PermissionError.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/FilesUploads/FilesUploadsManager.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/FilesUploads/FilesUploadsModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/FolderLoadingScreen.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/DocumentCellTitle.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/EmbeddedCellTitle.test.js +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/EmbeddedCellTitle.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/FakeCaret.test.js +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/FakeCaret.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/FileCellTitle.test.js +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/LinkCellTitle.test.js +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/LinkCellTitle.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ItemTitle/WikiCellTitle.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/Metadata/DescriptionMetadata.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ModalCommon/ModalFeedback.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ModalCommon/ModalFooter.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ModalCommon/ModalHeader.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ModalCreateNewItemVersion/CreateNewVersionFileModal.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ModalDeleteItem/ModalConfirmDeletion.test.js +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ModalDeleteItem/PostItemDeletionNotification.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ModalNewItem/TypeSelector.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ProgressBar/GlobalUploadProgressBar.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/ProgressBar/UploadProgressBar.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/Property/EmbeddedProperties.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/Property/FileProperties.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/Property/ItemUpdateProperties.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/Property/LinkProperties.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/Property/WikiProperties.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/QuickLook/QuickLookEmptyOrEmbedded.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/QuickLook/QuickLookFile.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/QuickLook/QuickLookLink.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/QuickLook/QuickLookWiki.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/RootFolder.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/SearchBox.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/Folder/SwitchToOldUI.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/User/UserBadge.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/svg/error/LoadingErrorSvg.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/svg/error/PermissionErrorSvg.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/svg/folder/EmptyFolderForReadersSvg.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/components/svg/folder/EmptyFolderForWritersSvg.vue +1 −1 Go to diff View file
M plugins/document/scripts/document/helpers/abort-current-uploads.js +1 −1 Go to diff View file
M plugins/document/scripts/document/helpers/local-vue.js +1 −1 Go to diff View file
M plugins/document/scripts/document/store/actions-helpers/flag-item-as-created.js +1 −1 Go to diff View file
M plugins/document/scripts/document/store/actions-helpers/load-ascendant-hierarchy.js +1 −1 Go to diff View file
M plugins/document/scripts/document/store/actions-helpers/load-folder-content.js +1 −1 Go to diff View file
M plugins/document/scripts/document/store/lock/lock-actions.js +1 −1 Go to diff View file
M plugins/document/scripts/document/store/lock/lock-actions.test.js +1 −1 Go to diff View file
M plugins/document/scripts/document/store/mutations-upload.js +1 −1 Go to diff View file
M plugins/document/scripts/document/store/mutations.js +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_dragndrop.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_embedded-document.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_files-uploads-modal.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_headers.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_icons.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_notifications.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_switch-to-docman.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/_upload.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/quicklook/_quicklook-actions.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/quicklook/_quicklook-embedded.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/quicklook/_quicklook-folder.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/quicklook/_quicklook-header.scss +1 −1 Go to diff View file
M plugins/document/themes/BurningParrot/document/quicklook/_quicklook-properties.scss +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/Credential.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialAuthenticationException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialCreator.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialDAO.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialExpiredException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialIdentifierExtractor.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialInvalidUsernameException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialNotFoundException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialRemover.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/CredentialRetriever.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Credential/DuplicateCredentialException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/REST/DynamicCredentialsResource.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/REST/RequestSignatureVerifier.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/REST/ResourcesInjector.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Session/DynamicCredentialSession.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/Session/DynamicCredentialSessionNotInitializedException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/User/DynamicUser.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/User/DynamicUserCreator.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/User/InvalidStateCleanUpDoesNotInterruptException.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/include/dynamic_credentialsPlugin.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/rest/DynamicCredentialsPluginRESTInitializer.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/rest/DynamicCredentialsTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/rest/bootstrap.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/Credential/CredentialCreatorTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/Credential/CredentialIdentifierExtractorTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/Credential/CredentialRemoverTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/Credential/CredentialRetrieverTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/Credential/CredentialTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/REST/RequestSignatureVerifierTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/Session/DynamicCredentialSessionTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/User/DynamicUserTest.php +1 −1 Go to diff View file
M plugins/dynamic_credentials/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/forumml/bin/mail2dbng.php +1 −1 Go to diff View file
M plugins/forumml/include/ForumMLPluginInfo.class.php +1 −1 Go to diff View file
M plugins/forumml/include/Incoming/IncomingAttachment.php +1 −1 Go to diff View file
M plugins/forumml/include/Incoming/IncomingMail.php +1 −1 Go to diff View file
M plugins/forumml/include/Incoming/IncomingMailBody.php +1 −1 Go to diff View file
M plugins/forumml/include/Incoming/IncomingMailBodyHTML.php +1 −1 Go to diff View file
M plugins/forumml/include/Incoming/IncomingMailBodyText.php +1 −1 Go to diff View file
M plugins/forumml/include/MessageArchiver.php +1 −1 Go to diff View file
M plugins/forumml/tests/unit/Incoming/IncomingMailParsingTest.php +1 −1 Go to diff View file
M plugins/forumml/tests/unit/MessageArchiverTest.php +1 −1 Go to diff View file
M plugins/forumml/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/frs/db/mysql/updates/2016/2016050341101_create_plugin_frs_release_artifact.php +1 −1 Go to diff View file
M plugins/frs/include/FRS/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/frs/include/FRS/PluginInfo.php +1 −1 Go to diff View file
M plugins/frs/include/FRS/REST/v1/PackageMinimalRepresentationPaginatedCollection.php +1 −1 Go to diff View file
M plugins/frs/include/FRS/REST/v1/ReleaseResource.php +1 −1 Go to diff View file
M plugins/frs/include/FRS/ReleasePresenter.php +1 −1 Go to diff View file
M plugins/frs/include/FRS/Upload/Tus/FileDataStore.php +1 −1 Go to diff View file
M plugins/frs/include/Link/Dao.php +1 −1 Go to diff View file
M plugins/frs/include/Link/Retriever.php +1 −1 Go to diff View file
M plugins/frs/include/Link/Updater.php +1 −1 Go to diff View file
M plugins/frs/include/constants.php +1 −1 Go to diff View file
M plugins/frs/tests/rest/FRS/ReleaseTest.php +1 −1 Go to diff View file
M plugins/frs/tests/unit/FRS/Upload/FileToUploadCreatorTest.php +1 −1 Go to diff View file
M plugins/frs/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/git/bin/convert_gitolite_full_logs.php +1 −1 Go to diff View file
M plugins/git/bin/gitolite-test-ref-pattern.pl +1 −1 Go to diff View file
M plugins/git/bin/gl-membership.pl +1 −1 Go to diff View file
M plugins/git/bin/import_all_giotlite3_logs.php +1 −1 Go to diff View file
M plugins/git/bin/restore-tar-repository.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/201107071731_add_permission_type.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2012/201212141142_add_http_port.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2012/201212141151_add_git_read_permission_all_users.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201304031715_add_gerrit_ugroup_tracking.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201304080905_add_disconnect_date.php +1 −1 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/201306031352_add_branch_and_type_to_log.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201308051707_correct_plugin_git_service_short_name.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201308071113_add_missing_git_references.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201308231357_add_server_uses_ssl_option.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201309061407_add_remote_server_deleted_data_columns.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201309301112_add_housekeeping_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201310111459_drop_remote_server_deleted_column.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2013/201311191506_add_gerrit_config_template_table.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/201401240954_add_git_perms_admin_values.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201401271106_grant_git_admin_rigths_project_admins.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201403061609_add_gerrit_server_version_and_http_password.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201403130910_update_apache_config.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201409251452_add_table_plugin_git_mirrors.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201410031707_add_mirrored_information_on_repository.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201410061023_modify_table_plugin_git_mirrors.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201410061451_add_table_plugin_git_repository_mirrors.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201411061153_add_name_to_table_plugin_git_mirrors.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201411101016_add_backup_path_for_repositories.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2014/201411171516_update_user_grokmanifest.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2015/201503051029_add_restricted_mirrors.php +1 −1 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/2015/201504241113_update_private_projects.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2015/201512291430_add_index_for_git_statistics.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201601141739_add_plugin_git_default_project_mirrors_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201601271109_add_remote_servers_migration.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201604171720_add_remote_servers_auth_type.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201605191647_add_plugin_git_webhook_url_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201605241434_add_plugin_git_webhook_log_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201606010939_add_git_default_permission_values.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201606031138_add_plugin_git_repository_fine_grained_permissions_enabled_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201606061643_add_repository_fine_grained_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201606061654_add_repository_fine_grained_ugroup_tables.php +1 −1 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 +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201606090850_add_project_fine_grained_ugroup_tables.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201606131815_add_ci_token_to_git_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201607061503_add_replication_password_for_git_remote_server.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201610041409_create_plugin_git_full_history_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201610051400_use_timestamp_in_stats.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201610060900_create_plugin_git_file_logs_parse_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201610171336_create_plugin_git_fine_grained_regexp_enabled.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201610171725_create_plugin_git_default_fine_grained_regexp.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2016/201610171725_create_plugin_git_repository_fine_grained_regexp.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201701061020_add_missing_index_full_history.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201702071518_add_gerrit_servers_project_restriction_tables.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201702151712_create_table_to_notify_user.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201702161651_create_table_to_notify_ugroup.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201702211530_create_global_parameters_table.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201703301111_create_table_plugin_git_log_read.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201704031442_create_table_plugin_git_full_history_checkpoint.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2017/201710241704_update_git_file_logs_parse_to_bigint.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2018/201806131045_add_table_commit_status.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2018/201812051202_add_index_on_git_repository.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2018/201812061206_add_index_to_sort_git_repo_alphabetically.php +1 −1 Go to diff View file
M plugins/git/db/mysql/updates/2018/201812241457_add_table_big_object_authorized_project.php +1 −1 Go to diff View file
M plugins/git/include/AccessRightsPresenterOptionsBuilder.php +1 −1 Go to diff View file
M plugins/git/include/CIToken/Dao.php +1 −1 Go to diff View file
M plugins/git/include/CIToken/Presenter.php +1 −1 Go to diff View file
M plugins/git/include/CommitMetadata/CommitMetadata.php +1 −1 Go to diff View file
M plugins/git/include/CommitMetadata/CommitMetadataRetriever.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/CommitDoesNotExistException.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/CommitStatus.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/CommitStatusCreator.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/CommitStatusDAO.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/CommitStatusRetriever.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/CommitStatusUnknown.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/CommitStatusWithKnownStatus.php +1 −1 Go to diff View file
M plugins/git/include/CommitStatus/InvalidCommitReferenceException.php +1 −1 Go to diff View file
M plugins/git/include/DiskUsage/Retriever.php +1 −1 Go to diff View file
M plugins/git/include/Events/AfterRepositoryCreated.php +1 −1 Go to diff View file
M plugins/git/include/Events/AfterRepositoryForked.php +1 −1 Go to diff View file
M plugins/git/include/Git/AdminAllowedProjectsGerritPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/AdminAllowedProjectsPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/AdminMirrorAddPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/AdminMirrorEditPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/AdminMirrorListPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/AdminMirrorPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/AdminRepositoryListForProjectPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/BigObjectAuthorization/BigObjectAuthorizationDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/BigObjectAuthorization/BigObjectAuthorizationManager.php +1 −1 Go to diff View file
M plugins/git/include/Git/BinaryDetector.php +1 −1 Go to diff View file
M plugins/git/include/Git/BreadCrumbDropdown/GitCrumbBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/BreadCrumbDropdown/RepositoryCrumbBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/BreadCrumbDropdown/RepositorySettingsCrumbBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/BreadCrumbDropdown/ServiceAdministrationCrumbBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/Ci/Launcher.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/CollectGitRoutesEvent.php +1 −1 Go to diff View file
M plugins/git/include/Git/CreateRepositoryController.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/DefaultSettingsRouter.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/IndexController.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/Pane/AccessControl.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/Pane/AccessControlPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/Pane/DefaultSettingsPanesCollection.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/Pane/DisabledPane.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/Pane/Mirroring.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/Pane/MirroringPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/DefaultSettings/Pane/Pane.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/Exception.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/MembershipCommand.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/MembershipCommand/AddBinding.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/MembershipCommand/AddUser.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/MembershipCommand/RemoveBinding.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/MembershipCommand/RemoveUser.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/MembershipCommand/User.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/MembershipDao.class.php +1 −1 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/Gerrit/ProjectCreatorStatus.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/ProjectCreatorStatusDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/ProjectCreator_ProjectAlreadyexistsException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/ProjectDeletionException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/RemoteSSHConfig.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/Template/Git_Template_NotFoundException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/Template/Template.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/Template/TemplateDao.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/Template/TemplateFactory.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/Template/TemplateProcessor.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/UmbrellaProjectManager.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/User.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/UserAccountManager.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Driver/Gerrit/UserFinder.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GeneralSettingsController.php +1 −1 Go to diff View file
M plugins/git/include/Git/GeneralSettingsPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/GerritServerResourceRestrictor.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitAdditionalActionEvent.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitGodObjectWrapper.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitPluginDefaultController.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitRepositoryDeletionEvent.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/CannotAccessToGitoliteLogException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/ConfigPermissionsSerializer.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/GitModifications.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/GitoliteAccessURLGenerator.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/GitoliteConfWriter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/GitoliteFileLogsDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/GitoliteFullLogsToAggregatedLogs.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/GitoliteRCReader.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/Presenter/GitoliteConfPresenter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/AuthorizedKeysFileCreator.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/DumpKeyException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/Dumper.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/Gitolite3MassDumper.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/InvalidKeysCollector.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/Key.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/MalformedAuthorizedKeysFileException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/MassDumper.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/Provider/AccessException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/Provider/GerritServer.php +1 −1 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/Gitolite/SSHKey/Provider/IProvideKey.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/Provider/User.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/SSHKey/Provider/WholeInstanceKeysAggregator.php +1 −1 Go to diff View file
M plugins/git/include/Git/Gitolite/VersionDetector.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/ChainOfResponsibility/Command.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/ChainOfResponsibility/DoNothing.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/ChainOfResponsibility/EnableGitGc.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/ChainOfResponsibility/ServiceRestarter.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/ChainOfResponsibility/ServiceStopper.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/GitoliteHousekeepingDao.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/GitoliteHousekeepingGitGc.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/GitoliteHousekeepingResponse.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/GitoliteHousekeeping/GitoliteHousekeepingRunner.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/HTTP/Command.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/HTTP/CommandGitolite3.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/HTTP/GitHTTPOperation.php +1 −1 Go to diff View file
M plugins/git/include/Git/Hook/ExtractCrossReferences.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Hook/LogPushes.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Hook/ParseLog.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Hook/PostReceive.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Hook/PostReceiveMailSender.php +1 −1 Go to diff View file
M plugins/git/include/Git/Hook/PostReceiveMailsRetriever.php +1 −1 Go to diff View file
M plugins/git/include/Git/Hook/PushDetails.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/LatestHeartbeatsCollector.php +1 −1 Go to diff View file
M plugins/git/include/Git/MarkTechnicalReference.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/CreateException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/DefaultProjectMirrorDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/HostnameAlreadyUsedException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/HostnameIsReservedException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/ManifestFileGenerator.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/ManifestManager.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/Mirror.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/MirrorNoChangesException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/MirrorNotFoundException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/MirrorPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/MirrorResourceRestrictor.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/MirrorSystemEventQueue.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/MirrorUpdater.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/MissingDataException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Mirror/RestrictedMirrorDao.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Notifications/CollectionOfUgroupToBeNotifiedPresenterBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/Notifications/NotificationsForProjectMemberCleaner.php +1 −1 Go to diff View file
M plugins/git/include/Git/Notifications/UgroupsToNotifyDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Notifications/UsersToNotifyDao.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 +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedPatternValidator.php +1 −1 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/FineGrainedPermissionDestructor.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedPermissionFactory.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedPermissionReplicator.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedPermissionSaver.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedPermissionSorter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedRegexpValidator.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedRetriever.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/FineGrainedUpdater.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/GetProtectedGitReferences.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/HistoryValueFormatter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/PatternValidator.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/Permission.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/PermissionChangesDetector.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/ProtectedReferencePermission.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/RegexpFineGrainedDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/RegexpFineGrainedDisabler.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/RegexpFineGrainedEnabler.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/RegexpFineGrainedRetriever.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/RegexpPermissionFilter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/RegexpRepositoryDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/RegexpTemplateDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/TemplateFineGrainedPermissionReplicator.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/TemplateFineGrainedPermissionSaver.php +1 −1 Go to diff View file
M plugins/git/include/Git/Permissions/TemplatePermissionsUpdater.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/AdminUrlBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/CollectionOfUGroupRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/CollectionOfUGroupsRepresentationFormatter.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/CollectionOfUgroupsFormatter.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/FineGrainedPermissionRepresentation.php +1 −1 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/PermissionPerGroupController.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/PermissionPerGroupGitSectionBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/RepositoriesPermissionRepresentation.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/RepositoriesPermissionRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/RepositoriesSectionPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/RepositoryFineGrainedRepresentation.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/RepositoryFineGrainedRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/PermissionsPerGroup/RepositorySimpleRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/git/include/Git/PostInitGitRepositoryWithDataEvent.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Dao.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/HttpUserValidator.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/MigrationHandler.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/Permission/ServerPermissionDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/Permission/ServerPermissionManager.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/ProjectNameBuilder.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/ReplicationHTTPUser.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/ReplicationHTTPUserAuthenticator.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/ReplicationSSHKey.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/Gerrit/ReplicationSSHKeyFactoryException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/GerritCanMigrateChecker.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/GerritServerFactory.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/RemoteServer/NotFoundException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/AdditionalInformationRepresentationCache.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/AdditionalInformationRepresentationRetriever.php +1 −1 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 +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/GitPHPProjectRetriever.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/GitRepositoryNameIsInvalidException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/GitRepositoryObjectsSizeRetriever.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/LargestObjectSizeGitRepository.php +1 −1 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/RepositoryFromRequestRetriever.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/CITokenController.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/CITokenRouter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/SettingsController.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/UserCannotAdministrateRepositoryException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/WebhookAddController.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/WebhookController.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/WebhookDeleteController.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/WebhookEditController.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/Settings/WebhookRouter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/CloneURLPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/CloneURLs.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/CommitForCurrentTreeRetriever.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/DefaultCloneURL.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/FilesHeaderPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/ForkedRepositoryPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/NavigationTabsPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/NoCloneURLException.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/ParentRepositoryPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Repository/View/RepositoryExternalNavigationTabsCollector.php +1 −1 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/TabPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/RepositoryList/DaoByRepositoryPathSorter.php +1 −1 Go to diff View file
M plugins/git/include/Git/RepositoryList/GitRepositoryListPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/RestrictedGerritServerDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/RouterLink.php +1 −1 Go to diff View file
M plugins/git/include/Git/Statistics/FrequenciesSample.php +1 −1 Go to diff View file
M plugins/git/include/Git/SystemCheck.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/SystemEventQueue.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/UserAccountManager.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/UserSynchronisationException.class.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/CreateWebhookButtonPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/CreateWebhookModalPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/EditWebhookModalPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/GitWebhookStatusLogger.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/Webhook.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/WebhookDao.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/WebhookFactory.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/WebhookLogPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/WebhookModalPresenter.php +1 −1 Go to diff View file
M plugins/git/include/Git/Webhook/WebhookRequestSender.php +1 −1 Go to diff View file
M plugins/git/include/GitBundle.php +1 −1 Go to diff View file
M plugins/git/include/GitDao.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 +1 −1 Go to diff View file
M plugins/git/include/GitPHP/Events/DisplayFileContentInGitView.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/NotFoundException.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/Shortlog/ShortlogCommitPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/Shortlog/ShortlogCommitsPerDayPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/Shortlog/ShortlogPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/Shortlog/ShortlogPresenterBuilder.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/Tree/TreePresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/controller/Controller.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/Blob.php +1 −1 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/GitExe.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/GitObjectType.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/ProjectList.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/ProjectProvider.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/RepositoryAccessException.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/RepositoryNotExistingException.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/Submodule.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/Tag.php +1 −1 Go to diff View file
M plugins/git/include/GitPHP/git/Tree.php +1 −1 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.highlight.php +1 −1 Go to diff View file
M plugins/git/include/GitPresenters/AdminMassUpdateMirroringPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPresenters/MirrorPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPresenters/MirroredRepositoryPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPresenters/MirroringPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitPresenters/RepositoryPaneNotificationPresenter.php +1 −1 Go to diff View file
M plugins/git/include/GitRepositoryCreator.class.php +1 −1 Go to diff View file
M plugins/git/include/GitRepositoryCreatorImpl.class.php +1 −1 Go to diff View file
M plugins/git/include/GitRepositoryGitoliteAdmin.class.php +1 −1 Go to diff View file
M plugins/git/include/GitRepositoryPermissionsManager.class.php +1 −1 Go to diff View file
M plugins/git/include/GitRepositoryWithPermissions.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/GitViewHeader.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/Header/HeaderRenderer.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/AccessControl.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/CIToken.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/Delete.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/GeneralSettings.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/Mirroring.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/Pane.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/RepoManagement/Pane/PanesCollection.php +1 −1 Go to diff View file
M plugins/git/include/GitViews/ShowRepo/Content.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViewsRepositoriesTraversalStrategy.class.php +1 −1 Go to diff View file
M plugins/git/include/GitViewsRepositoriesTraversalStrategy_Selectbox.class.php +1 −1 Go to diff View file
M plugins/git/include/Git_Backend_Interface.php +1 −1 Go to diff View file
M plugins/git/include/Git_Gitolite_SSHKeyDumper.class.php +1 −1 Go to diff View file
M plugins/git/include/Git_Gitolite_SSHKeyMassDumper.class.php +1 −1 Go to diff View file
M plugins/git/include/Git_PostReceiveMailDao.class.php +1 −1 Go to diff View file
M plugins/git/include/Git_PostReceiveMailManager.class.php +1 −1 Go to diff View file
M plugins/git/include/GlobalParameterDao.php +1 −1 Go to diff View file
M plugins/git/include/History/Dao.php +1 −1 Go to diff View file
M plugins/git/include/History/GitPhpAccessLogger.php +1 −1 Go to diff View file
M plugins/git/include/MalformedPathException.class.php +1 −1 Go to diff View file
M plugins/git/include/REST/v1/GerritResource.php +1 −1 Go to diff View file
M plugins/git/include/REST/v1/GitBranchRepresentation.php +1 −1 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/GitCommitRepresentationCollection.php +1 −1 Go to diff View file
M plugins/git/include/REST/v1/GitCommitStatusRepresentation.php +1 −1 Go to diff View file
M plugins/git/include/REST/v1/GitCommitVerificationRepresentation.php +1 −1 Go to diff View file
M plugins/git/include/REST/v1/GitRepositoryReference.class.php +1 −1 Go to diff View file
M plugins/git/include/REST/v1/GitTagRepresentation.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/ParseGitolite3Logs.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/ProjectIsSuspended.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_DELETE_MIRROR.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_DUMP_ALL_MIRRORED_REPOSITORIES.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_DUMP_ALL_SSH_KEYS.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_EDIT_SSH_KEYS.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_GERRIT_PROJECT_DELETE.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_GERRIT_PROJECT_READONLY.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_GROKMIRROR_MANIFEST_CHECK.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_GROKMIRROR_MANIFEST_REPODELETE.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_GROKMIRROR_MANIFEST_UPDATE.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_GROKMIRROR_MANIFEST_UPDATE_FOLLOWING_A_GIT_PUSH.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_LEGACY_REPO_ACCESS.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_LEGACY_REPO_DELETE.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_PROJECTS_UPDATE.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_REGENERATE_GITOLITE_CONFIG.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_REPO_FORK..php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_REPO_UPDATE.class.php +1 −1 Go to diff View file
M plugins/git/include/SystemEvents/SystemEvent_GIT_UPDATE_MIRROR.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/XmlUgroupRetriever.php +1 −1 Go to diff View file
M plugins/git/include/constants.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/DeletePluginNotInstalledException.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/GitRepoNotFoundException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/GitRepoNotInProjectException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/GitRepoNotOnGerritException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/GitRepoNotReadableException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/GitRepoRefNotFoundException.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/GitRepositoryException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/GitUserNotAdminException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/Git_Command_Exception.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/Git_Command_UnknownObjectTypeException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/ProjectNotFoundException.class.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/RemoteServerDoesNotExistException.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/exceptions/RepositoryNotMigratedException.php +1 −1 Go to diff View file
M plugins/git/include/exceptions/TemplateNotInProjectNotInHierarchyException.php +1 −1 Go to diff View file
M plugins/git/scripts/mass-update.js +1 −1 Go to diff View file
M plugins/git/scripts/permissions-per-group/src/GitInlineFilter.vue +1 −1 Go to diff View file
M plugins/git/scripts/permissions-per-group/src/GitPermissions.vue +1 −1 Go to diff View file
M plugins/git/scripts/permissions-per-group/src/GitPermissionsTable.vue +1 −1 Go to diff View file
M plugins/git/scripts/permissions-per-group/src/GitPermissionsTableRepository.vue +1 −1 Go to diff View file
M plugins/git/scripts/permissions.js +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/breadcrumb-presenter.ts +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/ActionBar.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/ActionBar/DisplayModeSwitcher.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/ActionBar/ListFilter.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/ActionBar/SelectOwner.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/ErrorMessage.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/FilterEmptyState.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitRepository.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/NoRepositoryEmptyState.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/PullRequestBadge.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/RepositoryList.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/RepositoryListSpinner.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/SuccessMessage.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/folders/CollapsibleFolder.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/constants.ts +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/store/actions.js +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/store/index.js +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/store/mutations.js +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/store/state.js +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/support/local-vue.js +1 −1 Go to diff View file
M plugins/git/scripts/webhooks.js +1 −1 Go to diff View file
M plugins/git/templates/gitphp/commitdiffplain.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/blame.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/blob-diff-side-by-side.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/blob-diff.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/blob-header-title.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/blob-header.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/blob.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/commit-diff-side-by-side.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/commit-diff.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/commit-files.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/commit-title-metadata.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/commit.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/commits-as-cards.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/commits-list.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/file-diff.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/history.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/message.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/refs-badges.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/shortlog.tpl +1 −1 Go to diff View file
M plugins/git/templates/gitphp/tuleap/tree.tpl +1 −1 Go to diff View file
M plugins/git/tests/rest/Git/GerritTest.php +1 −1 Go to diff View file
M plugins/git/tests/rest/Git/RepositoryTest.php +1 −1 Go to diff View file
M plugins/git/tests/rest/TestBase.php +1 −1 Go to diff View file
M plugins/git/tests/rest/bootstrap.php +1 −1 Go to diff View file
M plugins/git/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/git/tests/unit/CommitMetadata/CommitMetadataRetrieverTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/CommitStatus/CommitStatusCreatorTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/CommitStatus/CommitStatusRetrieverTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/CommitStatus/CommitStatusWithKnownStatusTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/BinaryDetectorTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/ConfigPermissionsSerializerFineGrainedPermissionsTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/ConfigPermissionsSerializerGerritTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/ConfigPermissionsSerializerGitoliteConfTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/ConfigPermissionsSerializerMirrorsTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/ConfigPermissionsSerializerTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/ProjectSerializerTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/RegenerateConfigurationCommandTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Gitolite/SSHKey/KeyTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Repository/LargestObjectSizeGitRepositoryTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Repository/RepositoriesWithObjectsOverTheLimitCommandTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Repository/View/DefaultCloneURLSelectorTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/Repository/View/FilesHeaderPresenterBuilderTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Git/RepositoryList/DaoByRepositoryPathSorterTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/GitPHP/CommitTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/GitPHP/PackTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/GitPHP/TreeTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/GitRoutingTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Gitolite/Git_Gitolite_ConfigPermissionsSerializerTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/Gitolite/GitoliteAccessURLGeneratorTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/PermissionsPerGroup/RepositoryFineGrainedRepresentationBuilderTest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/SystemEvents/SystemEvent_GIT_GERRIT_PROJECT_DELETETest.php +1 −1 Go to diff View file
M plugins/git/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/git/themes/BurningParrot/repositories/_repository-card.scss +1 −1 Go to diff View file
M plugins/git/themes/BurningParrot/repository/gitphp/_commit.scss +1 −1 Go to diff View file
M plugins/git/themes/BurningParrot/repository/gitphp/_commitdiff.scss +1 −1 Go to diff View file
M plugins/git/themes/BurningParrot/repository/gitphp/_highlight.scss +1 −1 Go to diff View file
M plugins/git/themes/BurningParrot/repository/gitphp/_shortlog.scss +1 −1 Go to diff View file
M plugins/git/themes/BurningParrot/repository/gitphp/_tree.scss +1 −1 Go to diff View file
M plugins/gitlfs/db/mysql/updates/2018/201806131045_add_object_tables.php +1 −1 Go to diff View file
M plugins/gitlfs/db/mysql/updates/2018/201812041200_add_object_id_index.php +1 −1 Go to diff View file
M plugins/gitlfs/db/mysql/updates/2018/201812111541_add_max_size_table.php +1 −1 Go to diff View file
M plugins/gitlfs/db/mysql/updates/2018/201812271615_move_max_file_size_in_forgeconfig.php +1 −1 Go to diff View file
M plugins/gitlfs/db/mysql/updates/201811291215_add_ssh_authorization_table.php +1 −1 Go to diff View file
M plugins/gitlfs/db/mysql/updates/2019/201901111045_add_lock_table.php +1 −1 Go to diff View file
M plugins/gitlfs/db/mysql/updates/2019/201901221400_add_index_on_repository_id.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Admin/AdminDao.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Admin/IndexController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Admin/IndexPostController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Admin/IndexPresenter.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/ActionAuthorizationDAO.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/ActionAuthorizationException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/ActionAuthorizationMatchingUnknownRepositoryException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/ActionAuthorizationNotFoundException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/ActionAuthorizationRequest.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/ActionAuthorizationTokenCreator.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/ActionAuthorizationVerifier.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/AuthorizedAction.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/InvalidActionAuthorizationException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/Type/ActionAuthorizationType.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/Type/ActionAuthorizationTypeDownload.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/Type/ActionAuthorizationTypeUpload.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/Action/Type/ActionAuthorizationTypeVerify.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/InvalidUserUserAuthorizationException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/Operation/UnknownUserOperationException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/Operation/UserOperation.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/Operation/UserOperationDownload.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/Operation/UserOperationFactory.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/Operation/UserOperationUpload.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/UserAuthorizationDAO.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/UserAuthorizationException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/UserAuthorizationNotFoundException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/UserAuthorizationRemover.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/UserNotFoundExceptionUser.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/UserTokenCreator.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Authorization/User/UserTokenVerifier.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/LFSBatchController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Request/BatchRequest.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Request/BatchRequestOperation.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Request/BatchRequestReference.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Request/IncorrectlyFormattedBatchRequestException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActionContent.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActionHref.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActionHrefDownload.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActionHrefUpload.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActionHrefVerify.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActions.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActionsForDownloadOperation.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/Action/BatchResponseActionsForUploadOperation.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/BatchResponseObject.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/BatchResponseObjectWithActions.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/BatchResponseObjectWithNotFoundError.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/BatchResponseObjectWithoutAction.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/BatchSuccessfulResponse.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/BatchSuccessfulResponseBuilder.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/MaxFileSizeException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/ProjectQuotaExceededException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Batch/Response/UnknownOperationException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/GitLFSException.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/GitPHPDisplay/DownloadURLBuilder.php +1 −1 Go to diff View file
M plugins/gitlfs/include/HTTP/GitLfsHTTPOperation.php +1 −1 Go to diff View file
M plugins/gitlfs/include/HTTP/ReferencedOperation.php +1 −1 Go to diff View file
M plugins/gitlfs/include/HTTP/RequestReference.php +1 −1 Go to diff View file
M plugins/gitlfs/include/HTTP/UserRetriever.php +1 −1 Go to diff View file
M plugins/gitlfs/include/LFSObject/LFSObject.php +1 −1 Go to diff View file
M plugins/gitlfs/include/LFSObject/LFSObjectDAO.php +1 −1 Go to diff View file
M plugins/gitlfs/include/LFSObject/LFSObjectID.php +1 −1 Go to diff View file
M plugins/gitlfs/include/LFSObject/LFSObjectPathAllocator.php +1 −1 Go to diff View file
M plugins/gitlfs/include/LFSObject/LFSObjectRetriever.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Controller/LFSLockCreateController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Controller/LFSLockDeleteController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Controller/LFSLockListController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Controller/LFSLockVerifyController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Lock.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/LockCreator.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/LockDao.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/LockDestructionNotAuthorizedException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/LockDestructor.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/LockRetriever.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Request/IncorrectlyFormattedReferenceRequestException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Request/LockCreateRequest.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Request/LockDeleteRequest.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Request/LockVerifyRequest.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Response/LockResponse.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Response/LockResponseBuilder.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Lock/Response/LockResponseConflictErrorRepresentation.php +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M plugins/gitlfs/include/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/gitlfs/include/SSHAuthenticate/InvalidCommandException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/SSHAuthenticate/LFSEndPointDiscovery.php +1 −1 Go to diff View file
M plugins/gitlfs/include/SSHAuthenticate/SSHAuthenticate.php +1 −1 Go to diff View file
M plugins/gitlfs/include/SSHAuthenticate/SSHAuthenticateResponseBuilder.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Statistics/Collector.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Statistics/LFSStatisticsDAO.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Statistics/Retriever.php +1 −1 Go to diff View file
M plugins/gitlfs/include/StreamFilter/FilterHandle.php +1 −1 Go to diff View file
M plugins/gitlfs/include/StreamFilter/FilterInterface.php +1 −1 Go to diff View file
M plugins/gitlfs/include/StreamFilter/FilteringProcessResponse.php +1 −1 Go to diff View file
M plugins/gitlfs/include/StreamFilter/StreamFilter.php +1 −1 Go to diff View file
M plugins/gitlfs/include/StreamFilter/StreamFilterWrapper.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/BlockToMaxSizeOnReadFilter.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/LFSBasicTransferException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/LFSBasicTransferObjectIntegrityException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/LFSBasicTransferObjectOutOfBoundSizeException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/LFSBasicTransferObjectSizeException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/LFSBasicTransferUploadController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/ReadTooMuchDataException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Basic/SHA256ComputeOnReadFilter.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/BytesAmountHandledLFSObjectInstrumentationFilter.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/LFSActionUserAccessHTTPRequestChecker.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/LFSTransferVerificationException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/LFSTransferVerificationNotUploadedObjectException.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/LFSTransferVerifyController.php +1 −1 Go to diff View file
M plugins/gitlfs/include/Transfer/Transfer.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Authorization/Action/ActionAuthorizationTokenCreatorTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Authorization/Action/ActionAuthorizationVerifierTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Authorization/User/Operation/UserOperationFactoryTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Authorization/User/UserTokenCreatorTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Authorization/User/UserTokenVerifierTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Batch/Request/BatchRequestOperationTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Batch/Request/BatchRequestTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Batch/Response/Action/BatchResponseActionContentTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Batch/Response/BatchResponseObjectWithActionsTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Batch/Response/BatchSuccessfulResponseBuilderTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Batch/Response/BatchSuccessfulResponseTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/GitPHPDisplay/DetectorTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/GitPHPDisplay/DownloadURLBuilderTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/HTTP/LFSAPIHTTPAccessControlTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/LFSObject/LFSObjectIDTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/LFSObject/LFSObjectRetrieverTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/LFSObject/LFSObjectTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Lock/LockDestructorTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Lock/Request/LockCreateRequestTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Lock/Request/LockDeleteRequestTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Lock/Request/LockVerifyRequestTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Lock/Response/LockResponseBuilderTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/SSHAuthenticate/LFSEndPointDiscoveryTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/SSHAuthenticate/SSHAuthenticateResponseBuilderTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/SSHAuthenticate/SSHAuthenticateTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Statistics/CollectorTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/StreamFilter/FilterHandleTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/StreamFilter/ReplaceDataFilter.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/StreamFilter/StreamFilterWrapperTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Transfer/Basic/BlockToMaxSizeOnReadFilterTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Transfer/Basic/SHA256ComputeOnReadFilterTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Transfer/BytesAmountHandledLFSObjectInstrumentationFilterTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/Transfer/LFSActionUserAccessHTTPRequestCheckerTest.php +1 −1 Go to diff View file
M plugins/gitlfs/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/db/mysql/updates/2011/201111191507_add_burndown.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/db/mysql/updates/2012/201210291756_add_old_id_column_on_chart.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/db/mysql/updates/2013/201302271529_add_cumulative_flow_chart_table.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/Async/ChartDataController.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/Chart/D3CompatibleChartVisitor.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/Chart/Visitable.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/Chart/Visitor.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/GraphActionsPresenter.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/GraphOnTrackersV5PluginInfo.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/GraphOnTrackersV5_Widget_ProjectChart.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/data-access/GraphOnTrackersV5_Chart_Bar.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_CumulativeFlowDao.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_Gantt.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/data-access/GraphOnTrackersV5_Chart_Pie.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/data-transformation/ChartDataBuilderV5.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Burndown_Data.class.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/include/data-transformation/GraphOnTrackersV5_Burndown_DataBuilder.class.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_CumulativeFlow.class.php +1 −1 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/scripts/src/gettext_provider.js +1 −1 Go to diff View file
M plugins/graphontrackersv5/scripts/src/graph-cumulative-flow.js +1 −1 Go to diff View file
M plugins/graphontrackersv5/scripts/src/graphs-groupedbar.js +1 −1 Go to diff View file
M plugins/graphontrackersv5/scripts/src/graphs-layout-helper.js +1 −1 Go to diff View file
M plugins/graphontrackersv5/scripts/src/loadGraphs.js +1 −1 Go to diff View file
M plugins/graphontrackersv5/scripts/src/rest-querier.js +1 −1 Go to diff View file
M plugins/graphontrackersv5/tests/unit/GraphOnTrackersV5_BurndownDataTest.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/tests/unit/GraphOnTrackersV5_InSessionChartSorterTest.php +1 −1 Go to diff View file
M plugins/graphontrackersv5/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/hudson/db/mysql/updates/2015/201512071530_add_svn_paths.php +1 −1 Go to diff View file
M plugins/hudson/db/mysql/updates/2015/201512091121_update_default_svn_paths.php +1 −1 Go to diff View file
M plugins/hudson/include/HudsonJob.class.php +1 −1 Go to diff View file
M plugins/hudson/include/HudsonJobBuilder.php +1 −1 Go to diff View file
M plugins/hudson/include/HudsonJobLazyExceptionHandler.php +1 −1 Go to diff View file
M plugins/hudson/include/HudsonWidget.class.php +1 −1 Go to diff View file
M plugins/hudson/include/MinimalHudsonJob.php +1 −1 Go to diff View file
M plugins/hudson/include/MinimalHudsonJobFactory.class.php +1 −1 Go to diff View file
M plugins/hudson/include/PluginHudsonJobDao.class.php +1 −1 Go to diff View file
M plugins/hudson/include/SVNPathsUpdater.php +1 −1 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 +1 −1 Go to diff View file
M plugins/hudson/include/constants.php +1 −1 Go to diff View file
M plugins/hudson/include/hudson.class.php +1 −1 Go to diff View file
M plugins/hudson/include/hudsonActions.class.php +1 −1 Go to diff View file
M plugins/hudson/include/hudsonPluginInfo.class.php +1 −1 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobBuildHistory.class.php +1 −1 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobLastArtifacts.class.php +1 −1 Go to diff View file
M plugins/hudson/include/hudson_Widget_JobLastBuilds.class.php +1 −1 Go to diff View file
M plugins/hudson/include/hudson_Widget_MyMonitoredJobs.class.php +1 −1 Go to diff View file
M plugins/hudson/include/hudson_Widget_ProjectJobsOverview.class.php +1 −1 Go to diff View file
M plugins/hudson/scripts/test-results-pie-chart.js +1 −1 Go to diff View file
M plugins/hudson/tests/unit/HudsonJobBuilderTest.php +1 −1 Go to diff View file
M plugins/hudson/tests/unit/HudsonJobFactoryTest.php +1 −1 Go to diff View file
M plugins/hudson/tests/unit/HudsonJobLazyExceptionHandlerTest.php +1 −1 Go to diff View file
M plugins/hudson/tests/unit/HudsonJobTest.php +1 −1 Go to diff View file
M plugins/hudson/tests/unit/SVNPathsUpdaterTest.php +1 −1 Go to diff View file
M plugins/hudson/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/hudson_git/db/mysql/updates/2016/201604071042_create_hudson_git_job.php +1 −1 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/include/HudsonGit/GitWebhooksSettingsCreateJenkinsButtonPresenter.php +1 −1 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Hook/ModalCreatePresenter.php +1 −1 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Hook/ModalEditPresenter.php +1 −1 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Hook/UnableToLaunchBuildException.php +1 −1 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/hudson_git/include/HudsonGit/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/hudson_git/include/HudsonGit/PollingResponse.php +1 −1 Go to diff View file
M plugins/hudson_git/include/constants.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/ContinuousIntegrationCollector.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/FormPresenter.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/HudsonSvnPluginDescriptor.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/HudsonSvnPluginInfo.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/Job/Dao.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/Job/Factory.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/Job/Job.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/Job/Launcher.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/Job/Manager.php +1 −1 Go to diff View file
M plugins/hudson_svn/include/constants.php +1 −1 Go to diff View file
M plugins/hudson_svn/tests/unit/Job/LauncherTest.php +1 −1 Go to diff View file
M plugins/hudson_svn/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/label/db/mysql/updates/2017/201709271208_add_table_plugin_label_config.php +1 −1 Go to diff View file
M plugins/label/include/Label/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/label/include/Label/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/label/include/Label/REST/ResourcesInjector.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 +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelAreMandatoryException.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelAreNotValidException.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelBuilder.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelConfigDao.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelConfigRetriever.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelConfigurationLabelsFormatter.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelDoesNotBelongToProjectException.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelRequestDataValidator.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelRetriever.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabelSelectorPresenter.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabeledItems.php +1 −1 Go to diff View file
M plugins/label/include/Label/Widget/ProjectLabeledItemsPresenter.php +1 −1 Go to diff View file
M plugins/label/scripts/configure-widget/index.js +1 −1 Go to diff View file
M plugins/label/scripts/configure-widget/labels-box.js +1 −1 Go to diff View file
M plugins/label/scripts/project-labeled-items/src/LabeledItemsList.test.js +1 −1 Go to diff View file
M plugins/label/scripts/project-labeled-items/src/LabeledItemsList.vue +1 −1 Go to diff View file
M plugins/label/scripts/project-labeled-items/src/rest-querier.js +1 −1 Go to diff View file
M plugins/label/tests/unit/ProjectLabelRequestDataValidatorTest.php +1 −1 Go to diff View file
M plugins/label/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/label/themes/BurningParrot/css/_labels-box.scss +1 −1 Go to diff View file
M plugins/ldap/bin/ldap_feed_user.php +1 −1 Go to diff View file
M plugins/ldap/db/mysql/updates/2016/201603031145_clean_ldap_ugroup_removed.php +1 −1 Go to diff View file
M plugins/ldap/db/mysql/updates/2016/201609281613_add_synchro_column.php +1 −1 Go to diff View file
M plugins/ldap/db/mysql/updates/2016/201609301657_add_bind_column.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP/Project/UGroup/Binding/AdditionalModalPresenterBuilder.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_AdministrationPresenter.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_AuthenticationFailedException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_DirectoryCleanUpDao.class.php +1 −1 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_ProjectDao.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_ProjectGroupDao.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_SVN_Apache_ModPerl.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_SearchPeopleResultPresenter.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_SyncMail.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_UserNotFoundException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_UserSync.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LDAP_UserSync_Orange.class.php +1 −1 Go to diff View file
M plugins/ldap/include/LinkModalContentPresenter.php +1 −1 Go to diff View file
M plugins/ldap/include/NonUniqueUidRetriever.php +1 −1 Go to diff View file
M plugins/ldap/include/constants.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/AddException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/BindException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/ConnexionException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/DeleteException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/IdentifierTypeNotFoundException.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/IdentifierTypeNotRecognizedException.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/NoWriteException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/RenameException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/exception/UpdateException.class.php +1 −1 Go to diff View file
M plugins/ldap/include/system_event/SystemEvent_PLUGIN_LDAP_UPDATE_LOGIN.class.php +1 −1 Go to diff View file
M plugins/ldap/site-content/en_US/synchronize_user_of.txt +1 −1 Go to diff View file
M plugins/ldap/themes/BurningParrot/css/_ldap.scss +1 −1 Go to diff View file
M plugins/ldap/themes/BurningParrot/css/_project-admin-members.scss +1 −1 Go to diff View file
M plugins/ldap/themes/BurningParrot/css/_project-admin-ugroups.scss +1 −1 Go to diff View file
M plugins/mediawiki/bin/identify_lost_databases.php +1 −1 Go to diff View file
M plugins/mediawiki/bin/migrate_to_123.php +1 −1 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 +1 −1 Go to diff View file
M plugins/mediawiki/bin/mw-maintenance-wrapper.php +1 −1 Go to diff View file
M plugins/mediawiki/bin/mw-plugin-init.php +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2013/201306061508_add_interwiki_table.php +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2014/201402130957_add_ugroup_mapping_table.php +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2014/201407081620_replace_mediwiki_apache_conf.php +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2014/201407231643_fill_database_table_with_dash_named_projects.php +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2014/20140805_add_admin_options_table.php +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2015/20150408_add_site_restricted_features_table.php +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2015/20150629_add_mediawiki_access_control_table.php +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2015/20150701_insert_default_values_for_default_site_template.php +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M plugins/mediawiki/db/mysql/updates/2018/20180618_add_mediawiki_math_extension.php +1 −1 Go to diff View file
M plugins/mediawiki/etc/mediawiki.inc.dist +1 −1 Go to diff View file
M plugins/mediawiki/extensions/TuleapArtLinks/TuleapArtLinks.hooks.php +1 −1 Go to diff View file
M plugins/mediawiki/extensions/TuleapArtLinks/TuleapArtLinks.php +1 −1 Go to diff View file
M plugins/mediawiki/fusionforge/compat/forge_get_config.php +1 −1 Go to diff View file
M plugins/mediawiki/fusionforge/compat/load_compatibilities_method.php +1 −1 Go to diff View file
M plugins/mediawiki/fusionforge/compat/utils.php +1 −1 Go to diff View file
M plugins/mediawiki/include/ForgeUserGroupPermission/MediawikiAdminAllProjects.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/Maintenance/CleanUnusedDao.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediaWikiPluginInfo.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediaWikiXMLImporter.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiAdminLanguagePanePresenter.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiAdminPanePresenter.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiAdminPermissionsPanePresenter.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiDao.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiExtensionDAO.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiFusionForgeProjectNameRetriever.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiGroupPresenter.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiGroups.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiInstantiaterException.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiLanguageDao.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiLanguageManager.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiMLEBExtensionManager.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiMLEBExtensionManagerLoader.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiMathExtensionEnabler.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiSiteAdminAllowedProjectsPresenter.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiSiteAdminController.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiSiteAdminResourceRestrictor.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiSiteAdminResourceRestrictorDao.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiUserGroupsMapper.class.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiVersionDao.php +1 −1 Go to diff View file
M plugins/mediawiki/include/MediawikiVersionManager.php +1 −1 Go to diff View file
M plugins/mediawiki/include/Migration/MediawikiMigrator.php +1 −1 Go to diff View file
M plugins/mediawiki/include/Migration/MoveToCentralDbDao.php +1 −1 Go to diff View file
M plugins/mediawiki/include/PermissionsPerGroup/PermissionPerGroupPaneBuilder.php +1 −1 Go to diff View file
M plugins/mediawiki/include/UnsupportedLanguageException.php +1 −1 Go to diff View file
M plugins/mediawiki/include/UnsupportedVersionException.php +1 −1 Go to diff View file
M plugins/mediawiki/include/constants.php +1 −1 Go to diff View file
M plugins/mediawiki/include/events/SystemEvent_MEDIAWIKI_TO_CENTRAL_DB.php +1 −1 Go to diff View file
M plugins/mediawiki/include/events/SytemEvent_MEDIAWIKI_SWITCH_TO_123.class.php +1 −1 Go to diff View file
M plugins/mediawiki/tests/e2e/cypress/_fixtures/platform_allows_anonymous/project.xml +1 −1 Go to diff View file
M plugins/mediawiki/tests/e2e/cypress/_fixtures/platform_allows_restricted/project.xml +1 −1 Go to diff View file
M plugins/mediawiki/tests/e2e/cypress/_fixtures/platform_allows_restricted/users.xml +1 −1 Go to diff View file
M plugins/mediawiki/tests/e2e/cypress/cypress/integration/mediawiki.spec.ts +1 −1 Go to diff View file
M plugins/mediawiki/tests/unit/MediawikiLanguageManagerTest.php +1 −1 Go to diff View file
M plugins/mediawiki/tests/unit/MediawikiMathExtensionEnablerTest.php +1 −1 Go to diff View file
M plugins/mediawiki/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/mediawiki/www/LocalSettings.php +1 −1 Go to diff View file
M plugins/mediawiki/www/forge_admin.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/EnrollmentDisplayController.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/EnrollmentPresenter.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/EnrollmentRegisterController.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TOTP/EnrollmentTOTPException.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TOTP/EnrollmentTOTPMissingSessionSecretException.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TOTP/InvalidTOTPCodeException.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TOTP/NotFoundTOTPEnrollmentException.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TOTP/TOTPEnroller.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TOTP/TOTPEnrollmentDAO.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TOTP/TOTPRetriever.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TrialAuthenticationDisplayController.php +1 −1 Go to diff View file
M plugins/mfa/include/Enrollment/TrialAuthenticationVerifierController.php +1 −1 Go to diff View file
M plugins/mfa/include/OTP/TOTP.php +1 −1 Go to diff View file
M plugins/mfa/include/OTP/TOTPMode.php +1 −1 Go to diff View file
M plugins/mfa/include/OTP/TOTPModeBuilder.php +1 −1 Go to diff View file
M plugins/mfa/include/OTP/TOTPValidator.php +1 −1 Go to diff View file
M plugins/mfa/include/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/mfa/include/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/mfa/include/mfaPlugin.php +1 −1 Go to diff View file
M plugins/mfa/tests/unit/Enrollment/TOTP/TOTPEnrollerTest.php +1 −1 Go to diff View file
M plugins/mfa/tests/unit/OTP/TOTPTest.php +1 −1 Go to diff View file
M plugins/mfa/tests/unit/OTP/TOTPValidatorTest.php +1 −1 Go to diff View file
M plugins/mfa/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/install.sql +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2016/201602151330_create_unlinked_account_table.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2016/201602181030_add_column_last_used_user_mapping.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2016/20160316_add_google_default_provider.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2016/201603171433_add_icon_color_columns.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2016/201607291120_invalidate_potential_invalid_user_mapping.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2016/201610141445_allow_to_login_with_multiple_accounts_on_the_same_provider.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2016/201611221600_be_able_to_define_a_provider_as_unique_authentication_endpoint.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/mysql/2018/20180913_update_google_endpoints.php +1 −1 Go to diff View file
M plugins/openidconnectclient/db/uninstall.sql +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/AccountLinker/UnlinkedAccount.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/AccountLinker/UnlinkedAccountDao.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/AccountLinker/UnlinkedAccountDataAccessException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/AccountLinker/UnlinkedAccountManager.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/AccountLinker/UnlinkedAccountNotFoundException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Administration/ColorPresenter.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Administration/ColorPresenterFactory.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Administration/IconPresenter.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Authorization/AuthorizationRequest.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Authorization/AuthorizationResponse.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Authorization/MissingParameterAuthorizationResponseException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Flow.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/FlowResponse.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/MalformedIDTokenException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/State/InvalidLocalStateException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/State/InvalidRemoteStateException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/State/StateMismatchException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/StateManager.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/StateStorage.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Token/IncorrectTokenResponseTypeException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Token/IncorrectlyFormattedTokenResponseException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Token/TokenRequest.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Token/TokenRequestSender.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Token/TokenResponse.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/Token/TokenResponseException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/EmptyUserInfoRequest.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/IncorrectlyFormattedUserInfoResponseException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/NotSupportedContentTypeUserInfoResponseException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/UserInfoRequest.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/UserInfoRequestCreator.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/UserInfoRequestSender.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/UserInfoRequestWithData.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Authentication/UserInfo/UserInfoResponseException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Login/IncoherentDataUniqueProviderException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Login/Registration/DataIncompatibleWithUsernameGenerationException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Login/Registration/NotEnoughDataToGenerateUsernameException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Login/Registration/NotEnoughDataToRegisterUserException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Login/Registration/UsernameGenerator.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Login/SpecificLoginPresenter.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/OpenIDConnectClientPluginDescriptor.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/OpenIDConnectClientPluginInfo.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Provider/EnableUniqueAuthenticationEndpointVerifier.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Provider/ProviderMalformedDataException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/Provider/ProviderNotFoundException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/UserMapping/UserMappingDao.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/UserMapping/UserMappingDataAccessException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/OpenIDConnectClient/UserMapping/UserMappingNotFoundException.php +1 −1 Go to diff View file
M plugins/openidconnectclient/include/constants.php +1 −1 Go to diff View file
M plugins/openidconnectclient/tests/unit/Authentication/Authorization/AuthorizationResponseTest.php +1 −1 Go to diff View file
M plugins/openidconnectclient/tests/unit/Authentication/UserInfo/UserInfoRequestCreatorTest.php +1 −1 Go to diff View file
M plugins/openidconnectclient/tests/unit/Authentication/UserInfo/UserInfoResponseTest.php +1 −1 Go to diff View file
M plugins/openidconnectclient/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/AvailablePluginsPresenter.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/ManageAllowedProjectsPresenter.class.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/PluginDisablerVerifier.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/PluginsAdministration.class.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/PluginsAdministrationActions.class.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/PluginsAdministrationPluginInfo.class.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/Presenter/installedPluginsPresenter.class.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/bootstrap.php +1 −1 Go to diff View file
M plugins/pluginsadministration/include/constants.php +1 −1 Go to diff View file
M plugins/pluginsadministration/tests/unit/PluginDisablerVerifierTest.php +1 −1 Go to diff View file
M plugins/pluginsadministration/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/pluginsadministration/themes/BurningParrot/css/_pluginsadministration.scss +1 −1 Go to diff View file
M plugins/proftpd/bin/parse_xferlog.php +1 −1 Go to diff View file
M plugins/proftpd/bin/switch_to_unix_password.php +1 −1 Go to diff View file
M plugins/proftpd/db/mysql/updates/2014/201401221648_ftpgroups_view_concat.php +1 −1 Go to diff View file
M plugins/proftpd/db/mysql/updates/2014/201403211644_update_default_acl.php +1 −1 Go to diff View file
M plugins/proftpd/etc/config.inc.dist +1 −1 Go to diff View file
M plugins/proftpd/include/PermissionsPerGroup/ProftpdPermissionsPerGroupPresenterBuilder.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Admin/ACLBuilder.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Admin/ACLBuilderForDirectory.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Admin/ACLBuilderForFile.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Admin/ACLUpdater.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Admin/AdminController.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Admin/PermissionsManager.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Directory/DirectoryItem.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Directory/DirectoryItemCollection.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Directory/DirectoryParser.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Directory/DirectoryPathCollection.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Directory/DirectoryPathParser.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Directory/DirectoryPathPart.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Plugin/ProftpdPluginDescriptor.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Plugin/ProftpdPluginInfo.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Presenter/AdminPresenter.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Presenter/ExplorerPresenter.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/ProftpdRouter.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/ServiceProFTPd.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/SystemEvent/PROFTPD_DIRECTORY_CREATE.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/SystemEvent/PROFTPD_UPDATE_ACL.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/SystemEventManager.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Xferlog/Dao.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Xferlog/Entry.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Xferlog/FileImporter.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Xferlog/InvalidEntryException.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/ProFTPd/Xferlog/Parser.class.php +1 −1 Go to diff View file
M plugins/proftpd/include/constants.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/Directory/ProftpdDirectoryParserTest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/Directory/ProftpdDirectoryPathParserTest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/SystemEvent/PROFTPD_DIRECTORY_CREATETest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/SystemEvent/PROFTPD_UPDATE_ACLTest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/SystemEventManagerTest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/Xferlog/FileImporterTest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/Xferlog/FileImporter_PathTest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/ProFTPd/Xferlog/ParserTest.php +1 −1 Go to diff View file
M plugins/proftpd/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/project_ownership/db/mysql/2018/20181029_rename_project_certification.php +1 −1 Go to diff View file
M plugins/project_ownership/include/Exceptions/FailedToNotifyProjectMemberException.php +1 −1 Go to diff View file
M plugins/project_ownership/include/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/project_ownership/include/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/project_ownership/include/ProjectAdmin/CannotRemoveProjectOwnerFromTheProjectAdministratorsException.php +1 −1 Go to diff View file
M plugins/project_ownership/include/ProjectAdmin/ProjectOwnerPresenter.php +1 −1 Go to diff View file
M plugins/project_ownership/include/ProjectAdmin/ProjectOwnerPresenterBuilder.php +1 −1 Go to diff View file
M plugins/project_ownership/include/ProjectOwner/OnlyProjectAdministratorCanBeSetAsProjectOwnerException.php +1 −1 Go to diff View file
M plugins/project_ownership/include/ProjectOwner/ProjectOwnerDAO.php +1 −1 Go to diff View file
M plugins/project_ownership/include/ProjectOwner/ProjectOwnerRetriever.php +1 −1 Go to diff View file
M plugins/project_ownership/include/ProjectOwner/ProjectOwnerUpdater.php +1 −1 Go to diff View file
M plugins/project_ownership/include/REST/ProjectOwnershipPUTRepresentation.php +1 −1 Go to diff View file
M plugins/project_ownership/include/REST/ProjectOwnershipResource.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/project_ownership/include/SystemEvents/ProjectOwnershipSystemEventManager.php +1 −1 Go to diff View file
M plugins/project_ownership/tests/rest/ProjectOwnershipTest.php +1 −1 Go to diff View file
M plugins/project_ownership/tests/rest/ProjectUserGroupTest.php +1 −1 Go to diff View file
M plugins/project_ownership/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/project_ownership/tests/unit/ProjectOwner/ProjectOwnerRetrieverTest.php +1 −1 Go to diff View file
M plugins/project_ownership/tests/unit/ProjectOwner/ProjectOwnerUpdaterTest.php +1 −1 Go to diff View file
M plugins/project_ownership/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/project_ownership/themes/BurningParrot/project-admin/_project-admin.scss +1 −1 Go to diff View file
M plugins/projectlinks/include/ProjectLinksDao.class.php +1 −1 Go to diff View file
M plugins/projectlinks/include/ProjectLinksPluginInfo.class.php +1 −1 Go to diff View file
M plugins/projectmilestones/scripts/projectmilestones/src/store/index.ts +1 −1 Go to diff View file
M plugins/projectmilestones/themes/BurningParrot/style-green-condensed.scss +1 −1 Go to diff View file
M plugins/prometheus_metrics/include/MetricsCollectorDao.php +1 −1 Go to diff View file
M plugins/prometheus_metrics/include/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/prometheus_metrics/include/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2016/201602151010_add_plugin_pullrequest_comments_table.php +1 −1 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 +1 −1 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 +1 −1 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/201606131624_add_last_build_status_and_date_for_pull_requests.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2016/201608091537_add_system_references.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2017/201708220958_create_pullrequest_label.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2017/201710271043_purge_pullrequest_table_when_repositories_not_found.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2018/201806050930_add_pr_with_ref_table.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2018/201806111045_add_status_to_pr_ref_table.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2018/201806111115_reserve_git_ref_for_existing_pr.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2018/201807301400_add_table_merge_setting.php +1 −1 Go to diff View file
M plugins/pullrequest/db/mysql/updates/2018/201807311531_add_table_template_merge_setting.php +1 −1 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/include/PullRequest/Comment/Dao.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Comment/PaginatedComments.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Criterion/ISearchOnStatus.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Criterion/StatusAll.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Criterion/StatusClosed.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Criterion/StatusOpen.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Dao.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/DefaultSettings/DefaultSettingsController.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/DefaultSettings/PullRequestPane.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/DefaultSettings/PullRequestPanePresenter.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Exception/MalformedQueryParameterException.php +1 −1 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/PullRequestCannotBeAbandoned.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/PullRequestCannotBeMerged.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/Exception/PullRequestTargetException.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Exception/UnknownBranchNameException.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Exception/UnknownReferenceException.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Exception/UserCannotReadGitRepositoryException.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/FileNullDiff.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/FileUniDiff.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/FileUniDiffBuilder.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GetCreatePullRequest.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitExecFactory.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReference.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReferenceCreator.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReferenceDAO.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReferenceNamespaceAvailabilityChecker.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReferenceNotFoundException.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReferenceRemover.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReferenceRetriever.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitPullRequestReferenceUpdater.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/GitReference/GitReferenceNotFound.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/InlineComment/Dao.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Label/LabeledItemCollector.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Label/LabeledPullRequestPresenter.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Label/LabelsCurlyCoatedRetriever.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Label/PullRequestLabelDao.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/MergeSetting/MergeSetting.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/MergeSetting/MergeSettingDAO.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/MergeSetting/MergeSettingDefault.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/MergeSetting/MergeSettingRetriever.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/MergeSetting/MergeSettingWithValue.php +1 −1 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/PullRequestCount.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/PullRequestCreator.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/PullRequestPresenter.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/PullRequestWithGitReference.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/REST/ResourcesInjector.class.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/REST/v1/PaginatedCommentsRepresentations.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/REST/v1/PullRequestGitCommitRepresentationPartialCollection.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/REST/v1/PullRequestMinimalRepresentation.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/REST/v1/PullRequestsCommitRepresentationFactory.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/REST/v1/QueryToCriterionConverter.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Reference/ProjectReferenceRetriever.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Reference/Reference.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Reference/ReferenceDao.php +1 −1 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/PullRequestPanePresenter.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/RepoManagement/RepoManagementController.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/ShortStat.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Timeline/PaginatedTimeline.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Timeline/TimelineEventCreator.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Timeline/TimelineGlobalEvent.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequest/Tooltip/Presenter.php +1 −1 Go to diff View file
M plugins/pullrequest/include/PullRequestPluginInfo.class.php +1 −1 Go to diff View file
M plugins/pullrequest/include/constants.php +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/api/rest-querier.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/components/App.vue +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/components/CreatePullrequestButton.vue +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/helpers/window-helper.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/index.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/store/actions.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/store/getters.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/store/getters.test.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/store/index.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/store/mutations.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/store/mutations.test.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/create-pullrequest-button/src/store/state.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/code-collapse/code-collapse-service.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/codemirror-helper-service.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/comments-state.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-mode-state.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/modes.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-code-placeholder-builder.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-diff-component.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-line-grouper.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-line-mapper.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-line-mapper.test.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-placeholder-positioner.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-scroll-synchronizer.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-scroll-synchronizer.test.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-widget-finder.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/side-by-side-widget-finder.test.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/diff-modes/unidiff-component.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/file-diff-component.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/file-diff.tpl.html +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/inline-comment-component.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/inline-comment-positions.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/inline-comment.tpl.html +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/new-inline-comment-component.js +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/file-diff/new-inline-comment.html +1 −1 Go to diff View file
M plugins/pullrequest/scripts/src/app/window-helper.js +1 −1 Go to diff View file
M plugins/pullrequest/tests/bootstrap.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/rest/DatabaseInitialization.class.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/rest/PullRequestDataBuilder.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/rest/bootstrap.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/GitReference/GitPullRequestReferenceBulkConverterTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/GitReference/GitPullRequestReferenceCreatorTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/GitReference/GitPullRequestReferenceNamespaceAvailabilityCheckerTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/GitReference/GitPullRequestReferenceRemoverTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/GitReference/GitPullRequestReferenceRetrieverTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/GitReference/GitPullRequestReferenceTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/GitReference/GitPullRequestReferenceUpdaterTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/MergeSetting/MergeSettingRetrieverTest.php +1 −1 Go to diff View file
M plugins/pullrequest/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/pullrequest/themes/_repository.scss +1 −1 Go to diff View file
M plugins/referencealias_core/include/ReferenceAliasCore/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/referencealias_core/include/ReferenceAliasCore/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/referencealias_core/include/constants.php +1 −1 Go to diff View file
M plugins/referencealias_core/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/referencealias_git/include/ReferenceAliasGit/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/referencealias_git/include/ReferenceAliasGit/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/referencealias_git/include/ReferenceAliasGit/Reference.php +1 −1 Go to diff View file
M plugins/referencealias_git/include/ReferenceAliasGit/ReferencesImporter.php +1 −1 Go to diff View file
M plugins/referencealias_git/include/constants.php +1 −1 Go to diff View file
M plugins/referencealias_git/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/referencealias_mediawiki/include/ReferenceAliasMediawiki/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/referencealias_mediawiki/include/ReferenceAliasMediawiki/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/referencealias_mediawiki/include/ReferencesImporter.php +1 −1 Go to diff View file
M plugins/referencealias_mediawiki/include/constants.php +1 −1 Go to diff View file
M plugins/referencealias_mediawiki/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/referencealias_svn/db/mysql/updates/2016/201606271409_add_unique_to_plugin_referencealias_svn.php +1 −1 Go to diff View file
M plugins/referencealias_svn/include/ReferenceAliasSVN/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/referencealias_svn/include/ReferenceAliasSVN/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/referencealias_svn/include/constants.php +1 −1 Go to diff View file
M plugins/referencealias_svn/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/referencealias_tracker/include/ReferenceAliasTracker/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/referencealias_tracker/include/ReferenceAliasTracker/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/referencealias_tracker/include/ReferenceAliasTracker/Reference/ArtifactReference.php +1 −1 Go to diff View file
M plugins/referencealias_tracker/include/ReferenceAliasTracker/Reference/TrackerReference.php +1 −1 Go to diff View file
M plugins/referencealias_tracker/include/constants.php +1 −1 Go to diff View file
M plugins/referencealias_tracker/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/statistics/bin/extract_service_usage.php +1 −1 Go to diff View file
M plugins/statistics/bin/purgeDiskUsageData.php +1 −1 Go to diff View file
M plugins/statistics/db/mysql/updates/2015/201504081124_create_plugin_statistics_configuration_table.php +1 −1 Go to diff View file
M plugins/statistics/db/mysql/updates/2015/201510131700_create_plugin_statistics_aggregation_table.php +1 −1 Go to diff View file
M plugins/statistics/include/AdminHeaderPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/CSV/CSVBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/DataExportPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DataExportPresenterBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageGlobalPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageGlobalPresenterBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsagePie/DiskUsagePieMountPointPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageProjectsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageProjectsPresenterBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageProjectsSearchFieldsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageSearchFieldsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageServicesPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageServicesPresenterBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageServicesSearchFieldsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageTopUsersPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageTopUsersPresenterBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageUserDetailsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageUserDetailsPresenterBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/DiskUsageUserDetailsSearchFieldsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/Events/StatisticsRefreshDiskUsage.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/FrequenciesPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/FrequenciesSearchFieldsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/CartifactSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/FiledSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/FilerSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/ForumSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/OartifactSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/ProjectSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/Sample.php +1 −1 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/SessionSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/UserSample.php +1 −1 Go to diff View file
M plugins/statistics/include/Frequencies/GraphDataBuilders/WikiSample.php +1 −1 Go to diff View file
M plugins/statistics/include/ProjectQuotaPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/ProjectsOverQuotaPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/SCMStatisticsPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/SearchFieldsPresenterBuilder.php +1 −1 Go to diff View file
M plugins/statistics/include/ServicesUsagePresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/StartDateGreaterThanEndDateException.php +1 −1 Go to diff View file
M plugins/statistics/include/StatisticsAggregatorDao.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_ConfigurationDao.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_ConfigurationManager.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_DiskUsageDao.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_DiskUsageHtml.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_DiskUsagePurger.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_Event.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_Formatter.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_ScmCvsDao.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_ScmSvnDao.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_ServicesUsageDao.class.php +1 −1 Go to diff View file
M plugins/statistics/include/Statistics_Services_UsageFormatter.class.php +1 −1 Go to diff View file
M plugins/statistics/include/SystemEventQueueStatistics.php +1 −1 Go to diff View file
M plugins/statistics/include/SystemEvent_STATISTICS_DAILY.php +1 −1 Go to diff View file
M plugins/statistics/include/UsageProgressPresenter.php +1 −1 Go to diff View file
M plugins/statistics/include/constants.php +1 −1 Go to diff View file
M plugins/statistics/scripts/disk-usage-pie/src/disk-usage-pie-chart.js +1 −1 Go to diff View file
M plugins/statistics/www/data_export.php +1 −1 Go to diff View file
M plugins/statistics/www/frequence_stat_graph.php +1 −1 Go to diff View file
M plugins/statistics/www/index.php +1 −1 Go to diff View file
M plugins/statistics/www/project_stat_graph.php +1 −1 Go to diff View file
M plugins/statistics/www/scm_stats.php +1 −1 Go to diff View file
M plugins/statistics/www/services_usage.php +1 −1 Go to diff View file
M plugins/statistics/www/soap/example +1 −1 Go to diff View file
M plugins/statistics/www/soap/wsdl.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/bin/migrate_to_plugin.php +1 −1 Go to diff View file
M plugins/svn/bin/post-revprop-change.php +1 −1 Go to diff View file
M plugins/svn/bin/pre-revprop-change.php +1 −1 Go to diff View file
M plugins/svn/bin/svn_post_commit.php +1 −1 Go to diff View file
M plugins/svn/bin/svn_pre_commit.php +1 −1 Go to diff View file
M plugins/svn/bin/viewvc-epel.cgi +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201601081758_create_plugin_svn_repositories_table.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201602021420_create_plugin_svn_accessfile_history_table.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201602091209_create_plugin_svn_mailing_header.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201602091428_create_plugin_svn_notification.php +1 −1 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 +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201603231523_hook_commit_message_can_change.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201604121133_default_permissions_admin_groups.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201604181408_force_refresh_codendi_svnroot.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201605161710_reset_folders_owner_and_group.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201607181149_add_deletetion_date_in_svn_repository.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2016/201608251326_create_plugin_svn_full_history_table.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2017/201704031412_create_svn_notif_user_table.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2017/201704031421_create_autoincrement_key_in_notif.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2017/201704031658_create_svn_notif_group_table.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2017/201704121621_modify_autoincrement_key_in_notif.php +1 −1 Go to diff View file
M plugins/svn/db/mysql/updates/2017/201706061300_create_table_svn_last_access.php +1 −1 Go to diff View file
M plugins/svn/include/Events/SystemEvent_SVN_CREATE_REPOSITORY.class.php +1 −1 Go to diff View file
M plugins/svn/include/Events/SystemEvent_SVN_DELETE_REPOSITORY.class.php +1 −1 Go to diff View file
M plugins/svn/include/Events/SystemEvent_SVN_RESTORE_REPOSITORY.php +1 −1 Go to diff View file
M plugins/svn/include/REST/ResourcesInjector.php +1 −1 Go to diff View file
M plugins/svn/include/REST/v1/NotificationUpdateChecker.php +1 −1 Go to diff View file
M plugins/svn/include/REST/v1/RepositoryRepresentationPaginatedCollection.php +1 −1 Go to diff View file
M plugins/svn/include/REST/v1/RepositoryResourceUpdater.php +1 −1 Go to diff View file
M plugins/svn/include/REST/v1/SettingsInvalidException.php +1 −1 Go to diff View file
M plugins/svn/include/REST/v1/SettingsRepresentationInterface.php +1 −1 Go to diff View file
M plugins/svn/include/REST/v1/SettingsRepresentationValidator.php +1 −1 Go to diff View file
M plugins/svn/include/Reference/Reference.php +1 −1 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/AccessControlPresenter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/AccessControl/AccessFileHistoryCreator.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/AccessControl/AccessFileHistoryDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/AccessControl/AccessFileHistoryFactory.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/AccessControl/AccessFileHistoryNotFoundException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/AccessControl/AccessFileReader.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/AccessControl/CannotCreateAccessFileHistoryException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/AdminController.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/BaseAdminPresenter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/CannotCreateImmuableTagException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/CannotCreateMailHeaderException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/CannotDeleteMailNotificationException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/GlobalAdministratorsUpdater.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/HooksConfigurationPresenter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/ImmutableTag.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/ImmutableTagController.php +1 −1 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/ImmutableTagDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/ImmutableTagFactory.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/ImmutableTagPresenter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/MailHeader.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/MailHeaderDao.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/MailNotification.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/MailNotificationDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/MailNotificationManager.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/MailNotificationPresenter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/MailReceivedFromUserExtractor.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/RepositoryDeletePresenter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/RestoreController.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Admin/RestorePresenter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Commit/CannotFindSVNCommitInfoException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Commit/CommitInfo.php +1 −1 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/Dao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Explorer/ExplorerPresenter.php +1 −1 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/PreRevpropChange.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/CannotGetCommitDateException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/DBWriter.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/DBWriterCore.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/DBWriterCoreDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/DBWriterPlugin.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/DBWriterPluginDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/DBWriterUserCache.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/LastAccessUpdater.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/LogCache.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/Parser.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Logs/QueryBuilder.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Migration/BareRepositoryCreator.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Migration/RepositoryCopier.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Migration/SettingsRetriever.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Migration/SvnMigratorException.php +1 −1 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/CollectionOfUgroupToBeNotifiedPresenterBuilder.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Notifications/EmailsToBeNotifiedRetriever.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Notifications/NotificationListBuilder.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Notifications/NotificationPresenter.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/Notifications/NotificationsForProjectMemberCleaner.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Notifications/UgroupsToNotifyDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Notifications/UsersToNotifyDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/PermissionsPerGroup/PermissionPerGroupRepositoriesRepresentation.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/PermissionsPerGroup/PermissionPerGroupRepositoryRepresentation.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/PermissionsPerGroup/PermissionPerGroupRepositoryRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/PermissionsPerGroup/PermissionPerGroupSVNServicePaneBuilder.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/PermissionsPerGroup/PermissionPerGroupServicePresenter.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/Destructor.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/Exception/CannotCreateRepositoryException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/Exception/CannotDeleteRepositoryException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/Exception/CannotFindRepositoryException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/Exception/RepositoryNameIsInvalidException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/Exception/UserIsNotSVNAdministratorException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/HookConfig.class.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/HookConfigChecker.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/HookConfigRetriever.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/HookConfigSanitizer.php +1 −1 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/ProjectHistoryFormatter.php +1 −1 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/RepositoryManager.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/RepositoryPaginatedCollection.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/RepositoryRegexpBuilder.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/RuleName.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Repository/Settings.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Service/ServiceActivator.php +1 −1 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/Statistic/SCMUsageDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Statistic/ServiceUsageCollector.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/Statistic/ServiceUsageDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/SvnAdmin.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/SvnPermissionManager.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/UserCannotAdministrateRepositoryException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/ViewVC/AccessHistoryDao.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/ViewVC/AccessHistorySaver.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/XMLImporterException.php +1 −1 Go to diff View file
M plugins/svn/include/SVN/XMLSvnExporter.php +1 −1 Go to diff View file
M plugins/svn/include/SvnPluginDescriptor.class.php +1 −1 Go to diff View file
M plugins/svn/include/SvnPluginInfo.class.php +1 −1 Go to diff View file
M plugins/svn/include/constants.php +1 −1 Go to diff View file
M plugins/svn/scripts/permissions-per-group/src/SVNPermissions.vue +1 −1 Go to diff View file
M plugins/svn/scripts/permissions-per-group/src/index.js +1 −1 Go to diff View file
M plugins/svn/scripts/permissions-per-group/src/rest-querier.js +1 −1 Go to diff View file
M plugins/svn/tests/bootstrap.php +1 −1 Go to diff View file
M plugins/svn/tests/e2e/cypress/_fixtures/svn_project/project.xml +1 −1 Go to diff View file
M plugins/svn/tests/rest/SVN/RepositoryTestNonRegressionTest.php +1 −1 Go to diff View file
M plugins/svn/tests/rest/TestBase.php +1 −1 Go to diff View file
M plugins/svn/tests/rest/bootstrap.php +1 −1 Go to diff View file
M plugins/svn/tests/unit/SVN/AccessControl/AccessFileReaderTest.php +1 −1 Go to diff View file
M plugins/svn/tests/unit/SVN/Logs/LastAccessUpdaterTest.php +1 −1 Go to diff View file
M plugins/svn/tests/unit/SVN/Logs/ParserCoreAndPluginTest.php +1 −1 Go to diff View file
M plugins/svn/tests/unit/SVN/Logs/ParserTest.php +1 −1 Go to diff View file
M plugins/svn/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/svn/themes/BurningParrot/css/include/_definitions.scss +1 −1 Go to diff View file
M plugins/svn/themes/BurningParrot/css/style-condensed.scss +1 −1 Go to diff View file
M plugins/svn/themes/BurningParrot/css/style.scss +1 −1 Go to diff View file
M plugins/template/include/Template/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/template/include/Template/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2015/201505061050_rename_to_trafficlights.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2017/201708101140_add_issue_tracker_to_trafficlights.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2017/201709081330_rename_translation_strings_to_test_management.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2017/201709081530_rename_plugin_structure_to_test_management.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2017/201709111000_rename_db_tables.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2018/2018005141637_add_stepdef_table.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2018/201803091459_add_jenkins_configuration_to_campaign.php +1 −1 Go to diff View file
M plugins/testmanagement/db/mysql/updates/2018/201804131646_add_execution_table.php +1 −1 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 +1 −1 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/include/TestManagement/Administration/FieldUsageDetector.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Breadcrumbs/AdmininistrationBreadcrumbs.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Breadcrumbs/Breadcrumbs.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Breadcrumbs/NoCrumb.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/ArtifactNotFoundException.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/AutomatedTests/NoJobConfiguredForCampaignException.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/Campaign.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/CampaignDao.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/CampaignRetriever.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/Execution/DefinitionForExecutionRetriever.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/Execution/DefinitionNotFoundException.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/Execution/PaginatedExecutions.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/JobConfiguration.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Campaign/NoJobConfiguration.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/ConfigConformanceValidator.class.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Criterion/ISearchOnMilestone.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Criterion/ISearchOnStatus.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Criterion/MilestoneAll.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Criterion/MilestoneFilter.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Criterion/StatusAll.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Criterion/StatusClosed.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Criterion/StatusOpen.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Event/GetItemsFromMilestone.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Event/GetMilestone.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/LabelFieldNotFoundException.class.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/MalformedQueryParameterException.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Nature/NatureCoveredByOverrider.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Nature/NatureCoveredByPresenter.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/ArtifactNodeBuilder.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/BugRepresentation.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/CampaignUpdater.class.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/MilestoneRepresentation.class.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/NodeReferenceRepresentation.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/PaginatedCampaignsRepresentations.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/RequirementRetriever.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/SlicedExecutionRepresentations.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/StepResultRepresentation.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/StepsResultsChangesBuilder.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/StartTestManagementPresenter.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Definition/Field/StepDefinitionChangesetValueDao.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Definition/Field/ViewAdmin.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Execution/Field/StepExecutionChangesetValueDao.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Execution/Field/ViewAdmin.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Execution/StepResult.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Execution/StepResultPresenter.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/Step.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/Step/StepPresenter.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/TestManagementPluginDescriptor.class.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/TestManagementPluginInfo.class.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/UserIsNotAdministratorException.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/XML/Exporter.php +1 −1 Go to diff View file
M plugins/testmanagement/include/constants.php +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/api/rest-querier.js +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/api/rest-querier.test.js +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/campaign/edit-campaign/edit-campaign-model-builder.test.js +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/definition/definition-constants.js +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution/execution-with-steps/step/execution-with-steps-updater.js +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/execution/execution-with-steps/step/execution-with-steps-updater.test.js +1 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/ksort.js +1 −1 Go to diff View file
M plugins/testmanagement/tests/rest/TestManagementDataBuilder.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/unit/TestManagement/ConfigConformanceValidatorTest.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/unit/TestManagement/NatureCoveredByOverriderTest.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/unit/TestManagement/REST/v1/AssignedToRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/unit/TestManagement/REST/v1/Execution/StepsResultsFilterTest.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/unit/TestManagement/REST/v1/TestStatusAccordingToStepsStatusChangesBuilderTest.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/unit/TestManagement/XML/ExporterTest.php +1 −1 Go to diff View file
M plugins/testmanagement/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/testmanagement/themes/BurningParrot/css/includes/_link_issue_modal.scss +1 −1 Go to diff View file
M plugins/testmanagement/themes/BurningParrot/css/style-purple-condensed.scss +1 −1 Go to diff View file
M plugins/testmanagement/themes/BurningParrot/css/style-red-condensed.scss +1 −1 Go to diff View file
M plugins/textualreport/include/TextualReport/ArtifactsPresentersBuilder.php +1 −1 Go to diff View file
M plugins/textualreport/include/TextualReport/DocumentCanBeDownloadedChecker.php +1 −1 Go to diff View file
M plugins/textualreport/include/TextualReport/ExportOptionsMenuItemsAppender.php +1 −1 Go to diff View file
M plugins/textualreport/include/TextualReport/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/textualreport/include/TextualReport/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/textualreport/include/TextualReport/SinglePageExporter.php +1 −1 Go to diff View file
M plugins/textualreport/include/textualreportPlugin.php +1 −1 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 +1 −1 Go to diff View file
M plugins/timetracking/db/mysql/updates/2019/201901161516_add_timetracking_report_tracker_table.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Admin/AdminDao.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Admin/AdminPresenter.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Admin/TimetrackingEnabler.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Admin/TimetrackingUgroupDao.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Admin/TimetrackingUgroupSaver.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/ArtifactView/ArtifactView.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/ArtifactView/ArtifactViewBuilder.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/ArtifactView/ArtifactViewPresenter.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/TimeTrackingBadTimeFormatException.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/TimetrackingReportNotFoundException.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Plugin/TimetrackingPluginDescriptor.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Plugin/TimetrackingPluginInfo.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/DateTrackingTimesPeriod.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/Exception/ArtifactDoesNotExistException.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/Exception/ArtifactIDMissingException.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/Exception/InvalidArgumentException.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/Exception/NoTimetrackingForTrackerException.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/TimetrackingDatesExtractor.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/TimetrackingOverviewRepresentationsBuilder.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/TimetrackingQueryChecker.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/REST/v1/TrackerRepresentationFactory.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Router.php +1 −1 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/PaginatedTimes.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/Time.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/TimeController.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/TimeDao.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/TimePresenterBuilder.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/TimeRetriever.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/TimeUpdater.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/TimetrackingReport.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/TimetrackingReportDao.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Time/TimetrackingReportFactory.php +1 −1 Go to diff View file
M plugins/timetracking/include/Timetracking/Widget/TimetrackingOverviewPresenter.php +1 −1 Go to diff View file
M plugins/timetracking/include/constants.php +1 −1 Go to diff View file
M plugins/timetracking/scripts/constants.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/api/rest-querier.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/Widget.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/WidgetArtifactTable.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/WidgetArtifactTableRow.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/WidgetLinkToArtifact.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/WidgetReadingMode.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/WidgetWritingMode.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/modal/WidgetModalArtifactInfo.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/components/modal/WidgetModalContent.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/store/actions.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/store/getters.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/store/index.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/personal-timetracking-widget/src/store/state.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/time-formatters.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/time-formatters.test.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/api/rest-querier.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/TimeTrackingOverview.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/TimeTrackingOverviewTable.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/TimeTrackingOverviewTableRow.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/TimeTrackingOverviewUserList.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/reading-mode/TimeTrackingOverviewReadingDates.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/reading-mode/TimeTrackingOverviewReadingMode.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/reading-mode/TimeTrackingOverviewTrackerList.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/writing-mode/TimeTrackingOverviewProjectOption.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/writing-mode/TimeTrackingOverviewTrackerList.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/writing-mode/TimeTrackingOverviewTrackersOptions.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/writing-mode/TimeTrackingOverviewWritingDates.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/writing-mode/TimeTrackingOverviewWritingMode.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/components/writing-mode/TimeTrackingOverviewWritingTrackers.vue +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/store/actions.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/store/getters.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/store/index.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/store/mutations.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/store/state.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/tests/helpers/local-vue.js +1 −1 Go to diff View file
M plugins/timetracking/scripts/timetracking-overview-widget/src/tests/store/getters.test.js +1 −1 Go to diff View file
M plugins/timetracking/tests/rest/Timetracking/TimetrackingReportTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/rest/Timetracking/TimetrackingTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/rest/TimetrackingBase.php +1 −1 Go to diff View file
M plugins/timetracking/tests/rest/_fixtures/project/users.xml +1 −1 Go to diff View file
M plugins/timetracking/tests/rest/bootstrap.php +1 −1 Go to diff View file
M plugins/timetracking/tests/unit/Report/TimetrackingDatesExtractorTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/unit/Report/TimetrackingReportFactoryTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/unit/Time/DateFormatterTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/unit/Time/TimeCheckerTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/unit/Time/TimeControllerTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/unit/Time/TimeUpdaterTest.php +1 −1 Go to diff View file
M plugins/timetracking/tests/unit/bootstrap.php +1 −1 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-wrapper.sh +1 −1 Go to diff View file
M plugins/tracker/bin/emailgateway.php +1 −1 Go to diff View file
M plugins/tracker/bin/migrate_tv3_to_tv5.sh +1 −1 Go to diff View file
M plugins/tracker/bin/remove_multiple_artifacts.php +1 −1 Go to diff View file
M plugins/tracker/bin/remove_multiple_artifacts.sh +1 −1 Go to diff View file
M plugins/tracker/bin/store_stripped_body_of_comments.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2011/201108311118_add_widget_renderer.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2011/201109151443_reactivate_plugin_in_templates.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2011/201110051717_add_postaction_field_date_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201202031104_add_shared_field_columns.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201202101244_shared_field_default_is_0.php +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201203081704_set_child_id_as_primary_key_in_tracker_hierarchy.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201204051134_add_index_on_sementic_title_and_artifact.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206151041_delete_invalid_tracker_hierarchy_data.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206211032_add_postaction_field_int_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206211619_add_artifact_priority.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206221322_populate_artifact_priority.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206221459_add_postaction_field_float_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206251148_add_table_for_aggregate_field.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206271626_rename_aggregate_to_computed.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201206291629_add_missing_renderer_table_rows.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201209121717_turn_tables_innodb.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201209201812_populate_artifact_priority_for_fresh_install.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201209251711_add_table_bind_ugroups.php +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201211211457_refactor_tracker_rule_tables.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201211221712_create_tracker_rule_date_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2012/201211281116_remove_unused_keys_from_tracker_rule_tables.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/201301021153_add_postaction_cibuild_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/201302051223_add_burndown_field_table.php +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/201304230915_create_burndown_field_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/201305101622_remove_orphan_decorators.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/201307311726_add_workflow_trigger_tables.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/201308090903_add_workflow_manager_user.php +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/201310301030_add_body_format_on_field_text_changeset.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2013/20131204_remove_special_fields_from_changesets.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2014/201403181036_add_tracker_fileinfo_temporary_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2014/201403191118_add_offset_column_to_fileinfo_temporary_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2014/201404161017_add_color_column_to_tracker.php +1 −1 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 +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2015/201501191123_create_tracker_artifact_priority_history_table.php +1 −1 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 +1 −1 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/201506301700_convert_possible_old_text_format_tracker.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2015/201510071857_add_semantic_description.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2015/201510131648_add_emailgateway_column_to_tracker.php +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2015/201512091100_create_tracker_notification_assigned_to_table.php +1 −1 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/201602081457_add_is_child_into_existing_data.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201603080951_create_tracker_artifactlink_natures_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201603111508_create_tracker_artifactlink_natures_allowed_projects_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201603211122_add_is_child_into_existing_data.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201603231358_add_nature_index_for_artifact_link_changeset.php +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201608041550_create_condition_comment_not_empty.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201609261450_remove_rogue_artifacts.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201611291315_switch_float_to_double.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201612010900_remove_wrong_burndown_cached_values.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201612091720_use_only_rank_for_artifact_priority.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201612161050_add_is_in_expert_mode_column.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201612201031_add_expert_query_column.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201612201323_update_parameter_of_burndown_generation_event.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2016/201612291507_add_report_config.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201701091557_update_default_limit_in_report_config.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201703091758_add_table_global_notification_users.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201703131434_add_table_global_notification_ugroups.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201704041400_add_recently_visited_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201704041614_add_index_to_display_attachments.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201704051751_add_index_to_tracker_changeset_value_list.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201704051759_add_index_on_tracker_changeset_value_artifactlink.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201705311530_add_index_on_visit_time_of_recently_visited_artifacts.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201708231717_add_table_cross_tracker_report.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201710050845_migrate_assigned_to_me_setting_at_tracker_level.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201710161346_add_table_to_store_fulltext_of_comment.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201710171318_add_artifact_link_usage_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201710201025_add_unused_artifact_link_type_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201710201508_add_project_index_on_unused_artifact_link_types.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201710241421_remove_empty_comment_from_fulltext_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201712131642_add_changesets_notification_log_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2017/201712251617_purge_removed_types_in_usage_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201802051707_add_report_comment_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201804091400_add_plugin_tracker_artifacts_deleted_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201804161530_tracker_global_notification_unsubscribers.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201805281634_add_column_for_tlp_color_picker.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201806051554_restore_missing_art_artifact_references.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201806111646_rename_stop_notification.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201806151413_add_table_user_notify_status_change.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201806251130_fix_invalid_comment_format.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201806251409_create_tracker_webhook_url_table.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201806261500_create_tracker_webhook_log_table.php +1 −1 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/201807131145_rename_tracker_email_notification_log.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201808171523_add_table_source_artifact_id.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201809171653_clean_up_broken_triggers.php +1 −1 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/2018/201811211412_add_missing_indexes_for_workflow.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2018/201812051620_add_index_on_tracker_artifact_submitted_on.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201901161121_create_postaction_readonly_tables.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201901211441_flag_legacy_workflows_with_actions.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201902111418_add_advanced_flag_workflow.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 +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201902211717_delete_comment_not_empty_conditions_from_new_transitions.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201905211642_create_postaction_hidden_fieldsets_tables.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201906171504_delete_comment_not_empty_conditions_from_new_transitions_the_return.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201907031619_create_semantic_timeframe.php +1 −1 Go to diff View file
M plugins/tracker/db/mysql/updates/2019/201907171827_populate_timeframe_semantic.php +1 −1 Go to diff View file
M plugins/tracker/grammar/test_parser.php +1 −1 Go to diff View file
M plugins/tracker/include/IProvideJsonFormatOfMyself.class.php +1 −1 Go to diff View file
M plugins/tracker/include/PermissionsPerGroup/ProjectAdminPermissionPerGroupPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/PermissionsPerGroup/TrackerPermissionPerGroupJSONRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/PermissionsPerGroup/TrackerPermissionPerGroupPermissionRepresentation.php +1 −1 Go to diff View file
M plugins/tracker/include/PermissionsPerGroup/TrackerPermissionPerGroupRepresentation.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueArtifactLinksFullRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueArtifactLinksRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueComputedFullRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueFileFullRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueFileRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueFullRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueListFullRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValueListRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/ArtifactFieldValuePermissionsOnArtifactRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/Artifact/MovedArtifactValueBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/FieldListBindUGroupValueRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/FieldListStaticValueRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/FieldValueRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/FormElement/UserListValueRepresentation.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/SemanticRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/SemanticStatusRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/SemanticTimeframeWithDurationRepresentation.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/StructureElementRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/TrackerRepresentation.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/WorkflowRuleDateRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/WorkflowRuleListRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/WorkflowTransitionRepresentation.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/ArtifactMatchingReportCollection.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Event/ArtifactPartialUpdate.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/GetTrackersQueryChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/MilestonesBurndownResource.class.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/MoveRepresentation.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/PostMoveArticfactRESTAction.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/TrackerPermissionsChecker.class.php +1 −1 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 +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/PostAction/Update/PostActionCollectionJsonParser.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/PostAction/Update/PostActionUpdateJsonParser.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/PostAction/Update/SetDateValueJsonParser.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/PostAction/Update/SetFloatValueJsonParser.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/PostAction/Update/SetIntValueJsonParser.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/TransitionRepresentationBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/TransitionValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/REST/v1/Workflow/TransitionsPermissionsChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/BeforeMoveArtifact.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/Move/FeedbackFieldCollector.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/Move/FeedbackFieldCollectorInterface.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/Move/NoFeedbackFieldCollector.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/MoveContributorSemanticChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/MoveDescriptionSemanticChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/MoveSemanticChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/MoveStatusSemanticChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Action/MoveTitleSemanticChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Admin/ArtifactsDeletion/ArtifactsDeletionConfig.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Admin/ArtifactsDeletion/ArtifactsDeletionConfigController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Admin/ArtifactsDeletion/ArtifactsDeletionConfigDAO.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Admin/ArtifactsDeletion/ArtifactsDeletionConfigPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Admin/ArtifactsDeletion/UserDeletionRetriever.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/ArtifactActionButtonPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactCopyButtonPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactCopyButtonPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactIncomingEmailButtonPresenterBuilder.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/ArtifactMoveModalPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactNotificationActionButtonPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactNotificationsButtonPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ActionButtons/ArtifactOriginalEmailButtonPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ActionButtons/GlobalButtonsActionPresenter.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/ArtifactNotificationSubscriber.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArtifactDeletionLimitRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArtifactsDeletionDAO.php +1 −1 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/ArtifactsDeletionManager.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArtifactsDeletionRemover.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/DeletionOfArtifactsIsNotAllowedException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/PendingArtifactRemovalDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/CannotCreateException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/ChunkTooBigException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/FileNotFoundException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/InvalidPathException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/PaginatedTemporaryFiles.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/QuotaExceededException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/TemporaryFile.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/TemporaryFileDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Attachment/Tracker_Artifact_Attachment_InvalidOffsetException.php +1 −1 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/IncomingMailDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Changeset/IncomingMailGoldenRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/ActionsRunnerDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/AsynchronousActionsRunner.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/ClearArtifactChangesetCacheTask.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Changeset/PostCreation/PostCreationTask.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ChangesetValue/ArtifactLink/CollectionOfLinksFormatter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ChangesetValue/ArtifactLink/ICollectChangeOfLinksBetweenTwoChangesets.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ChangesetValue/ArtifactLink/RemovedLinkCollection.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Event/ArtifactsReordered.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/AfterSaveException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/CannotCreateChangeset.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/CannotCreateNewChangeset.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/CannotRankWithMyself.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/ChangesetCommitException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/ChangesetNotCreatedException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/CommentNotStoredException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/FieldValidationException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/FieldValueNotStoredException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/NoChangesetException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/NoChangesetValueException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Exception/XMLImportException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ExistingArtifactSourceIdFromTrackerExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/InvertCommentsController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/InvertDisplayChangesController.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/IncomingMessage.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/IncomingMessageFactory.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/IncomingMessageInsecureBuilder.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/IncomingMessageTokenBuilder.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/InsecureMailGateway.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/MailGatewayBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/MailGatewayConfig.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/MailGatewayConfigController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/MailGatewayConfigDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/MailGatewayConfigPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/MailGatewayFilter.php +1 −1 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/Notifier.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/Recipient.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/MailGateway/RecipientFactory.class.php +1 −1 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/TokenMailGateway.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/Node.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/PaginatedArtifacts.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/PermissionsCache.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Presenter/ArtifactLinkPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Presenter/CreateArtifactInPlacePresenter.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/RecentlyVisited/RecentlyVisitedDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/RecentlyVisited/VisitCleaner.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Renderer/CreateInPlaceRenderer.class.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/EditOverlayRenderer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Renderer/ReadOnlyRenderer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Renderer/SubmitAbstractRenderer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Renderer/SubmitOverlayRenderer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_BatchIterator.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetFactory.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetJsonFormatter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetValueVisitor.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetValue_Float.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetValue_Integer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_ChangesetValue_Numeric.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_Changeset_CommentNull.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_Followup_Item.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_PossibleParentsRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_PriorityHistoryChange.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/View/Copy.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/View/Hierarchy.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/View/Nature.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/View/View.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLArtifactSourcePlatformExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLExportTooManyArtifactsException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/CollectionOfFilesToImportInArtifact.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/Exception/FileNotFoundException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/Exception/NoValidAttachementsException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/Exception/StrategyDoesNotExistException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategy.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyAlphanumeric.class.php +1 −1 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/XMLImportFieldStrategyComputed.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyDate.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyOpenList.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyPermissionsOnArtifact.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImport/XMLImportFieldStrategyText.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/ComputedDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/dao/NoPredecessorException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/dao/TrackerArtifactSourceIdDao.php +1 −1 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/Artifact/dao/Tracker_Artifact_Changeset_ValueDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/dao/Tracker_Artifact_PriorityHistoryDao.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/CardDisplayPreferences.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/CardFields.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/CardPresenter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Config/ArtifactLinkTypePresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Config/ArtifactsDeletionPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Config/EmailGateWayPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Config/ReportPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Config/SectionsPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/ConfigNotificationAssignedTo.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/DateReminder/dao/Tracker_DateReminderDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/DeletedTrackersListPresenter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Events/AllowedFieldTypeChangesRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Events/GetEditableTypesInProject.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/Events/MoveArtifactGetExternalSemanticCheckers.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Events/MoveArtifactParseFieldChangeNodes.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Events/XMLImportArtifactLinkTypeCanBeDisabled.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Exception.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Exception/Migration/CreateArchiveException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Exception/Migration/GetTv3Exception.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Exception/Migration/OpenArchiveException.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/Exception/MoveArtifactNotDoneException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Exception/MoveArtifactSemanticsException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Exception/MoveArtifactTargetProjectNotActiveException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Exception/SemanticTitleNotDefinedException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/ForgeUserGroupPermission/TrackerAdminAllProjects.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/BurndownCacheIsCurrentlyCalculatedException.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 +1 −1 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/ChartConfigurationValueChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/ChartFieldUsage.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/DateFormatter.php +1 −1 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/Event/MessageFetcherAdditionalWarnings.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/ArtifactLinksToRender.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/ArtifactLinksToRenderForPerNatureTable.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/ArtifactLinksToRenderForPerTrackerTable.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/FieldDataBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/IFilterValidElementsToUnkink.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/ArtifactInNatureTablePresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/CustomColumn/CSVOutputStrategy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/CustomColumn/HTMLOutputStrategy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/CustomColumn/NoFieldToFormatException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/CustomColumn/OutputStrategy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/CustomColumn/ReplaceValueVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/CustomColumn/UnsupportedFieldException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/CustomColumn/ValueFormatter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/InvalidNatureParameterException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureConfigController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureConfigPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureDeletor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureEditor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureIsChildLinkRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureIsChildPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureManagementException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NaturePresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureSelectorPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureTablePresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureUsagePresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureUsagePresenterFactory.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/NatureValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/ParentOfArtifactCollection.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/UnableToCreateNatureException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/UnableToDeleteNatureException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ArtifactLink/Nature/UnableToEditNatureException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownCacheGenerator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownCommonDataBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownRemainingEffortAdderForLegacy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/Burndown/BurndownRemainingEffortAdderForREST.php +1 −1 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/Integer/ChangesChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindVisitable.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/BindVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/CanValueBeHiddenStatementsCollection.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/Bind/NoBindDecoratorException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/ListFields/FieldValueMatcher.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Field/Shareable/PropagatePropertiesDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/IAcceptFieldVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/IComputeValues.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/IHaveAnId.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/IProvideFactoryButtonInformation.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/InvalidFieldException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/InvalidFieldValueException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/PermissionsOnArtifactUGroupRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/PermissionsOnArtifactUsageFormatter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/PermissionsOnArtifactValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/RESTValueByField_NotImplementedException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/TrackerFormElementExternalField.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Chart_Field_Exception.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_BindValue.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Field_List_Bind_Null.php +1 −1 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_Shareable.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Usable.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_FormElement_Visitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/Tracker_SharedFormElementFactory.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/TransitionListValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Container.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/CreateSharedVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/DisplayAdminFormElementsWarningsEvent.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/ArtifactId.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/Burndown.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/Checkbox.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/CrossReferences.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/LastModifiedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/LastUpdateDate.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/List.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/MultiSelectbox.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/PermissionsOnArtifact.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/Priority.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/Selectbox.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/SubmittedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Field/SubmittedOn.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/FilterFormElementsThatCanBeCreatedForTracker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/Shared.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/StaticField.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/StaticField/LineBreak.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/StaticField/Separator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/FormElement/View/Admin/UpdateSharedVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Hierarchy/CyclicHierarchyException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Hierarchy/HierarchicalTracker.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Hierarchy/Hierarchy.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Hierarchy/NotInHierarchyException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/IDisplayTrackerLayout.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/IFetchTrackerSwitcher.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Import/Spotter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Legacy/Inheritor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Masschange_Presenter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/AttachmentFieldDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/CannedDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/CcFieldDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/ColumnsDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/Dao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/FieldDependenciesDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/FieldPermsDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/FieldsDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/FieldsDefaultValuesDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/FieldsetsDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/PermissionsOnArtifactFieldDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/ReferenceFieldDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/RemindersDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/RenderersGraphDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/RenderersTableDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/ReportsDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Migration/V3/SemanticDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/NoArtifactLinkFieldException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/NoChangeException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/CollectionOfUgroupToBeNotifiedPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/CollectionOfUserInvolvedInNotificationPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/GlobalNotification.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/GlobalNotificationSubscribersFilter.php +1 −1 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/GlobalNotificationsEmailRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/NotificationCustomisationSettingsPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/NotificationLevelExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/NotificationListBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/NotificationsForProjectMemberCleaner.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/NotificationsForceUsageUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/PaneNotificationListPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/PaneNotificationPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/Settings/Administration/NotificationsAdminSettingsDisplayController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/Settings/Administration/NotificationsAdminSettingsUpdateController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/Settings/NotificationsUserSettingsUpdateController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/Settings/UserNotificationSettingsDAO.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/Settings/UserNotificationSettingsPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/UgroupsToNotifyDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/UnsubscriberListPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/UnsubscribersNotificationDAO.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/UserNotificationOnlyStatusChangeDAO.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Notifications/UsersToNotifyDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/ChainOfResponsibility/Command.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/ChainOfResponsibility/DoNothing.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionManager.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionPresenter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionPresenterBuilder.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionRequest.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionSerializer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionSetter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionTypePresenter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Permission/PermissionUgroupPresenter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/ProjectDeletionEvent.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/RealTime/ArtifactRightsPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/RealTime/RealTimeArtifactMessageException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/RealTime/RealTimeArtifactMessageSender.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Reference.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Reference/ReferenceCreator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/AdditionalCriteria/CommentCriterionPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/AdditionalCriteria/CommentCriterionValueRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/AdditionalCriteria/CommentCriterionValueSaver.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/AdditionalCriteria/CommentDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/AdditionalCriterion.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Event/TrackerReportDeleted.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Event/TrackerReportSetToPrivate.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/ExpertModePresenter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/InvalidRESTCriterionException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/CollectionOfListValuesExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/DateFormat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/ExpertQueryValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/FieldFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/AndExpression.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/AndOperand.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/BetweenComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/BetweenValueWrapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/Comparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/CurrentDateTimeValueWrapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/CurrentUserValueWrapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/EqualComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/Field.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/FieldValueWrapperParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/GreaterThanComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/GreaterThanOrEqualComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/InComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/InValueWrapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/LesserThanComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/LesserThanOrEqualComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/Metadata.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/MetadataValueWrapperParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/NoValueWrapperParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/NoVisitorParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/NotEqualComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/NotInComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/OrExpression.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/OrOperand.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/Searchable.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/SimpleValueWrapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/StatusOpenValueWrapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/Term.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/ValueWrapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/ValueWrapperParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/ValueWrapperVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/Visitable.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/Visitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/VisitorParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/IBuildInvalidSearchablesCollection.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidComparisonCollectorParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidComparisonCollectorVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/BetweenComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/CollectionOfAlphaNumericValuesExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/CollectionOfDateValuesExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateFieldChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateFormatValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateToEmptyStringComparisonException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Date/DateToEmptyStringException.php +1 −1 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/Date/DateToStringException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/EmptyStringAllowed.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/EmptyStringChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/EmptyStringForbidden.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/EqualComparisonVisitor.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/FileFieldChecker.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/File/FileToStringComparisonException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/File/ValueForFileExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FloatFields/FloatFieldChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/FloatFields/FloatToEmptyStringComparisonException.php +1 −1 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/GreaterThanComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/GreaterThanOrEqualComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/IProvideTheInvalidFieldCheckerForAComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/InComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerFieldChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerToEmptyStringComparisonException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Integer/IntegerToFloatComparisonException.php +1 −1 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/InvalidFieldChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/InvalidFieldException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/LesserThanComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/LesserThanOrEqualComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/CollectionOfNormalizedBindLabelsExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/ListFieldChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/ListFields/ListToEmptyStringComparisonException.php +1 −1 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/MySelfIsNotSupportedException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/MySelfIsNotSupportedForAnonymousException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/NotEqualComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/NotInComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/NowIsNotSupportedException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/StatusOpenIsNotSupportedException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidFields/Text/TextFieldChecker.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/BetweenComparisonChecker.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/EqualComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/GreaterThanComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/GreaterThanOrEqualComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/ICheckMetadataForAComparison.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/InComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/InvalidMetadataException.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/InvalidMetadata/LesserThanComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/LesserThanOrEqualComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/NotEqualComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidMetadata/NotInComparisonChecker.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidSearchableCollectorParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidSearchableCollectorVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidSearchablesCollection.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/InvalidSearchablesCollectionBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/LimitSizeIsExceededException.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/ParserCacheProxy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenComparison/ForDateTime.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenComparison/ForFloat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenComparison/ForInteger.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenComparison/ForLastUpdateDate.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenComparison/ForSubmittedOn.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/BetweenFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/DateTimeConditionBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/DateTimeFieldFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/DateTimeReadOnlyConditionBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/DateTimeReadOnlyFieldFromWhereBuilder.php +1 −1 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/ForDateTime.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForFile.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForFloat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForInteger.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForLastUpdateDate.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForLastUpdatedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForListBindStatic.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForListBindUgroups.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForListBindUsers.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForSubmittedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/EqualComparison/ForSubmittedOn.php +1 −1 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/EqualFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereComparisonFieldBuilder.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/FromWhereComparisonListFieldBindUgroupsBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereComparisonListFieldBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereEmptyComparisonListFieldBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereEmptyNotEqualComparisonFieldBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereNotEqualComparisonListFieldBindUgroupsBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/FromWhereNotEqualComparisonListFieldBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparison/ForDateTime.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparison/ForFloat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanComparison/ForInteger.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/GreaterThanFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanOrEqualComparison/ForDateTime.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanOrEqualComparison/ForFloat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/GreaterThanOrEqualComparison/ForInteger.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/GreaterThanOrEqualFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/InComparison/ForLastUpdatedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/InComparison/ForListBindStatic.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/InComparison/ForListBindUGroups.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/InComparison/ForListBindUsers.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/InComparison/ForSubmittedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/InFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparison/ForDateTime.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparison/ForFloat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanComparison/ForInteger.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/LesserThanFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanOrEqualComparison/ForDateTime.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanOrEqualComparison/ForFloat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/LesserThanOrEqualComparison/ForInteger.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/LesserThanOrEqualFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/ListBindStaticFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/ListBindUgroupsFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/ListBindUsersFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/ListFieldBindVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/ListReadOnlyConditionBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/ListReadOnlyFieldFromWhereBuilder.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/MetadataComparisonFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/MetadataEqualComparisonFromWhereBuilder.php +1 −1 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 +1 −1 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/ForDateTime.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForFile.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForFloat.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForInteger.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForLastUpdateDate.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForLastUpdatedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForListBindStatic.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForListBindUgroups.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForListBindUsers.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForSubmittedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForSubmittedOn.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualComparison/ForText.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotEqualFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotInComparison/ForLastUpdatedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotInComparison/ForListBindStatic.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotInComparison/ForListBindUGroups.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotInComparison/ForListBindUsers.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotInComparison/ForSubmittedBy.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/NotInFieldComparisonVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/QueryListFieldPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/SearchableVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/SearchableVisitorParameter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilderParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilderVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/SearchablesAreInvalidException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/SearchablesDoNotExistException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/SizeValidatorParameters.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/SizeValidatorVisitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/AndFromWhere.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/CommentFromWhereBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/FromWhere.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/IProvideFromAndWhereSQLFragments.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/OrFromWhere.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Renderer/ImportRendererFromXmlEvent.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Renderer/Table/GetExportOptionsMenuItemsEvent.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Renderer/Table/ProcessExportEvent.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/TrackerDuplicateException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/TrackerNotFoundException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/TrackerReportConfig.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/TrackerReportConfigController.php +1 −1 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/TrackerReportConfigPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/TrackerReportExtractor.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Tracker_Report_HeaderInArtifactLinkModalPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/Tracker_Report_REST.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/WidgetAddToDashboardDropdownBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Report/WidgetAddToDashboardDropdownPresenter.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/Tracker_ReportDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Rule/Date.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Rule/Date/InvalidComparatorException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Rule/Date/MissingComparatorException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Rule/List.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Rule/List/Factory.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Rule/List/View.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Sample.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/CollectionOfFieldsDuplicator.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/IBuildSemanticFromXML.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/IDuplicateSemantic.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/SemanticStatusGetDisabledValues.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/Tracker_SemanticCollection.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/Tracker_SemanticManager.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/Tracker_Semantic_Contributor.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/Tracker_Semantic_Description.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/dao/IRetrieveSemanticDARByTracker.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/dao/Tracker_Semantic_ContributorDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/dao/Tracker_Semantic_DescriptionDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/dao/Tracker_Semantic_StatusDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Semantic/dao/Tracker_Semantic_TitleDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Service/ServiceActivator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/SystemEvent/Tv3TvQueue.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tooltip/Tracker_Tooltip.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_ArtifactByEmailStatus.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_CannotAccessTrackerException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_FileInfo_InvalidFileInfoException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_FileInfo_UnauthorisedException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_GlobalNotification.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_NoMachingResourceException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_Report_Field.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_ResourceDoesntExistException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_URL.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Tracker_URLVerification.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/TreeNode/CardPresenterNode.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/UgroupMappingBuilder.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/AdminPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/AdminWebhooks.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/WebhookCreateController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/WebhookDeleteController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/WebhookEditController.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/WebhookLogPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/WebhookPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Actions/WebhookURLValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/Webhook.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/WebhookDao.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/WebhookFactory.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/WebhookLogsRetriever.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/WebhookStatusLogger.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Webhook/WebhookXMLExporter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Widget/Tracker_Widget_MyRenderer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Widget/Tracker_Widget_Renderer.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Widget/WidgetWithAssetDependencies.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/Workflow/WorkflowMenuTabPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/ChildrenCollector.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ArtifactAttachmentExporter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ArtifactXMLExporter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValueArtifactLinkXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValueComputedXMLExporter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValueIntegerXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValueOpenListXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValuePermissionsOnArtifactXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValueTextXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValueUnknownXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValue/ChangesetValueXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetValuesXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChangesetXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/ChildrenXMLExporter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/FilePathXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/InArchiveFilePathXMLExporter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/LocalAbsoluteFilePathXMLExporter.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/NullChildrenCollector.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Exporter/TooManyChildrenException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Importer/ArtifactImportedMapping.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Importer/TrackerExtraConfiguration.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Importer/TrackerIdNotDefinedException.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/ChangesetXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeComputedXMLUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeDateXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeFloatXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeIntegerXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeListXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeOpenListXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangePermissionsOnArtifactXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeStringXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeTextXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeUnknownXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChange/FieldChangeXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/FieldChangeXMLUpdaterVisitor.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/TemporaryFileCreator.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/XML/Updater/TemporaryFileXMLUpdater.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/colorpicker/ColorpickerMountPointPresenter.php +1 −1 Go to diff View file
M plugins/tracker/include/Tracker/dao/ConfigNotificationAssignedToDao.php +1 −1 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/Tracker/dao/Tracker_PermDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerFromXmlException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerFromXmlImportCannotBeCreatedException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerFromXmlImportCannotBeUpdatedException.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerFromXmlInputNotWellFormedException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerPluginDefaultController.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerXMLFieldMappingFromExistingTracker.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerXmlFieldsMapping.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerXmlFieldsMapping_FromAnotherPlatform.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerXmlFieldsMapping_InSamePlatform.php +1 −1 Go to diff View file
M plugins/tracker/include/TrackerXmlFieldsMapping_ValueNotFoundException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Action/Triggers/AddTrigger.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Action/Triggers/DeleteTrigger.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Action/Triggers/GetTriggersRulesBuilderData.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/BeforeEvent.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/GlobalRulesViolationException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/CIBuild/Transition_PostAction_CIBuild.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Field/Transition_PostAction_Field_Numeric.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Field/dao/Transition_PostAction_Field_DateDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Field/dao/Transition_PostAction_Field_FloatDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Field/dao/Transition_PostAction_Field_IntDao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/HiddenFieldsets/HiddenFieldsets.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Transition_PostAction_NotFoundException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/CIBuildValue.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/CIBuildValueUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/CIBuildValueValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/DuplicateFieldIdException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/DuplicatePostActionException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/InvalidPostActionException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/PostActionFieldIdValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/PostActionUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/PostActionsMapper.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetDateValueRepository.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetDateValueUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetDateValueValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetFloatValueRepository.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetFloatValueUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetFloatValueValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetIntValueRepository.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetIntValueUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/SetIntValueValidator.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/Internal/UnknownPostActionIdsException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/PostAction.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/PostActionCollectionUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/SetDateValue.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/SetFieldValue.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/SetFloatValue.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/PostAction/Update/SetIntValue.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/CannotCreateTransitionException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/ConditionsUpdateException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/ConditionsUpdater.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/FieldNotEmpty/Dao.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/FieldNotEmpty/Factory.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/Permissions/Factory.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/Condition/Visitor.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/InvalidConditionForTransitionException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/NoSiblingTransitionException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/OrphanTransitionException.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Transition/TransitionCreationParameters.php +1 −1 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/Exception/AddRuleJsonFormatException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/Exception/RuleException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/Exception/TriggerDoesntExistException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/Exception/TriggerInvalidConditionException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/Exception/TriggerInvalidTargetException.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/FieldValue.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/RuleProcessor/AtLeastOneStrategy.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/RuleProcessor/Strategy.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/RulesBuilderData.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/RulesBuilderFactory.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/RulesBuilderTriggeringFields.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/RulesFactory.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/TriggerRule.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/TriggerRuleCollection.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/Trigger/TriggerValidator.class.php +1 −1 Go to diff View file
M plugins/tracker/include/Workflow/WorkflowUser.class.php +1 −1 Go to diff View file
M plugins/tracker/include/constants.php +1 −1 Go to diff View file
M plugins/tracker/include/manual_autoload.php +1 −1 Go to diff View file
M plugins/tracker/include/trackerPluginDescriptor.class.php +1 −1 Go to diff View file
M plugins/tracker/include/trackerPluginInfo.class.php +1 −1 Go to diff View file
M plugins/tracker/include/tracker_permissions.php +1 −1 Go to diff View file
M plugins/tracker/scripts/angular-artifact-modal/src/modal-creation-mode-state.js +1 −1 Go to diff View file
M plugins/tracker/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/base64-transform.js +1 −1 Go to diff View file
M plugins/tracker/scripts/angular-artifact-modal/src/tuleap-artifact-modal-fields/file-field/streaming-file-reader.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/api/rest-querier.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/DryRunFullyMigratedFieldState.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/DryRunNotMigratedFieldState.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/DryRunPartiallyMigratedFieldState.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/DryRunPreview.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/FieldErrorMessage.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/MoveModal.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/MoveModalSelectors.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/MoveModalTitle.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/ProjectSelector.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/components/TrackerSelector.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/from-tracker-presenter.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/index.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/store/actions.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/store/getters.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/store/index.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/store/mutations.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/store/state.js +1 −1 Go to diff View file
M plugins/tracker/scripts/artifact-action-buttons/src/window-helper.js +1 −1 Go to diff View file
M plugins/tracker/scripts/burndown-chart/src/burndown-chart.js +1 −1 Go to diff View file
M plugins/tracker/scripts/burndown-chart/src/chart-data-service.js +1 −1 Go to diff View file
M plugins/tracker/scripts/burndown-chart/src/gettext-provider.js +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/ColorPicker.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/ColorPickerNoColorOption.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/ColorPickerPalette.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/ColorPickerPaletteRow.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/ColorPickerPreview.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/ColorPickerSwitch.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/OldColorPickerPalette.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/OldColorPickerPaletteRow.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/OldColorPickerPreview.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/new-color-palette.js +1 −1 Go to diff View file
M plugins/tracker/scripts/colorpicker/old-color-palette.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/CopyArtifact.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/FixAggregatesHeaderHeight.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerArtifactEmailActions.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerArtifactLink.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerBinds.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerCollapseFieldset.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerCreate.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerDateReminderForms.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerReportsSaveAsModal.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/TrackerSettings.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/artifactChildren.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/load-artifactChildren.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/tracker-report-nature-column.js +1 −1 Go to diff View file
M plugins/tracker/scripts/legacy/tracker-webhooks.js +1 −1 Go to diff View file
M plugins/tracker/scripts/permissions-per-group/src/BaseTrackerPermissions.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/permissions-per-group/src/TrackerPermissionTableEmptyState.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/permissions-per-group/src/TrackerPermissionsTable.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/permissions-per-group/src/TrackerPermissionsTableContent.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/permissions-per-group/src/index.js +1 −1 Go to diff View file
M plugins/tracker/scripts/report/TQL-CodeMirror/allowed-field-inserter.js +1 −1 Go to diff View file
M plugins/tracker/scripts/report/TQL-CodeMirror/autocompleter.js +1 −1 Go to diff View file
M plugins/tracker/scripts/report/TQL-CodeMirror/builder.js +1 −1 Go to diff View file
M plugins/tracker/scripts/report/TQL-CodeMirror/configuration.js +1 −1 Go to diff View file
M plugins/tracker/scripts/report/index.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/BaseTrackerWorkflowTransitions.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/ConfigureStateButton.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/FirstConfiguration/FirstConfigurationImpossibleWarning.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/FirstConfiguration/FirstConfigurationSections.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/Header/HeaderSection.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/Header/WorkflowFieldChange.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/Header/WorkflowModeSwitch.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionDeletePopover.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionMatrixColumnHeader.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/Empty/EmptyPostAction.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/FilledPreConditionsSection.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/ModalErrorFeedback.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/MultiSelect.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/DateInput.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/FloatInput.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/IntInput.test.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/IntInput.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/PlaceholderInput.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/PostAction.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/RunJobAction.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostAction/SetValueAction.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PostActionsSection.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/PreConditionsSection.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/Skeletons/PostActionSkeleton.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/Skeletons/PreConditionsSkeleton.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionModal/TransitionModalTitle.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/components/TransitionsMatrixSection.vue +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/helpers/item-animator.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/actions.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/getters.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/index.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/mutations.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/state.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/transition-modal/module.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/transition-modal/transition-actions.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/store/transition-modal/transition-mutations.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/support/local-vue.js +1 −1 Go to diff View file
M plugins/tracker/scripts/workflow-transitions/src/support/string.js +1 −1 Go to diff View file
M plugins/tracker/tests/rest/ArtifactsActions/ArtifactsActionsTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/rest/DataBuilder.php +1 −1 Go to diff View file
M plugins/tracker/tests/rest/TQL/TQLTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/rest/TrackerAdministrator/ProjectTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/rest/TrackerAdministrator/ProjectTrackerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/rest/Workflows/SwitchTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/rest/_fixtures/ArtifactsDeletion/project.xml +1 −1 Go to diff View file
M plugins/tracker/tests/rest/_fixtures/ArtifactsDeletion/users.xml +1 −1 Go to diff View file
M plugins/tracker/tests/rest/_fixtures/TrackerAdministrator/project.xml +1 −1 Go to diff View file
M plugins/tracker/tests/rest/_fixtures/TrackerFields/project.xml +1 −1 Go to diff View file
M plugins/tracker/tests/rest/bootstrap.php +1 −1 Go to diff View file
M plugins/tracker/tests/rest/init_test_data.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/PermissionsExporterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/SetFieldValueRepresentationTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/UnsupportedDateValueExceptionTestTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/CIBuildJsonParserTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/PostActionCollectionJsonParserTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/SetDateValueJsonParserTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/SetFloatValueJsonParserTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/PostAction/Update/SetIntValueJsonParserTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/REST/v1/Workflow/TransitionValidatorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Action/BeforeMoveArtifactTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Action/Move/FeedbackFieldCollectorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Action/MoveContributorSemanticCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Action/MoveDescriptionSemanticCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Action/MoveStatusSemanticCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Action/MoveTitleSemanticCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/ActionButton/ArtifactMoveButtonPresenterBuilderTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/Changeset/PostCreation/AsynchronousActionsRunnerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/ExistingArtifactSourceIdFromTrackerExtractorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/MailGateway/IncomingMailTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/MailGateway/Tracker_Artifact_MailGateway_IncomingMessageFactoryTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/XMLArtifactSourcePlatformExtractorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Container/FieldsExtractorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Container/Fieldset/HiddenFieldsetCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Field/Burndown/BurndownDataBuilderForRESTTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Field/Date/CSVFormatterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Field/File/Upload/FileToUploadCreatorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Field/Integer/ChangesCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Field/PermissionsOnArtifact/ChangesCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Tracker_FormElement_Field_List_BindFactoryTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/Tracker_SharedFormElementFactoryTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/FormElement/TransitionListValidatorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/GetTrackersQueryCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Import/SpotterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Notifications/GlobalNotificationSubscribersFilterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Notifications/NotificationLevelExtractorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Reference/ReferenceCreatorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Report/Query/Advanced/InvalidFields/DateTimeFieldCheckerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Report/TrackerReportExtractorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Semantic/Title/Tracker_Semantic_TitleFactoryTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Semantic/TrackerSemanticCollectionTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Semantic/Tracker_SemanticFactoryTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/TrackerXMLFieldMappingFromExistingTrackerTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Tracker_CannedResponseFactoryTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Webhook/ArtifactPayloadBuilderTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Webhook/WebhookFactoryTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Webhook/WebhookXMLExporterTest.php +1 −1 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/CIBuildUpdaterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/CIBuildValidatorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/PostActionFieldIdValidatorTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/PostActionsMapperTest.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/SetDateValueUpdaterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/SetDateValueValidatorTest.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/SetFloatValueUpdaterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/SetFloatValueValidatorTest.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/Internal/SetIntValueUpdaterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Workflow/PostAction/Update/Internal/SetIntValueValidatorTest.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/PostAction/Update/TransitionFactory.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Workflow/Transition/Condition/PermissionsTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/XML/Exporter/ChangesetValue/ChangesetValuePermissionsOnArtifactXMLExporterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/XML/Updater/MoveChangesetXMLUpdaterTest.php +1 −1 Go to diff View file
M plugins/tracker/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/tracker/themes/BurningParrot/css/workflow/_header.scss +1 −1 Go to diff View file
M plugins/tracker/themes/BurningParrot/css/workflow/_matrix.scss +1 −1 Go to diff View file
M plugins/tracker/themes/BurningParrot/css/workflow/_transition-modal.scss +1 −1 Go to diff View file
M plugins/tracker/themes/default/css/includes/_columns-colors.scss +1 −1 Go to diff View file
M plugins/tracker/themes/default/css/includes/_graph.scss +1 −1 Go to diff View file
M plugins/tracker_date_reminder/include/TrackerDateReminder_Logger.class.php +1 −1 Go to diff View file
M plugins/tracker_date_reminder/include/tracker_date_reminderPlugin.php +1 −1 Go to diff View file
M plugins/tracker_encryption/db/mysql/2017/201701251410_create_encrypted_field_tables.php +1 −1 Go to diff View file
M plugins/tracker_encryption/include/REST/Artifact/EncryptedRepresentation.php +1 −1 Go to diff View file
M plugins/tracker_encryption/include/Tracker_Key.class.php +1 −1 Go to diff View file
M plugins/tracker_encryption/include/dao/ValueDao.php +1 −1 Go to diff View file
M plugins/tracker_encryption/scripts/encrypted_field.js +1 −1 Go to diff View file
M plugins/tuleap_synchro/db/mysql/updates/2018/201808100858_add_table_tuleap_synchro.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Dao/TuleapSynchroDao.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/Endpoint.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointBuilder.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointChecker.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointCreatorController.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointDeleteController.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointRetriever.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointUpdater.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Exception/BaseURINotValidException.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Exception/TrackerIdIsNotValidException.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsPresenter.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsPresenterBuilder.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsRetriever.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Webhook/Webhook.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/include/Tuleap_Synchro/Webhook/WebhookGenerator.php +1 −1 Go to diff View file
M plugins/tuleap_synchro/scripts/site-admin/src/index.js +1 −1 Go to diff View file
M plugins/tuleap_synchro/themes/BurningParrot/css/_tuleap-synchro.scss +1 −1 Go to diff View file
M plugins/userlog/bin/clean_userlog_request.php +1 −1 Go to diff View file
M plugins/userlog/include/UserLogBuilder.php +1 −1 Go to diff View file
M plugins/userlog/include/UserLogDao.class.php +1 −1 Go to diff View file
M plugins/userlog/include/UserLogExporter.php +1 −1 Go to diff View file
M plugins/userlog/include/UserLogPluginInfo.class.php +1 −1 Go to diff View file
M plugins/userlog/include/UserLogPresenter.php +1 −1 Go to diff View file
M plugins/userlog/include/UserLogRouter.php +1 −1 Go to diff View file
M plugins/userlog/include/constants.php +1 −1 Go to diff View file
M plugins/velocity/db/mysql/updates/2018/201803211554_create_velocity_semantic_table.php +1 −1 Go to diff View file
M plugins/velocity/db/mysql/updates/2019/201903221356_update_semantic_field_primary_key.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/InvalidArtifactRepresentation.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Plugin/PluginInfo.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/BacklogRequiredTracker.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/BacklogRequiredTrackerCollection.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/BacklogRequiredTrackerCollectionFormatter.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/BacklogRetriever.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/ChildrenRequiredTracker.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/ChildrenRequiredTrackerCollection.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/MissingRequiredSemanticPresenter.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/MissingRequirementRetriever.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/RequiredTrackerPresenter.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/SemanticVelocity.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/SemanticVelocityAdminPresenter.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/SemanticVelocityAdminPresenterBuilder.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/SemanticVelocityDao.php +1 −1 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/Semantic/SemanticVelocityPresenterBuilder.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/Semantic/VelocitySemanticChecker.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/VelocityChartPresenter.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/VelocityCollection.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/VelocityComputation.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/VelocityComputationChecker.php +1 −1 Go to diff View file
M plugins/velocity/include/Velocity/VelocityDao.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/constants.php +1 −1 Go to diff View file
M plugins/velocity/scripts/velocity-chart/src/gettext-provider.js +1 −1 Go to diff View file
M plugins/velocity/scripts/velocity-chart/src/index.js +1 −1 Go to diff View file
M plugins/velocity/scripts/velocity-chart/src/velocity-chart-drawer.js +1 −1 Go to diff View file
M plugins/velocity/tests/unit/Velocity/Semantic/BacklogRequiredTrackerCollectionTest.php +1 −1 Go to diff View file
M plugins/velocity/tests/unit/Velocity/Semantic/VelocitySemanticCheckerTest.php +1 −1 Go to diff View file
M plugins/velocity/tests/unit/Velocity/VelocityComputationCheckerTest.php +1 −1 Go to diff View file
M plugins/velocity/tests/unit/Velocity/VelocityPluginComputationTest.php +1 −1 Go to diff View file
M plugins/velocity/tests/unit/bootstrap.php +1 −1 Go to diff View file
M plugins/velocity/themes/FlamingParrot/css/style.scss +1 −1 Go to diff View file
M plugins/webdav/include/FS/WebDAV_DocmanController.class.php +1 −1 Go to diff View file
M plugins/webdav/include/WebDAV_Request.class.php +1 −1 Go to diff View file
M plugins/webdav/include/WebDAV_Response.class.php +1 −1 Go to diff View file
M plugins/webdav/include/Webdav_URLVerification.class.php +1 −1 Go to diff View file
M plugins/webdav/www/index.php +1 −1 Go to diff View file
M site-content/en_US/account/new_account_email.txt +1 −1 Go to diff View file
M site-content/en_US/account/password_strategy.txt +1 −1 Go to diff View file
M site-content/en_US/en_US.tab +1 −1 Go to diff View file
M site-content/en_US/homepage/homepage.tab +1 −1 Go to diff View file
M site-content/en_US/include/include.tab +1 −1 Go to diff View file
M site-content/en_US/include/new_user_email.txt +1 −1 Go to diff View file
M site-content/en_US/include/restricted_user_permissions.txt +1 −1 Go to diff View file
M site-content/en_US/layout/extra_tabs.php +1 −1 Go to diff View file
M site-content/en_US/layout/footer_cli.php +1 −1 Go to diff View file
M site-content/en_US/layout/footer_help.php +1 −1 Go to diff View file
M site-content/en_US/project/register.tab +1 −1 Go to diff View file
M site-content/en_US/widget/widget.tab +1 −1 Go to diff View file
M site-content/fr_FR/account/new_account_email.txt +1 −1 Go to diff View file
M site-content/fr_FR/account/password_strategy.txt +1 −1 Go to diff View file
M site-content/fr_FR/fr_FR.tab +1 −1 Go to diff View file
M site-content/fr_FR/homepage/homepage.tab +1 −1 Go to diff View file
M site-content/fr_FR/include/include.tab +1 −1 Go to diff View file
M site-content/fr_FR/include/new_user_email.txt +1 −1 Go to diff View file
M site-content/fr_FR/layout/extra_tabs.php +1 −1 Go to diff View file
M site-content/fr_FR/layout/footer_cli.php +1 −1 Go to diff View file
M site-content/fr_FR/layout/footer_help.php +1 −1 Go to diff View file
M site-content/fr_FR/news/news.tab +1 −1 Go to diff View file
M site-content/fr_FR/project/register.tab +1 −1 Go to diff View file
M site-content/fr_FR/widget/widget.tab +1 −1 Go to diff View file
M src/common/Authentication/SplitToken/InvalidIdentifierFormatException.php +1 −1 Go to diff View file
M src/common/Authentication/SplitToken/SplitTokenException.php +1 −1 Go to diff View file
M src/common/Color/AllowedColorsCollection.php +1 −1 Go to diff View file
M src/common/Color/ColorPresenter.php +1 −1 Go to diff View file
M src/common/Color/ColorPresenterFactory.php +1 −1 Go to diff View file
M src/common/ConcurrentVersionsSystem/ViewVC/viewvc-epel.cgi +1 −1 Go to diff View file
M src/common/Config/ConfigDao.php +1 −1 Go to diff View file
M src/common/Config/ConfigValueDatabaseProvider.php +1 −1 Go to diff View file
M src/common/Config/ConfigValueFileProvider.php +1 −1 Go to diff View file
M src/common/Config/ConfigValueProvider.php +1 −1 Go to diff View file
M src/common/Config/ForgeConfig.php +1 −1 Go to diff View file
M src/common/Config/LocalIncFinder.php +1 −1 Go to diff View file
M src/common/Cron/EventCronJobEveryMinute.php +1 −1 Go to diff View file
M src/common/Cryptography/Asymmetric/AsymmetricCrypto.php +1 −1 Go to diff View file
M src/common/Cryptography/Asymmetric/SignatureSecretKey.php +1 −1 Go to diff View file
M src/common/Cryptography/Exception/CannotPerformIOOperationException.php +1 −1 Go to diff View file
M src/common/Cryptography/Exception/CannotSerializeKeyException.php +1 −1 Go to diff View file
M src/common/Cryptography/Exception/InvalidCiphertextException.php +1 −1 Go to diff View file
M src/common/Cryptography/Exception/InvalidKeyException.php +1 −1 Go to diff View file
M src/common/Cryptography/Exception/InvalidSignatureException.php +1 −1 Go to diff View file
M src/common/Cryptography/Exception/UnexpectedOperationFailureException.php +1 −1 Go to diff View file
M src/common/Cryptography/Symmetric/EncryptionKey.php +1 −1 Go to diff View file
M src/common/Cryptography/Symmetric/SymmetricCrypto.php +1 −1 Go to diff View file
M src/common/DB/Compat/Legacy2018/CompatPDODataAccessResult.php +1 −1 Go to diff View file
M src/common/DB/Compat/Legacy2018/LegacyDataAccessResultInterface.php +1 −1 Go to diff View file
M src/common/DB/DBTransactionExecutor.php +1 −1 Go to diff View file
M src/common/DB/DBTransactionExecutorWithConnection.php +1 −1 Go to diff View file
M src/common/DB/DataAccessObject.php +1 −1 Go to diff View file
M src/common/Dashboard/Dashboard.php +1 −1 Go to diff View file
M src/common/Dashboard/DashboardDoesNotExistException.php +1 −1 Go to diff View file
M src/common/Dashboard/DashboardPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/DashboardRepresentation.php +1 −1 Go to diff View file
M src/common/Dashboard/NameDashboardAlreadyExistsException.php +1 −1 Go to diff View file
M src/common/Dashboard/NameDashboardDoesNotExistException.php +1 −1 Go to diff View file
M src/common/Dashboard/PagePresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboard.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardDao.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardRetriever.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardRouter.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardSaver.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/ProjectPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/UserCanNotUpdateProjectDashboardException.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/WidgetDeletor.php +1 −1 Go to diff View file
M src/common/Dashboard/Project/WidgetMinimizor.php +1 −1 Go to diff View file
M src/common/Dashboard/User/AtUserCreationDefaultWidgetsCreator.php +1 −1 Go to diff View file
M src/common/Dashboard/User/MyPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboard.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardController.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardDao.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardDeletor.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardRetriever.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardRouter.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardSaver.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserDashboardUpdator.php +1 −1 Go to diff View file
M src/common/Dashboard/User/UserPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/User/WidgetDeletor.php +1 −1 Go to diff View file
M src/common/Dashboard/User/WidgetMinimizor.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/Add/AddWidgetController.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/Add/WidgetPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/Add/WidgetsByCategoryPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/Add/WidgetsCategoriesPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidget.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetChecker.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetColumn.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetColumnPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetDao.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetDeletor.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetLine.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetLinePresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetLineUpdater.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetPresenter.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetRemoverInList.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetReorder.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/DashboardWidgetRetriever.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/OwnerInfo.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/Router.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/WidgetCreator.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/WidgetDashboardController.php +1 −1 Go to diff View file
M src/common/Dashboard/Widget/WidgetNotFoundException.php +1 −1 Go to diff View file
M src/common/Error/PermissionDeniedPrivateProjectController.php +1 −1 Go to diff View file
M src/common/Error/PermissionDeniedRestrictedAccountController.php +1 −1 Go to diff View file
M src/common/Error/PermissionDeniedRestrictedAccountProjectController.php +1 −1 Go to diff View file
M src/common/Error/PlaceHolderBuilder.php +1 −1 Go to diff View file
M src/common/Error/ProjectAccessSuspendedController.php +1 −1 Go to diff View file
M src/common/Error/ProjectAccessSuspendedErrorPresenter.php +1 −1 Go to diff View file
M src/common/Error/ProjectPermissionDeniedPresenter.php +1 −1 Go to diff View file
M src/common/Event/Dispatchable.php +1 −1 Go to diff View file
M src/common/FRS/FRSPackageFactory.class.php +1 −1 Go to diff View file
M src/common/FRS/FRSPackageHasReleaseException.php +1 −1 Go to diff View file
M src/common/FRS/FRSPackageNameAlreadyExistsException.php +1 −1 Go to diff View file
M src/common/FRS/FRSPackagePaginatedCollection.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/FRSPackageRouter.php +1 −1 Go to diff View file
M src/common/FRS/FRSPermission.php +1 −1 Go to diff View file
M src/common/FRS/FRSPermissionDao.php +1 −1 Go to diff View file
M src/common/FRS/FRSPermissionFactory.php +1 −1 Go to diff View file
M src/common/FRS/FRSReleasePaginatedCollection.php +1 −1 Go to diff View file
M src/common/FRS/FRSReleasePermissionPresenter.php +1 −1 Go to diff View file
M src/common/FRS/FRSReleaseRouter.php +1 −1 Go to diff View file
M src/common/FRS/FRSRouter.php +1 −1 Go to diff View file
M src/common/FRS/PackagePermissionManager.php +1 −1 Go to diff View file
M src/common/FRS/PermissionPresenter.php +1 −1 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 +1 −1 Go to diff View file
M src/common/FRS/PermissionsPerGroup/PackagePermissionPerGroupRepresentationBuilder.php +1 −1 Go to diff View file
M src/common/FRS/PermissionsPerGroup/PaneCollector.php +1 −1 Go to diff View file
M src/common/FRS/PermissionsPerGroup/PermissionPerGroupFRSServicePresenterBuilder.php +1 −1 Go to diff View file
M src/common/FRS/PermissionsPerGroup/PermissionPerTypeExtractor.php +1 −1 Go to diff View file
M src/common/FRS/ReleasePermissionManager.php +1 −1 Go to diff View file
M src/common/FRS/ToolbarPresenter.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinkDeletor.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinkPresenter.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinkPresentersBuilder.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinksDao.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinksInvalidFormException.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinksRequestFormatter.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinksRetriever.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinksTablePresenter.php +1 −1 Go to diff View file
M src/common/FRS/UploadedLinksUpdater.php +1 −1 Go to diff View file
M src/common/ForgeAccess/AdminController.php +1 −1 Go to diff View file
M src/common/ForgeAccess/AdminPresenter.php +1 −1 Go to diff View file
M src/common/ForgeAccess/AdminRouter.php +1 −1 Go to diff View file
M src/common/ForgeAccess/ForgeAccess.php +1 −1 Go to diff View file
M src/common/ForgeAccess/ForgePropertiesManager.class.php +1 −1 Go to diff View file
M src/common/ForgeAccess/UnknownForgeAccessValueException.php +1 −1 Go to diff View file
M src/common/Glyph/GlyphFinder.php +1 −1 Go to diff View file
M src/common/Glyph/GlyphLocation.php +1 −1 Go to diff View file
M src/common/Glyph/GlyphLocationsCollector.php +1 −1 Go to diff View file
M src/common/Glyph/GlyphNotFoundException.php +1 −1 Go to diff View file
M src/common/Http/HTTPFactoryBuilder.php +1 −1 Go to diff View file
M src/common/Http/Server/AlwaysSuccessfulRequestHandler.php +1 −1 Go to diff View file
M src/common/Http/Server/NullServerRequest.php +1 −1 Go to diff View file
M src/common/Httpd/PostRotateEvent.php +1 −1 Go to diff View file
M src/common/Instrument/Prometheus/CollectTuleapComputedMetrics.php +1 −1 Go to diff View file
M src/common/JWT/REST/JWTRepresentation.class.php +1 −1 Go to diff View file
M src/common/Jenkins/ClientUnableToLaunchBuildException.class.php +1 −1 Go to diff View file
M src/common/Label/CanProjectUseLabels.php +1 −1 Go to diff View file
M src/common/Label/CollectionOfLabelableDao.php +1 −1 Go to diff View file
M src/common/Label/Label.php +1 −1 Go to diff View file
M src/common/Label/Labelable.php +1 −1 Go to diff View file
M src/common/Label/LabelableDao.php +1 −1 Go to diff View file
M src/common/Label/LabeledItemCollection.php +1 −1 Go to diff View file
M src/common/Label/PaginatedCollectionsOfLabels.php +1 −1 Go to diff View file
M src/common/Label/PaginatedCollectionsOfLabelsBuilder.php +1 −1 Go to diff View file
M src/common/Label/REST/LabelRepresentation.php +1 −1 Go to diff View file
M src/common/Label/REST/LabelsUpdater.php +1 −1 Go to diff View file
M src/common/Label/REST/UnableToAddAndRemoveSameLabelException.php +1 −1 Go to diff View file
M src/common/Label/REST/UnableToAddEmptyLabelException.php +1 −1 Go to diff View file
M src/common/Label/UnknownLabelException.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsBuilder.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsController.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsDao.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsFindException.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsListPresenter.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsMissingTitleException.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsPresenter.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsRouter.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminNewsUpdateException.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminPublishedNewsPresenter.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminRejectedNewsPresenter.php +1 −1 Go to diff View file
M src/common/News/Admin/AdminWaitingPublicationPresenter.php +1 −1 Go to diff View file
M src/common/News/Admin/NewsRetriever.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/News/Admin/PermissionsPerGroup/NewsPermissionPerGroupPaneBuilder.php +1 −1 Go to diff View file
M src/common/News/Admin/PermissionsPerGroup/NewsPermissionsManager.php +1 −1 Go to diff View file
M src/common/News/Admin/PermissionsPerGroup/NewsPermissionsRepresentationBuilder.php +1 −1 Go to diff View file
M src/common/News/Admin/PermissionsPerGroup/NewsVisibilityRepresentation.php +1 −1 Go to diff View file
M src/common/News/ChooseNewsPresenter.php +1 −1 Go to diff View file
M src/common/News/NewsDao.php +1 −1 Go to diff View file
M src/common/News/NewsItem.php +1 −1 Go to diff View file
M src/common/News/NewsItemDataMapper.php +1 −1 Go to diff View file
M src/common/OpenGraph/NoOpenGraphPresenter.php +1 −1 Go to diff View file
M src/common/OpenGraph/OpenGraphPresenter.php +1 −1 Go to diff View file
M src/common/OpenGraph/OpenGraphPropertyPresenter.php +1 −1 Go to diff View file
M src/common/PFO/Plugin.php +1 −1 Go to diff View file
M src/common/PFO/Project.php +1 −1 Go to diff View file
M src/common/PFO/User.php +1 −1 Go to diff View file
M src/common/Password/Administration/PasswordPolicyPresenter.php +1 −1 Go to diff View file
M src/common/Password/Administration/PasswordPolicyUpdateController.php +1 −1 Go to diff View file
M src/common/Password/Configuration/PasswordConfiguration.php +1 −1 Go to diff View file
M src/common/Password/Configuration/PasswordConfigurationDAO.php +1 −1 Go to diff View file
M src/common/Password/Configuration/PasswordConfigurationRetriever.php +1 −1 Go to diff View file
M src/common/Password/Configuration/PasswordConfigurationSaver.php +1 −1 Go to diff View file
M src/common/Password/HaveIBeenPwned/PwnedPasswordChecker.php +1 −1 Go to diff View file
M src/common/Password/PasswordCompromiseValidator.php +1 −1 Go to diff View file
M src/common/Password/PasswordRegexpValidator.class.php +1 −1 Go to diff View file
M src/common/Password/PasswordSanityChecker.php +1 −1 Go to diff View file
M src/common/Project/AccessDeletedException.class.php +1 −1 Go to diff View file
M src/common/Project/AccessException.class.php +1 −1 Go to diff View file
M src/common/Project/AccessNotAdminException.class.php +1 −1 Go to diff View file
M src/common/Project/AccessPrivateException.class.php +1 −1 Go to diff View file
M src/common/Project/AccessProjectNotFoundException.class.php +1 −1 Go to diff View file
M src/common/Project/AccessRestrictedException.class.php +1 −1 Go to diff View file
M src/common/Project/Admin/Categories/ProjectCategoriesUpdater.php +1 −1 Go to diff View file
M src/common/Project/Admin/Categories/TroveSetNodeFacade.php +1 −1 Go to diff View file
M src/common/Project/Admin/DescriptionFields/FieldsListPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/DescriptionFields/ProjectDescriptionFieldBuilder.php +1 −1 Go to diff View file
M src/common/Project/Admin/GetProjectHistoryEntryValue.php +1 −1 Go to diff View file
M src/common/Project/Admin/MembershipDelegationDao.php +1 −1 Go to diff View file
M src/common/Project/Admin/Navigation/HeaderNavigationDisplayer.php +1 −1 Go to diff View file
M src/common/Project/Admin/Navigation/NavigationDropdownItemInterface.php +1 −1 Go to diff View file
M src/common/Project/Admin/Navigation/NavigationDropdownPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/Navigation/NavigationDropdownQuickLinksCollector.php +1 −1 Go to diff View file
M src/common/Project/Admin/Navigation/NavigationDropdownTitlePresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/Navigation/NavigationItem.php +1 −1 Go to diff View file
M src/common/Project/Admin/Navigation/NavigationItemPresenter.php +1 −1 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/PermissionPerGroup/PermissionPerGroupBuilder.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupCollection.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupDisplayEvent.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupPaneCollector.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupPanePresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupUGroupFormatter.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupUGroupRepresentation.php +1 −1 Go to diff View file
M src/common/Project/Admin/PermissionPerGroup/PermissionPerGroupUGroupRetriever.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectDetails/CannotUpdateProjectHierarchyException.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectDetails/ProjectDetailsDAO.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectDetails/ProjectDetailsPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectDetails/ProjectDetailsRouter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectDetails/ProjectHierarchyPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectGlobalVisibilityPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectHistoryPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectHistoryResultsPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectHistorySearchPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectListPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectListResultsPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectListResultsPresenterBuilder.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectListResultsProjectPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectListSearchFieldsPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectListSearchFieldsPresenterBuilder.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectMembers/MembersEditProcessAction.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectMembersPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectTruncatedEmailsPresenter.class.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/BindingAdditionalModalPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/BindingAdditionalModalPresenterCollection.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/BindingPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/BindingPresenterBuilder.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/CannotCreateUGroupException.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/CannotRemoveLastProjectAdministratorException.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/CannotRemoveUserMembershipToUserGroupException.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/DelegationController.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/DetailsController.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/EditBindingUGroupEventLauncher.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/ImpossibleToMarkNotUGroupMemberAsNotUpdatableException.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/IndexController.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/MinimalUGroupPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/PermissionsDelegationPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/PermissionsDelegationPresenterBuilder.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/ProjectUGroupMemberUpdatable.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/ProjectUGroupPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/ProjectUGroupPresenterBuilder.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UGroupEditProcessAction.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UGroupPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserAndProjectUGroupRelationshipEvent.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserBecomesForumAdmin.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserBecomesNewsAdministrator.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserBecomesNewsWriter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserBecomesProjectAdmin.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserBecomesWikiAdmin.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserIsNoLongerForumAdmin.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserIsNoLongerNewsAdministrator.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserIsNoLongerNewsWriter.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserIsNoLongerProjectAdmin.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserIsNoLongerWikiAdmin.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectUGroup/UserIsUGroupMemberChecker.php +1 −1 Go to diff View file
M src/common/Project/Admin/ProjectVisibilityUserConfigurationPermissions.php +1 −1 Go to diff View file
M src/common/Project/Admin/ServicesUsingTruncatedMailRetriever.php +1 −1 Go to diff View file
M src/common/Project/Admin/TemplateListPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/TemplatePresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/WebhookPresenter.php +1 −1 Go to diff View file
M src/common/Project/Admin/WebhooksPresenter.php +1 −1 Go to diff View file
M src/common/Project/CustomDescription/CustomDescription.class.php +1 −1 Go to diff View file
M src/common/Project/CustomDescription/CustomDescriptionFactory.class.php +1 −1 Go to diff View file
M src/common/Project/CustomDescription/CustomDescriptionValueDao.class.php +1 −1 Go to diff View file
M src/common/Project/CustomDescription/CustomDescriptionValueFactory.class.php +1 −1 Go to diff View file
M src/common/Project/CustomDescription/CustomDescriptionValueManager.class.php +1 −1 Go to diff View file
M src/common/Project/Event/GetProjectWithTrackerAdministrationPermission.php +1 −1 Go to diff View file
M src/common/Project/Event/ProjectRegistrationActivateService.php +1 −1 Go to diff View file
M src/common/Project/Event/ProjectServiceBeforeActivation.php +1 −1 Go to diff View file
M src/common/Project/Flags/ProjectFlagPresenter.php +1 −1 Go to diff View file
M src/common/Project/Flags/ProjectFlagsBuilder.php +1 −1 Go to diff View file
M src/common/Project/Flags/ProjectFlagsDao.php +1 −1 Go to diff View file
M src/common/Project/HeartbeatsEntry.php +1 −1 Go to diff View file
M src/common/Project/HeartbeatsEntryCollection.php +1 −1 Go to diff View file
M src/common/Project/Hierarchy/HierarchyManager.class.php +1 −1 Go to diff View file
M src/common/Project/Hierarchy/HierarchyManagerAlreadyAncestorException.class.php +1 −1 Go to diff View file
M src/common/Project/Hierarchy/HierarchyManagerAncestorIsSelfException.class.php +1 −1 Go to diff View file
M src/common/Project/HierarchyDisplayer.php +1 −1 Go to diff View file
M src/common/Project/Label/AddController.php +1 −1 Go to diff View file
M src/common/Project/Label/CollectionOfLabelPresenter.php +1 −1 Go to diff View file
M src/common/Project/Label/DeleteController.php +1 −1 Go to diff View file
M src/common/Project/Label/EditController.php +1 −1 Go to diff View file
M src/common/Project/Label/IndexPresenter.php +1 −1 Go to diff View file
M src/common/Project/Label/InvalidColorException.php +1 −1 Go to diff View file
M src/common/Project/Label/LabelDao.php +1 −1 Go to diff View file
M src/common/Project/Label/LabelPresenter.php +1 −1 Go to diff View file
M src/common/Project/Label/LabelWithSameNameAlreadyExistException.php +1 −1 Go to diff View file
M src/common/Project/Label/LabelsCurlyCoatedRetriever.php +1 −1 Go to diff View file
M src/common/Project/Label/LabelsManagementRouter.php +1 −1 Go to diff View file
M src/common/Project/Label/LabelsManagementURLBuilder.php +1 −1 Go to diff View file
M src/common/Project/Label/MergeLabels.php +1 −1 Go to diff View file
M src/common/Project/Label/NewLabelPresenter.php +1 −1 Go to diff View file
M src/common/Project/Label/RemoveLabel.php +1 −1 Go to diff View file
M src/common/Project/OneStepCreation/OneStepCreationCompletePresenter.class.php +1 −1 Go to diff View file
M src/common/Project/OneStepRegistration/OneStepRegistrationApprovalPresenter.class.php +1 −1 Go to diff View file
M src/common/Project/OneStepRegistration/OneStepRegistrationPresenter.class.php +1 −1 Go to diff View file
M src/common/Project/OneStepRegistration/OneStepRegistrationPresenterFactory.class.php +1 −1 Go to diff View file
M src/common/Project/PaginatedProjects.php +1 −1 Go to diff View file
M src/common/Project/ProjectAccessSuspendedException.php +1 −1 Go to diff View file
M src/common/Project/ProjectRegistrationDisabledException.php +1 −1 Go to diff View file
M src/common/Project/ProjectStatusMapper.php +1 −1 Go to diff View file
M src/common/Project/Project_Creation_Exception.class.php +1 −1 Go to diff View file
M src/common/Project/Project_InvalidFullName_Exception.class.php +1 −1 Go to diff View file
M src/common/Project/Project_InvalidShortName_Exception.class.php +1 −1 Go to diff View file
M src/common/Project/Project_NotFoundException.class.php +1 −1 Go to diff View file
M src/common/Project/Quota/ProjectQuotaChecker.php +1 −1 Go to diff View file
M src/common/Project/Quota/ProjectQuotaInformation.php +1 −1 Go to diff View file
M src/common/Project/Quota/ProjectQuotaRequester.php +1 −1 Go to diff View file
M src/common/Project/REST/UserRESTReferenceRepresentation.php +1 −1 Go to diff View file
M src/common/Project/REST/UserRESTReferenceRetriever.php +1 −1 Go to diff View file
M src/common/Project/REST/v1/GetProjectsQueryChecker.php +1 −1 Go to diff View file
M src/common/Project/REST/v1/UserGroupQueryParameterParser.php +1 −1 Go to diff View file
M src/common/Project/REST/v1/UserGroupQueryRepresentation.php +1 −1 Go to diff View file
M src/common/Project/Service/InvalidServicePOSTDataException.php +1 −1 Go to diff View file
M src/common/Project/Service/ServiceUsage.class.php +1 −1 Go to diff View file
M src/common/Project/Service/ServiceUsageDao.class.php +1 −1 Go to diff View file
M src/common/Project/Service/ServiceUsageFactory.class.php +1 −1 Go to diff View file
M src/common/Project/Service/ServiceUsageManager.class.php +1 −1 Go to diff View file
M src/common/Project/Service/UnableToCreateServiceException.php +1 −1 Go to diff View file
M src/common/Project/Service/UnableToUpdateServiceException.php +1 −1 Go to diff View file
M src/common/Project/ServiceAccessEvent.php +1 −1 Go to diff View file
M src/common/Project/ServiceNotAllowedForProjectException.class.php +1 −1 Go to diff View file
M src/common/Project/Status/ProjectSuspendedAndNotBlockedWarningCollector.php +1 −1 Go to diff View file
M src/common/Project/UGroup_Invalid_Exception.class.php +1 −1 Go to diff View file
M src/common/Project/UgroupDuplicator.php +1 −1 Go to diff View file
M src/common/Project/UgroupsPermissionsCache.php +1 −1 Go to diff View file
M src/common/Project/UserRemover.php +1 −1 Go to diff View file
M src/common/Project/UserRemoverDao.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Log/Status.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Log/StatusDataAccessException.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Log/StatusLogger.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Log/StatusRetriever.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Log/WebhookLoggerDao.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Log/WebhookLoggerDataAccessException.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Retriever.php +1 −1 Go to diff View file
M src/common/Project/Webhook/Webhook.php +1 −1 Go to diff View file
M src/common/Project/Webhook/WebhookDao.php +1 −1 Go to diff View file
M src/common/Project/Webhook/WebhookDataAccessException.php +1 −1 Go to diff View file
M src/common/Project/Webhook/WebhookMalformedDataException.php +1 −1 Go to diff View file
M src/common/Project/Webhook/WebhookUpdater.php +1 −1 Go to diff View file
M src/common/Project/XML/ArchiveException.php +1 −1 Go to diff View file
M src/common/Project/XML/ArchiveInterface.php +1 −1 Go to diff View file
M src/common/Project/XML/Export/ArchiveInterface.php +1 −1 Go to diff View file
M src/common/Project/XML/Export/DirectoryArchive.php +1 −1 Go to diff View file
M src/common/Project/XML/Export/NoArchive.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/Import/ArchiveInterface.php +1 −1 Go to diff View file
M src/common/Project/XML/Import/DirectoryArchive.php +1 −1 Go to diff View file
M src/common/Project/XML/Import/ImportConfig.php +1 −1 Go to diff View file
M src/common/Project/XML/Import/ImportExtraConfiguration.php +1 −1 Go to diff View file
M src/common/Project/XML/Import/ImportNotValidException.php +1 −1 Go to diff View file
M src/common/Queue/NoQueueSystemAvailableException.php +1 −1 Go to diff View file
M src/common/Queue/QueueServerConnectionException.php +1 −1 Go to diff View file
M src/common/Queue/WorkerEvent.php +1 −1 Go to diff View file
M src/common/REST/DuplicatedParameterValueException.php +1 −1 Go to diff View file
M src/common/REST/Event/ProjectGetSvn.php +1 −1 Go to diff View file
M src/common/REST/Event/ProjectOptionsSvn.php +1 −1 Go to diff View file
M src/common/REST/Exceptions/InvalidJsonException.class.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/Exceptions/NoAuthenticationHeadersException.class.php +1 −1 Go to diff View file
M src/common/REST/Header.class.php +1 −1 Go to diff View file
M src/common/REST/InvalidParameterTypeException.php +1 −1 Go to diff View file
M src/common/REST/JsonDecoder.class.php +1 −1 Go to diff View file
M src/common/REST/MissingMandatoryParameterException.php +1 −1 Go to diff View file
M src/common/REST/ProjectAuthorization.class.php +1 −1 Go to diff View file
M src/common/REST/QueryParameterException.php +1 −1 Go to diff View file
M src/common/REST/QueryParameterParser.php +1 −1 Go to diff View file
M src/common/REST/RESTLogger.php +1 −1 Go to diff View file
M src/common/REST/ResourceReference.class.php +1 −1 Go to diff View file
M src/common/REST/Token.class.php +1 −1 Go to diff View file
M src/common/REST/TokenDao.class.php +1 −1 Go to diff View file
M src/common/REST/TokenFactory.class.php +1 −1 Go to diff View file
M src/common/REST/TokenManager.class.php +1 −1 Go to diff View file
M src/common/REST/TuleapRESTCORSMiddleware.php +1 −1 Go to diff View file
M src/common/REST/v1/GitRepositoryReferenceBase.class.php +1 −1 Go to diff View file
M src/common/REST/v1/PlanningReferenceBase.class.php +1 −1 Go to diff View file
M src/common/RSS/FeedHTTPClient.php +1 −1 Go to diff View file
M src/common/Redis/RedisConnectionException.php +1 −1 Go to diff View file
M src/common/Request/CollectRoutesEvent.php +1 −1 Go to diff View file
M src/common/Request/CurrentPage.php +1 −1 Go to diff View file
M src/common/Request/DispatchableWithBurningParrot.php +1 −1 Go to diff View file
M src/common/Request/DispatchableWithRequest.php +1 −1 Go to diff View file
M src/common/Request/DispatchableWithRequestNoAuthz.php +1 −1 Go to diff View file
M src/common/Request/LegacyRoutesController.php +1 −1 Go to diff View file
M src/common/Request/RestrictedUsersAreHandledByPluginEvent.php +1 −1 Go to diff View file
M src/common/Sanitizer/URISanitizer.php +1 −1 Go to diff View file
M src/common/System/Alias.class.php +1 −1 Go to diff View file
M src/common/System/Command.class.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/Exception/CommandException.class.php +1 −1 Go to diff View file
M src/common/System/Exception/DaemonLockerException.php +1 −1 Go to diff View file
M src/common/Token/REST/TokenRepresentation.class.php +1 −1 Go to diff View file
M src/common/Token/REST/v1/TokenResource.class.php +1 −1 Go to diff View file
M src/common/TreeNode/GetStateVisitor.class.php +1 −1 Go to diff View file
M src/common/TreeNode/InjectPaddingInTreeNodeVisitor.class.php +1 −1 Go to diff View file
M src/common/TreeNode/InjectSpanPaddingInTreeNodeVisitor.class.php +1 −1 Go to diff View file
M src/common/TreeNode/NodeDuplicator.class.php +1 −1 Go to diff View file
M src/common/TreeNode/TreeNodeCallback.class.php +1 −1 Go to diff View file
M src/common/TreeNode/TreeNodeMapper.class.php +1 −1 Go to diff View file
M src/common/Upload/FileAlreadyUploadedInformation.php +1 −1 Go to diff View file
M src/common/Upload/FileBeingUploadedLocker.php +1 −1 Go to diff View file
M src/common/Upload/FileBeingUploadedWriter.php +1 −1 Go to diff View file
M src/common/Upload/FileUploadDispatcher.php +1 −1 Go to diff View file
M src/common/Upload/UploadLockVerificationException.php +1 −1 Go to diff View file
M src/common/User/AccessKey/AccessKeyCreator.php +1 −1 Go to diff View file
M src/common/User/AccessKey/AccessKeyException.php +1 −1 Go to diff View file
M src/common/User/AccessKey/AccessKeyMatchingUnknownUserException.php +1 −1 Go to diff View file
M src/common/User/AccessKey/AccessKeyNotFoundException.php +1 −1 Go to diff View file
M src/common/User/AccessKey/InvalidAccessKeyException.php +1 −1 Go to diff View file
M src/common/User/AccessKey/LastAccessKeyIdentifierStore.php +1 −1 Go to diff View file
M src/common/User/AccessKey/REST/UserAccessKeyCreationRepresentation.php +1 −1 Go to diff View file
M src/common/User/Account/ChangeAvatarController.php +1 −1 Go to diff View file
M src/common/User/Account/ConfirmNewEmailController.php +1 −1 Go to diff View file
M src/common/User/Account/LogoutController.php +1 −1 Go to diff View file
M src/common/User/Account/UserAvatarSaver.php +1 −1 Go to diff View file
M src/common/User/Admin/PendingProjectBuilder.php +1 −1 Go to diff View file
M src/common/User/Admin/PendingUserPresenter.php +1 −1 Go to diff View file
M src/common/User/Admin/PendingUsersCollectionPresenter.php +1 −1 Go to diff View file
M src/common/User/Admin/ProjectPendingPresenter.php +1 −1 Go to diff View file
M src/common/User/Admin/UserDetailsFormatter.php +1 −1 Go to diff View file
M src/common/User/Admin/UserDetailsProjectPresenter.php +1 −1 Go to diff View file
M src/common/User/Admin/UserListPresenter.php +1 −1 Go to diff View file
M src/common/User/Admin/UserListResultsPresenter.php +1 −1 Go to diff View file
M src/common/User/Admin/UserListResultsUserPresenter.php +1 −1 Go to diff View file
M src/common/User/Admin/UserStatusBuilder.php +1 −1 Go to diff View file
M src/common/User/Admin/UserStatusChecker.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission.class.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/NotFoundException.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/ProjectApproval.class.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/RestProjectManagementPermission.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/RetrieveSystemEventsInformationApi.class.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/RetrieveUserMembershipInformation.class.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/SiteAdministratorPermission.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/SiteAdministratorPermissionChecker.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermission/UserForgeUGroupPresenter.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermissionsDao.class.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupPermissionsManager.class.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupUsersDao.class.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupUsersFactory.php +1 −1 Go to diff View file
M src/common/User/ForgeUserGroupUsersManager.class.php +1 −1 Go to diff View file
M src/common/User/GenericUser.class.php +1 −1 Go to diff View file
M src/common/User/GenericUserFactory.class.php +1 −1 Go to diff View file
M src/common/User/GroupCannotRemoveLastAdministrationPermission.php +1 −1 Go to diff View file
M src/common/User/History/HistoryCleaner.php +1 −1 Go to diff View file
M src/common/User/History/HistoryEntry.php +1 −1 Go to diff View file
M src/common/User/History/HistoryQuickLink.php +1 −1 Go to diff View file
M src/common/User/IHaveAnSSHKey.php +1 −1 Go to diff View file
M src/common/User/ImmutableInfoPresenter.class.php +1 −1 Go to diff View file
M src/common/User/InvalidEntryInAutocompleterCollection.php +1 −1 Go to diff View file
M src/common/User/InvalidPasswordException.class.php +1 −1 Go to diff View file
M src/common/User/InvalidSessionException.php +1 −1 Go to diff View file
M src/common/User/LoginController.class.php +1 −1 Go to diff View file
M src/common/User/LoginException.class.php +1 −1 Go to diff View file
M src/common/User/LoginInstrumentation.php +1 −1 Go to diff View file
M src/common/User/LoginPresenter.class.php +1 −1 Go to diff View file
M src/common/User/MailConfirmationCodeGenerator.class.php +1 −1 Go to diff View file
M src/common/User/MutableInfoPresenter.class.php +1 −1 Go to diff View file
M src/common/User/PaginatedUserCollection.class.php +1 −1 Go to diff View file
M src/common/User/Password/PasswordExpirationChecker.class.php +1 −1 Go to diff View file
M src/common/User/Password/PasswordExpiredException.class.php +1 −1 Go to diff View file
M src/common/User/Password/PasswordHandlerFactory.class.php +1 −1 Go to diff View file
M src/common/User/Password/PasswordValidatorPresenter.php +1 −1 Go to diff View file
M src/common/User/Password/Reset/ExpiredTokenException.php +1 −1 Go to diff View file
M src/common/User/Password/Reset/InvalidTokenException.php +1 −1 Go to diff View file
M src/common/User/Password/Reset/TokenDataAccessException.php +1 −1 Go to diff View file
M src/common/User/Profile/AvatarController.php +1 −1 Go to diff View file
M src/common/User/Profile/ProfileController.php +1 −1 Go to diff View file
M src/common/User/Profile/ProfilePresenter.php +1 −1 Go to diff View file
M src/common/User/Profile/ProfilePresenterBuilder.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/UserMembershipResource.php +1 −1 Go to diff View file
M src/common/User/RandomNumberGenerator.class.php +1 −1 Go to diff View file
M src/common/User/RequestFromAutocompleter.php +1 −1 Go to diff View file
M src/common/User/SessionDataAccessException.php +1 −1 Go to diff View file
M src/common/User/SessionManager.php +1 −1 Go to diff View file
M src/common/User/SessionNotCreatedException.class.php +1 −1 Go to diff View file
M src/common/User/StatusDeletedException.class.php +1 −1 Go to diff View file
M src/common/User/StatusInvalidException.class.php +1 −1 Go to diff View file
M src/common/User/StatusPendingException.class.php +1 −1 Go to diff View file
M src/common/User/StatusPresenter.php +1 −1 Go to diff View file
M src/common/User/StatusSuspendedException.class.php +1 −1 Go to diff View file
M src/common/User/UGroup.class.php +1 −1 Go to diff View file
M src/common/User/UnableToCreateUserGroupException.php +1 −1 Go to diff View file
M src/common/User/UserActionPresenter.php +1 −1 Go to diff View file
M src/common/User/UserAutocompletePostSearchEvent.php +1 −1 Go to diff View file
M src/common/User/UserCannotRemoveLastAdministrationPermission.php +1 −1 Go to diff View file
M src/common/User/UserConnectionUpdateEvent.php +1 −1 Go to diff View file
M src/common/User/UserEmailCollection.php +1 −1 Go to diff View file
M src/common/User/UserGroup/DescriptionTranslator.php +1 −1 Go to diff View file
M src/common/User/UserGroup/NameTranslator.php +1 −1 Go to diff View file
M src/common/User/UserGroupNotFoundException.php +1 −1 Go to diff View file
M src/common/User/UserImportCollection.php +1 −1 Go to diff View file
M src/common/User/UserNotActiveException.class.php +1 −1 Go to diff View file
M src/common/User/UserNotAuthorizedException.class.php +1 −1 Go to diff View file
M src/common/User/UserNotExistException.class.php +1 −1 Go to diff View file
M src/common/User/UserRetrieverByLoginNameEvent.php +1 −1 Go to diff View file
M src/common/User/User_SOAPServer.class.php +1 −1 Go to diff View file
M src/common/User/User_SSHKeyDumper.class.php +1 −1 Go to diff View file
M src/common/User/XML/Import/ActionToBeTakenForUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/AlreadyExistingUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/EmailDoesNotMatchUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/IFindUserFromXMLReference.php +1 −1 Go to diff View file
M src/common/User/XML/Import/InvalidMappingFileException.php +1 −1 Go to diff View file
M src/common/User/XML/Import/InvalidUserTypeException.php +1 −1 Go to diff View file
M src/common/User/XML/Import/Mapping.php +1 −1 Go to diff View file
M src/common/User/XML/Import/MappingFileDoesNotExistException.php +1 −1 Go to diff View file
M src/common/User/XML/Import/MappingFileOptimusPrimeTransformer.php +1 −1 Go to diff View file
M src/common/User/XML/Import/MissingEntryInMappingFileException.php +1 −1 Go to diff View file
M src/common/User/XML/Import/ReadyToBeImportedUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/ReadyToBeImportedUsersCollection.php +1 −1 Go to diff View file
M src/common/User/XML/Import/ToBeActivatedUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/ToBeCreatedUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/ToBeMappedUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/User.php +1 −1 Go to diff View file
M src/common/User/XML/Import/UserCannotBeCreatedException.php +1 −1 Go to diff View file
M src/common/User/XML/Import/UserNotFoundException.php +1 −1 Go to diff View file
M src/common/User/XML/Import/UsersToBeImportedCollection.php +1 −1 Go to diff View file
M src/common/User/XML/Import/UsersXMLNotFoundException.php +1 −1 Go to diff View file
M src/common/User/XML/Import/WillBeActivatedUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/WillBeCreatedUser.php +1 −1 Go to diff View file
M src/common/User/XML/Import/WillBeMappedUser.php +1 −1 Go to diff View file
M src/common/User/XML/UserXMLExportedCollection.php +1 −1 Go to diff View file
M src/common/Webhook/Emitter.php +1 −1 Go to diff View file
M src/common/Webhook/Payload.php +1 −1 Go to diff View file
M src/common/Webhook/StatusLogger.php +1 −1 Go to diff View file
M src/common/Webhook/Webhook.php +1 −1 Go to diff View file
M src/common/Widget/Event/ConfigureAtXMLImport.php +1 −1 Go to diff View file
M src/common/Widget/Event/GetProjectWidgetList.php +1 −1 Go to diff View file
M src/common/Widget/Event/GetProjectsWithCriteria.php +1 −1 Go to diff View file
M src/common/Widget/Event/GetPublicAreas.php +1 −1 Go to diff View file
M src/common/Widget/Event/GetUserWidgetList.php +1 −1 Go to diff View file
M src/common/Widget/Event/GetWidget.php +1 −1 Go to diff View file
M src/common/Widget/Event/GetWidgetList.php +1 −1 Go to diff View file
M src/common/Widget/Event/UserWithStarBadge.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/MyWelcomeMessage.php +1 −1 Go to diff View file
M src/common/Widget/Note/NoteDao.php +1 −1 Go to diff View file
M src/common/Widget/Note/NotePreferencesPresenter.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/ProjectHeartbeatPresenter.php +1 −1 Go to diff View file
M src/common/Widget/ProjectMembers/AdministratorPresenter.php +1 −1 Go to diff View file
M src/common/Widget/ProjectMembers/AdministratorPresenterBuilder.php +1 −1 Go to diff View file
M src/common/Widget/ProjectMembers/BadgePresenter.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/ProjectMembers/ProjectMembersPresenter.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 +1 −1 Go to diff View file
M src/common/Widget/Widget_MyAdmin.class.php +1 −1 Go to diff View file
M src/common/Widget/Widget_MySystemEvent.class.php +1 −1 Go to diff View file
M src/common/Widget/Widget_ProjectImageViewer.class.php +1 −1 Go to diff View file
M src/common/Widget/Widget_ProjectLatestCvsCommits.class.php +1 −1 Go to diff View file
M src/common/Widget/Widget_ProjectLatestNews.class.php +1 −1 Go to diff View file
M src/common/Widget/Widget_ProjectLatestSvnCommits.class.php +1 −1 Go to diff View file
M src/common/Widget/Widget_ProjectRss.class.php +1 −1 Go to diff View file
M src/common/Widget/Widget_Static.class.php +1 −1 Go to diff View file
M src/common/account/Account_RegisterField.class.php +1 −1 Go to diff View file
M src/common/account/ConfirmationPresenter.class.php +1 −1 Go to diff View file
M src/common/account/RegisterAdminPrefillValuesPresenter.class.php +1 −1 Go to diff View file
M src/common/account/RegisterByAdminPresenter.class.php +1 −1 Go to diff View file
M src/common/account/RegisterByUserPresenter.class.php +1 −1 Go to diff View file
M src/common/account/RegisterPresenter.class.php +1 −1 Go to diff View file
M src/common/account/TimezonesCollection.class.php +1 −1 Go to diff View file
M src/common/admin/AdminSidebarPresenter.php +1 −1 Go to diff View file
M src/common/admin/Admin_ProjectListExporter.class.php +1 −1 Go to diff View file
M src/common/admin/Admin_UserListExporter.class.php +1 −1 Go to diff View file
M src/common/admin/Homepage/HeadlinePresenter.php +1 −1 Go to diff View file
M src/common/admin/Homepage/LogoFinder.php +1 −1 Go to diff View file
M src/common/admin/Homepage/NbUsersByStatus.php +1 −1 Go to diff View file
M src/common/admin/Homepage/NbUsersByStatusBuilder.php +1 −1 Go to diff View file
M src/common/admin/Homepage/Router.php +1 −1 Go to diff View file
M src/common/admin/Homepage/StatisticsBadgePresenter.php +1 −1 Go to diff View file
M src/common/admin/Homepage/StatisticsPresenter.php +1 −1 Go to diff View file
M src/common/admin/Homepage/UserCounter.php +1 −1 Go to diff View file
M src/common/admin/Homepage/UsersStatisticsPresenter.php +1 −1 Go to diff View file
M src/common/admin/MassmailPresenter.php +1 −1 Go to diff View file
M src/common/admin/MostRecentLoginPresenter.php +1 −1 Go to diff View file
M src/common/admin/MostRecentLoginsPresenter.php +1 −1 Go to diff View file
M src/common/admin/PermissionDelegation/PermissionPresenter.php +1 −1 Go to diff View file
M src/common/admin/PermissionDelegation/PermissionPresenterBuilder.php +1 −1 Go to diff View file
M src/common/admin/PermissionDelegationController.php +1 −1 Go to diff View file
M src/common/admin/PermissionDelegationDeleteGroupModalPresenter.php +1 −1 Go to diff View file
M src/common/admin/PermissionDelegationGroupModalPresenter.php +1 −1 Go to diff View file
M src/common/admin/PermissionDelegationIndexPresenter.php +1 −1 Go to diff View file
M src/common/admin/PermissionDelegationPermissionsModalPresenter.php +1 −1 Go to diff View file
M src/common/admin/ProjectCreation/ProjectCategoriesDisplayController.php +1 −1 Go to diff View file
M src/common/admin/ProjectCreation/ProjectFieldsDisplayController.php +1 −1 Go to diff View file
M src/common/admin/ProjectCreation/WebhooksDisplayController.php +1 −1 Go to diff View file
M src/common/admin/ProjectCreation/WebhooksUpdateController.php +1 −1 Go to diff View file
M src/common/admin/ProjectCreationModerationDisplayController.php +1 −1 Go to diff View file
M src/common/admin/ProjectCreationModerationPresenter.php +1 −1 Go to diff View file
M src/common/admin/ProjectCreationModerationUpdateController.php +1 −1 Go to diff View file
M src/common/admin/ProjectEdit/ProjectEditDao.php +1 −1 Go to diff View file
M src/common/admin/ProjectEdit/ProjectEditRouter.php +1 −1 Go to diff View file
M src/common/admin/ProjectTemplatesController.php +1 −1 Go to diff View file
M src/common/admin/SystemEventsPanePresenter.php +1 −1 Go to diff View file
M src/common/admin/SystemEventsPanePresenterBuilder.php +1 −1 Go to diff View file
M src/common/admin/SystemEventsPaneSectionPresenter.php +1 −1 Go to diff View file
M src/common/backend/Backend.class.php +1 −1 Go to diff View file
M src/common/backend/BackendAliases.class.php +1 −1 Go to diff View file
M src/common/backend/BackendCVS.class.php +1 −1 Go to diff View file
M src/common/backend/BackendCommandException.class.php +1 −1 Go to diff View file
M src/common/backend/BackendMailingList.class.php +1 −1 Go to diff View file
M src/common/backend/BackendSVNFileForSimlinkAlreadyExistsException.class.php +1 −1 Go to diff View file
M src/common/backend/BackendService.class.php +1 −1 Go to diff View file
M src/common/backend/BackendSystem.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/Chart_TTFFactory.class.php +1 −1 Go to diff View file
M src/common/chart/ColorsForCharts.php +1 −1 Go to diff View file
M src/common/chart/GanttVerticalLine.php +1 −1 Go to diff View file
M src/common/dao/ArtifactDao.class.php +1 −1 Go to diff View file
M src/common/dao/CodendiDataAccess.class.php +1 −1 Go to diff View file
M src/common/dao/FRSFileDownloadDao.php +1 −1 Go to diff View file
M src/common/dao/FRSFileTypeDao.class.php +1 −1 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 +1 −1 Go to diff View file
M src/common/dao/FRSReleaseDao.class.php +1 −1 Go to diff View file
M src/common/dao/FeedbackDao.class.php +1 −1 Go to diff View file
M src/common/dao/FileModuleMonitorDao.class.php +1 −1 Go to diff View file
M src/common/dao/GenericUserDao.class.php +1 −1 Go to diff View file
M src/common/dao/IPermissionsNGDao.php +1 −1 Go to diff View file
M src/common/dao/MailGatewaySaltDao.class.php +1 −1 Go to diff View file
M src/common/dao/NewsBytesDao.class.php +1 −1 Go to diff View file
M src/common/dao/PermissionDaoException.php +1 −1 Go to diff View file
M src/common/dao/PermissionsDao.class.php +1 −1 Go to diff View file
M src/common/dao/ProjectHierarchyDao.class.php +1 −1 Go to diff View file
M src/common/dao/RestrictedPluginDao.class.php +1 −1 Go to diff View file
M src/common/dao/SessionDao.class.php +1 −1 Go to diff View file
M src/common/dao/TrackerIdSharingDao.class.php +1 −1 Go to diff View file
M src/common/dao/UserGroupNameAlreadyExistsException.php +1 −1 Go to diff View file
M src/common/dao/WikiDao.class.php +1 −1 Go to diff View file
M src/common/dao/WikiVersionDao.class.php +1 −1 Go to diff View file
M src/common/dao/include/DataAccessQueryException.class.php +1 −1 Go to diff View file
M src/common/dao/include/DataAccessResultEmpty.class.php +1 −1 Go to diff View file
M src/common/dao/include/IProvideDataAccessResult.class.php +1 −1 Go to diff View file
M src/common/date/TimeInterval.class.php +1 −1 Go to diff View file
M src/common/docmanv1/XMLExportDao.class.php +1 −1 Go to diff View file
M src/common/docmanv1/XMLExportData.class.php +1 −1 Go to diff View file
M src/common/encoding/SupportedXmlCharEncoding.class.php +1 −1 Go to diff View file
M src/common/html/HTML_Table.class.php +1 −1 Go to diff View file
M src/common/html/HTML_Table_Bootstrap.class.php +1 −1 Go to diff View file
M src/common/include/BurningParrotCompatiblePageDetector.php +1 −1 Go to diff View file
M src/common/include/BurningParrotCompatiblePageEvent.php +1 −1 Go to diff View file
M src/common/include/CSRFSynchronizerToken.php +1 −1 Go to diff View file
M src/common/include/FeedbackFormatter.class.php +1 −1 Go to diff View file
M src/common/include/ForgeUpgradeConfig.class.php +1 −1 Go to diff View file
M src/common/include/HTMLPurifierSSHScheme.php +1 −1 Go to diff View file
M src/common/include/PermissionsOverrider/IOverridePermissions.php +1 −1 Go to diff View file
M src/common/include/PermissionsOverrider/PermissionsOverriderManager.php +1 −1 Go to diff View file
M src/common/include/Recent_Element_Interface.class.php +1 −1 Go to diff View file
M src/common/include/RestlerCache.php +1 −1 Go to diff View file
M src/common/include/SOAPRequest.class.php +1 −1 Go to diff View file
M src/common/include/TimezoneRetriever.php +1 −1 Go to diff View file
M src/common/include/Tuleap_Template.class.php +1 −1 Go to diff View file
M src/common/include/URLVerificationFactory.class.php +1 −1 Go to diff View file
M src/common/include/XMLConvertor.php +1 −1 Go to diff View file
M src/common/language/CustomContentNotFoundException.php +1 −1 Go to diff View file
M src/common/language/CustomizableContentLoader.php +1 −1 Go to diff View file
M src/common/language/Gettext/POTEntry.php +1 −1 Go to diff View file
M src/common/language/Gettext/POTEntryCollection.php +1 −1 Go to diff View file
M src/common/language/Gettext/POTFileDumper.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumb.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbCollection.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbLink.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbLinkCollection.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbLinkPresenter.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbLinkWithIcon.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbPresenter.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbPresenterBuilder.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbSubItems.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/SubItemsSection.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/SubItemsSectionPresenter.php +1 −1 Go to diff View file
M src/common/layout/BreadCrumbDropdown/SubItemsUnlabelledSection.php +1 −1 Go to diff View file
M src/common/layout/ColorHelper.class.php +1 −1 Go to diff View file
M src/common/layout/CssAsset.php +1 −1 Go to diff View file
M src/common/layout/CssAssetCollection.php +1 −1 Go to diff View file
M src/common/layout/CssAssetWithoutVariantDeclinaisons.php +1 −1 Go to diff View file
M src/common/layout/ErrorRendering.php +1 −1 Go to diff View file
M src/common/layout/HomePage/HomePageStatistic.php +1 −1 Go to diff View file
M src/common/layout/HomePage/LastMonthStatisticsCollectorSVN.php +1 −1 Go to diff View file
M src/common/layout/HomePage/NewsCollection.php +1 −1 Go to diff View file
M src/common/layout/HomePage/NewsCollectionBuilder.php +1 −1 Go to diff View file
M src/common/layout/HomePage/StatisticsCollection.php +1 −1 Go to diff View file
M src/common/layout/HomePage/StatisticsCollectionCollector.php +1 −1 Go to diff View file
M src/common/layout/HomePage/StatisticsCollectorSVN.php +1 −1 Go to diff View file
M src/common/layout/IncludeAssetsException.php +1 −1 Go to diff View file
M src/common/layout/IncludeAssetsManifestException.php +1 −1 Go to diff View file
M src/common/layout/PaginationPresenter.php +1 −1 Go to diff View file
M src/common/layout/ProjectSidebarBuilder.php +1 −1 Go to diff View file
M src/common/layout/ServiceUrlCollector.php +1 −1 Go to diff View file
M src/common/layout/ThemeVariant.class.php +1 −1 Go to diff View file
M src/common/layout/ThemeVariation.php +1 −1 Go to diff View file
M src/common/mail/MailAccountSuspensionPresenter.php +1 −1 Go to diff View file
M src/common/mail/MailBuilder.php +1 −1 Go to diff View file
M src/common/mail/MailEnhancer.php +1 −1 Go to diff View file
M src/common/mail/MailInstrumentation.php +1 −1 Go to diff View file
M src/common/mail/MailManager.class.php +1 −1 Go to diff View file
M src/common/mail/MailNotificationBuilder.php +1 −1 Go to diff View file
M src/common/mail/MailNotificationPresenter.class.php +1 −1 Go to diff View file
M src/common/mail/MailOutlinePresenter.class.php +1 −1 Go to diff View file
M src/common/mail/MailPresenter.php +1 −1 Go to diff View file
M src/common/mail/MailRegisterByAdminApprovalPresenter.class.php +1 −1 Go to diff View file
M src/common/mail/MailRegisterByAdminNotificationPresenter.class.php +1 −1 Go to diff View file
M src/common/mail/MailRegisterByAdminPresenter.class.php +1 −1 Go to diff View file
M src/common/mail/MailRegisterByUserPresenter.class.php +1 −1 Go to diff View file
M src/common/mail/MailRegisterPresenter.class.php +1 −1 Go to diff View file
M src/common/mail/MassmailFormPresenter.class.php +1 −1 Go to diff View file
M src/common/mvc2/Controller.class.php +1 −1 Go to diff View file
M src/common/notification/Notification.php +1 −1 Go to diff View file
M src/common/notifications/UgroupToBeNotifiedPresenter.php +1 −1 Go to diff View file
M src/common/permission/PermissionsNormalizer.php +1 −1 Go to diff View file
M src/common/permission/PermissionsNormalizerOverrideCollection.php +1 −1 Go to diff View file
M src/common/permission/PermissionsUGroupMapper.php +1 −1 Go to diff View file
M src/common/plugin/EventPluginCache.php +1 −1 Go to diff View file
M src/common/plugin/EventPluginCacheInfo.php +1 −1 Go to diff View file
M src/common/plugin/PluginCacheInfo.php +1 −1 Go to diff View file
M src/common/plugin/PluginConfigChecker.php +1 −1 Go to diff View file
M src/common/plugin/PluginDependencySolver.class.php +1 −1 Go to diff View file
M src/common/plugin/PluginResourceRestrictor.class.php +1 −1 Go to diff View file
M src/common/plugin/SerializedPluginProxy.php +1 −1 Go to diff View file
M src/common/realTime/MessageDataPresenter.php +1 −1 Go to diff View file
M src/common/realTime/MessageRightsPresenter.php +1 −1 Go to diff View file
M src/common/resource_restrictor/RestrictedResourceDao.class.php +1 −1 Go to diff View file
M src/common/search/Presenters/AdditionalSearchTabsPresenter.class.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchFacetsPresenter.class.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchForumResultPresenter.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchPanePresenter.class.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchPeopleResultPresenter.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchProjectResultPresenter.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchResultsIntroPresenter.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchResultsPresenter.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchTrackerV3ResultPresenter.php +1 −1 Go to diff View file
M src/common/search/Presenters/SearchTypePresenter.class.php +1 −1 Go to diff View file
M src/common/search/SearchController.class.php +1 −1 Go to diff View file
M src/common/search/SearchForum.class.php +1 −1 Go to diff View file
M src/common/search/SearchPeople.class.php +1 −1 Go to diff View file
M src/common/search/SearchPlugin.class.php +1 −1 Go to diff View file
M src/common/search/SearchProject.class.php +1 −1 Go to diff View file
M src/common/search/SearchQuery.class.php +1 −1 Go to diff View file
M src/common/search/SearchResults.class.php +1 −1 Go to diff View file
M src/common/search/SearchRouter.class.php +1 −1 Go to diff View file
M src/common/search/SearchWiki.class.php +1 −1 Go to diff View file
M src/common/soap/SOAP_NbRequestsExceedLimit_Exception.class.php +1 −1 Go to diff View file
M src/common/soap/SOAP_NusoapWSDL.class.php +1 −1 Go to diff View file
M src/common/soap/SOAP_RequestLimitator.class.php +1 −1 Go to diff View file
M src/common/soap/SOAP_RequestLimitatorFactory.class.php +1 −1 Go to diff View file
M src/common/soap/SOAP_UserManager.class.php +1 −1 Go to diff View file
M src/common/soap/SOAP_WSDLMethodGenerator.class.php +1 −1 Go to diff View file
M src/common/soap/TuleapSOAPServer.class.php +1 −1 Go to diff View file
M src/common/soap/dao/SOAP_RequestLimitatorDao.class.php +1 −1 Go to diff View file
M src/common/svn/ApacheConfGenerator.php +1 −1 Go to diff View file
M src/common/svn/CommitMessageValidator.class.php +1 −1 Go to diff View file
M src/common/svn/Event/GetSVNLoginNameEvent.php +1 −1 Go to diff View file
M src/common/svn/Exception/SVNRepositoryCreationException.php +1 −1 Go to diff View file
M src/common/svn/Exception/SVNRepositoryLayoutInitializationException.php +1 −1 Go to diff View file
M src/common/svn/Hook.class.php +1 −1 Go to diff View file
M src/common/svn/SHA1CollisionDetector.php +1 −1 Go to diff View file
M src/common/svn/SHA1CollisionException.php +1 −1 Go to diff View file
M src/common/svn/SVNAccessFile.class.php +1 −1 Go to diff View file
M src/common/svn/SVNAuthenticationCacheInvalidator.php +1 −1 Go to diff View file
M src/common/svn/SVN_AccessFile_NoFilePresenter.php +1 −1 Go to diff View file
M src/common/svn/SVN_AccessFile_Writer.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_Apache_ModPerl.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_CommitToTagDeniedException.php +1 −1 Go to diff View file
M src/common/svn/SVN_DAO.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_Hooks.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_LogDao.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_PermissionsManager.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_RepositoryListing.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_RevisionPathInfo.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_SQLRequestNotSuccededException.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_Svnlook.class.php +1 −1 Go to diff View file
M src/common/svn/SVN_SvnlookException.class.php +1 −1 Go to diff View file
M src/common/svn/admin/CacheController.php +1 −1 Go to diff View file
M src/common/svn/admin/CachePresenter.php +1 −1 Go to diff View file
M src/common/svn/admin/Controller.php +1 −1 Go to diff View file
M src/common/svn/admin/Presenter.php +1 −1 Go to diff View file
M src/common/svn/admin/Router.php +1 −1 Go to diff View file
M src/common/svn/cache/ParameterDao.php +1 −1 Go to diff View file
M src/common/svn/cache/ParameterDataAccessException.php +1 −1 Go to diff View file
M src/common/svn/cache/ParameterMalformedDataException.php +1 −1 Go to diff View file
M src/common/svn/cache/ParameterRetriever.php +1 −1 Go to diff View file
M src/common/svn/cache/ParameterSaver.php +1 −1 Go to diff View file
M src/common/svn/cache/Parameters.php +1 −1 Go to diff View file
M src/common/svn/general-settings/SVN_GeneralSettingsPresenter.php +1 −1 Go to diff View file
M src/common/svn/hook/PostRevPropset.class.php +1 −1 Go to diff View file
M src/common/svn/hook/PreCommit.class.php +1 −1 Go to diff View file
M src/common/svn/hook/PreRevPropset.class.php +1 −1 Go to diff View file
M src/common/svn/immutable_tags/SVN_Immutable_Tags_DAO.php +1 −1 Go to diff View file
M src/common/svn/immutable_tags/SVN_Immutable_Tags_Presenter.php +1 −1 Go to diff View file
M src/common/svn/intro/SVN_IntroPresenter.php +1 −1 Go to diff View file
M src/common/svn/tokens/SVN_Token.class.php +1 −1 Go to diff View file
M src/common/svn/tokens/SVN_TokenDao.class.php +1 −1 Go to diff View file
M src/common/svn/tokens/SVN_TokenPresenter.class.php +1 −1 Go to diff View file
M src/common/svn/viewvc/viewvc-epel.cgi +1 −1 Go to diff View file
M src/common/system_event/IRunInAMutex.php +1 −1 Go to diff View file
M src/common/system_event/NotificationsPresenter.php +1 −1 Go to diff View file
M src/common/system_event/REST/v1/PaginatedSystemEventRepresentations.php +1 −1 Go to diff View file
M src/common/system_event/REST/v1/PaginatedSystemEventRepresentationsBuilder.php +1 −1 Go to diff View file
M src/common/system_event/REST/v1/SystemEventResource.php +1 −1 Go to diff View file
M src/common/system_event/SystemEventMissingParameterException.class.php +1 −1 Go to diff View file
M src/common/system_event/SystemEventPresenter.php +1 −1 Go to diff View file
M src/common/system_event/SystemEventProcessor.class.php +1 −1 Go to diff View file
M src/common/system_event/SystemEventPurger.php +1 −1 Go to diff View file
M src/common/system_event/SystemEventQueue.class.php +1 −1 Go to diff View file
M src/common/system_event/SystemEventSearchPresenter.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEventProjectActive.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEventSVNAuthenticationCacheRefresh.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_COMPUTE_MD5SUM.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_MOVE_FRS_FILE.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_PROJECT_DELETE.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_SVN_AUTHORIZE_TOKENS.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_SVN_AUTH_CACHE_CHANGE.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_SVN_REVOKE_TOKENS.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_SVN_UPDATE_HOOKS.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_UPDATE_ALIASES.class.php +1 −1 Go to diff View file
M src/common/system_event/include/SystemEvent_USER_DELETE.class.php +1 −1 Go to diff View file
M src/common/templating/TemplateRenderer.class.php +1 −1 Go to diff View file
M src/common/templating/mustache/GettextCollector.php +1 −1 Go to diff View file
M src/common/templating/mustache/GettextExtractor.php +1 −1 Go to diff View file
M src/common/templating/mustache/GettextSectionContentTransformer.php +1 −1 Go to diff View file
M src/common/templating/mustache/GlyphHelper.php +1 −1 Go to diff View file
M src/common/templating/mustache/InvalidGettextStringException.php +1 −1 Go to diff View file
M src/common/templating/mustache/MustacheRenderer.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/ButtonDropdowns.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/ButtonDropdownsMini.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/ButtonDropdownsOption.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/ButtonDropdownsOptionDivider.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/ButtonDropdownsOptionSubmenu.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/ButtonDropdownsOptionTitle.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/ButtonDropdownsOptionWithModal.class.php +1 −1 Go to diff View file
M src/common/templating/presenter/SplitButtonDropdowns.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactAlphaNumFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactAttachmentFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactAttachmentXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactAttachmentXMLLinker.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactAttachmentXMLZipper.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactCCFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactCanned.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactCommentXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactDateFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactFieldFactory.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactFieldFactoryXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactFieldSetFactory.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactFloatFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactGlobalNotificationFactory.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactIntegerFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactMultiListCurrentValueExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactPendingDeletionPresenter.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactPermissionsXMLExporter.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactReport.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactReportFactory.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactRuleFactory.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactRuleValueView.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactRulesManager.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactStaticListFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactStaticMultiListFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactStringFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactTextFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactTypeFactory.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactUserListFieldXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactXMLExporter.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactXMLExporterDao.class.php +1 −1 Go to diff View file
M src/common/tracker/ArtifactXMLNodeHelper.class.php +1 −1 Go to diff View file
M src/common/tracker/Exception/Exception_TV3XMLException.class.php +1 −1 Go to diff View file
M src/common/tracker/Exception/TV3XMLAttachmentNotFoundException.class.php +1 −1 Go to diff View file
M src/common/tracker/Exception/TV3XMLInvalidFieldTypeException.class.php +1 −1 Go to diff View file
M src/common/tracker/Exception/TV3XMLUnknownFieldTypeException.class.php +1 −1 Go to diff View file
M src/common/tracker/HTML/ArtifactFieldHtml.class.php +1 −1 Go to diff View file
M src/common/tracker/HTML/ArtifactTypeHtml.class.php +1 −1 Go to diff View file
M src/common/tracker/TrackerV3.class.php +1 −1 Go to diff View file
M src/common/trove/CannotMoveFatherInChildException.php +1 −1 Go to diff View file
M src/common/trove/SoftwareMapPresenter.php +1 −1 Go to diff View file
M src/common/trove/TroveCat.php +1 −1 Go to diff View file
M src/common/trove/TroveCatCategoryNonePresenter.php +1 −1 Go to diff View file
M src/common/trove/TroveCatCategoryPresenter.php +1 −1 Go to diff View file
M src/common/trove/TroveCatCollectionPresenter.php +1 −1 Go to diff View file
M src/common/trove/TroveCatCollectionRetriever.php +1 −1 Go to diff View file
M src/common/trove/TroveCatHierarchyRetriever.php +1 −1 Go to diff View file
M src/common/trove/TroveCatLinkDao.php +1 −1 Go to diff View file
M src/common/trove/TroveCatListController.php +1 −1 Go to diff View file
M src/common/trove/TroveCatListPresenter.php +1 −1 Go to diff View file
M src/common/trove/TroveCatMissingFullNameException.php +1 −1 Go to diff View file
M src/common/trove/TroveCatMissingShortNameException.php +1 −1 Go to diff View file
M src/common/trove/TroveCatPresenter.php +1 −1 Go to diff View file
M src/common/valid/ValidFactory.php +1 −1 Go to diff View file
M src/common/valid/Valid_Array.php +1 −1 Go to diff View file
M src/common/valid/Valid_Email.php +1 −1 Go to diff View file
M src/common/valid/Valid_FTPURI.php +1 −1 Go to diff View file
M src/common/valid/Valid_File.php +1 −1 Go to diff View file
M src/common/valid/Valid_GenericUserNameSuffix.php +1 −1 Go to diff View file
M src/common/valid/Valid_GroupId.php +1 −1 Go to diff View file
M src/common/valid/Valid_HTTPSURI.php +1 −1 Go to diff View file
M src/common/valid/Valid_HTTPURI.php +1 −1 Go to diff View file
M src/common/valid/Valid_Int.php +1 −1 Go to diff View file
M src/common/valid/Valid_LocalURI.php +1 −1 Go to diff View file
M src/common/valid/Valid_MailtoURI.php +1 −1 Go to diff View file
M src/common/valid/Valid_Numeric.php +1 −1 Go to diff View file
M src/common/valid/Valid_Pv.php +1 −1 Go to diff View file
M src/common/valid/Valid_RealNameFormat.php +1 −1 Go to diff View file
M src/common/valid/Valid_String.php +1 −1 Go to diff View file
M src/common/valid/Valid_Text.php +1 −1 Go to diff View file
M src/common/valid/Valid_UInt.php +1 −1 Go to diff View file
M src/common/valid/Valid_UserNameFormat.php +1 −1 Go to diff View file
M src/common/valid/Valid_WhiteList.php +1 −1 Go to diff View file
M src/common/wiki/PermissionsManager.class.php +1 −1 Go to diff View file
M src/common/wiki/PermissionsPerGroup/PHPWikiPermissionPerGroupPaneBuilder.php +1 −1 Go to diff View file
M src/common/wiki/REST/v1/PhpWikiResource.class.php +1 −1 Go to diff View file
M src/common/wiki/WikiServiceAdmin.class.php +1 −1 Go to diff View file
M src/common/wiki/actions/WikiActions.class.php +1 −1 Go to diff View file
M src/common/wiki/actions/WikiServiceActions.class.php +1 −1 Go to diff View file
M src/common/wiki/actions/WikiServiceAdminActions.class.php +1 −1 Go to diff View file
M src/common/wiki/lib/PaginatedWikiPages.class.php +1 −1 Go to diff View file
M src/common/wiki/lib/WikiCloner.class.php +1 −1 Go to diff View file
M src/common/wiki/lib/WikiEntry.class.php +1 −1 Go to diff View file
M src/common/wiki/lib/WikiPage.class.php +1 −1 Go to diff View file
M src/common/wiki/lib/WikiPageVersion.class.php +1 −1 Go to diff View file
M src/common/wiki/lib/WikiPageVersionContentFormatter.php +1 −1 Go to diff View file
M src/common/wiki/lib/WikiPageVersionFactory.class.php +1 −1 Go to diff View file
M src/common/wiki/lib/WikiPageWrapper.class.php +1 −1 Go to diff View file
M src/common/wiki/phpwiki/lib/pear/DB/mysql_pdo.php +1 −1 Go to diff View file
M src/common/wiki/views/WikiServiceAdminViews.class.php +1 −1 Go to diff View file
M src/common/wiki/views/WikiViews.class.php +1 −1 Go to diff View file
M src/common/xml/MappingsRegistry.php +1 −1 Go to diff View file
M src/common/xml/ParseError.class.php +1 −1 Go to diff View file
M src/common/xml/ParseException.class.php +1 −1 Go to diff View file
M src/common/xml/ProjectXMLMerger.php +1 −1 Go to diff View file
M src/common/xml/SimpleXMLCDATAFactory.class.php +1 −1 Go to diff View file
M src/common/xml/XMLImportHelper.php +1 −1 Go to diff View file
M src/db/mysql/database_initvalues.sql +1 −1 Go to diff View file
M src/db/mysql/updates/2011/201108311456_add_image_renderer.php +1 −1 Go to diff View file
M src/db/mysql/updates/2011/201111021759_id_sharing.php +1 −1 Go to diff View file
M src/db/mysql/updates/2012/201201231552_add_table_soap_limits.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/201303121639_add_owner_to_system_events.php +1 −1 Go to diff View file
M src/db/mysql/updates/2013/201305071724_add_svn_change_log_option.php +1 −1 Go to diff View file
M src/db/mysql/updates/2013/201305161743_remove_unique_from_svn_checkins.php +1 −1 Go to diff View file
M src/db/mysql/updates/2013/201306110951_add_parent_child_project_link_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2013/201306171145_add_generic_user_table.php +1 −1 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 +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201405051133_modify_groups_table_to_use_svn_accessfile_history_id.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201405061202_modify_svn_accessfile_history_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201405071410_replace_svn_accessfile_column_name_in_groups.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201405071644_replace_version_date_column_values_by_timestamp.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201405141602_remove_fontsize_preference.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201406041516_add_email_gateway_salt.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201407040902_old_user_do_not_see_welcome_tour.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201407041153_add_tour_usage_statistic_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2014/201407081125_add_missing_column_in_tour_usage_statistics.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201503061743_add_homepage.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201503061743_add_homepage_headline.php +1 −1 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 +1 −1 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/201505302300_remove_twitter_widgets.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 +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201506031658_enlarge_your_tinyint.php +1 −1 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/201508141600_remove_people_skills.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201508171048_add_svn_immutable_tags_table.php +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201510131542_turn_user_groups_tables_innodb.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201511231728_add_trovecat_mandatory_column.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201512171700_add_svn_token_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201512211530_force_refresh_svnaccessfile.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201512281119_add_svn_token_usage_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2015/201512291430_add_indexes_for_statistics.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201601051638_add_trovecat_display_column.php +1 −1 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 +1 −1 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 +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201608091610_add_index_for_frs_permissions.php +1 −1 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/201609082200_remove_admssw_plugin.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201609082225_remove_doaprdf_plugin.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201609082230_remove_boomerang_plugin.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201609082230_remove_foafprofiles_plugin.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201609131045_update_session_management.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201609221505_add_missing_permissions_french_wiki_pages.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201610121840_remove_fusionforgecompat_plugin.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201610241145_update_frs_admin_description.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201611031112_add_svn_cache_parameter_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2016/201612231324_update_trove_categories_incorrect_values.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201701131030_create_table_user_lost_password.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201701251415_user_lost_password_add_creation_date.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201701311615_feedback_supports_new_session_identifier.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/20170207_remove_snippet_reference.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201703131130_create_table_project_webhook_url.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201703141400_create_table_project_webhook_log.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201703201030_add_project_webhook_name.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201703281110_keep_only_modperl_svn_authentication_mode.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201704041400_clean_recent_element_user_preferences.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201704051330_remove_binary_serialized_feedback.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705031528_create_table_user_dashboards.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705110903_create_table_project_dashboards.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705121210_update_table_user_dashboards.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705121719_update_table_project_dashboards.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705161407_create_tables_dashboards_lines.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705161407_create_tables_dashboards_lines_columns.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705161407_create_tables_dashboards_lines_columns_widgets.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705181212_store_widget_name.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201705231141_store_widget_is_minimized.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201706091011_migrate_old_dashboard.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201706301720_remove_docman_v1.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201708180900_remove_invalid_china_timezones.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201708220952_create_project_label.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201709121141_delete_project_classification_widget.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201709131009_add_color_in_project_label.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201709181057_add_frs_uploaded_links_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201709261432_add_index_for_cross_references.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201709271530_add_column_is_deleted_frs_links.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201711301015_add_forum_admin_in_permission_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201711301015_add_news_admin_in_permission_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2017/201711301015_add_news_writer_in_permission_table.php +1 −1 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 +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201801181115_remove_invalid_tuleap_timezones.php +1 −1 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/201802211715_add_primary_key_ugroup_user.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201804032030_add_password_configuration.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/201806061457_migrate_project_approval_forgeconfig.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201806202247_remove_dark_variants.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201807251400_add_widget_note_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201809260900_add_user_access_key_table.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201809271500_add_index_user_mail.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201810171300_migrate_projects_with_invalid_statuses_to_suspended.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201810251455_add_user_ldap_index.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201810301339_add_ugroup_user_index.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201811091827_add_svn_commit_index.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201812051759_add_display_plateform_statistics_option.php +1 −1 Go to diff View file
M src/db/mysql/updates/2018/201812212041_change_display_plateform_statistics_news_options.php +1 −1 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/201902061654_add_nb_max_values.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/201909131116_add_inactive_acounts_notification_delay.php +1 −1 Go to diff View file
M src/etc/env.inc.php.dist +1 −1 Go to diff View file
M src/scripts/BurningParrot/src/access-denied-error.js +1 −1 Go to diff View file
M src/scripts/BurningParrot/src/index.js +1 −1 Go to diff View file
M src/scripts/BurningParrot/src/project-flags.js +1 −1 Go to diff View file
M src/scripts/BurningParrot/src/project-privacy.js +1 −1 Go to diff View file
M src/scripts/BurningParrot/src/scrollbar.js +1 −1 Go to diff View file
M src/scripts/BurningParrot/src/sidebar.js +1 −1 Go to diff View file
M src/scripts/FlamingParrot/project-flags.js +1 −1 Go to diff View file
M src/scripts/FlamingParrot/project-privacy.js +1 −1 Go to diff View file
M src/scripts/FlamingParrot/sidebar.js +1 −1 Go to diff View file
M src/scripts/charts-builders/bar-chart-scales-factory.js +1 −1 Go to diff View file
M src/scripts/charts-builders/chart-column-factory.js +1 −1 Go to diff View file
M src/scripts/charts-builders/chart-layout-builder.js +1 −1 Go to diff View file
M src/scripts/charts-builders/chart-layout-service.js +1 −1 Go to diff View file
M src/scripts/charts-builders/chart-legend-service.js +1 −1 Go to diff View file
M src/scripts/charts-builders/chart-text-legend-generator.js +1 −1 Go to diff View file
M src/scripts/charts-builders/chart-tooltip-factory.js +1 −1 Go to diff View file
M src/scripts/charts-builders/chart-truncation-service.js +1 −1 Go to diff View file
M src/scripts/charts-builders/gettext-provider.js +1 −1 Go to diff View file
M src/scripts/charts-builders/line-chart-scales-factory.js +1 −1 Go to diff View file
M src/scripts/charts-builders/statistics-pie-chart.js +1 −1 Go to diff View file
M src/scripts/charts-builders/time-scale-labels-formatter.js +1 −1 Go to diff View file
M src/scripts/codendi/Tooltip.js +1 −1 Go to diff View file
M src/scripts/dashboards/dashboard-async-widget.js +1 −1 Go to diff View file
M src/scripts/dashboards/dashboard-drag-drop.js +1 −1 Go to diff View file
M src/scripts/dashboards/dashboard-dropdowns.js +1 −1 Go to diff View file
M src/scripts/dashboards/dashboard-layout.js +1 −1 Go to diff View file
M src/scripts/dashboards/dashboard-load-togglers.js +1 −1 Go to diff View file
M src/scripts/dashboards/dashboard-minimize.js +1 −1 Go to diff View file
M src/scripts/dashboards/widgets/project-heartbeat/index.js +1 −1 Go to diff View file
M src/scripts/dashboards/widgets/project-heartbeat/project-heartbeat.js +1 −1 Go to diff View file
M src/scripts/frs/permissions-per-group/BaseFRSPackagePermissions.vue +1 −1 Go to diff View file
M src/scripts/frs/permissions-per-group/FRSPackagePermissionsTable.vue +1 −1 Go to diff View file
M src/scripts/frs/permissions-per-group/FRSPackagePermissionsTablePackage.vue +1 −1 Go to diff View file
M src/scripts/frs/permissions-per-group/FRSPackagePermissionsTablePackageEmptyState.vue +1 −1 Go to diff View file
M src/scripts/frs/permissions-per-group/FRSPackagePermissionsTablePackageRelease.vue +1 −1 Go to diff View file
M src/scripts/frs/permissions-per-group/rest-querier.js +1 −1 Go to diff View file
M src/scripts/labels/labels-box.js +1 −1 Go to diff View file
M src/scripts/labels/project-admin/project-admin-labels.js +1 −1 Go to diff View file
M src/scripts/news/permissions-per-group/BaseNewsPermissions.vue +1 −1 Go to diff View file
M src/scripts/news/permissions-per-group/NewsPermissionsVisibilityLabel.vue +1 −1 Go to diff View file
M src/scripts/news/permissions-per-group/rest-querier.js +1 −1 Go to diff View file
M src/scripts/project/admin/permissions-per-group/PermissionsPerGroupBadge.vue +1 −1 Go to diff View file
M src/scripts/project/admin/src/categories.js +1 −1 Go to diff View file
M src/scripts/project/admin/src/members-import/project-admin-members-import.js +1 −1 Go to diff View file
M src/scripts/site-admin/pending-users.ts +1 −1 Go to diff View file
M src/scripts/site-admin/permission-delegation.ts +1 −1 Go to diff View file
M src/scripts/site-admin/project-history.ts +1 −1 Go to diff View file
M src/scripts/site-admin/system-events-admin-homepage.ts +1 −1 Go to diff View file
M src/scripts/site-admin/system-events.ts +1 −1 Go to diff View file
M src/scripts/tlp-doc/src/polyfills.js +1 −1 Go to diff View file
M src/scripts/tuleap/feedback.js +1 −1 Go to diff View file
M src/scripts/tuleap/listFilter.js +1 −1 Go to diff View file
M src/scripts/tuleap/toggler.js +1 −1 Go to diff View file
M src/scripts/tuleap/trovecat.js +1 −1 Go to diff View file
M src/scripts/vue-components/skeletons/SkeletonTable.vue +1 −1 Go to diff View file
M src/templates/project/register-templates.mustache +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-blue-condensed.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-blue.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-green-condensed.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-green.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-grey-condensed.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-grey.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-orange-condensed.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-orange.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-purple-condensed.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-purple.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-red-condensed.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/burning-parrot-red.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/_contacts.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/_project-members.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/imageviewer.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/lastcommit.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/myprojects.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/project-classification.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/trackerv3.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/dashboards/includes/widgets/welcomemessage.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_ckeditor.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_error.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_global-variables.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_profile.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_resource_restrictor.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-custom-homepage.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-homepage.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-massmail.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-permission-delegation.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-platform-access.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-project-history.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-project-list.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-project-webhooks.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-project.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-templates.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-user-details.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_siteadmin-user-list.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_software_map.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/_toolbar.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/project-admin/_categories.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/project-admin/_labels.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/css/includes/project-admin/_ugroups.scss +1 −1 Go to diff View file
M src/themes/BurningParrot/include/JavascriptPresenter.php +1 −1 Go to diff View file
M src/themes/BurningParrot/include/Navbar/MenuItem/LogoutPresenter.php +1 −1 Go to diff View file
M src/themes/BurningParrot/include/Navbar/MenuItem/Presenter.php +1 −1 Go to diff View file
M src/themes/BurningParrot/include/Navbar/Presenter.php +1 −1 Go to diff View file
M src/themes/BurningParrot/include/Navbar/PresenterBuilder.php +1 −1 Go to diff View file
M src/themes/BurningParrot/include/Navbar/UserNavPresenter.php +1 −1 Go to diff View file
M src/themes/FlamingParrot/css/utils/_project-admin.scss +1 −1 Go to diff View file
M src/themes/FlamingParrot/css/utils/_variables-bluegrey.scss +1 −1 Go to diff View file
M src/themes/FlamingParrot/include/Bootstrap_FeedbackFormatter.class.php +1 −1 Go to diff View file
M src/themes/FlamingParrot/include/HeaderPresenter.class.php +1 −1 Go to diff View file
M src/themes/FlamingParrot/include/NavBarProjectPresenter.class.php +1 −1 Go to diff View file
M src/themes/common/css/utils/_massmail.scss +1 −1 Go to diff View file
M src/themes/common/css/utils/_services.scss +1 −1 Go to diff View file
M src/themes/tlp/src/js/default_locale.ts +1 −1 Go to diff View file
M src/themes/tlp/src/scss/components/_cards.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/components/_layout.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/components/_pagination.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/components/_popovers.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/components/_skeleton.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/components/_tabs.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/variables/_density.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/variables/_margins-condensed.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/variables/_margins.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/variables/_names.scss +1 −1 Go to diff View file
M src/themes/tlp/src/scss/variables/colors/_computed-colors.scss +1 −1 Go to diff View file
M src/themes/tlp/src/vendor-i18n/fr_FR/tlp.fr.ts +1 −1 Go to diff View file
M src/utils/TrackerV3-data-exporter.php +1 −1 Go to diff View file
M src/utils/analyse_language_files.pl +1 −1 Go to diff View file
M src/utils/authorized-keys-validity-checker.sh +1 −1 Go to diff View file
M src/utils/cvs1/log_accum +1 −1 Go to diff View file
M src/utils/export_project_xml.php +1 −1 Go to diff View file
M src/utils/generate_ssl_certificate.sh +1 −1 Go to diff View file
M src/utils/group.pl +1 −1 Go to diff View file
M src/utils/httpd/postrotate.php +1 −1 Go to diff View file
M src/utils/import_project_xml.php +1 −1 Go to diff View file
M src/utils/session.py +1 −1 Go to diff View file
M src/utils/svn/commit-email.pl +1 −1 Go to diff View file
M src/utils/svn/force_refresh_codendi_svnroot.php +1 −1 Go to diff View file
M src/utils/svn/force_refresh_svnaccessfile.php +1 −1 Go to diff View file
M src/utils/svn/svn-checkins.pl +1 −1 Go to diff View file
M src/utils/svn/svn-commit.pl +1 −1 Go to diff View file
M src/utils/svn/svnaccess.py +1 −1 Go to diff View file
M src/utils/svn/svnroot_push.php +1 −1 Go to diff View file
M src/utils/worker.php +1 −1 Go to diff View file
M src/www/account/lostpw.php +1 −1 Go to diff View file
M src/www/account/update-sidebar-preference.php +1 −1 Go to diff View file
M src/www/admin/admin_utils.php +1 −1 Go to diff View file
M src/www/admin/generic_user.php +1 −1 Go to diff View file
M src/www/admin/homepage.php +1 −1 Go to diff View file
M src/www/admin/massmail_execute.php +1 −1 Go to diff View file
M src/www/admin/newprojectmail.php +1 −1 Go to diff View file
M src/www/admin/news/index.php +1 −1 Go to diff View file
M src/www/admin/permission_delegation.php +1 −1 Go to diff View file
M src/www/admin/register_admin.php +1 −1 Go to diff View file
M src/www/admin/sessions.php +1 −1 Go to diff View file
M src/www/admin/svn/index.php +1 −1 Go to diff View file
M src/www/admin/system_events/adminPresenter.class.php +1 −1 Go to diff View file
M src/www/api/reference/extractCross.php +1 −1 Go to diff View file
M src/www/file/files_permissions_per_group.php +1 −1 Go to diff View file
M src/www/file/index.php +1 −1 Go to diff View file
M src/www/forum/message.php +1 −1 Go to diff View file
M src/www/help/index.php +1 −1 Go to diff View file
M src/www/include/massmail_to_project_admins.php +1 −1 Go to diff View file
M src/www/index.php +1 −1 Go to diff View file
M src/www/my/bookmark_add.php +1 −1 Go to diff View file
M src/www/my/redirect.php +1 −1 Go to diff View file
M src/www/news/admin/choose_items.php +1 −1 Go to diff View file
M src/www/project/admin/editgenericmember.php +1 −1 Go to diff View file
M src/www/project/admin/labels.php +1 −1 Go to diff View file
M src/www/project/admin/permission_per_group.php +1 −1 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/userimport.php +1 −1 Go to diff View file
M src/www/project/autocomplete.php +1 −1 Go to diff View file
M src/www/project/export/artifact_deps_export.php +1 −1 Go to diff View file
M src/www/project/memberlist.php +1 −1 Go to diff View file
M src/www/project/stats/source_code_access.php +1 −1 Go to diff View file
M src/www/scripts/check_pw.js +1 −1 Go to diff View file
M src/www/scripts/codendi/CreateProject.js +1 −1 Go to diff View file
M src/www/scripts/codendi/Toggler.js +1 −1 Go to diff View file
M src/www/scripts/codendi/Tooltip-loader.js +1 −1 Go to diff View file
M src/www/scripts/codendi/TreeNode.js +1 −1 Go to diff View file
M src/www/scripts/codendi/cross_references.js +1 −1 Go to diff View file
M src/www/scripts/codendi/feedback.js +1 −1 Go to diff View file
M src/www/scripts/lightwindow/lightwindow.js +1 −1 Go to diff View file
M src/www/scripts/register.js +1 −1 Go to diff View file
M src/www/scripts/trackerv3_artifact.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/admin-access-mode.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/admin-homepage.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/datetimepicker.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/get-style-class-property.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/project-history.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/project-privacy-tooltip.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/search.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/svn.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/timezone.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/tuleap-modal.js +1 −1 Go to diff View file
M src/www/scripts/tuleap/tuleap-standard-homepage.js +1 −1 Go to diff View file
M src/www/search/index.php +1 −1 Go to diff View file
M src/www/svn/admin/access_control.php +1 −1 Go to diff View file
M src/www/svn/admin/general_settings.php +1 −1 Go to diff View file
M src/www/svn/admin/immutable_tags.php +1 −1 Go to diff View file
M src/www/svn/browse_revision.php +1 −1 Go to diff View file
M src/www/svn/svn_data.php +1 −1 Go to diff View file
M src/www/svn/svn_intro.php +1 −1 Go to diff View file
M src/www/tracker/download.php +1 −1 Go to diff View file
M src/www/tracker/import_admin.php +1 −1 Go to diff View file
M tests/e2e/distlp/tests/SVN/SVNCLITest.php +1 −1 Go to diff View file
M tests/integration/_fixtures/mediawiki/etc/mediawiki.inc +1 −1 Go to diff View file
M tests/lib/DB/DBTransactionExecutorPassthrough.php +1 −1 Go to diff View file
M tests/lib/DataAccessResult.class.php +1 −1 Go to diff View file
M tests/lib/ForgeConfigSandbox.php +1 −1 Go to diff View file
M tests/lib/Network/HTTPHeader.php +1 −1 Go to diff View file
M tests/lib/Network/HTTPHeaderStack.php +1 −1 Go to diff View file
M tests/lib/Network/HTTPResponseFunctionsOverload.php +1 −1 Go to diff View file
M tests/lib/constants.php +1 −1 Go to diff View file
M tests/rest/bin/init_data.php +1 −1 Go to diff View file
M tests/rest/bin/init_data_plugins.php +1 −1 Go to diff View file
M tests/rest/lib/ArtifactBase.php +1 −1 Go to diff View file
M tests/rest/lib/ArtifactFileBase.php +1 −1 Go to diff View file
M tests/rest/lib/CardsBase.php +1 −1 Go to diff View file
M tests/rest/lib/MilestoneBase.php +1 −1 Go to diff View file
M tests/rest/lib/ProjectBase.php +1 −1 Go to diff View file
M tests/rest/lib/RequestWrapper.php +1 −1 Go to diff View file
M tests/rest/lib/TrackerBase.php +1 −1 Go to diff View file
M tests/rest/lib/tracker/Tracker.php +1 −1 Go to diff View file
M tests/rest/lib/tracker/TrackerFactory.php +1 −1 Go to diff View file
M tests/rest/tests/AuthenticationTest.php +1 −1 Go to diff View file
M tests/rest/tests/CardsTest.php +1 −1 Go to diff View file
M tests/rest/tests/TokenTest.php +1 −1 Go to diff View file
M tests/rest/tests/regressions/ArtifactsCreationWithWrongWorkflowTest.php +1 −1 Go to diff View file
M tests/rest/tests/regressions/MilestonesContentOrderTest.php +1 −1 Go to diff View file
M tests/rest/tests/regressions/MilestonesContentTest.php +1 −1 Go to diff View file
M tests/rest/tests/regressions/PutSoloCardTest.php +1 −1 Go to diff View file
M tests/soap/_fixtures/01-project/project.xml +1 −1 Go to diff View file
M tests/soap/_fixtures/02-plugin-tracker/project.xml +1 −1 Go to diff View file
M tests/soap/bin/init_data.php +1 −1 Go to diff View file
M tests/soap/lib/SOAPBase.php +1 −1 Go to diff View file
M tests/soap/lib/TestDataBuilder.php +1 −1 Go to diff View file
M tests/soap/tests/FRSReleaseDeleteUsingCLITest.php +1 −1 Go to diff View file
M tests/soap/tests/FRSReleaseDownloadTest.php +1 −1 Go to diff View file
M tests/soap/tests/UserTest.php +1 −1 Go to diff View file
M tests/unit/common/Authentication/SplitToken/SplitTokenVerificationStringHasherTest.php +1 −1 Go to diff View file
M tests/unit/common/Authentication/SplitToken/SplitTokenVerificationStringTest.php +1 −1 Go to diff View file
M tests/unit/common/Config/_fixtures/restricted_user_permissions.txt +1 −1 Go to diff View file
M tests/unit/common/DB/DBConnectionTest.php +1 −1 Go to diff View file
M tests/unit/common/DB/DBFactoryTest.php +1 −1 Go to diff View file
M tests/unit/common/DB/DBTransactionExecutorWithConnectionTest.php +1 −1 Go to diff View file
M tests/unit/common/DB/DataAccessObjectTest.php +1 −1 Go to diff View file
M tests/unit/common/Dashboard/DashboardTest.php +1 −1 Go to diff View file
M tests/unit/common/Dashboard/Project/ProjectDashboardRetrieverTest.php +1 −1 Go to diff View file
M tests/unit/common/Dashboard/Project/ProjectDashboardSaverTest.php +1 −1 Go to diff View file
M tests/unit/common/Dashboard/Project/ProjectDashboardXMLImporterTest.php +1 −1 Go to diff View file
M tests/unit/common/Dashboard/User/UserDashboardRetrieverTest.php +1 −1 Go to diff View file
M tests/unit/common/Dashboard/User/UserDashboardSaverTest.php +1 −1 Go to diff View file
M tests/unit/common/FRS/PermissionsPerGroup/PackagePermissionPerGroupRepresentationBuilderTest.php +1 −1 Go to diff View file
M tests/unit/common/FRS/PermissionsPerGroup/PermissionPerTypeExtractorTest.php +1 −1 Go to diff View file
M tests/unit/common/ForgeAccess/ForgeAccessTest.php +1 −1 Go to diff View file
M tests/unit/common/ForgeAccess/ForgePropertiesManagerTest.php +1 −1 Go to diff View file
M tests/unit/common/Include/URLVerification_AssertValidUrlTest.php +1 −1 Go to diff View file
M tests/unit/common/Layout/CssAssetCollectionTest.php +1 −1 Go to diff View file
M tests/unit/common/Password/PasswordCompromiseValidatorTest.php +1 −1 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/REST/GetProjectsQueryCheckerTest.php +1 −1 Go to diff View file
M tests/unit/common/Project/REST/ProjectStatusVerificatorTest.php +1 −1 Go to diff View file
M tests/unit/common/Project/REST/UserGroupQueryParameterParserTest.php +1 −1 Go to diff View file
M tests/unit/common/Project/UGroupManagerTest.php +1 −1 Go to diff View file
M tests/unit/common/Project/UserRemoverTest.php +1 −1 Go to diff View file
M tests/unit/common/REST/QueryParameterParserTest.php +1 −1 Go to diff View file
M tests/unit/common/REST/TuleapRESTCORSMiddlewareTest.php +1 −1 Go to diff View file
M tests/unit/common/Upload/FileBeingUploadedLockerTest.php +1 −1 Go to diff View file
M tests/unit/common/Upload/FileBeingUploadedWriterTest.php +1 −1 Go to diff View file
M tests/unit/common/Upload/UploadPathAllocatorTest.php +1 −1 Go to diff View file
M tests/unit/common/User/AccessKey/LastAccessKeyIdentifierStoreTest.php +1 −1 Go to diff View file
M tests/unit/common/User/Account/UserAvatarSaverTest.php +1 −1 Go to diff View file
M tests/unit/common/User/Admin/UserStatusBuilderTest.php +1 −1 Go to diff View file
M tests/unit/common/User/Admin/UserStatusCheckerTest.php +1 −1 Go to diff View file
M tests/unit/common/User/Change/PasswordChangerTest.php +1 −1 Go to diff View file
M tests/unit/common/User/ForgeUserGroupPermission/SiteAdministratorPermissionCheckerTest.php +1 −1 Go to diff View file
M tests/unit/common/User/GenericUserFactoryTest.php +1 −1 Go to diff View file
M tests/unit/common/User/History/HistoryCleanerTest.php +1 −1 Go to diff View file
M tests/unit/common/User/Password/Reset/ResetTokenSerializerTest.php +1 −1 Go to diff View file
M tests/unit/common/User/RandomNumberGeneratorTest.php +1 −1 Go to diff View file
M tests/unit/common/User/UserManagerTest.php +1 −1 Go to diff View file
M tests/unit/common/User/XML/Import/MappingTest.php +1 −1 Go to diff View file
M tests/unit/common/Webhook/EmitterTest.php +1 −1 Go to diff View file
M tests/unit/common/language/_fixtures/local.inc +1 −1 Go to diff View file
M tests/unit/common/mail/Codendi_MailTest.php +1 −1 Go to diff View file
M tests/unit/tests/DB/DBTransactionExecutorPassthroughTest.php +1 −1 Go to diff View file
M tests/unit/tests/Network/HTTPHeaderStackTest.php +1 −1 Go to diff View file
M tests/unit/tests/Network/HTTPHeaderTest.php +1 −1 Go to diff View file
M tests/unit/tests/Network/HTTPResponseFunctionsOverloadTest.php +1 −1 Go to diff View file
M tests/unit/www/include/ServiceCreateServiceTest.php +1 −1 Go to diff View file
M tests/unit/www/include/UtilsHTTPTest.php +1 −1 Go to diff View file
M tools/Configuration/Apache/TuleapAuthModule.php +1 −1 Go to diff View file
M tools/Configuration/Common/Exec.php +1 −1 Go to diff View file
M tools/Configuration/Common/ExecException.php +1 −1 Go to diff View file
M tools/Configuration/DefaultPaths.php +1 −1 Go to diff View file
M tools/Configuration/Docker/ApplicationUserFromPath.php +1 −1 Go to diff View file
M tools/Configuration/Docker/BackendSVN.php +1 −1 Go to diff View file
M tools/Configuration/Docker/LinkFromDataVolume.php +1 −1 Go to diff View file
M tools/Configuration/Etc/LoadLocalInc.php +1 −1 Go to diff View file
M tools/Configuration/Mysql/BackendSVN.php +1 −1 Go to diff View file
M tools/Configuration/Nginx/BackendSVN.php +1 −1 Go to diff View file
M tools/Configuration/Nginx/BackendWeb.php +1 −1 Go to diff View file
M tools/Configuration/Nginx/ReverseProxy.php +1 −1 Go to diff View file
M tools/Configuration/Nginx/TuleapWeb.php +1 −1 Go to diff View file
M tools/Configuration/Vars.php +1 −1 Go to diff View file
M tools/distlp/backend-svn/run.php +1 −1 Go to diff View file
M tools/distlp/backend-web/run.php +1 −1 Go to diff View file
M tools/distlp/reverse-proxy/run.php +1 −1 Go to diff View file
M tools/distlp/setup.php +1 −1 Go to diff View file
M tools/setup.el7.sh +1 −1 Go to diff View file
M tools/setup/el7/include/core.sh +1 −1 Go to diff View file
M tools/stats/generate.php +1 −1 Go to diff View file
M tools/utils/TuleapDev/GerritSetupCommand.php +1 −1 Go to diff View file
M tools/utils/TuleapDev/RegisterIPCommand.php +1 −1 Go to diff View file
M tools/utils/admin/activate_plugin.php +1 −1 Go to diff View file
M tools/utils/generate-smarty-mo.php +1 −1 Go to diff View file
M tools/utils/password_hasher.php +1 −1 Go to diff View file