stable

Clone or download

Read-only

[botmattermost_git] 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: I851147a14bb3bb25b79de7b765726ab87420a139

Modified Files

Name
M db/mysql/updates/2017/201703221614_add_channel_for_git_notification.php +1 −1 Go to diff View file
M include/BotMattermostGit/BotMattermostGitNotification/BotMattermostGitNotification.php +1 −1 Go to diff View file
M include/BotMattermostGit/BotMattermostGitNotification/Dao.php +1 −1 Go to diff View file
M include/BotMattermostGit/BotMattermostGitNotification/Factory.php +1 −1 Go to diff View file
M include/BotMattermostGit/BotMattermostGitNotification/Validator.php +1 −1 Go to diff View file
M include/BotMattermostGit/Controller.php +1 −1 Go to diff View file
M include/BotMattermostGit/Exception/CannotCreateBotNotificationException.php +1 −1 Go to diff View file
M include/BotMattermostGit/Exception/CannotDeleteBotNotificationException.php +1 −1 Go to diff View file
M include/BotMattermostGit/Exception/CannotUpdateBotNotificationException.php +1 −1 Go to diff View file
M include/BotMattermostGit/Plugin/PluginDescriptor.php +1 −1 Go to diff View file
M include/BotMattermostGit/Plugin/PluginInfo.php +1 −1 Go to diff View file
M include/BotMattermostGit/Presenter/AttachmentPreTextPresenter.php +1 −1 Go to diff View file
M include/BotMattermostGit/Presenter/Presenter.php +1 −1 Go to diff View file
M include/constants.php +1 −1 Go to diff View file