Happy new year!
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 5 Jan 2009 02:07:24 +0000 (18:07 -0800)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 5 Jan 2009 02:07:24 +0000 (18:07 -0800)
36 files changed:
Api.php
App.php
Date.php
Db.php
DbMySql.php
DbMySqlI.php
DbPostgreSql.php
Decorator.css.php
Decorator.js
ExceptionHandler.php
Functions.php
Input.php
Installer.php
Mail.php
Pagination.php
Printer.php
PrinterAbstract.php
PrinterElement.php
PrinterElementLabel.php
PrinterElementTable.php
PrinterNavigation.php
PrinterRootAbstract.php
PrinterRootForm.php
PrinterRootPage.php
PrinterRootTable.php
Template.php
UnitTest/ApiTest.php
UnitTest/AppTest.php
UnitTest/DateTest.php
UnitTest/FunctionsTest.php
UnitTest/InputTest.php
UnitTest/tests.config.php.new
docs/makepo.sh.php
docs/tools/function_finder.php
printer.css.php
version.php

diff --git a/Api.php b/Api.php
index 2636d405413fbb551a4b94cbfcee3bb921cdd6a6..aa6d6ca79b91b5482c13fc60485e44e66b611da6 100644 (file)
--- a/Api.php
+++ b/Api.php
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -72,7 +72,7 @@ if (!defined('REQ_AUTO'))
  * 4. try { $o->insert(); <other actions that depend on the saved record> } catch (ApiException $e) {}
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
@@ -558,7 +558,7 @@ abstract class BSApi
  * of exceptions that can be thrown as one
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
@@ -606,7 +606,7 @@ class ApiException extends Exception
  * This exception represents a problem with an API field
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
diff --git a/App.php b/App.php
index 5e0fce70184614e821ea09d8948825754353a701..98b04bdb0c50508403044306dba2e16a12d1e53b 100644 (file)
--- a/App.php
+++ b/App.php
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -63,7 +63,7 @@ set_exception_handler(array('BSExceptionHandler', 'handle'));
  * at any given time.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index 76e26965805e6a3f3c46b204347fd8fb1e54e944..6f8ae9862dce0febdad101016cc3da5a3278d65f 100644 (file)
--- a/Date.php
+++ b/Date.php
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -38,7 +38,7 @@ define('TIMENOW', time());
  * time zone
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
diff --git a/Db.php b/Db.php
index 27d1fb25a9d3ff8c59c3317cbf867f9b384a4571..169893d0d88f8a7b885d7635a638583c8d80ed4f 100644 (file)
--- a/Db.php
+++ b/Db.php
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -38,7 +38,7 @@ require_once(ISSO . '/Functions.php');
  *             ISSO_SHOW_QUERIES_LIVE - Show queries in page output as they are sent
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
@@ -342,7 +342,7 @@ abstract class BSDb
  * This class holds result information for a database result
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
@@ -541,7 +541,7 @@ abstract class BSDbResult implements Iterator
  * Exception handler class for the database classes
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 13d693eef4524768f8f2ec3ce31f5cef77a3fe9c..8995eecc70a5160177643aac6f7a3bf426493f24 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/Db.php');
  * better error reporting and query reporting.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
@@ -174,7 +174,7 @@ class BSDbMySql extends BSDb
  * This class holds result information for a database result
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 3c5015f69426d291baa2ed7a4fb692704661a22f..008a10252d554abb74633293e2f9c73997891db0 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/Db.php');
  * better error reporting and query reporting.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
@@ -147,7 +147,7 @@ class BSDbMySqlI extends BSDb
  * This class holds result information for a database result
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 2d707a4bae17dff9fd32dc41caa16467511d15c3..59929a88c53b3ebcca440ef052ef081d417c74bd 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/Db.php');
  * better error reporting and query reporting.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
