r49 - in phpOpenTracker/trunk/phpOpenTracker: . Database Database/Driver

Sebastian Bergmann at BerliOS <[email protected]> Tue, 12 Apr 2005 08:09:11 +0200
Newsgroups gmane.comp.web.phpopentracker.cvs
Message-ID <[email protected]>
Author: s_bergmann
Date: 2005-04-12 08:09:07 +0200 (Tue, 12 Apr 2005)
New Revision: 49

Modified:
   phpOpenTracker/trunk/phpOpenTracker/Database/Driver.php
   phpOpenTracker/trunk/phpOpenTracker/Database/Driver/MySQL.php
   phpOpenTracker/trunk/phpOpenTracker/LoggingEngine.php
Log:
New code header/footer format.

Modified: phpOpenTracker/trunk/phpOpenTracker/Database/Driver/MySQL.php
===================================================================
--- phpOpenTracker/trunk/phpOpenTracker/Database/Driver/MySQL.php	2005-04-10 09:56:28 UTC (rev 48)
+++ phpOpenTracker/trunk/phpOpenTracker/Database/Driver/MySQL.php	2005-04-12 06:09:07 UTC (rev 49)
@@ -1,4 +1,6 @@
 <?php
+/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
+
 /* ***** BEGIN LICENSE BLOCK *****
  * Version: Apache License 2.0
  *
@@ -20,19 +22,27 @@
  *
  * Contributor(s):
  *
- * ***** END LICENSE BLOCK ***** */
+ * ***** END LICENSE BLOCK *****
+ *
+ * @package    phpOpenTracker
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2000-2005 Sebastian Bergmann <[email protected]>
+ * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
+ * @version    SVN: $Id$
+ * @link       http://www.phpopentracker.de/
+ * @since      File available since Release 2.0.0
+ */
 
-require_once 'phpOpenTracker/Database/Driver.php';
-
 /**
  * phpOpenTracker Database Driver for MySQL.
  *
- * @author      Sebastian Bergmann <[email protected]>
- * @copyright   Copyright &copy; 2000-2005 Sebastian Bergmann <[email protected]>
- * @license     http://www.apache.org/licenses/LICENSE-2.0 The Apache License, Version 2.0
- * @category    phpOpenTracker
- * @package     phpOpenTracker
- * @since       phpOpenTracker 2.0.0
+ * @package    phpOpenTracker
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2000-2005 Sebastian Bergmann <[email protected]>
+ * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
+ * @version    Release: @package_version@
+ * @link       http://www.phpopentracker.de/
+ * @since      Class available since Release 2.0.0
  */
 class phpOpenTracker_Database_Driver_MySQL extends phpOpenTracker_Database_Driver {
     public function storePageImpression($first = FALSE) {
@@ -44,8 +54,14 @@
     }
 }
 
-//
-// "phpOpenTracker essenya, gul meletya;
-//  Sebastian carneron PHP."
-//
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * c-hanging-comment-ender-p: nil
+ * End:
+ *
+ * "phpOpenTracker essenya, gul meletya;
+ * Sebastian carneron PHP."
+ */
 ?>

Modified: phpOpenTracker/trunk/phpOpenTracker/Database/Driver.php
===================================================================
--- phpOpenTracker/trunk/phpOpenTracker/Database/Driver.php	2005-04-10 09:56:28 UTC (rev 48)
+++ phpOpenTracker/trunk/phpOpenTracker/Database/Driver.php	2005-04-12 06:09:07 UTC (rev 49)
@@ -1,4 +1,6 @@
 <?php
+/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
+
 /* ***** BEGIN LICENSE BLOCK *****
  * Version: Apache License 2.0
  *
@@ -20,23 +22,40 @@
  *
  * Contributor(s):
  *
- * ***** END LICENSE BLOCK ***** */
+ * ***** END LICENSE BLOCK *****
+ *
+ * @package    phpOpenTracker
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2000-2005 Sebastian Bergmann <[email protected]>
+ * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
+ * @version    SVN: $Id$
+ * @link       http://www.phpopentracker.de/
+ * @since      File available since Release 2.0.0
+ */
 
 /**
  * Abstract Base Class for phpOpenTracker Database Drivers.
  *
- * @author      Sebastian Bergmann <[email protected]>
- * @copyright   Copyright &copy; 2000-2005 Sebastian Bergmann <[email protected]>
- * @license     http://www.apache.org/licenses/LICENSE-2.0 The Apache License, Version 2.0
- * @category    phpOpenTracker
- * @package     phpOpenTracker
- * @since       phpOpenTracker 2.0.0
+ * @package    phpOpenTracker
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2000-2005 Sebastian Bergmann <[email protected]>
+ * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
+ * @version    Release: @package_version@
+ * @link       http://www.phpopentracker.de/
+ * @since      Class available since Release 2.0.0
+ * @abstract
  */
 abstract class phpOpenTracker_Database_Driver {
 }
 
-//
-// "phpOpenTracker essenya, gul meletya;
-//  Sebastian carneron PHP."
-//
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * c-hanging-comment-ender-p: nil
+ * End:
+ *
+ * "phpOpenTracker essenya, gul meletya;
+ * Sebastian carneron PHP."
+ */
 ?>

Modified: phpOpenTracker/trunk/phpOpenTracker/LoggingEngine.php
===================================================================
--- phpOpenTracker/trunk/phpOpenTracker/LoggingEngine.php	2005-04-10 09:56:28 UTC (rev 48)
+++ phpOpenTracker/trunk/phpOpenTracker/LoggingEngine.php	2005-04-12 06:09:07 UTC (rev 49)
@@ -1,4 +1,6 @@
 <?php
+/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
+
 /* ***** BEGIN LICENSE BLOCK *****
  * Version: Apache License 2.0
  *
@@ -20,17 +22,27 @@
  *
  * Contributor(s):
  *
- * ***** END LICENSE BLOCK ***** */
+ * ***** END LICENSE BLOCK *****
+ *
+ * @package    phpOpenTracker
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2000-2005 Sebastian Bergmann <[email protected]>
+ * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
+ * @version    SVN: $Id$
+ * @link       http://www.phpopentracker.de/
+ * @since      File available since Release 2.0.0
+ */
 
 /**
  * phpOpenTracker Logging Engine.
  *
- * @author      Sebastian Bergmann <[email protected]>
- * @copyright   Copyright &copy; 2000-2005 Sebastian Bergmann <[email protected]>
- * @license     http://www.apache.org/licenses/LICENSE-2.0 The Apache License, Version 2.0
- * @category    phpOpenTracker
- * @package     phpOpenTracker
- * @since       phpOpenTracker 1.0.0
+ * @package    phpOpenTracker
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2000-2005 Sebastian Bergmann <[email protected]>
+ * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
+ * @version    Release: @package_version@
+ * @link       http://www.phpopentracker.de/
+ * @since      Class available since Release 2.0.0
  */
 class phpOpenTracker_LoggingEngine {
     private function setupSession($parameters) {
@@ -179,8 +191,14 @@
     }
 }
 
-//
-// "phpOpenTracker essenya, gul meletya;
-//  Sebastian carneron PHP."
-//
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * c-hanging-comment-ender-p: nil
+ * End:
+ *
+ * "phpOpenTracker essenya, gul meletya;
+ * Sebastian carneron PHP."
+ */
 ?>