[geeklog-cvs] Geeklog-2/commands BaseCommand.php,1.2,1.3 BaseCommandUser.php,1.2,1.3 Geeklog_LoginCommand.php,1.1,1.2

tony at iowaoutdoors.org tony at iowaoutdoors.org
Thu Mar 3 00:12:15 EST 2005


Update of /var/cvs/Geeklog-2/commands
In directory www:/tmp/cvs-serv5492/commands

Modified Files:
	BaseCommand.php BaseCommandUser.php Geeklog_LoginCommand.php 
Log Message:
copyright changes

Index: BaseCommandUser.php
===================================================================
RCS file: /var/cvs/Geeklog-2/commands/BaseCommandUser.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** BaseCommandUser.php	20 Dec 2004 22:14:52 -0000	1.2
--- BaseCommandUser.php	3 Mar 2005 05:12:13 -0000	1.3
***************
*** 1,6 ****
--- 1,25 ----
  <?php
  
+ /* Reminder: always indent with 4 spaces (no tabs). */
+ 
+ /**
+  * Geeklog 2
+  *
+  * License Details To Be Determined
+  *
+  */
  require_once 'BaseCommand.php';
  
+ /**
+  * Abstract command that has handle to a user object
+  *
+  * Many commands in Geeklog will want to require that the action was initiated by a user who has
+  * been authenticated.  This command provides this security for any descendants.
+  *
+  * @author Tony Bibbs <tony at geeklog.net>
+  * @copyright 2004-2005 Tony Bibbs
+  * @package net.geeklog.commands
+  *
+  */
  abstract class Geeklog_BaseCommandUser extends Geeklog_BaseCommand {
      private $user = null;

Index: BaseCommand.php
===================================================================
RCS file: /var/cvs/Geeklog-2/commands/BaseCommand.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** BaseCommand.php	20 Dec 2004 22:14:52 -0000	1.2
--- BaseCommand.php	3 Mar 2005 05:12:13 -0000	1.3
***************
*** 20,24 ****
   *
   * @author Tony Bibbs <tony at geeklog.net>
!  * @copyright 2004 Tony Bibbs
   *
   */
--- 20,25 ----
   *
   * @author Tony Bibbs <tony at geeklog.net>
!  * @copyright 2004-2005 Tony Bibbs
!  * @package net.geeklog.commands
   *
   */

Index: Geeklog_LoginCommand.php
===================================================================
RCS file: /var/cvs/Geeklog-2/commands/Geeklog_LoginCommand.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Geeklog_LoginCommand.php	20 Dec 2004 22:15:46 -0000	1.1
--- Geeklog_LoginCommand.php	3 Mar 2005 05:12:13 -0000	1.2
***************
*** 2,5 ****
--- 2,6 ----
  
  /* Reminder: always indent with 4 spaces (no tabs). */
+ 
  /**
   * Geeklog 2
***************
*** 31,36 ****
   * manager level.
   *
!  * @copyright 2004 Tony Bibbs
   * @author Tony Bibbs <tony at geeklog.net>
   *
   */
--- 32,38 ----
   * manager level.
   *
!  * @copyright 2004-2005 Tony Bibbs
   * @author Tony Bibbs <tony at geeklog.net>
+  * @package net.geeklog.commands
   *
   */




More information about the geeklog-cvs mailing list