summaryrefslogtreecommitdiffstats
path: root/report-generators/lib
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2010-07-28 12:20:38 +0000
committerAlasdair Kergon <agk@redhat.com>2010-07-28 12:20:38 +0000
commit64f95b40ca93a053f088114624e32d83570c720f (patch)
tree9ba447565804e9298875fcaffc27c1a91c58b76b /report-generators/lib
parentcdb675c02bf4c7456e7f5ddc5c820774a3fc5905 (diff)
downloadlvm2-64f95b40ca93a053f088114624e32d83570c720f.tar.gz
lvm2-64f95b40ca93a053f088114624e32d83570c720f.tar.xz
lvm2-64f95b40ca93a053f088114624e32d83570c720f.zip
add copyright notices to new files
Diffstat (limited to 'report-generators/lib')
-rw-r--r--report-generators/lib/log.rb10
-rw-r--r--report-generators/lib/report_templates.rb10
-rw-r--r--report-generators/lib/reports.rb10
-rw-r--r--report-generators/lib/schedule_file.rb10
-rw-r--r--report-generators/lib/string-store.rb10
5 files changed, 50 insertions, 0 deletions
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.