From 2f0d13149de027dd3a0830f9a9da34b736bf7878 Mon Sep 17 00:00:00 2001 From: Eric Davis 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 18355cc1..1b279b84 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 40d3f572..e86d9023 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 88d1a9dc..b5cc0bc8 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 24a94ea9..66f61d4e 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 f14a7799..c4752bfc 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 3bcf4a0e..82a4c74c 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 27c9be4f..565223c9 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 dbc2699b..ba268791 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 8def8857..2a22f43a 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 c3729d9a..8c2cab42 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 78c6335e..57f4a009 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 5690bfdf..4ccc0f7e 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 f2783d6a..77fb8882 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 d6fe60f9..cd8731cb 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 baa2ed5d..28faa5b4 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 ae7e2935..ddf6f473 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 d001afe4..b933d701 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 f37dffc4..a731790d 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 1dc38739..c4c34e84 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 4f187c65..5191b404 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 ca373a3e..c0d6d298 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 7eff7654..4cba3e6b 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 07daa447..463c1eaf 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 4b7783dd..bc5db5bc 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 e409e8ca..63fde0ec 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 51b85a48..8c3b5111 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 955cbf32..6a593631 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 ad23da38..e872c712 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 b3c034a2..b5e62272 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 83cbe24e..b37ac101 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 b19adfd0..f68fd010 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 677bda04..8420238f 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 ff619d72..c01c296f 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 5093c22a..dfee7ec3 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