From 64f95b40ca93a053f088114624e32d83570c720f Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Wed, 28 Jul 2010 12:20:38 +0000 Subject: add copyright notices to new files --- report-generators/lib/log.rb | 10 ++++++++++ report-generators/lib/report_templates.rb | 10 ++++++++++ report-generators/lib/reports.rb | 10 ++++++++++ report-generators/lib/schedule_file.rb | 10 ++++++++++ report-generators/lib/string-store.rb | 10 ++++++++++ 5 files changed, 50 insertions(+) (limited to 'report-generators/lib') diff --git a/report-generators/lib/log.rb b/report-generators/lib/log.rb index c98b1839..c71d8771 100644 --- a/report-generators/lib/log.rb +++ b/report-generators/lib/log.rb @@ -1,3 +1,13 @@ +# Copyright (C) 2010 Red Hat, Inc. All rights reserved. +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions +# of the GNU General Public License v.2. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # Merely wraps the logger library with a bit of standard policy. require 'logger' diff --git a/report-generators/lib/report_templates.rb b/report-generators/lib/report_templates.rb index 83e3acbf..4c0bc78f 100644 --- a/report-generators/lib/report_templates.rb +++ b/report-generators/lib/report_templates.rb @@ -1,3 +1,13 @@ +# Copyright (C) 2010 Red Hat, Inc. All rights reserved. +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions +# of the GNU General Public License v.2. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # Policy for the location of report templates require 'string-store' diff --git a/report-generators/lib/reports.rb b/report-generators/lib/reports.rb index 57333324..c61bb206 100644 --- a/report-generators/lib/reports.rb +++ b/report-generators/lib/reports.rb @@ -1,3 +1,13 @@ +# Copyright (C) 2010 Red Hat, Inc. All rights reserved. +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions +# of the GNU General Public License v.2. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # Data about the various reports we support require 'log' require 'pathname' diff --git a/report-generators/lib/schedule_file.rb b/report-generators/lib/schedule_file.rb index 1e164f45..6a339bcb 100644 --- a/report-generators/lib/schedule_file.rb +++ b/report-generators/lib/schedule_file.rb @@ -1,3 +1,13 @@ +# Copyright (C) 2010 Red Hat, Inc. All rights reserved. +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions +# of the GNU General Public License v.2. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # Parses the simple colon delimited test schedule files. ScheduledTest = Struct.new(:desc, :command_line, :status, :output) diff --git a/report-generators/lib/string-store.rb b/report-generators/lib/string-store.rb index 36d819a9..b3b8cc95 100644 --- a/report-generators/lib/string-store.rb +++ b/report-generators/lib/string-store.rb @@ -1,3 +1,13 @@ +# Copyright (C) 2010 Red Hat, Inc. All rights reserved. +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions +# of the GNU General Public License v.2. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + # Provides a simple way of accessing the contents of files by a symbol # name. Useful for erb templates. -- cgit