Update of /cvsroot/phpwebapp/web_app/session
In directory sc8-pr-cvs1:/tmp/cvs-serv29261/session
Modified Files:
wbSession.php tst.php class.Session.php
Log Message:
* added some comments (that are handled by phpDocumentor)
for dividing the code into packages and subpackages
* replaced .gif images by .png images
Index: wbSession.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/session/wbSession.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** wbSession.php 7 Aug 2003 16:12:22 -0000 1.3
--- wbSession.php 11 Aug 2003 16:17:51 -0000 1.4
***************
*** 1,3 ****
--- 1,7 ----
<?php
+ /**
+ * Includes the session inside the HTML page.
+ * @package session
+ */
class wbSession extends WebObject
{
Index: tst.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/session/tst.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** tst.php 21 Feb 2003 08:17:00 -0000 1.1.1.1
--- tst.php 11 Aug 2003 16:17:51 -0000 1.2
***************
*** 1,3 ****
--- 1,6 ----
<?php
+ /** @package session */
+ /** */
+
include "class.Event.php";
Index: class.Session.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/session/class.Session.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** class.Session.php 16 Jul 2003 12:05:23 -0000 1.3
--- class.Session.php 11 Aug 2003 16:17:51 -0000 1.4
***************
*** 1,5 ****
<?php
/**
! * Used to keep session variables
*/
class Session
--- 1,6 ----
<?php
/**
! * Used to keep session variables.
! * @package session
*/
class Session
|