diff --git a/app/drops/base_drop.rb b/app/drops/base_drop.rb index 18355cc1403ae940b451a2658cbd062338381668..1b279b848f04d3965de2581587ccb1abbadba8f4 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 40d3f572a1e401acdf9a4df47643fae556e8732b..e86d9023a7f8e1c00c15b4e68ce45533d83eaab3 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 88d1a9dc4f21746cd97c5d1f3d90e57c0e89d45c..b5cc0bc803df8d3f427633033fc4b1059037a59c 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 24a94ea9aeb86b73079c6485eecf7db618c2714c..66f61d4e5ead0f8fbed0468093199d22ac34346e 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 f14a7799c4a2b72df0bc360ddaa6e42ef91dba48..c4752bfc265751140bc6866d517be345deff5cf3 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 3bcf4a0edc8623b4e8b4d1253200b170c64215d1..82a4c74cac2f83121dda5631d5d4cbf4fe0e197a 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 27c9be4f412ecf6a7ff2fda2b569274a4b8898b1..565223c95282611dd9d8092c06f11e34e0443e0d 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 dbc2699b85207e68ec68e908d7d44f87d70205e1..ba268791ae6c815e2a876c6bce28103d7b20f9ff 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 8def8857dac2b912f9cc659cb7559ed5963e423a..2a22f43abaa0d05eacac3bf3f302c8188e4606ca 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 c3729d9a38fb23d410098db45c12aed30dd39c6b..8c2cab427a415c008e1046cee7603a567d2ee024 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 78c6335ebe6621544e4f9e96822abb8d287ea5f5..57f4a0099d8d00b6ec010817c7cd4b466acad36d 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 5690bfdf086573694fddf5258ee8e48c4515c8da..4ccc0f7eab0446550b86831272d37fb56ba1bdfb 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 f2783d6a30302f37baa107c2bcce1c60bc5974a8..77fb888260432bec18a9d29eebfb9c3e2d680808 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 d6fe60f95b2e078d108b04c0ad6d0e24e70f6978..cd8731cb39094cedafa8c2d6d23802e6574cfe38 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 baa2ed5dd615a31bf285d06330c47d1a35a61465..28faa5b4973d14dd0c8a3eb3760cd0fa07de3507 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 ae7e2935c9c6cd4111a11077778bb2be4aef4956..ddf6f473bc779e7bf4710a5ebe2c582d14b1e705 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 d001afe43e79125aa6f84ebdf53c0a759572ae3b..b933d70151602c65a7ee104549ae582ce398b3a0 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 f37dffc4c4ac818209da9476de975ed611e35a0a..a731790dbb5233e15ff228fbe55aab1dda5e83c7 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 1dc38739a84d4c86960215caea1fbab6444274eb..c4c34e843096399a301115e437cb3764efb8b1b8 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 4f187c6506f1bfec1dd702581742a1be377617e3..5191b4045d229826076d0077d6488192b3878872 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 ca373a3e804ae86e5e38bddd51f145afd47b78a0..c0d6d298f3dbd55b363b7105b43fe877f31fa7f3 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 7eff7654a49a2a3c4b2482cbafa7325c374b4d8f..4cba3e6b0ca2bf108c2d2f60c10c8684b1e5f2b5 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 07daa4476a1734c1e433e5e398e440ab6d68bb3a..463c1eaf0bccdcdb09f2af6e1d5ca220d0271105 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 4b7783ddee4b076b015769bcfe3fe108fad0388e..bc5db5bcec24bb298405ea0bd2aff5b372e56975 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 e409e8caceb518988f732ac7beacea802df2ccc3..63fde0ece2c2822ec051cc5b959c32904eafad5d 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 51b85a48b17169d1ae41ba68969a8eba5ba7394b..8c3b5111779e4ca8449606fe8e0ef927ab700b26 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 955cbf32a03ebacb26aa332e984ab0db0fd95fb4..6a59363167100233eab2c6fa423cdf199b46ada5 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 ad23da38d199d14cebf0b3e999fd1357b2abda2f..e872c712409d7aac6604ad649cc0c51f01f59d65 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 b3c034a291874febc8972fd76974799061218f89..b5e6227227c51c32bef60c8e495a2460e777f91f 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 83cbe24e558de60242c7dca7e1efc77a43d88013..b37ac10101a705978d121867f0414b904587b3ce 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 b19adfd06370ee131690da16c3ca58c3f6276bd6..f68fd010416264c6679a809842c688fedaee7872 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 677bda04a9d50e1d64abe39fa87e9957b1a503cc..8420238ff27fa50b676dc3f13247bda50c82b618 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 ff619d7282e179e9d5b803cff5d1249872534eab..c01c296f3d3c0b42bfc16dc290d61cfb49144b9d 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 5093c22ab1104b6aa059226f050d425521a506e4..dfee7ec3ce579ad8390e1fd4cb12ad5072ac2400 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