@@ -163,7 +163,7 @@ class BSDbPostgreSql extends BSDb
  * This class holds result information for a database result
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 42f4c0cdcfc6d3430e8b0846db916690e46c27fc..d126f3f38c82f35cf3082d7d3198258d7c57e5ad 100644 (file)
@@ -7,7 +7,7 @@ header("Content-Type: text/css");
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
index f2f38f6dcfafef90efd95a27089b286196eacc74..9fb86cb74e5319af30e29164e2cb44ce357a929a 100644 (file)
@@ -1,7 +1,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
index bff28124127055b1d0190248ac23597f316c6d42..d101e6a497db05820097e222d65d53352259e54d 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -31,7 +31,7 @@
  * This class will handle all exceptions that are uncaught in an application
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index c93b35fc47fb01f3a3cf14444affafda1b615617..91a8eeec6906f4bd2937461abaa1d3076eee4f47 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -32,7 +32,7 @@
  * can store data while remaining static.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index 08873f924a4a040ad46b565895bb86ac72b9c0c8..8a53ef2c20af0f4a7229dcc170cb05409c3a65bb 100644 (file)
--- a/Input.php
+++ b/Input.php
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Iris Studios, Inc.
+|| # Copyright (c)2005-2009 Iris Studios, Inc.
 || #
 || # 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
@@ -75,7 +75,7 @@ define('TYPE_BIN', 128);
  * This class is responsible for cleaning input.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index 8835afa394505781872c4bb7eab10a369a341ab7..24348af9a94bcb5bc75027405d03385233f7deac 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -33,7 +33,7 @@
  * in numerical order.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 8e6a64627279901227c9d9cae6d2fcff7faacaf1..aceb47437561f0d01682b8a2fba878a7a6b82c83 100644 (file)
--- a/Mail.php
+++ b/Mail.php
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/Functions.php');
  * sends mail with full email headers.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index 87bb0bae1ebb211237e68f38fa55ac166ce1b267..e66af2370cd0b8caa1f841a0abf6262970185b85 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@
  * then create a page navigator and manage the SQL LIMIT statements.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index 5bd67649cd87d74c9099bade00c96326e3599876..fa36349a06c8c68a33c892ae0432d111d65801bd 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -43,7 +43,7 @@ require_once(ISSO . '/PrinterNavigation.php');
  * information and use the other classes to generate the code.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index d06e6eb6de3cfc251e9cd9adeed0ad3c07f1880a..be53b269eeae79fd6fbc0711e1931d606b3eeb2c 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -32,7 +32,7 @@
  * the basic functionality of an element.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 977984b0d2b038dc76c11fe0e7f96c66e8d5f198..21590c6db2b1df13cd808b7e114a2858200894b1 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -35,7 +35,7 @@ require_once(ISSO . '/PrinterAbstract.php');
  * and are only attached to a parent.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index ccaa4edaa23b8359a25828ff13a540032c939b29..673ab806c5f0c1d60a4a9e8373e8d4971b5cd5b6 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/PrinterAbstract.php');
  * standard printer
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 2fe58b0d5739ed2744848f66bc85c5a488b5cc25..7243426c749f1baab388cb9fda41bbada6fd330a 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/PrinterElement.php');
  * This represents a table row that holds elements.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 2de0cce5f688cdf5fe7bc1d315ebc77811192523..b41175a36a7df849a73ef3beb7eb2c6be166ce69 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@
  * tabs (top of the page), groups (blocks of link actions), and links
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index ab6ca2a01498d8290282e8cab0e39351acaea6da..d4708717fd847eddc8d171185c999ae180541ee3 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -35,7 +35,7 @@ require_once(ISSO . '/PrinterAbstract.php');
  * does not mean that all root elements produce valid XHTML.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index b347283360547b49678519c329f2f13f1607abc0..4d037354b3dcc2d1cd601ab5e38f74034e20f2fe 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/PrinterRootAbstract.php');
  * then it will be painted as a child, otherwise it will act as a root.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index b76b54a365449f72de3afd5f46fb14011dd959df..6a46bcfec3a6a3b8380d3b83b937bbf006f0fa8a 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/PrinterRootAbstract.php');
  * printer applications
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 108f58bee4955da5659793d2bbe4d8ae2bc5ba80..3ce85149fd1ab731a157dfae17e7fb2358dbd2ee 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -34,7 +34,7 @@ require_once(ISSO . '/PrinterRootAbstract.php');
  * then it will be painted as a child, otherwise it will act as a root.
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  *
  */
