Rename @package to davical.

This commit is contained in:
Andrew McMillan 2008-09-18 00:07:21 +12:00
parent 431d08d4c3
commit 5c8cfa4031
14 changed files with 29 additions and 29 deletions

View File

@ -2,7 +2,7 @@
/** /**
* A Class for handling HTTP Authentication * A Class for handling HTTP Authentication
* *
* @package rscds * @package davical
* @subpackage HTTPAuthSession * @subpackage HTTPAuthSession
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -12,7 +12,7 @@
/** /**
* A Class for handling a session using HTTP Basic Authentication * A Class for handling a session using HTTP Basic Authentication
* *
* @package rscds * @package davical
*/ */
class HTTPAuthSession { class HTTPAuthSession {
/**#@+ /**#@+
@ -272,4 +272,4 @@ class HTTPAuthSession {
} }
?> ?>

View File

@ -2,7 +2,7 @@
/** /**
* Class for parsing RRule and getting us the dates * Class for parsing RRule and getting us the dates
* *
* @package rscds * @package awl
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd

View File

@ -1,8 +1,8 @@
<?php <?php
/** /**
* RSCDS extensions to AWL Session handling * DAViCal extensions to AWL Session handling
* *
* @package rscds * @package davical
* @subpackage RSCDSSession * @subpackage RSCDSSession
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -46,7 +46,7 @@ Session::_CheckLogout();
/** /**
* A class for creating and holding session information. * A class for creating and holding session information.
* *
* @package rscds * @package davical
*/ */
class RSCDSSession extends Session class RSCDSSession extends Session
{ {
@ -158,4 +158,4 @@ class RSCDSSession extends Session
$session = new RSCDSSession(); $session = new RSCDSSession();
$session->_CheckLogin(); $session->_CheckLogin();
?> ?>

View File

@ -1,8 +1,8 @@
<?php <?php
/** /**
* User maintain / view with RSCDS specific associated tables * User maintain / view with DAViCal specific associated tables
* *
* @package rscds * @package davical
* @subpackage RSCDSUser * @subpackage RSCDSUser
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -17,9 +17,9 @@ $c->stylesheets[] = "$c->base_url/css/browse.css";
$c->scripts[] = "$c->base_url/js/browse.js"; $c->scripts[] = "$c->base_url/js/browse.js";
/** /**
* A class for viewing and maintaining RSCDS User records * A class for viewing and maintaining DAViCal User records
* *
* @package rscds * @package davical
*/ */
class RSCDSUser extends User class RSCDSUser extends User
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
/** /**
* @package rscds * @package davical
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
* @license http://gnu.org/copyleft/gpl.html GNU GPL v2 * @license http://gnu.org/copyleft/gpl.html GNU GPL v2

View File

@ -2,7 +2,7 @@
/** /**
* CalDAV Server - handle DELETE method * CalDAV Server - handle DELETE method
* *
* @package rscds * @package davical
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -85,4 +85,4 @@ else {
} }
} }
?> ?>

View File

@ -2,7 +2,7 @@
/** /**
* CalDAV Server - handle GET method * CalDAV Server - handle GET method
* *
* @package rscds * @package davical
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd

View File

@ -2,7 +2,7 @@
/** /**
* CalDAV Server - handle MKCALENDAR method * CalDAV Server - handle MKCALENDAR method
* *
* @package rscds * @package davical
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -182,4 +182,4 @@ else {
* *
*/ */
?> ?>

View File

@ -2,7 +2,7 @@
/** /**
* CalDAV Server - handle OPTIONS method * CalDAV Server - handle OPTIONS method
* *
* @package rscds * @package davical
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -65,4 +65,4 @@ header( "Allow: $allowed");
$request->DoResponse( 200, "" ); $request->DoResponse( 200, "" );
?> ?>

View File

@ -5,8 +5,8 @@
* @package davical * @package davical
* @subpackage propfind * @subpackage propfind
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd, Andrew McMillan
* @license http://gnu.org/copyleft/gpl.html GNU GPL v2 * @license http://gnu.org/copyleft/gpl.html GNU GPL v2 or later
*/ */
dbg_error_log("PROPFIND", "method handler"); dbg_error_log("PROPFIND", "method handler");

View File

@ -2,7 +2,7 @@
/** /**
* CalDAV Server - handle PROPPATCH method * CalDAV Server - handle PROPPATCH method
* *
* @package rscds * @package davical
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -225,4 +225,4 @@ $request->DoResponse( 500 );
exit(0); exit(0);
?> ?>

View File

@ -2,7 +2,7 @@
/** /**
* CalDAV Server - handle PUT method * CalDAV Server - handle PUT method
* *
* @package rscds * @package davical
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd

View File

@ -2,7 +2,7 @@
/** /**
* CalDAV Server - handle REPORT method * CalDAV Server - handle REPORT method
* *
* @package rscds * @package davical
* @subpackage caldav * @subpackage caldav
* @author Andrew McMillan <andrew@catalyst.net.nz> * @author Andrew McMillan <andrew@catalyst.net.nz>
* @copyright Catalyst .Net Ltd * @copyright Catalyst .Net Ltd
@ -170,4 +170,4 @@ else {
$request->DoResponse( 501, "XML is not a supported REPORT query document" ); $request->DoResponse( 501, "XML is not a supported REPORT query document" );
} }
?> ?>

View File

@ -47,9 +47,9 @@ function __curl_read_callback( $ch, $fd, $length) {
/** /**
* A class for accessing RSCDS via CalDAV, as a client * A class for accessing DAViCal via CalDAV, as a client
* *
* @package rscds * @package caldav
*/ */
class CalDAVClient { class CalDAVClient {
/** /**