From a9231717c9210d89fa2ccde62252d0b394dfd815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20M=C3=B6ller?= Date: Sat, 22 Jan 2011 02:40:53 +0100 Subject: [PATCH] Removing the last traces of RSCDS and renaming it to DAViCal. --- config/example-config.php | 2 +- config/other-config.php | 2 +- inc/DAViCalSession.php | 2 +- inc/caldav-client.php | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/example-config.php b/config/example-config.php index a8301c85..22fb8e97 100644 --- a/config/example-config.php +++ b/config/example-config.php @@ -204,7 +204,7 @@ $c->schedule_private_key = 'PRIVATE-KEY-BASE-64-DATA'; * call_user_func( $c->authenticate_hook['call'], $username, $password ) * * 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) * - for the caldav client in: caldav.php that calls BasicAuthSession.php * Both Session.php and BasicAuthSession.php check against the diff --git a/config/other-config.php b/config/other-config.php index fc16f6d7..e9133689 100644 --- a/config/other-config.php +++ b/config/other-config.php @@ -29,7 +29,7 @@ /** * 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. */ // $c->save_time_zone_defs; diff --git a/inc/DAViCalSession.php b/inc/DAViCalSession.php index 1f7c8c13..e06f1384 100644 --- a/inc/DAViCalSession.php +++ b/inc/DAViCalSession.php @@ -50,7 +50,7 @@ class DAViCalSession extends Session /** * 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. * * @param string $sid A session identifier. diff --git a/inc/caldav-client.php b/inc/caldav-client.php index 428a3f17..acd59350 100644 --- a/inc/caldav-client.php +++ b/inc/caldav-client.php @@ -267,8 +267,8 @@ class CalDAVClient { $headers = $this->DoRequest($relative_url); /** - * RSCDS 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. + * DAViCal will always return the real etag on PUT. Other CalDAV servers may need + * 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 ); return $etag;