index 1d90c7246a26d857ee61e73585ae2ec3e816fae5..ab0a2944b4932578bcecfd6f5402a71b198a98db 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -39,7 +39,7 @@ require_once(ISSO . '/Functions.php');
  * CREATE TABLE template (filename VARCHAR (250) NOT NULL, template TEXT NOT NULL, timestamp INT NOT NULL);
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO
  * 
  */
index 034ca1108fac55a1e68d423dce57c7b506b9b9a2..7b0737505430ebc37c2db7ea6db4e00cfe60d3cc 100644 (file)
@@ -8,7 +8,7 @@ require_once ISSO . '/DbMySql.php';
  * ApiTest
  *
  * @author             rsesek
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO Tests
  *
  */
index 7ebb49ab84c52bdb258d27e0229e85b48acbe618..2924f2f55e2a9c69ab8d4bb29b811d0dfbae2290 100644 (file)
@@ -7,7 +7,7 @@ require_once 'PHPUnit/Framework.php';
  * Application Test Suite
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO Tests
  * 
  */
index 282dd347b34fd782ffe7227ca45f0be56be490ea..e2e6fb9143b246612d2d5fec8ea9047f6bd1eea1 100644 (file)
@@ -6,7 +6,7 @@ require_once 'PHPUnit/Framework.php';
  * DateTest
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO Tests
  *
  */
index 55f9d8f431594eda18c542428d1778e993b8f9e1..5a96c4ba738eb9c8bda3bd2b9f2afc1e1266a66e 100644 (file)
@@ -6,7 +6,7 @@ require_once 'PHPUnit/Framework.php';
  * Functions Test Suite
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO Tests
  * 
  */
index 8079041e871fce522a5eadbd3ef7de9452c049f7..34452f320f866e621634af2f5b87b605c1a17a41 100644 (file)
@@ -6,7 +6,7 @@ require_once 'PHPUnit/Framework.php';
  * InputTest
  *
  * @author             Blue Static
- * @copyright  Copyright (c)2005 - 2008, Blue Static
+ * @copyright  Copyright (c)2005 - 2009, Blue Static
  * @package            ISSO Tests
  *
  */
index df3b66ed317edc0c460f8550bdb51b22473f22cc..475215a6eb9dfe3c4a2a06ecfd1584ff70c74b02 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
index 30fe8e79b229bdc926f76b04ba324ee2c8656b6a..fce49115156b7541c9f81078111a80fd68ff5d96 100755 (executable)
@@ -3,7 +3,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # xgettext For ISSO PHP and Template Files
-|| # Copyright (c)2005-2008 Iris Studios, Inc.
+|| # Copyright (c)2005-2009 Iris Studios, Inc.
 || #
 || # 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
index 4378e271f17254cd276ab41e522425094a874a4e..5e6f347a573d1a747de79a289705d767dadf2bea 100755 (executable)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
index 2c7ec95e295578317d6cd7c5e991ac4f1908383b..d98db28ce68429979fdc112194b8bad3d97140dd 100755 (executable)
@@ -2,7 +2,7 @@
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
@@ -28,7 +28,7 @@ $css = <<<CSS
 /*=====================================================================*\
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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
index e6fb40f97c5c81dc2a5682e07bc51c1e2ea02d22..816413bc9f976e0dc090b9888defd6d2b56911b5 100644 (file)
@@ -2,7 +2,7 @@
 /*=====================================================================*
 || ###################################################################
 || # Blue Static ISSO Framework
-|| # Copyright (c)2005-2008 Blue Static
+|| # Copyright (c)2005-2009 Blue Static
 || #
 || # 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