stable

Clone or download

Read-only

[baseline] 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: Iae04a9e2e817c46ca68438599be646d847b5e243

Modified Files

Name
M include/Adapter/ArtifactLinkRepository.php +1 −1 Go to diff View file
M include/Adapter/BaselineArtifactRepositoryAdapter.php +1 −1 Go to diff View file
M include/Adapter/BaselineRepositoryAdapter.php +1 −1 Go to diff View file
M include/Adapter/ClockAdapter.php +1 −1 Go to diff View file
M include/Adapter/ComparisonRepositoryAdapter.php +1 −1 Go to diff View file
M include/Adapter/ProjectRepositoryAdapter.php +1 −1 Go to diff View file
M include/Adapter/RoleAssignment.php +1 −1 Go to diff View file
M include/Adapter/RoleAssignmentRepositoryAdapter.php +1 −1 Go to diff View file
M include/Adapter/SemanticFieldRepository.php +1 −1 Go to diff View file
M include/Adapter/SemanticValueAdapter.php +1 −1 Go to diff View file
M include/Domain/Authorizations.php +1 −1 Go to diff View file
M include/Domain/AuthorizationsImpl.php +1 −1 Go to diff View file
M include/Domain/Baseline.php +1 −1 Go to diff View file
M include/Domain/BaselineArtifact.php +1 −1 Go to diff View file
M include/Domain/BaselineArtifactNotFoundException.php +1 −1 Go to diff View file
M include/Domain/BaselineArtifactRepository.php +1 −1 Go to diff View file
M include/Domain/BaselineArtifactService.php +1 −1 Go to diff View file
M include/Domain/BaselineDeletionException.php +1 −1 Go to diff View file
M include/Domain/BaselineRepository.php +1 −1 Go to diff View file
M include/Domain/BaselineRootArtifactNotFoundException.php +1 −1 Go to diff View file
M include/Domain/BaselineService.php +1 −1 Go to diff View file
M include/Domain/BaselinesPage.php +1 −1 Go to diff View file
M include/Domain/ChangesetNotFoundException.php +1 −1 Go to diff View file
M include/Domain/Clock.php +1 −1 Go to diff View file
M include/Domain/Comparison.php +1 −1 Go to diff View file
M include/Domain/ComparisonRepository.php +1 −1 Go to diff View file
M include/Domain/ComparisonService.php +1 −1 Go to diff View file
M include/Domain/ComparisonsPage.php +1 −1 Go to diff View file
M include/Domain/CurrentUserProvider.php +1 −1 Go to diff View file
M include/Domain/InvalidComparisonException.php +1 −1 Go to diff View file
M include/Domain/NotAuthorizedException.php +1 −1 Go to diff View file
M include/Domain/ProjectRepository.php +1 −1 Go to diff View file
M include/Domain/Role.php +1 −1 Go to diff View file
M include/Domain/RoleAssignmentRepository.php +1 −1 Go to diff View file
M include/Domain/TransientBaseline.php +1 −1 Go to diff View file
M include/Domain/TransientComparison.php +1 −1 Go to diff View file
M include/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M include/Plugin/PluginInfo.php +1 −1 Go to diff View file
M include/REST/BaselineArtifactCollectionRepresentation.php +1 −1 Go to diff View file
M include/REST/BaselineArtifactRepresentation.php +1 −1 Go to diff View file
M include/REST/BaselineArtifactsResource.php +1 −1 Go to diff View file
M include/REST/BaselineController.php +1 −1 Go to diff View file
M include/REST/BaselineRepresentation.php +1 −1 Go to diff View file
M include/REST/BaselineRestResourcesInjector.php +1 −1 Go to diff View file
M include/REST/BaselinesPageRepresentation.php +1 −1 Go to diff View file
M include/REST/BaselinesResource.php +1 −1 Go to diff View file
M include/REST/ComparisonController.php +1 −1 Go to diff View file
M include/REST/ComparisonRepresentation.php +1 −1 Go to diff View file
M include/REST/ComparisonsPageRepresentation.php +1 −1 Go to diff View file
M include/REST/ComparisonsResource.php +1 −1 Go to diff View file
M include/REST/Exception/ForbiddenRestException.php +1 −1 Go to diff View file
M include/REST/Exception/NotFoundRestException.php +1 −1 Go to diff View file
M include/REST/ProjectBaselineController.php +1 −1 Go to diff View file
M include/REST/ProjectBaselinesResource.php +1 −1 Go to diff View file
M include/REST/ProjectComparisonController.php +1 −1 Go to diff View file
M include/REST/ProjectComparisonsResource.php +1 −1 Go to diff View file
M include/baselinePlugin.php +1 −1 Go to diff View file
M scripts/baseline/api/rest-querier.js +1 −1 Go to diff View file
M scripts/baseline/components/IndexPage.vue +1 −1 Go to diff View file
M scripts/baseline/components/Notification.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/Artifact.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/ArtifactsList.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/BaselineContentFilters.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/BaselineContentFiltersSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/ContentBody.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/ContentBodySkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/ContentPage.vue +1 −1 Go to diff View file
M scripts/baseline/components/baseline-content/Statistics.vue +1 −1 Go to diff View file
M scripts/baseline/components/baselines-list/Baseline.vue +1 −1 Go to diff View file
M scripts/baseline/components/baselines-list/BaselineSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/baselines-list/BaselinesList.vue +1 −1 Go to diff View file
M scripts/baseline/components/baselines-list/ConsultBaselineButton.vue +1 −1 Go to diff View file
M scripts/baseline/components/baselines-list/DeleteBaselineButton.vue +1 −1 Go to diff View file
M scripts/baseline/components/baselines-list/DeleteBaselineConfirmationModal.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/ActionButton.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/ArtifactBadge.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/ArtifactLabel.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/ArtifactLink.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/ArtifactSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/BaselineLabel.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/BaselineLabelSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/CollapsableContent.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/ContentLayout.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/DeleteConfirmationModal.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/DepthLimitReachedMessage.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/HumanizedDate.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/SemanticFieldLabel.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/Statistic.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/TrackersMultiSelect.vue +1 −1 Go to diff View file
M scripts/baseline/components/common/UserBadge.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonContentFilters.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonContentFiltersSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonHeader.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonHeaderSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonLabelSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonPage.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonPageAsync.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonPageSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonStatisticSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonStatistics.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/ComparisonStatisticsSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/NewComparisonModal.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/SaveComparisonModal.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/TransientComparisonLabel.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/content/ArtifactComparison.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/content/ArtifactsListComparison.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/content/ComparisonContent.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparison/content/ComparisonContentSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparisons-list/Comparison.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparisons-list/ComparisonSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparisons-list/ComparisonsList.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparisons-list/ConsultComparisonButton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparisons-list/DeleteComparisonButton.vue +1 −1 Go to diff View file
M scripts/baseline/components/comparisons-list/DeleteComparisonConfirmationModal.vue +1 −1 Go to diff View file
M scripts/baseline/components/new-baseline/MilestonesSelect.vue +1 −1 Go to diff View file
M scripts/baseline/components/new-baseline/MilestonesSelectSkeleton.vue +1 −1 Go to diff View file
M scripts/baseline/components/new-baseline/NewBaselineModal.vue +1 −1 Go to diff View file
M scripts/baseline/constants/index.js +1 −1 Go to diff View file
M scripts/baseline/router/NotFoundPage.vue +1 −1 Go to diff View file
M scripts/baseline/router/index.js +1 −1 Go to diff View file
M scripts/baseline/store/baselines.js +1 −1 Go to diff View file
M scripts/baseline/store/baselines.test.js +1 −1 Go to diff View file
M scripts/baseline/store/comparisons.js +1 −1 Go to diff View file
M scripts/baseline/store/current_baseline.js +1 −1 Go to diff View file
M scripts/baseline/store/current_comparison/abstract_baseline_content.js +1 −1 Go to diff View file
M scripts/baseline/store/current_comparison/index.js +1 −1 Go to diff View file
M scripts/baseline/store/current_comparison/index.test.js +1 −1 Go to diff View file
M scripts/baseline/store/dialog_interface.js +1 −1 Go to diff View file
M scripts/baseline/store/global.js +1 −1 Go to diff View file
M scripts/baseline/store/index.js +1 −1 Go to diff View file
M scripts/baseline/store/store_options.js +1 −1 Go to diff View file
M scripts/baseline/support/array-utils.js +1 −1 Go to diff View file
M scripts/baseline/support/comparison.js +1 −1 Go to diff View file
M scripts/baseline/support/date-utils.js +1 −1 Go to diff View file
M scripts/baseline/support/graph-utils.js +1 −1 Go to diff View file
M tests/rest/BaselineFixtureData.php +1 −1 Go to diff View file
M tests/rest/BaselinesResourceTest.php +1 −1 Go to diff View file
M tests/rest/ComparisonsResourceTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/ArtifactLinkRepositoryTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/BaselineArtifactRepositoryAdapterTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/BaselineRepositoryAdapterTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/ClockAdapterTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/ComparisonRepositoryAdapterTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/SemanticValueAdapterFindDescriptionTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/SemanticValueAdapterFindInitialEffortTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/SemanticValueAdapterFindStatusTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/SemanticValueAdapterFindTitleTest.php +1 −1 Go to diff View file
M tests/unit/Adapter/SemanticValueAdapterTest.php +1 −1 Go to diff View file
M tests/unit/Domain/BaselineArtifactServiceTest.php +1 −1 Go to diff View file
M tests/unit/Domain/BaselineServiceTest.php +1 −1 Go to diff View file
M tests/unit/Domain/ComparisonServiceTest.php +1 −1 Go to diff View file
M tests/unit/Factory/BaselineArtifactBuilder.php +1 −1 Go to diff View file
M tests/unit/Factory/BaselineArtifactFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/BaselineBuilder.php +1 −1 Go to diff View file
M tests/unit/Factory/BaselineFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/ChangesetBuilder.php +1 −1 Go to diff View file
M tests/unit/Factory/ChangesetFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/ComparisonFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/DateTimeFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/ProjectFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/TrackerBuilder.php +1 −1 Go to diff View file
M tests/unit/Factory/TrackerFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/TransientBaselineBuilder.php +1 −1 Go to diff View file
M tests/unit/Factory/TransientBaselineFactory.php +1 −1 Go to diff View file
M tests/unit/Factory/TransientComparisonBuilder.php +1 −1 Go to diff View file
M tests/unit/Factory/TransientComparisonFactory.php +1 −1 Go to diff View file
M tests/unit/REST/BaselineControllerIntTest.php +1 −1 Go to diff View file
M tests/unit/REST/BaselineControllerTest.php +1 −1 Go to diff View file
M tests/unit/REST/BaselineRepresentationTest.php +1 −1 Go to diff View file
M tests/unit/REST/BaselinesPageRepresentationTest.php +1 −1 Go to diff View file
M tests/unit/REST/ComparisonControllerIntTest.php +1 −1 Go to diff View file
M tests/unit/REST/ComparisonControllerTest.php +1 −1 Go to diff View file
M tests/unit/REST/Exception/ForbiddenRestExceptionTest.php +1 −1 Go to diff View file
M tests/unit/REST/Exception/NotFoundRestExceptionTest.php +1 −1 Go to diff View file
M tests/unit/REST/ProjectBaselineControllerIntTest.php +1 −1 Go to diff View file
M tests/unit/REST/ProjectBaselineControllerTest.php +1 −1 Go to diff View file
M tests/unit/REST/ProjectComparisonControllerIntTest.php +1 −1 Go to diff View file
M tests/unit/REST/ProjectComparisonControllerTest.php +1 −1 Go to diff View file
M tests/unit/Stub/BaselineArtifactRepositoryStub.php +1 −1 Go to diff View file
M tests/unit/Stub/BaselineChangeSet.php +1 −1 Go to diff View file
M tests/unit/Stub/BaselineRepositoryStub.php +1 −1 Go to diff View file
M tests/unit/Stub/ComparisonRepositoryStub.php +1 −1 Go to diff View file
M tests/unit/Stub/CurrentUserProviderStub.php +1 −1 Go to diff View file
M tests/unit/Stub/FrozenClock.php +1 −1 Go to diff View file
M tests/unit/Stub/FullAccessAuthorizationsStub.php +1 −1 Go to diff View file
M tests/unit/Stub/ProjectRepositoryStub.php +1 −1 Go to diff View file
M tests/unit/Support/CurrentUserContext.php +1 −1 Go to diff View file
M tests/unit/bootstrap.php +1 −1 Go to diff View file
M tests/unit/phpunit.xml +1 −1 Go to diff View file
M themes/BurningParrot/_baseline.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_baseline-content.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_baselines-list.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_comparison-content.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_comparison.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_comparisons-list.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_form.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_new-baseline-modal.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_new-comparison-modal.scss +1 −1 Go to diff View file
M themes/BurningParrot/baseline/_statistics.scss +1 −1 Go to diff View file