From 2f0d13149de027dd3a0830f9a9da34b736bf7878 Mon Sep 17 00:00:00 2001 From: Eric Davis <edavis@littlestreamsoftware.com> Date: Sat, 17 Dec 2011 15:50:52 -0800 Subject: [PATCH] Copyright header update --- app/drops/base_drop.rb | 13 +++++++++++++ app/drops/issue_drop.rb | 13 +++++++++++++ app/drops/issue_status_drop.rb | 13 +++++++++++++ app/drops/principal_drop.rb | 13 +++++++++++++ app/drops/project_drop.rb | 13 +++++++++++++ app/drops/tracker_drop.rb | 13 +++++++++++++ app/drops/wiki_page_drop.rb | 13 +++++++++++++ app/models/query/statement_invalid.rb | 13 +++++++++++++ app/models/query_column.rb | 13 +++++++++++++ app/models/query_custom_field_column.rb | 13 +++++++++++++ ...111025231354_add_display_subprojects_to_query.rb | 13 +++++++++++++ .../20111125191432_acts_as_taggable_on_migration.rb | 13 +++++++++++++ lib/chili_project/liquid.rb | 13 +++++++++++++ lib/chili_project/liquid/file_system.rb | 13 +++++++++++++ lib/chili_project/liquid/filters.rb | 13 +++++++++++++ lib/chili_project/liquid/legacy.rb | 13 +++++++++++++ lib/chili_project/liquid/liquid_ext.rb | 13 +++++++++++++ lib/chili_project/liquid/liquid_ext/block.rb | 13 +++++++++++++ lib/chili_project/liquid/liquid_ext/context.rb | 13 +++++++++++++ lib/chili_project/liquid/tags.rb | 13 +++++++++++++ lib/chili_project/liquid/tags/child_pages.rb | 13 +++++++++++++ lib/chili_project/liquid/tags/hello_world.rb | 13 +++++++++++++ lib/chili_project/liquid/tags/identity.rb | 13 +++++++++++++ lib/chili_project/liquid/tags/tag.rb | 13 +++++++++++++ lib/chili_project/liquid/tags/tag_list.rb | 13 +++++++++++++ lib/chili_project/liquid/tags/variable_list.rb | 13 +++++++++++++ lib/chili_project/liquid/template.rb | 13 +++++++++++++ lib/chili_project/liquid/variables.rb | 13 +++++++++++++ test/unit/issue_drop_test.rb | 13 +++++++++++++ test/unit/issue_status_drop_test.rb | 13 +++++++++++++ test/unit/principal_drop_test.rb | 13 +++++++++++++ test/unit/project_drop_test.rb | 13 +++++++++++++ test/unit/tracker_drop_test.rb | 13 +++++++++++++ test/unit/wiki_page_drop_test.rb | 13 +++++++++++++ 34 files changed, 442 insertions(+) diff --git a/app/drops/base_drop.rb b/app/drops/base_drop.rb index 18355cc14..1b279b848 100644 --- a/app/drops/base_drop.rb +++ b/app/drops/base_drop.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class BaseDrop < Liquid::Drop def initialize(object) @object = object unless object.respond_to?(:visible?) && !object.visible? diff --git a/app/drops/issue_drop.rb b/app/drops/issue_drop.rb index 40d3f572a..e86d9023a 100644 --- a/app/drops/issue_drop.rb +++ b/app/drops/issue_drop.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class IssueDrop < BaseDrop allowed_methods :id allowed_methods :subject diff --git a/app/drops/issue_status_drop.rb b/app/drops/issue_status_drop.rb index 88d1a9dc4..b5cc0bc80 100644 --- a/app/drops/issue_status_drop.rb +++ b/app/drops/issue_status_drop.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class IssueStatusDrop < BaseDrop allowed_methods :name end diff --git a/app/drops/principal_drop.rb b/app/drops/principal_drop.rb index 24a94ea9a..66f61d4e5 100644 --- a/app/drops/principal_drop.rb +++ b/app/drops/principal_drop.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class PrincipalDrop < BaseDrop allowed_methods :name end diff --git a/app/drops/project_drop.rb b/app/drops/project_drop.rb index f14a7799c..c4752bfc2 100644 --- a/app/drops/project_drop.rb +++ b/app/drops/project_drop.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class ProjectDrop < BaseDrop allowed_methods :name, :identifier end diff --git a/app/drops/tracker_drop.rb b/app/drops/tracker_drop.rb index 3bcf4a0ed..82a4c74ca 100644 --- a/app/drops/tracker_drop.rb +++ b/app/drops/tracker_drop.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class TrackerDrop < BaseDrop allowed_methods :name end diff --git a/app/drops/wiki_page_drop.rb b/app/drops/wiki_page_drop.rb index 27c9be4f4..565223c95 100644 --- a/app/drops/wiki_page_drop.rb +++ b/app/drops/wiki_page_drop.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class WikiPageDrop < BaseDrop allowed_methods :title end diff --git a/app/models/query/statement_invalid.rb b/app/models/query/statement_invalid.rb index dbc2699b8..ba268791a 100644 --- a/app/models/query/statement_invalid.rb +++ b/app/models/query/statement_invalid.rb @@ -1,2 +1,15 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class Query::StatementInvalid < ActiveRecord::StatementInvalid end diff --git a/app/models/query_column.rb b/app/models/query_column.rb index 8def8857d..2a22f43ab 100644 --- a/app/models/query_column.rb +++ b/app/models/query_column.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class QueryColumn attr_accessor :name, :sortable, :groupable, :default_order include Redmine::I18n diff --git a/app/models/query_custom_field_column.rb b/app/models/query_custom_field_column.rb index c3729d9a3..8c2cab427 100644 --- a/app/models/query_custom_field_column.rb +++ b/app/models/query_custom_field_column.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class QueryCustomFieldColumn < QueryColumn def initialize(custom_field) diff --git a/db/migrate/20111025231354_add_display_subprojects_to_query.rb b/db/migrate/20111025231354_add_display_subprojects_to_query.rb index 78c6335eb..57f4a0099 100644 --- a/db/migrate/20111025231354_add_display_subprojects_to_query.rb +++ b/db/migrate/20111025231354_add_display_subprojects_to_query.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class AddDisplaySubprojectsToQuery < ActiveRecord::Migration def self.up add_column :queries, :display_subprojects, :boolean diff --git a/db/migrate/20111125191432_acts_as_taggable_on_migration.rb b/db/migrate/20111125191432_acts_as_taggable_on_migration.rb index 5690bfdf0..4ccc0f7ea 100644 --- a/db/migrate/20111125191432_acts_as_taggable_on_migration.rb +++ b/db/migrate/20111125191432_acts_as_taggable_on_migration.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + class ActsAsTaggableOnMigration < ActiveRecord::Migration def self.up create_table :tags do |t| diff --git a/lib/chili_project/liquid.rb b/lib/chili_project/liquid.rb index f2783d6a3..77fb88826 100644 --- a/lib/chili_project/liquid.rb +++ b/lib/chili_project/liquid.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + require 'chili_project/liquid/liquid_ext' require 'chili_project/liquid/filters' require 'chili_project/liquid/tags' diff --git a/lib/chili_project/liquid/file_system.rb b/lib/chili_project/liquid/file_system.rb index d6fe60f95..cd8731cb3 100644 --- a/lib/chili_project/liquid/file_system.rb +++ b/lib/chili_project/liquid/file_system.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid class FileSystem diff --git a/lib/chili_project/liquid/filters.rb b/lib/chili_project/liquid/filters.rb index baa2ed5dd..28faa5b49 100644 --- a/lib/chili_project/liquid/filters.rb +++ b/lib/chili_project/liquid/filters.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid module Filters diff --git a/lib/chili_project/liquid/legacy.rb b/lib/chili_project/liquid/legacy.rb index ae7e2935c..ddf6f473b 100644 --- a/lib/chili_project/liquid/legacy.rb +++ b/lib/chili_project/liquid/legacy.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid # Legacy is used to support older Redmine style macros by converting diff --git a/lib/chili_project/liquid/liquid_ext.rb b/lib/chili_project/liquid/liquid_ext.rb index d001afe43..b933d7015 100644 --- a/lib/chili_project/liquid/liquid_ext.rb +++ b/lib/chili_project/liquid/liquid_ext.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid module LiquidExt diff --git a/lib/chili_project/liquid/liquid_ext/block.rb b/lib/chili_project/liquid/liquid_ext/block.rb index f37dffc4c..a731790db 100644 --- a/lib/chili_project/liquid/liquid_ext/block.rb +++ b/lib/chili_project/liquid/liquid_ext/block.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid module LiquidExt diff --git a/lib/chili_project/liquid/liquid_ext/context.rb b/lib/chili_project/liquid/liquid_ext/context.rb index 1dc38739a..c4c34e843 100644 --- a/lib/chili_project/liquid/liquid_ext/context.rb +++ b/lib/chili_project/liquid/liquid_ext/context.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid module LiquidExt diff --git a/lib/chili_project/liquid/tags.rb b/lib/chili_project/liquid/tags.rb index 4f187c650..5191b4045 100644 --- a/lib/chili_project/liquid/tags.rb +++ b/lib/chili_project/liquid/tags.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject::Liquid module Tags class TagError < StandardError; end diff --git a/lib/chili_project/liquid/tags/child_pages.rb b/lib/chili_project/liquid/tags/child_pages.rb index ca373a3e8..c0d6d298f 100644 --- a/lib/chili_project/liquid/tags/child_pages.rb +++ b/lib/chili_project/liquid/tags/child_pages.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject::Liquid::Tags class ChildPages < Tag def initialize(tag_name, markup, tokens) diff --git a/lib/chili_project/liquid/tags/hello_world.rb b/lib/chili_project/liquid/tags/hello_world.rb index 7eff7654a..4cba3e6b0 100644 --- a/lib/chili_project/liquid/tags/hello_world.rb +++ b/lib/chili_project/liquid/tags/hello_world.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject::Liquid::Tags class HelloWorld < Tag def initialize(tag_name, markup, tokens) diff --git a/lib/chili_project/liquid/tags/identity.rb b/lib/chili_project/liquid/tags/identity.rb index 07daa4476..463c1eaf0 100644 --- a/lib/chili_project/liquid/tags/identity.rb +++ b/lib/chili_project/liquid/tags/identity.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject::Liquid::Tags class Identity < Tag def initialize(tag_name, markup, tokens) diff --git a/lib/chili_project/liquid/tags/tag.rb b/lib/chili_project/liquid/tags/tag.rb index 4b7783dde..bc5db5bce 100644 --- a/lib/chili_project/liquid/tags/tag.rb +++ b/lib/chili_project/liquid/tags/tag.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject::Liquid::Tags class Tag < ::Liquid::Tag end diff --git a/lib/chili_project/liquid/tags/tag_list.rb b/lib/chili_project/liquid/tags/tag_list.rb index e409e8cac..63fde0ece 100644 --- a/lib/chili_project/liquid/tags/tag_list.rb +++ b/lib/chili_project/liquid/tags/tag_list.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject::Liquid::Tags class TagList < Tag include ActionView::Helpers::TagHelper diff --git a/lib/chili_project/liquid/tags/variable_list.rb b/lib/chili_project/liquid/tags/variable_list.rb index 51b85a48b..8c3b51117 100644 --- a/lib/chili_project/liquid/tags/variable_list.rb +++ b/lib/chili_project/liquid/tags/variable_list.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject::Liquid::Tags class VariableList < Tag include ActionView::Helpers::TagHelper diff --git a/lib/chili_project/liquid/template.rb b/lib/chili_project/liquid/template.rb index 955cbf32a..6a5936316 100644 --- a/lib/chili_project/liquid/template.rb +++ b/lib/chili_project/liquid/template.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid class Template < ::Liquid::Template diff --git a/lib/chili_project/liquid/variables.rb b/lib/chili_project/liquid/variables.rb index ad23da38d..e872c7124 100644 --- a/lib/chili_project/liquid/variables.rb +++ b/lib/chili_project/liquid/variables.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + module ChiliProject module Liquid module Variables diff --git a/test/unit/issue_drop_test.rb b/test/unit/issue_drop_test.rb index b3c034a29..b5e622722 100644 --- a/test/unit/issue_drop_test.rb +++ b/test/unit/issue_drop_test.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + require File.expand_path('../../test_helper', __FILE__) class IssueDropTest < ActiveSupport::TestCase diff --git a/test/unit/issue_status_drop_test.rb b/test/unit/issue_status_drop_test.rb index 83cbe24e5..b37ac1010 100644 --- a/test/unit/issue_status_drop_test.rb +++ b/test/unit/issue_status_drop_test.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + require File.expand_path('../../test_helper', __FILE__) class IssueStatusDropTest < ActiveSupport::TestCase diff --git a/test/unit/principal_drop_test.rb b/test/unit/principal_drop_test.rb index b19adfd06..f68fd0104 100644 --- a/test/unit/principal_drop_test.rb +++ b/test/unit/principal_drop_test.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + require File.expand_path('../../test_helper', __FILE__) class PrincipalDropTest < ActiveSupport::TestCase diff --git a/test/unit/project_drop_test.rb b/test/unit/project_drop_test.rb index 677bda04a..8420238ff 100644 --- a/test/unit/project_drop_test.rb +++ b/test/unit/project_drop_test.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + require File.expand_path('../../test_helper', __FILE__) class ProjectDropTest < ActiveSupport::TestCase diff --git a/test/unit/tracker_drop_test.rb b/test/unit/tracker_drop_test.rb index ff619d728..c01c296f3 100644 --- a/test/unit/tracker_drop_test.rb +++ b/test/unit/tracker_drop_test.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + require File.expand_path('../../test_helper', __FILE__) class TrackerDropTest < ActiveSupport::TestCase diff --git a/test/unit/wiki_page_drop_test.rb b/test/unit/wiki_page_drop_test.rb index 5093c22ab..dfee7ec3c 100644 --- a/test/unit/wiki_page_drop_test.rb +++ b/test/unit/wiki_page_drop_test.rb @@ -1,3 +1,16 @@ +#-- copyright +# ChiliProject is a project management system. +# +# Copyright (C) 2010-2011 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# See doc/COPYRIGHT.rdoc for more details. +#++ + require File.expand_path('../../test_helper', __FILE__) class WikiPageDropTest < ActiveSupport::TestCase -- GitLab