diff --git a/.gitattributes b/.gitattributes index 31884f8..5296e27 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -* ident +* text=auto diff --git a/dbsteward.php b/dbsteward.php index d9bf188..e92aaa5 100644 --- a/dbsteward.php +++ b/dbsteward.php @@ -2,10 +2,9 @@ /** * DBSteward - database DDL compiler and difference calculator * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: dbsteward.php 2269 2012-01-09 19:56:27Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ ini_set('memory_limit', -1); diff --git a/lib/dbsteward.php b/lib/dbsteward.php index af3da0e..bf8eda2 100644 --- a/lib/dbsteward.php +++ b/lib/dbsteward.php @@ -5,10 +5,9 @@ * full creation script generation * sql upgrade script generation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: dbsteward.php 2268 2012-01-09 19:53:59Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ error_reporting(E_ALL); diff --git a/lib/dbx.php b/lib/dbx.php index 0637512..57852d2 100644 --- a/lib/dbx.php +++ b/lib/dbx.php @@ -2,10 +2,9 @@ /** * DBSteward database XML definition seek, list, and manipulation functions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: dbx.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class dbx { diff --git a/lib/sql_format/mssql10/mssql10.php b/lib/sql_format/mssql10/mssql10.php index 12d26fb..8ed63df 100644 --- a/lib/sql_format/mssql10/mssql10.php +++ b/lib/sql_format/mssql10/mssql10.php @@ -2,10 +2,10 @@ /** * Microsoft SQL Server specific compiling and differencing functions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10.php 2268 2012-01-09 19:53:59Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/../sql99/sql99.php'; diff --git a/lib/sql_format/mssql10/mssql10_bit_table.php b/lib/sql_format/mssql10/mssql10_bit_table.php index 39bbfeb..90770d5 100644 --- a/lib/sql_format/mssql10/mssql10_bit_table.php +++ b/lib/sql_format/mssql10/mssql10_bit_table.php @@ -2,10 +2,10 @@ /** * Manipulate sequence nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_bit_table.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ /** diff --git a/lib/sql_format/mssql10/mssql10_column.php b/lib/sql_format/mssql10/mssql10_column.php index 68bf3f7..7ec1384 100644 --- a/lib/sql_format/mssql10/mssql10_column.php +++ b/lib/sql_format/mssql10/mssql10_column.php @@ -2,10 +2,10 @@ /** * Manipulate column definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_column.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_column extends pgsql8_column { diff --git a/lib/sql_format/mssql10/mssql10_diff.php b/lib/sql_format/mssql10/mssql10_diff.php index 741dd5a..0f90675 100644 --- a/lib/sql_format/mssql10/mssql10_diff.php +++ b/lib/sql_format/mssql10/mssql10_diff.php @@ -2,10 +2,10 @@ /** * Diff two DBSteward XML definitions, outputting SQL to get from A to B * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff.php 2274 2012-01-10 19:33:52Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/mssql10_bit_table.php'; diff --git a/lib/sql_format/mssql10/mssql10_diff_functions.php b/lib/sql_format/mssql10/mssql10_diff_functions.php index 28e75d3..19c5613 100644 --- a/lib/sql_format/mssql10/mssql10_diff_functions.php +++ b/lib/sql_format/mssql10/mssql10_diff_functions.php @@ -2,10 +2,10 @@ /** * Diffs functions. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff_functions.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_diff_functions { diff --git a/lib/sql_format/mssql10/mssql10_diff_indexes.php b/lib/sql_format/mssql10/mssql10_diff_indexes.php index bd7cc38..d70520e 100644 --- a/lib/sql_format/mssql10/mssql10_diff_indexes.php +++ b/lib/sql_format/mssql10/mssql10_diff_indexes.php @@ -2,10 +2,10 @@ /** * Diffs indexes. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff_indexes.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_diff_indexes extends pgsql8_diff_indexes { diff --git a/lib/sql_format/mssql10/mssql10_diff_sequences.php b/lib/sql_format/mssql10/mssql10_diff_sequences.php index 42caf4f..b000f03 100644 --- a/lib/sql_format/mssql10/mssql10_diff_sequences.php +++ b/lib/sql_format/mssql10/mssql10_diff_sequences.php @@ -2,10 +2,10 @@ /** * Diffs sequences. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff_sequences.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_diff_sequences { diff --git a/lib/sql_format/mssql10/mssql10_diff_tables.php b/lib/sql_format/mssql10/mssql10_diff_tables.php index 0a27f65..2d6a115 100644 --- a/lib/sql_format/mssql10/mssql10_diff_tables.php +++ b/lib/sql_format/mssql10/mssql10_diff_tables.php @@ -2,10 +2,10 @@ /** * Diffs tables. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff_tables.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_diff_tables extends pgsql8_diff_tables { diff --git a/lib/sql_format/mssql10/mssql10_diff_triggers.php b/lib/sql_format/mssql10/mssql10_diff_triggers.php index 5c5f602..246dac8 100644 --- a/lib/sql_format/mssql10/mssql10_diff_triggers.php +++ b/lib/sql_format/mssql10/mssql10_diff_triggers.php @@ -2,10 +2,10 @@ /** * Diffs triggers. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff_triggers.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_diff_triggers { diff --git a/lib/sql_format/mssql10/mssql10_diff_types.php b/lib/sql_format/mssql10/mssql10_diff_types.php index 927fbbe..52b3c89 100644 --- a/lib/sql_format/mssql10/mssql10_diff_types.php +++ b/lib/sql_format/mssql10/mssql10_diff_types.php @@ -2,10 +2,10 @@ /** * Difference type definitions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff_types.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_diff_types { diff --git a/lib/sql_format/mssql10/mssql10_diff_views.php b/lib/sql_format/mssql10/mssql10_diff_views.php index 0d2f04c..e7acd43 100644 --- a/lib/sql_format/mssql10/mssql10_diff_views.php +++ b/lib/sql_format/mssql10/mssql10_diff_views.php @@ -2,10 +2,10 @@ /** * Diffs views. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_diff_views.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_diff_views { diff --git a/lib/sql_format/mssql10/mssql10_function.php b/lib/sql_format/mssql10/mssql10_function.php index 8e9f0e1..ee72b6b 100644 --- a/lib/sql_format/mssql10/mssql10_function.php +++ b/lib/sql_format/mssql10/mssql10_function.php @@ -2,10 +2,10 @@ /** * Manipulate function definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_function.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_function extends pgsql8_function { diff --git a/lib/sql_format/mssql10/mssql10_index.php b/lib/sql_format/mssql10/mssql10_index.php index 70771f0..fb2933e 100644 --- a/lib/sql_format/mssql10/mssql10_index.php +++ b/lib/sql_format/mssql10/mssql10_index.php @@ -2,10 +2,10 @@ /** * Manipulate table index definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_index.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_index extends pgsql8_index { diff --git a/lib/sql_format/mssql10/mssql10_permission.php b/lib/sql_format/mssql10/mssql10_permission.php index e8d15c6..f5a50d2 100644 --- a/lib/sql_format/mssql10/mssql10_permission.php +++ b/lib/sql_format/mssql10/mssql10_permission.php @@ -2,10 +2,10 @@ /** * MSSQL permission node manipulation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_permission.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_permission extends pgsql8_permission { diff --git a/lib/sql_format/mssql10/mssql10_schema.php b/lib/sql_format/mssql10/mssql10_schema.php index ab8f9ad..6081610 100644 --- a/lib/sql_format/mssql10/mssql10_schema.php +++ b/lib/sql_format/mssql10/mssql10_schema.php @@ -2,10 +2,10 @@ /** * MSSQL schema node manipulation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_schema.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_schema extends sql99_schema { diff --git a/lib/sql_format/mssql10/mssql10_table.php b/lib/sql_format/mssql10/mssql10_table.php index 002d1f1..aa11985 100644 --- a/lib/sql_format/mssql10/mssql10_table.php +++ b/lib/sql_format/mssql10/mssql10_table.php @@ -2,10 +2,10 @@ /** * Manipulate table nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_table.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_table extends sql99_table { diff --git a/lib/sql_format/mssql10/mssql10_trigger.php b/lib/sql_format/mssql10/mssql10_trigger.php index fad0a4c..e069433 100644 --- a/lib/sql_format/mssql10/mssql10_trigger.php +++ b/lib/sql_format/mssql10/mssql10_trigger.php @@ -2,10 +2,10 @@ /** * Manipulate trigger nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_trigger.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_trigger extends pgsql8_trigger { diff --git a/lib/sql_format/mssql10/mssql10_type.php b/lib/sql_format/mssql10/mssql10_type.php index df83d0a..ebf2d9b 100644 --- a/lib/sql_format/mssql10/mssql10_type.php +++ b/lib/sql_format/mssql10/mssql10_type.php @@ -2,10 +2,10 @@ /** * Manipulate type node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * $Id: mssql10_type.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_type { diff --git a/lib/sql_format/mssql10/mssql10_view.php b/lib/sql_format/mssql10/mssql10_view.php index 9d4d442..713b579 100644 --- a/lib/sql_format/mssql10/mssql10_view.php +++ b/lib/sql_format/mssql10/mssql10_view.php @@ -2,10 +2,10 @@ /** * Manipulate view node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mssql10_view.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mssql10 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mssql10_view extends pgsql8_view { diff --git a/lib/sql_format/mysql4/mysql4.php b/lib/sql_format/mysql4/mysql4.php index 3f87861..e3a5162 100644 --- a/lib/sql_format/mysql4/mysql4.php +++ b/lib/sql_format/mysql4/mysql4.php @@ -2,10 +2,10 @@ /** * MySQL 4 SQL Server specific compiling and differencing functions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4.php 2268 2012-01-09 19:53:59Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/../sql99/sql99.php'; diff --git a/lib/sql_format/mysql4/mysql4_column.php b/lib/sql_format/mysql4/mysql4_column.php index 7c662bf..c925cce 100644 --- a/lib/sql_format/mysql4/mysql4_column.php +++ b/lib/sql_format/mysql4/mysql4_column.php @@ -2,10 +2,10 @@ /** * Manipulate column definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_column.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_column extends pgsql8_column { diff --git a/lib/sql_format/mysql4/mysql4_diff.php b/lib/sql_format/mysql4/mysql4_diff.php index c716824..c889da0 100644 --- a/lib/sql_format/mysql4/mysql4_diff.php +++ b/lib/sql_format/mysql4/mysql4_diff.php @@ -2,10 +2,10 @@ /** * Diff two DBSteward XML definitions, outputting SQL to get from A to B * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff.php 2274 2012-01-10 19:33:52Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/mysql4_diff_indexes.php'; diff --git a/lib/sql_format/mysql4/mysql4_diff_functions.php b/lib/sql_format/mysql4/mysql4_diff_functions.php index 1f4b1c5..7423f9b 100644 --- a/lib/sql_format/mysql4/mysql4_diff_functions.php +++ b/lib/sql_format/mysql4/mysql4_diff_functions.php @@ -2,10 +2,10 @@ /** * Diffs functions. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff_functions.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_diff_functions { diff --git a/lib/sql_format/mysql4/mysql4_diff_indexes.php b/lib/sql_format/mysql4/mysql4_diff_indexes.php index 0e50e7b..798ffee 100644 --- a/lib/sql_format/mysql4/mysql4_diff_indexes.php +++ b/lib/sql_format/mysql4/mysql4_diff_indexes.php @@ -2,10 +2,10 @@ /** * Diffs indexes. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff_indexes.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_diff_indexes extends pgsql8_diff_indexes { diff --git a/lib/sql_format/mysql4/mysql4_diff_sequences.php b/lib/sql_format/mysql4/mysql4_diff_sequences.php index c3ff008..226d70d 100644 --- a/lib/sql_format/mysql4/mysql4_diff_sequences.php +++ b/lib/sql_format/mysql4/mysql4_diff_sequences.php @@ -2,10 +2,10 @@ /** * Diffs sequences. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff_sequences.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_diff_sequences { diff --git a/lib/sql_format/mysql4/mysql4_diff_tables.php b/lib/sql_format/mysql4/mysql4_diff_tables.php index 7ce9afd..1edec99 100644 --- a/lib/sql_format/mysql4/mysql4_diff_tables.php +++ b/lib/sql_format/mysql4/mysql4_diff_tables.php @@ -2,10 +2,10 @@ /** * Diffs tables. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff_tables.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_diff_tables extends pgsql8_diff_tables { diff --git a/lib/sql_format/mysql4/mysql4_diff_triggers.php b/lib/sql_format/mysql4/mysql4_diff_triggers.php index 620ddd8..3b5f5ff 100644 --- a/lib/sql_format/mysql4/mysql4_diff_triggers.php +++ b/lib/sql_format/mysql4/mysql4_diff_triggers.php @@ -2,10 +2,10 @@ /** * Diffs triggers. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff_triggers.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_diff_triggers { diff --git a/lib/sql_format/mysql4/mysql4_diff_types.php b/lib/sql_format/mysql4/mysql4_diff_types.php index e46d014..59c329e 100644 --- a/lib/sql_format/mysql4/mysql4_diff_types.php +++ b/lib/sql_format/mysql4/mysql4_diff_types.php @@ -2,10 +2,10 @@ /** * Difference type definitions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff_types.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_diff_types { diff --git a/lib/sql_format/mysql4/mysql4_diff_views.php b/lib/sql_format/mysql4/mysql4_diff_views.php index 8b30156..74dac81 100644 --- a/lib/sql_format/mysql4/mysql4_diff_views.php +++ b/lib/sql_format/mysql4/mysql4_diff_views.php @@ -2,10 +2,10 @@ /** * Diffs views. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_diff_views.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_diff_views { diff --git a/lib/sql_format/mysql4/mysql4_function.php b/lib/sql_format/mysql4/mysql4_function.php index 8fbdff4..af900bc 100644 --- a/lib/sql_format/mysql4/mysql4_function.php +++ b/lib/sql_format/mysql4/mysql4_function.php @@ -2,10 +2,10 @@ /** * Manipulate function definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_function.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_function extends pgsql8_function { diff --git a/lib/sql_format/mysql4/mysql4_index.php b/lib/sql_format/mysql4/mysql4_index.php index c79f167..3914bb7 100644 --- a/lib/sql_format/mysql4/mysql4_index.php +++ b/lib/sql_format/mysql4/mysql4_index.php @@ -2,10 +2,10 @@ /** * Manipulate table index definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_index.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_index extends pgsql8_index { diff --git a/lib/sql_format/mysql4/mysql4_permission.php b/lib/sql_format/mysql4/mysql4_permission.php index 3cb3ca1..f6a5b1d 100644 --- a/lib/sql_format/mysql4/mysql4_permission.php +++ b/lib/sql_format/mysql4/mysql4_permission.php @@ -2,10 +2,10 @@ /** * MSSQL permission node manipulation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_permission.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_permission extends pgsql8_permission { diff --git a/lib/sql_format/mysql4/mysql4_schema.php b/lib/sql_format/mysql4/mysql4_schema.php index 6f96169..ca46baa 100644 --- a/lib/sql_format/mysql4/mysql4_schema.php +++ b/lib/sql_format/mysql4/mysql4_schema.php @@ -2,10 +2,10 @@ /** * schema node manipulation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_schema.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_schema extends sql99_schema { diff --git a/lib/sql_format/mysql4/mysql4_sequence.php b/lib/sql_format/mysql4/mysql4_sequence.php index bd65292..ceeba7f 100644 --- a/lib/sql_format/mysql4/mysql4_sequence.php +++ b/lib/sql_format/mysql4/mysql4_sequence.php @@ -2,10 +2,10 @@ /** * Manipulate sequence nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_sequence.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_sequence extends pgsql8_sequence { diff --git a/lib/sql_format/mysql4/mysql4_table.php b/lib/sql_format/mysql4/mysql4_table.php index e58de86..71d4aac 100644 --- a/lib/sql_format/mysql4/mysql4_table.php +++ b/lib/sql_format/mysql4/mysql4_table.php @@ -2,10 +2,10 @@ /** * Manipulate table nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_table.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_table extends sql99_table { diff --git a/lib/sql_format/mysql4/mysql4_trigger.php b/lib/sql_format/mysql4/mysql4_trigger.php index d34e29f..ff54f25 100644 --- a/lib/sql_format/mysql4/mysql4_trigger.php +++ b/lib/sql_format/mysql4/mysql4_trigger.php @@ -2,10 +2,10 @@ /** * Manipulate trigger nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_trigger.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_trigger extends pgsql8_trigger { diff --git a/lib/sql_format/mysql4/mysql4_type.php b/lib/sql_format/mysql4/mysql4_type.php index c496a9e..66d170e 100644 --- a/lib/sql_format/mysql4/mysql4_type.php +++ b/lib/sql_format/mysql4/mysql4_type.php @@ -2,10 +2,10 @@ /** * Manipulate type node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * $Id: mysql4_type.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_type { diff --git a/lib/sql_format/mysql4/mysql4_view.php b/lib/sql_format/mysql4/mysql4_view.php index 2801cc9..ca09c5c 100644 --- a/lib/sql_format/mysql4/mysql4_view.php +++ b/lib/sql_format/mysql4/mysql4_view.php @@ -2,10 +2,10 @@ /** * Manipulate view node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: mysql4_view.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage mysql4 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class mysql4_view extends pgsql8_view { diff --git a/lib/sql_format/oracle10g/oracle10g.php b/lib/sql_format/oracle10g/oracle10g.php index 71391e8..973c7e3 100644 --- a/lib/sql_format/oracle10g/oracle10g.php +++ b/lib/sql_format/oracle10g/oracle10g.php @@ -2,10 +2,10 @@ /** * Oracle 10g SQL Server specific compiling and differencing functions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g.php 2268 2012-01-09 19:53:59Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/../sql99/sql99.php'; diff --git a/lib/sql_format/oracle10g/oracle10g_column.php b/lib/sql_format/oracle10g/oracle10g_column.php index 07d3ffc..0810400 100644 --- a/lib/sql_format/oracle10g/oracle10g_column.php +++ b/lib/sql_format/oracle10g/oracle10g_column.php @@ -2,10 +2,10 @@ /** * Manipulate column definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_column.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_column extends pgsql8_column { diff --git a/lib/sql_format/oracle10g/oracle10g_diff.php b/lib/sql_format/oracle10g/oracle10g_diff.php index 94b7d80..6b7e7e6 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff.php +++ b/lib/sql_format/oracle10g/oracle10g_diff.php @@ -2,10 +2,10 @@ /** * Diff two DBSteward XML definitions, outputting SQL to get from A to B * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff.php 2274 2012-01-10 19:33:52Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/oracle10g_diff_indexes.php'; diff --git a/lib/sql_format/oracle10g/oracle10g_diff_functions.php b/lib/sql_format/oracle10g/oracle10g_diff_functions.php index a75bf62..a633848 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff_functions.php +++ b/lib/sql_format/oracle10g/oracle10g_diff_functions.php @@ -2,10 +2,10 @@ /** * Diffs functions. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff_functions.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_diff_functions { diff --git a/lib/sql_format/oracle10g/oracle10g_diff_indexes.php b/lib/sql_format/oracle10g/oracle10g_diff_indexes.php index 5c9bb27..8a05de0 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff_indexes.php +++ b/lib/sql_format/oracle10g/oracle10g_diff_indexes.php @@ -2,10 +2,10 @@ /** * Diffs indexes. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff_indexes.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_diff_indexes extends pgsql8_diff_indexes { diff --git a/lib/sql_format/oracle10g/oracle10g_diff_sequences.php b/lib/sql_format/oracle10g/oracle10g_diff_sequences.php index b408148..f2ef080 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff_sequences.php +++ b/lib/sql_format/oracle10g/oracle10g_diff_sequences.php @@ -2,10 +2,10 @@ /** * Diffs sequences. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff_sequences.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_diff_sequences { diff --git a/lib/sql_format/oracle10g/oracle10g_diff_tables.php b/lib/sql_format/oracle10g/oracle10g_diff_tables.php index e17f636..3375437 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff_tables.php +++ b/lib/sql_format/oracle10g/oracle10g_diff_tables.php @@ -2,10 +2,10 @@ /** * Diffs tables. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff_tables.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_diff_tables extends pgsql8_diff_tables { diff --git a/lib/sql_format/oracle10g/oracle10g_diff_triggers.php b/lib/sql_format/oracle10g/oracle10g_diff_triggers.php index ec7db3d..a9c9b03 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff_triggers.php +++ b/lib/sql_format/oracle10g/oracle10g_diff_triggers.php @@ -2,10 +2,10 @@ /** * Diffs triggers. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff_triggers.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_diff_triggers { diff --git a/lib/sql_format/oracle10g/oracle10g_diff_types.php b/lib/sql_format/oracle10g/oracle10g_diff_types.php index 69a1633..07234fb 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff_types.php +++ b/lib/sql_format/oracle10g/oracle10g_diff_types.php @@ -2,10 +2,10 @@ /** * Difference type definitions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff_types.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_diff_types { diff --git a/lib/sql_format/oracle10g/oracle10g_diff_views.php b/lib/sql_format/oracle10g/oracle10g_diff_views.php index 24f249a..74d1e12 100644 --- a/lib/sql_format/oracle10g/oracle10g_diff_views.php +++ b/lib/sql_format/oracle10g/oracle10g_diff_views.php @@ -2,10 +2,10 @@ /** * Diffs views. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_diff_views.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_diff_views { diff --git a/lib/sql_format/oracle10g/oracle10g_function.php b/lib/sql_format/oracle10g/oracle10g_function.php index 4d9ec1a..a534803 100644 --- a/lib/sql_format/oracle10g/oracle10g_function.php +++ b/lib/sql_format/oracle10g/oracle10g_function.php @@ -2,10 +2,10 @@ /** * Manipulate function definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_function.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_function extends pgsql8_function { diff --git a/lib/sql_format/oracle10g/oracle10g_index.php b/lib/sql_format/oracle10g/oracle10g_index.php index a121fe4..705c030 100644 --- a/lib/sql_format/oracle10g/oracle10g_index.php +++ b/lib/sql_format/oracle10g/oracle10g_index.php @@ -2,10 +2,10 @@ /** * Manipulate table index definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_index.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_index extends pgsql8_index { diff --git a/lib/sql_format/oracle10g/oracle10g_permission.php b/lib/sql_format/oracle10g/oracle10g_permission.php index dee46b3..860fd72 100644 --- a/lib/sql_format/oracle10g/oracle10g_permission.php +++ b/lib/sql_format/oracle10g/oracle10g_permission.php @@ -2,10 +2,10 @@ /** * permission node manipulation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_permission.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_permission extends pgsql8_permission { diff --git a/lib/sql_format/oracle10g/oracle10g_schema.php b/lib/sql_format/oracle10g/oracle10g_schema.php index 8688ad5..6257a7c 100644 --- a/lib/sql_format/oracle10g/oracle10g_schema.php +++ b/lib/sql_format/oracle10g/oracle10g_schema.php @@ -2,10 +2,10 @@ /** * schema node manipulation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_schema.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_schema extends sql99_schema { diff --git a/lib/sql_format/oracle10g/oracle10g_sequence.php b/lib/sql_format/oracle10g/oracle10g_sequence.php index 42792bc..15064fb 100644 --- a/lib/sql_format/oracle10g/oracle10g_sequence.php +++ b/lib/sql_format/oracle10g/oracle10g_sequence.php @@ -2,10 +2,10 @@ /** * Manipulate sequence nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_sequence.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_sequence extends pgsql8_sequence { diff --git a/lib/sql_format/oracle10g/oracle10g_table.php b/lib/sql_format/oracle10g/oracle10g_table.php index 32bb012..4cf8733 100644 --- a/lib/sql_format/oracle10g/oracle10g_table.php +++ b/lib/sql_format/oracle10g/oracle10g_table.php @@ -2,10 +2,10 @@ /** * Manipulate table nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_table.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_table extends sql99_table { diff --git a/lib/sql_format/oracle10g/oracle10g_trigger.php b/lib/sql_format/oracle10g/oracle10g_trigger.php index 1ffa2cd..e4e8cc8 100644 --- a/lib/sql_format/oracle10g/oracle10g_trigger.php +++ b/lib/sql_format/oracle10g/oracle10g_trigger.php @@ -2,10 +2,10 @@ /** * Manipulate trigger nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_trigger.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_trigger extends pgsql8_trigger { diff --git a/lib/sql_format/oracle10g/oracle10g_type.php b/lib/sql_format/oracle10g/oracle10g_type.php index 60e2eb1..cb5527e 100644 --- a/lib/sql_format/oracle10g/oracle10g_type.php +++ b/lib/sql_format/oracle10g/oracle10g_type.php @@ -2,10 +2,10 @@ /** * Manipulate type node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * $Id: oracle10g_type.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_type { diff --git a/lib/sql_format/oracle10g/oracle10g_view.php b/lib/sql_format/oracle10g/oracle10g_view.php index 507f080..1d1407a 100644 --- a/lib/sql_format/oracle10g/oracle10g_view.php +++ b/lib/sql_format/oracle10g/oracle10g_view.php @@ -2,10 +2,10 @@ /** * Manipulate view node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: oracle10g_view.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage oracle10g + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class oracle10g_view extends pgsql8_view { diff --git a/lib/sql_format/pgsql8/pgsql8.php b/lib/sql_format/pgsql8/pgsql8.php index 43876f9..7c2cd02 100644 --- a/lib/sql_format/pgsql8/pgsql8.php +++ b/lib/sql_format/pgsql8/pgsql8.php @@ -2,10 +2,10 @@ /** * PostgreSQL specific compiling and differencing functions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8.php 2275 2012-01-10 21:21:53Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/../sql99/sql99.php'; diff --git a/lib/sql_format/pgsql8/pgsql8_column.php b/lib/sql_format/pgsql8/pgsql8_column.php index 0628eec..9aa59b3 100644 --- a/lib/sql_format/pgsql8/pgsql8_column.php +++ b/lib/sql_format/pgsql8/pgsql8_column.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql column definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_column.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_column extends sql99_column { diff --git a/lib/sql_format/pgsql8/pgsql8_db.php b/lib/sql_format/pgsql8/pgsql8_db.php index 703212f..ca06360 100644 --- a/lib/sql_format/pgsql8/pgsql8_db.php +++ b/lib/sql_format/pgsql8/pgsql8_db.php @@ -2,10 +2,10 @@ /** * PHP to PostgreSQL connectivity * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_db.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_db { diff --git a/lib/sql_format/pgsql8/pgsql8_diff.php b/lib/sql_format/pgsql8/pgsql8_diff.php index f82d602..36ad5fe 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff.php +++ b/lib/sql_format/pgsql8/pgsql8_diff.php @@ -2,10 +2,10 @@ /** * Diff two DBSteward XML definitions, outputting SQL to get from A to B * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff.php 2274 2012-01-10 19:33:52Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/pgsql8_dump_loader.php'; diff --git a/lib/sql_format/pgsql8/pgsql8_diff_functions.php b/lib/sql_format/pgsql8/pgsql8_diff_functions.php index a3b708e..0c4df7f 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_functions.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_functions.php @@ -2,10 +2,10 @@ /** * Diffs functions. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_functions.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_functions { diff --git a/lib/sql_format/pgsql8/pgsql8_diff_indexes.php b/lib/sql_format/pgsql8/pgsql8_diff_indexes.php index 4ff274f..94479f4 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_indexes.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_indexes.php @@ -2,10 +2,10 @@ /** * Diffs indexes. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_indexes.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_indexes { diff --git a/lib/sql_format/pgsql8/pgsql8_diff_languages.php b/lib/sql_format/pgsql8/pgsql8_diff_languages.php index 4d46fd7..91860a0 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_languages.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_languages.php @@ -2,10 +2,10 @@ /** * Diffs create language definitions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_languages.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_languages { diff --git a/lib/sql_format/pgsql8/pgsql8_diff_sequences.php b/lib/sql_format/pgsql8/pgsql8_diff_sequences.php index ff6dbd7..41ddf57 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_sequences.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_sequences.php @@ -2,10 +2,10 @@ /** * Diffs sequences. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_sequences.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_sequences { diff --git a/lib/sql_format/pgsql8/pgsql8_diff_tables.php b/lib/sql_format/pgsql8/pgsql8_diff_tables.php index 6c2461b..05fa080 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_tables.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_tables.php @@ -2,10 +2,10 @@ /** * Diffs tables. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_tables.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_tables extends sql99_diff_tables { diff --git a/lib/sql_format/pgsql8/pgsql8_diff_triggers.php b/lib/sql_format/pgsql8/pgsql8_diff_triggers.php index 084cd3f..84bc9f7 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_triggers.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_triggers.php @@ -2,10 +2,10 @@ /** * Diffs triggers. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_triggers.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_triggers { diff --git a/lib/sql_format/pgsql8/pgsql8_diff_types.php b/lib/sql_format/pgsql8/pgsql8_diff_types.php index f67d3f8..b5a1b3c 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_types.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_types.php @@ -2,10 +2,10 @@ /** * Difference type definitions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_types.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_types { diff --git a/lib/sql_format/pgsql8/pgsql8_diff_views.php b/lib/sql_format/pgsql8/pgsql8_diff_views.php index c4396ee..8baf500 100644 --- a/lib/sql_format/pgsql8/pgsql8_diff_views.php +++ b/lib/sql_format/pgsql8/pgsql8_diff_views.php @@ -2,10 +2,10 @@ /** * Diffs views. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_diff_views.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_diff_views { diff --git a/lib/sql_format/pgsql8/pgsql8_dump_loader.php b/lib/sql_format/pgsql8/pgsql8_dump_loader.php index 37f7932..da9a8b6 100644 --- a/lib/sql_format/pgsql8/pgsql8_dump_loader.php +++ b/lib/sql_format/pgsql8/pgsql8_dump_loader.php @@ -2,10 +2,10 @@ /** * Load PostgreSQL .sql dump into dbsteward XML definition * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_dump_loader.php 2268 2012-01-09 19:53:59Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/pgsql8_parser_alter_function.php'; diff --git a/lib/sql_format/pgsql8/pgsql8_function.php b/lib/sql_format/pgsql8/pgsql8_function.php index f121e14..6fbab7d 100644 --- a/lib/sql_format/pgsql8/pgsql8_function.php +++ b/lib/sql_format/pgsql8/pgsql8_function.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_function.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_function { diff --git a/lib/sql_format/pgsql8/pgsql8_index.php b/lib/sql_format/pgsql8/pgsql8_index.php index 0dac211..1d81825 100644 --- a/lib/sql_format/pgsql8/pgsql8_index.php +++ b/lib/sql_format/pgsql8/pgsql8_index.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql table index definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_index.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_index { diff --git a/lib/sql_format/pgsql8/pgsql8_language.php b/lib/sql_format/pgsql8/pgsql8_language.php index d75a0fe..0e88f35 100644 --- a/lib/sql_format/pgsql8/pgsql8_language.php +++ b/lib/sql_format/pgsql8/pgsql8_language.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql language defeinition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * $Id: pgsql8_language.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_language { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_alter_function.php b/lib/sql_format/pgsql8/pgsql8_parser_alter_function.php index 36588f4..c480f13 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_alter_function.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_alter_function.php @@ -2,10 +2,10 @@ /** * Parses ALTER FUNCTION commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_alter_function.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_alter_function { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_alter_language.php b/lib/sql_format/pgsql8/pgsql8_parser_alter_language.php index 128c4b9..0b27c60 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_alter_language.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_alter_language.php @@ -2,10 +2,10 @@ /** * Parses ALTER LANGUAGE commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_alter_language.php$ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_alter_language { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_alter_schema.php b/lib/sql_format/pgsql8/pgsql8_parser_alter_schema.php index 4518159..93d435d 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_alter_schema.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_alter_schema.php @@ -2,10 +2,10 @@ /** * Parses ALTER SCHEMA commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_alter_schema.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_alter_schema { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_alter_sequence.php b/lib/sql_format/pgsql8/pgsql8_parser_alter_sequence.php index 43b575a..c2d8695 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_alter_sequence.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_alter_sequence.php @@ -2,10 +2,10 @@ /** * Parses ALTER SEQUENCE commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_alter_sequence.php$ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_alter_sequence { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_alter_table.php b/lib/sql_format/pgsql8/pgsql8_parser_alter_table.php index 4fdcc5b..c936740 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_alter_table.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_alter_table.php @@ -2,10 +2,10 @@ /** * Parses ALTER TABLE commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_alter_table.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_alter_table { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_alter_view.php b/lib/sql_format/pgsql8/pgsql8_parser_alter_view.php index 2aaf6e8..005306f 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_alter_view.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_alter_view.php @@ -2,10 +2,10 @@ /** * Parses ALTER VIEW commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_alter_view.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_alter_view { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_config_parameter.php b/lib/sql_format/pgsql8/pgsql8_parser_config_parameter.php index ca864f4..c43eb3f 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_config_parameter.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_config_parameter.php @@ -2,10 +2,10 @@ /** * Parses dbsteward.db_config_parameter() statements * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_grant_revoke.php$ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_config_parameter { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_function.php b/lib/sql_format/pgsql8/pgsql8_parser_create_function.php index 1e48fbe..3b40dcd 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_function.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_function.php @@ -2,10 +2,10 @@ /** * Parses CREATE FUNCTION and CREATE OR REPLACE FUNCTION commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_function.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_function { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_index.php b/lib/sql_format/pgsql8/pgsql8_parser_create_index.php index a2e0968..167e580 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_index.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_index.php @@ -2,10 +2,10 @@ /** * Parses CREATE INDEX commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_index.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_index { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_language.php b/lib/sql_format/pgsql8/pgsql8_parser_create_language.php index 6ab5291..438a34c 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_language.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_language.php @@ -2,10 +2,10 @@ /** * Parses CREATE LANGUAGE commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * $Id: pgsql8_parser_create_language.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_language { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_schema.php b/lib/sql_format/pgsql8/pgsql8_parser_create_schema.php index 19b1a36..b110089 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_schema.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_schema.php @@ -2,10 +2,10 @@ /** * Parses CREATE SCHEMA commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_schema.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_schema { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_sequence.php b/lib/sql_format/pgsql8/pgsql8_parser_create_sequence.php index 3e4f1fb..dcd4be3 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_sequence.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_sequence.php @@ -2,10 +2,10 @@ /** * Parses CREATE SEQUENCE commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_sequence.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_sequence { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_table.php b/lib/sql_format/pgsql8/pgsql8_parser_create_table.php index 621192b..c4c5992 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_table.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_table.php @@ -2,10 +2,10 @@ /** * Parses CREATE TABLE commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_table.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_table { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_trigger.php b/lib/sql_format/pgsql8/pgsql8_parser_create_trigger.php index c836a6b..447d5f4 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_trigger.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_trigger.php @@ -2,10 +2,10 @@ /** * Parses CREATE TRIGGER commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_trigger.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_trigger { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_type.php b/lib/sql_format/pgsql8/pgsql8_parser_create_type.php index d6e9724..624aee4 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_type.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_type.php @@ -2,10 +2,10 @@ /** * Parses CREATE TYPE commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_type.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_type { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_create_view.php b/lib/sql_format/pgsql8/pgsql8_parser_create_view.php index 0f39404..1d9b34f 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_create_view.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_create_view.php @@ -2,10 +2,10 @@ /** * Parses CREATE VIEW commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_create_view.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_create_view { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_delete_from.php b/lib/sql_format/pgsql8/pgsql8_parser_delete_from.php index 597d0f4..142f14e 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_delete_from.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_delete_from.php @@ -2,10 +2,10 @@ /** * Parses DELETE FROM commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_delete_from.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_delete_from { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_grant_revoke.php b/lib/sql_format/pgsql8/pgsql8_parser_grant_revoke.php index 195cb8a..6a69bd1 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_grant_revoke.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_grant_revoke.php @@ -2,10 +2,10 @@ /** * Parses GRANT and REVOKE commands * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_grant_revoke.php$ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_grant_revoke { diff --git a/lib/sql_format/pgsql8/pgsql8_parser_insert_into.php b/lib/sql_format/pgsql8/pgsql8_parser_insert_into.php index b8f1f05..0322bf6 100644 --- a/lib/sql_format/pgsql8/pgsql8_parser_insert_into.php +++ b/lib/sql_format/pgsql8/pgsql8_parser_insert_into.php @@ -2,10 +2,10 @@ /** * Parses INSERT INTO commands. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_parser_insert_into.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_parser_insert_into { diff --git a/lib/sql_format/pgsql8/pgsql8_permission.php b/lib/sql_format/pgsql8/pgsql8_permission.php index 13e0e22..9b3a91a 100644 --- a/lib/sql_format/pgsql8/pgsql8_permission.php +++ b/lib/sql_format/pgsql8/pgsql8_permission.php @@ -2,10 +2,10 @@ /** * postgresql permission node manipulation * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_permission.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_permission { diff --git a/lib/sql_format/pgsql8/pgsql8_schema.php b/lib/sql_format/pgsql8/pgsql8_schema.php index 28126b4..2087723 100644 --- a/lib/sql_format/pgsql8/pgsql8_schema.php +++ b/lib/sql_format/pgsql8/pgsql8_schema.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql schema nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_schema.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_schema extends sql99_schema { diff --git a/lib/sql_format/pgsql8/pgsql8_sequence.php b/lib/sql_format/pgsql8/pgsql8_sequence.php index 02f7c3d..9c2f56b 100644 --- a/lib/sql_format/pgsql8/pgsql8_sequence.php +++ b/lib/sql_format/pgsql8/pgsql8_sequence.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql sequence nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_sequence.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_sequence { diff --git a/lib/sql_format/pgsql8/pgsql8_table.php b/lib/sql_format/pgsql8/pgsql8_table.php index 9ecc5af..22da420 100644 --- a/lib/sql_format/pgsql8/pgsql8_table.php +++ b/lib/sql_format/pgsql8/pgsql8_table.php @@ -2,10 +2,10 @@ /** * Manipulate table nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_table.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_table extends sql99_table { diff --git a/lib/sql_format/pgsql8/pgsql8_trigger.php b/lib/sql_format/pgsql8/pgsql8_trigger.php index 72840e7..3af70f0 100644 --- a/lib/sql_format/pgsql8/pgsql8_trigger.php +++ b/lib/sql_format/pgsql8/pgsql8_trigger.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql trigger nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_trigger.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_trigger { diff --git a/lib/sql_format/pgsql8/pgsql8_type.php b/lib/sql_format/pgsql8/pgsql8_type.php index fe63874..211259d 100644 --- a/lib/sql_format/pgsql8/pgsql8_type.php +++ b/lib/sql_format/pgsql8/pgsql8_type.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql type node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * $Id: pgsql8_type.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_type { diff --git a/lib/sql_format/pgsql8/pgsql8_view.php b/lib/sql_format/pgsql8/pgsql8_view.php index 806eb61..2b1461f 100644 --- a/lib/sql_format/pgsql8/pgsql8_view.php +++ b/lib/sql_format/pgsql8/pgsql8_view.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql view node * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: pgsql8_view.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class pgsql8_view { diff --git a/lib/sql_format/pgsql8/slony1_slonik.php b/lib/sql_format/pgsql8/slony1_slonik.php index 99d8b7a..fd7e883 100644 --- a/lib/sql_format/pgsql8/slony1_slonik.php +++ b/lib/sql_format/pgsql8/slony1_slonik.php @@ -2,10 +2,10 @@ /** * slonik script file parser * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: slony1_slonik.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage pgsql8 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class slony1_slonik { diff --git a/lib/sql_format/sql99/sql99.php b/lib/sql_format/sql99/sql99.php index 4da7983..6d18d07 100644 --- a/lib/sql_format/sql99/sql99.php +++ b/lib/sql_format/sql99/sql99.php @@ -2,10 +2,10 @@ /** * SQL99 spec compiling and differencing functions * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: sql99.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage sql99 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/sql99_column.php'; diff --git a/lib/sql_format/sql99/sql99_column.php b/lib/sql_format/sql99/sql99_column.php index fc50661..f1403f5 100644 --- a/lib/sql_format/sql99/sql99_column.php +++ b/lib/sql_format/sql99/sql99_column.php @@ -2,10 +2,10 @@ /** * Manipulate postgresql column definition nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: sql99_column.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage sql99 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class sql99_column { diff --git a/lib/sql_format/sql99/sql99_diff.php b/lib/sql_format/sql99/sql99_diff.php index 8981af5..2aab005 100644 --- a/lib/sql_format/sql99/sql99_diff.php +++ b/lib/sql_format/sql99/sql99_diff.php @@ -2,10 +2,10 @@ /** * Diff two DBSteward XML definitions, outputting SQL to get from A to B * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: sql99_diff.php 2268 2012-01-09 19:53:59Z nkiraly $ + * @subpackage sql99 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/sql99_diff_tables.php'; diff --git a/lib/sql_format/sql99/sql99_diff_tables.php b/lib/sql_format/sql99/sql99_diff_tables.php index 2383259..7cf03c2 100644 --- a/lib/sql_format/sql99/sql99_diff_tables.php +++ b/lib/sql_format/sql99/sql99_diff_tables.php @@ -2,10 +2,10 @@ /** * Diffs tables. * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: sql99_diff_tables.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @subpackage sql99 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class sql99_diff_tables { diff --git a/lib/sql_format/sql99/sql99_schema.php b/lib/sql_format/sql99/sql99_schema.php index 82f86d8..6aba46a 100644 --- a/lib/sql_format/sql99/sql99_schema.php +++ b/lib/sql_format/sql99/sql99_schema.php @@ -2,10 +2,10 @@ /** * Manipulate schema nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: sql99_schema.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage sql99 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class sql99_schema { diff --git a/lib/sql_format/sql99/sql99_table.php b/lib/sql_format/sql99/sql99_table.php index d530aca..2e7ab52 100644 --- a/lib/sql_format/sql99/sql99_table.php +++ b/lib/sql_format/sql99/sql99_table.php @@ -2,10 +2,10 @@ /** * Manipulate table nodes * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: sql99_table.php 2267 2012-01-09 19:50:46Z nkiraly $ + * @subpackage sql99 + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class sql99_table { diff --git a/lib/sql_parser.php b/lib/sql_parser.php index e48f9ea..de110a6 100644 --- a/lib/sql_parser.php +++ b/lib/sql_parser.php @@ -2,10 +2,9 @@ /** * SQL statement parsing utilities * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: sql_parser.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class sql_parser { diff --git a/lib/xml_parser.php b/lib/xml_parser.php index f3db4e5..03866f8 100644 --- a/lib/xml_parser.php +++ b/lib/xml_parser.php @@ -2,10 +2,9 @@ /** * DBSteward XML definition file parsing * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @author Nicholas Kiraly - * @version $Id: xml_parser.php 2270 2012-01-10 16:18:30Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class xml_parser { diff --git a/tests/dbstewardUnitTestBase.php b/tests/dbstewardUnitTestBase.php index f08199d..a31046c 100644 --- a/tests/dbstewardUnitTestBase.php +++ b/tests/dbstewardUnitTestBase.php @@ -2,10 +2,9 @@ /** * DBSteward unit test framework / base class * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @subpackage Tests - * @version $Id: dbstewardUnitTestBase.php 2266 2012-01-09 18:53:12Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once 'PHPUnit/Framework/TestCase.php'; diff --git a/tests/dbsteward_mssql10_connection.php b/tests/dbsteward_mssql10_connection.php index 1914822..8baed18 100644 --- a/tests/dbsteward_mssql10_connection.php +++ b/tests/dbsteward_mssql10_connection.php @@ -2,11 +2,9 @@ /** * DBSteward unit test postgresql connection management * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @package DBSteward - * @subpackage Tests - * @version $Id: dbsteward_mssql10_connection.php 2261 2012-01-09 08:37:44Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class dbsteward_mssql10_connection { diff --git a/tests/dbsteward_pgsql8_connection.php b/tests/dbsteward_pgsql8_connection.php index e5d3393..7a89a7d 100644 --- a/tests/dbsteward_pgsql8_connection.php +++ b/tests/dbsteward_pgsql8_connection.php @@ -2,10 +2,9 @@ /** * DBSteward unit test postgresql connection management * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @subpackage Tests - * @version $Id: dbsteward_pgsql8_connection.php 2266 2012-01-09 18:53:12Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ class dbsteward_pgsql8_connection { diff --git a/tests/duplicateFunctionTest.php b/tests/duplicateFunctionTest.php index 9f3aad3..ddb77b8 100644 --- a/tests/duplicateFunctionTest.php +++ b/tests/duplicateFunctionTest.php @@ -6,10 +6,9 @@ * function compositing * function compositing function overwriting knob that controls wether it is allowed * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @subpackage Tests - * @version $Id: duplicateFunctionTest.php 2266 2012-01-09 18:53:12Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/dbstewardUnitTestBase.php'; diff --git a/tests/outputDiffTest.php b/tests/outputDiffTest.php index 8b5bf6f..8fc0d02 100644 --- a/tests/outputDiffTest.php +++ b/tests/outputDiffTest.php @@ -2,10 +2,9 @@ /** * Test the output of dbsteward diffing * - * @copyright 2011 Collaborative Fusion, Inc. * @package DBSteward - * @subpackage Tests - * @version $Id: outputDiffTest.php 2266 2012-01-09 18:53:12Z nkiraly $ + * @license http://www.opensource.org/licenses/bsd-license.php Simplified BSD License + * @author Nicholas J Kiraly */ require_once dirname(__FILE__) . '/dbstewardUnitTestBase.php'; diff --git a/tests/typeDiffTest.php b/tests/typeDiffTest.php index 3b114db..7980991 100644 --- a/tests/typeDiffTest.php +++ b/tests/typeDiffTest.php @@ -12,10 +12,9 @@ * todo: * type value insertion testing - remove */ require_once dirname(__FILE__) . '/dbstewardUnitTestBase.php';