Removing the last traces of RSCDS and renaming it to DAViCal.

This commit is contained in:
Felix Möller 2011-01-22 02:40:53 +01:00 committed by Andrew McMillan
parent 8fa4f7f615
commit a9231717c9
4 changed files with 5 additions and 5 deletions

View File

@ -204,7 +204,7 @@ $c->schedule_private_key = 'PRIVATE-KEY-BASE-64-DATA';
* call_user_func( $c->authenticate_hook['call'], $username, $password ) * call_user_func( $c->authenticate_hook['call'], $username, $password )
* *
* The login mecanism is made in 2 places: * The login mecanism is made in 2 places:
* - for the web interface in: index.php that calls RSCDSSession.php that extends * - for the web interface in: index.php that calls DAViCalSession.php that extends
* Session.php (from AWL libraries) * Session.php (from AWL libraries)
* - for the caldav client in: caldav.php that calls BasicAuthSession.php * - for the caldav client in: caldav.php that calls BasicAuthSession.php
* Both Session.php and BasicAuthSession.php check against the * Both Session.php and BasicAuthSession.php check against the

View File

@ -29,7 +29,7 @@
/** /**
* default = true; * default = true;
* If set, RSCDS will store each unique time zone used in any calendar to speed * If set, DAViCal will store each unique time zone used in any calendar to speed
* future timezone interpretation. * future timezone interpretation.
*/ */
// $c->save_time_zone_defs; // $c->save_time_zone_defs;

View File

@ -50,7 +50,7 @@ class DAViCalSession extends Session
/** /**
* Create a new DAViCalSession object. * Create a new DAViCalSession object.
* *
* We create a Session and extend it with some additional useful RSCDS * We create a Session and extend it with some additional useful DAViCal
* related information. * related information.
* *
* @param string $sid A session identifier. * @param string $sid A session identifier.

View File

@ -267,8 +267,8 @@ class CalDAVClient {
$headers = $this->DoRequest($relative_url); $headers = $this->DoRequest($relative_url);
/** /**
* RSCDS will always return the real etag on PUT. Other CalDAV servers may need * DAViCal will always return the real etag on PUT. Other CalDAV servers may need
* more work, but we are assuming we are running against RSCDS in this case. * more work, but we are assuming we are running against DAViCal in this case.
*/ */
$etag = preg_replace( '/^.*Etag: "?([^"\r\n]+)"?\r?\n.*/is', '$1', $headers ); $etag = preg_replace( '/^.*Etag: "?([^"\r\n]+)"?\r?\n.*/is', '$1', $headers );
return $etag; return $etag;