From 5351746d363f72cdc06dd4e696ec1ba04a7fc0ac Mon Sep 17 00:00:00 2001 From: Alexandre Friquet Date: Thu, 28 Apr 2016 15:08:10 +0200 Subject: [PATCH] Updates copyright years with 2016: refs #14. --- Gemfile | 2 +- app/controllers/kanbans_controller.rb | 2 +- .../redhopper_issues_controller.rb | 2 +- app/models/column.rb | 2 +- app/models/due_delta_presenter.rb | 2 +- app/models/feature.rb | 2 +- app/models/kanban_board.rb | 2 +- app/models/redhopper_issue.rb | 2 +- app/views/kanbans/_kanban.html.haml | 2 +- app/views/kanbans/index.haml | 2 +- app/views/settings/_feature.haml | 2 +- app/views/settings/_kanbans.haml | 2 +- assets/javascripts/redhopper.js | 2 +- assets/stylesheets/redhopper.css | 19 ++++++++++++++++++ assets/stylesheets/redhopper.sass | 20 +++++++++++++++++++ config/locales/en.yml | 20 +++++++++++++++++++ config/locales/fr.yml | 20 +++++++++++++++++++ config/locales/pt-BR.yml | 20 +++++++++++++++++++ config/routes.rb | 2 +- db/migrate/001_create_redhopper_issues.rb | 2 +- ...2_add_resort_fields_to_redhopper_issues.rb | 2 +- .../003_add_blocked_to_redhopper_issues.rb | 2 +- init.rb | 2 +- lib/tasks/licence.rake | 2 +- test/functional/kanbans_controller_test.rb | 2 +- .../redhopper_issues_controller_test.rb | 2 +- test/test_helper.rb | 2 +- test/unit/column_test.rb | 2 +- test/unit/due_delta_presenter_test.rb | 2 +- test/unit/kanban_board_test.rb | 2 +- test/unit/redhopper_issue_test.rb | 2 +- 31 files changed, 125 insertions(+), 26 deletions(-) diff --git a/Gemfile b/Gemfile index 65a3cab..dbf165b 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/controllers/kanbans_controller.rb b/app/controllers/kanbans_controller.rb index 3d8480e..499a48e 100644 --- a/app/controllers/kanbans_controller.rb +++ b/app/controllers/kanbans_controller.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/controllers/redhopper_issues_controller.rb b/app/controllers/redhopper_issues_controller.rb index b5ef0fc..9a240f6 100644 --- a/app/controllers/redhopper_issues_controller.rb +++ b/app/controllers/redhopper_issues_controller.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/models/column.rb b/app/models/column.rb index 88ac3ed..13e76e2 100644 --- a/app/models/column.rb +++ b/app/models/column.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/models/due_delta_presenter.rb b/app/models/due_delta_presenter.rb index b914d43..4b6a585 100644 --- a/app/models/due_delta_presenter.rb +++ b/app/models/due_delta_presenter.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/models/feature.rb b/app/models/feature.rb index e3eb930..a52b14f 100644 --- a/app/models/feature.rb +++ b/app/models/feature.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/models/kanban_board.rb b/app/models/kanban_board.rb index 6339341..20d3f01 100644 --- a/app/models/kanban_board.rb +++ b/app/models/kanban_board.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/models/redhopper_issue.rb b/app/models/redhopper_issue.rb index 16a2967..55cf4a7 100644 --- a/app/models/redhopper_issue.rb +++ b/app/models/redhopper_issue.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/app/views/kanbans/_kanban.html.haml b/app/views/kanbans/_kanban.html.haml index 57efcf5..042401f 100644 --- a/app/views/kanbans/_kanban.html.haml +++ b/app/views/kanbans/_kanban.html.haml @@ -1,7 +1,7 @@ -# -# Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as -# Greenhopper), but following its own path. --# Copyright (C) 2015 infoPiiaf +-# Copyright (C) 2015-2016 infoPiiaf -# -# This file is part of Redhopper. -# diff --git a/app/views/kanbans/index.haml b/app/views/kanbans/index.haml index 82f90a6..3af4334 100644 --- a/app/views/kanbans/index.haml +++ b/app/views/kanbans/index.haml @@ -1,7 +1,7 @@ -# -# Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as -# Greenhopper), but following its own path. --# Copyright (C) 2015 infoPiiaf +-# Copyright (C) 2015-2016 infoPiiaf -# -# This file is part of Redhopper. -# diff --git a/app/views/settings/_feature.haml b/app/views/settings/_feature.haml index 011c073..7f80c32 100644 --- a/app/views/settings/_feature.haml +++ b/app/views/settings/_feature.haml @@ -1,7 +1,7 @@ -# -# Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as -# Greenhopper), but following its own path. --# Copyright (C) 2015 infoPiiaf +-# Copyright (C) 2015-2016 infoPiiaf -# -# This file is part of Redhopper. -# diff --git a/app/views/settings/_kanbans.haml b/app/views/settings/_kanbans.haml index 4fae657..31cd3cb 100644 --- a/app/views/settings/_kanbans.haml +++ b/app/views/settings/_kanbans.haml @@ -1,7 +1,7 @@ -# -# Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as -# Greenhopper), but following its own path. --# Copyright (C) 2015 infoPiiaf +-# Copyright (C) 2015-2016 infoPiiaf -# -# This file is part of Redhopper. -# diff --git a/assets/javascripts/redhopper.js b/assets/javascripts/redhopper.js index bcb2ec5..0cd9687 100644 --- a/assets/javascripts/redhopper.js +++ b/assets/javascripts/redhopper.js @@ -1,7 +1,7 @@ /* * Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as * Greenhopper), but following its own path. - * Copyright (C) 2015 infoPiiaf + * Copyright (C) 2015-2016 infoPiiaf * * This file is part of Redhopper. * diff --git a/assets/stylesheets/redhopper.css b/assets/stylesheets/redhopper.css index da5bba2..62ef14b 100644 --- a/assets/stylesheets/redhopper.css +++ b/assets/stylesheets/redhopper.css @@ -1,3 +1,22 @@ +/* Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as + * Greenhopper), but following its own path. + * Copyright (C) 2015-2016 infoPiiaf + * + * This file is part of Redhopper. + * + * Redhopper is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * Redhopper is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Redhopper. If not, see . + */ .KanbanBoard { margin: 0; padding: 0; diff --git a/assets/stylesheets/redhopper.sass b/assets/stylesheets/redhopper.sass index 86cd48d..c077ed3 100644 --- a/assets/stylesheets/redhopper.sass +++ b/assets/stylesheets/redhopper.sass @@ -1,3 +1,23 @@ +/* + * Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as + * Greenhopper), but following its own path. + * Copyright (C) 2015-2016 infoPiiaf + * + * This file is part of Redhopper. + * + * Redhopper is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * Redhopper is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Redhopper. If not, see . + */ $gutter: 1em =space($margin, $padding: $margin) diff --git a/config/locales/en.yml b/config/locales/en.yml index 2a53336..9f39a17 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1,3 +1,23 @@ +# +# Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as +# Greenhopper), but following its own path. +# Copyright (C) 2015-2016 infoPiiaf +# +# This file is part of Redhopper. +# +# Redhopper is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# Redhopper is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Redhopper. If not, see . +# en: kanbans: index: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 4e985a3..03e6d9d 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -1,3 +1,23 @@ +# +# Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as +# Greenhopper), but following its own path. +# Copyright (C) 2015-2016 infoPiiaf +# +# This file is part of Redhopper. +# +# Redhopper is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# Redhopper is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Redhopper. If not, see . +# fr: kanbans: index: diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 03a8647..d57a966 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -1,3 +1,23 @@ +# +# Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as +# Greenhopper), but following its own path. +# Copyright (C) 2015-2016 infoPiiaf +# +# This file is part of Redhopper. +# +# Redhopper is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# Redhopper is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Redhopper. If not, see . +# pt-BR: kanbans: index: diff --git a/config/routes.rb b/config/routes.rb index 046850d..7778c90 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/db/migrate/001_create_redhopper_issues.rb b/db/migrate/001_create_redhopper_issues.rb index b505f1a..4a34b77 100644 --- a/db/migrate/001_create_redhopper_issues.rb +++ b/db/migrate/001_create_redhopper_issues.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/db/migrate/002_add_resort_fields_to_redhopper_issues.rb b/db/migrate/002_add_resort_fields_to_redhopper_issues.rb index eb35707..8fa53d1 100644 --- a/db/migrate/002_add_resort_fields_to_redhopper_issues.rb +++ b/db/migrate/002_add_resort_fields_to_redhopper_issues.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/db/migrate/003_add_blocked_to_redhopper_issues.rb b/db/migrate/003_add_blocked_to_redhopper_issues.rb index 8c9f5dd..348a79b 100644 --- a/db/migrate/003_add_blocked_to_redhopper_issues.rb +++ b/db/migrate/003_add_blocked_to_redhopper_issues.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/init.rb b/init.rb index 880e556..ab2c65d 100644 --- a/init.rb +++ b/init.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/lib/tasks/licence.rake b/lib/tasks/licence.rake index ed875f8..61a0f63 100644 --- a/lib/tasks/licence.rake +++ b/lib/tasks/licence.rake @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/test/functional/kanbans_controller_test.rb b/test/functional/kanbans_controller_test.rb index 2ace72e..d699844 100644 --- a/test/functional/kanbans_controller_test.rb +++ b/test/functional/kanbans_controller_test.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/test/functional/redhopper_issues_controller_test.rb b/test/functional/redhopper_issues_controller_test.rb index d6dee9b..7f8e8de 100644 --- a/test/functional/redhopper_issues_controller_test.rb +++ b/test/functional/redhopper_issues_controller_test.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/test/test_helper.rb b/test/test_helper.rb index c788e67..54defd2 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/test/unit/column_test.rb b/test/unit/column_test.rb index 9afe815..c81b484 100644 --- a/test/unit/column_test.rb +++ b/test/unit/column_test.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/test/unit/due_delta_presenter_test.rb b/test/unit/due_delta_presenter_test.rb index 5fa85bf..03f5e8c 100644 --- a/test/unit/due_delta_presenter_test.rb +++ b/test/unit/due_delta_presenter_test.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/test/unit/kanban_board_test.rb b/test/unit/kanban_board_test.rb index 5e0db90..e0cb8cd 100644 --- a/test/unit/kanban_board_test.rb +++ b/test/unit/kanban_board_test.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # diff --git a/test/unit/redhopper_issue_test.rb b/test/unit/redhopper_issue_test.rb index f9e50a0..df8daff 100644 --- a/test/unit/redhopper_issue_test.rb +++ b/test/unit/redhopper_issue_test.rb @@ -1,7 +1,7 @@ # # Redhopper - Kanban boards for Redmine, inspired by Jira Agile (formerly known as # Greenhopper), but following its own path. -# Copyright (C) 2015 infoPiiaf +# Copyright (C) 2015-2016 infoPiiaf # # This file is part of Redhopper. # -- GitLab