summaryrefslogtreecommitdiffstats
path: root/pts-core/objects
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-06-22 18:15:54 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-06-22 18:15:54 -0400
commitb5841b59b9a2dab554272a0475413b4a745ec978 (patch)
tree4c8848e22698375975f98ef911431ba2a7396203 /pts-core/objects
parent2148a7204af4d0d5e0e0a19bb2b3a1d1ac9af3a8 (diff)
downloadphoronix-test-suite-upstream-b5841b59b9a2dab554272a0475413b4a745ec978.tar.gz
phoronix-test-suite-upstream-b5841b59b9a2dab554272a0475413b4a745ec978.tar.xz
phoronix-test-suite-upstream-b5841b59b9a2dab554272a0475413b4a745ec978.zip
Add GPLv3 header to some source files missing the license
Diffstat (limited to 'pts-core/objects')
-rw-r--r--pts-core/objects/pts_BarGraph.php13
-rw-r--r--pts-core/objects/pts_CustomGraph.php13
-rw-r--r--pts-core/objects/pts_Graph.php26
-rw-r--r--pts-core/objects/pts_LineGraph.php13
-rw-r--r--pts-core/objects/pts_MultiPassFailGraph.php13
-rw-r--r--pts-core/objects/pts_PassFailGraph.php13
-rw-r--r--pts-core/objects/pts_module_interface.php13
-rw-r--r--pts-core/objects/tandem_XmlReader.php13
-rw-r--r--pts-core/objects/tandem_XmlWriter.php13
9 files changed, 116 insertions, 14 deletions
diff --git a/pts-core/objects/pts_BarGraph.php b/pts-core/objects/pts_BarGraph.php
index cf1e84b..d5e3f3c 100644
--- a/pts-core/objects/pts_BarGraph.php
+++ b/pts-core/objects/pts_BarGraph.php
@@ -6,6 +6,19 @@
Copyright (C) 2008, Phoronix Media
Copyright (C) 2008, Michael Larabel
pts_BarGraph.php: The bar graph object that extends pts_Graph.php.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class pts_BarGraph extends pts_CustomGraph
diff --git a/pts-core/objects/pts_CustomGraph.php b/pts-core/objects/pts_CustomGraph.php
index 1fef77a..711c358 100644
--- a/pts-core/objects/pts_CustomGraph.php
+++ b/pts-core/objects/pts_CustomGraph.php
@@ -6,6 +6,19 @@
Copyright (C) 2008, Phoronix Media
Copyright (C) 2008, Michael Larabel
pts_CustomGraph.php: A pass-through extension extending pts_Graph that over-rides attributes with the PTS user configuration options.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class pts_CustomGraph extends pts_Graph
diff --git a/pts-core/objects/pts_Graph.php b/pts-core/objects/pts_Graph.php
index 4d852a7..a9cdcbc 100644
--- a/pts-core/objects/pts_Graph.php
+++ b/pts-core/objects/pts_Graph.php
@@ -6,21 +6,19 @@
Copyright (C) 2008, Phoronix Media
Copyright (C) 2008, Michael Larabel
pts_Graph.php: The core graph object that is used by the different graphing objects.
-*/
-/*
- 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 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class pts_Graph
diff --git a/pts-core/objects/pts_LineGraph.php b/pts-core/objects/pts_LineGraph.php
index 6cd1d40..fce72d2 100644
--- a/pts-core/objects/pts_LineGraph.php
+++ b/pts-core/objects/pts_LineGraph.php
@@ -6,6 +6,19 @@
Copyright (C) 2008, Phoronix Media
Copyright (C) 2008, Michael Larabel
pts_LineGraph.php: The line graph object that extends pts_Graph.php.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class pts_LineGraph extends pts_CustomGraph
diff --git a/pts-core/objects/pts_MultiPassFailGraph.php b/pts-core/objects/pts_MultiPassFailGraph.php
index 1abd340..d7efc84 100644
--- a/pts-core/objects/pts_MultiPassFailGraph.php
+++ b/pts-core/objects/pts_MultiPassFailGraph.php
@@ -6,6 +6,19 @@
Copyright (C) 2008, Phoronix Media
Copyright (C) 2008, Michael Larabel
pts_PassFailGraph.php: An abstract graph object extending pts_Graph for showing results in a pass/fail scenario.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class pts_MultiPassFailGraph extends pts_CustomGraph
diff --git a/pts-core/objects/pts_PassFailGraph.php b/pts-core/objects/pts_PassFailGraph.php
index 8528dbb..ce9665c 100644
--- a/pts-core/objects/pts_PassFailGraph.php
+++ b/pts-core/objects/pts_PassFailGraph.php
@@ -6,6 +6,19 @@
Copyright (C) 2008, Phoronix Media
Copyright (C) 2008, Michael Larabel
pts_PassFailGraph.php: An abstract graph object extending pts_Graph for showing results in a pass/fail scenario.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class pts_PassFailGraph extends pts_CustomGraph
diff --git a/pts-core/objects/pts_module_interface.php b/pts-core/objects/pts_module_interface.php
index 56cba1d..1538e2d 100644
--- a/pts-core/objects/pts_module_interface.php
+++ b/pts-core/objects/pts_module_interface.php
@@ -6,6 +6,19 @@
Copyright (C) 2008, Phoronix Media
Copyright (C) 2004-2008, Michael Larabel
pts_module_interface.php: The generic Phoronix Test Suite module object that is extended by the specific modules/plug-ins
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class pts_module_interface
diff --git a/pts-core/objects/tandem_XmlReader.php b/pts-core/objects/tandem_XmlReader.php
index 34ecc27..ac56139 100644
--- a/pts-core/objects/tandem_XmlReader.php
+++ b/pts-core/objects/tandem_XmlReader.php
@@ -9,6 +9,19 @@
Additional Notes: A very simple XML parser with a few extras... Does not currently support attributes on tags, etc.
A work in progress. This was originally designed for just some select needs in the past. No XML validation is done with this parser, etc.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class tandem_XmlReader
diff --git a/pts-core/objects/tandem_XmlWriter.php b/pts-core/objects/tandem_XmlWriter.php
index 474f528..f334202 100644
--- a/pts-core/objects/tandem_XmlWriter.php
+++ b/pts-core/objects/tandem_XmlWriter.php
@@ -10,6 +10,19 @@
Additional Notes: A very simple XML writer with a few extras... Does not support attributes on tags, etc.
A work in progress. This was originally designed for just some select needs in the past. It does support linking to an XSL as
well as whether to format the XML or not, etc. Also provides a MD5 checksum of the XML body.
+
+ 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 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class tandem_XmlWriter