From 9172e1a86c8eb2143665266c33e57ee3f6a006ba Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 5 Nov 2007 15:00:47 +1300 Subject: [PATCH] More name changing to DAViCal. --- docs/website/inc/page-header.php | 2 +- docs/website/index.php | 17 +++++++++-------- docs/website/installation.php | 23 ++++++++++++----------- 3 files changed, 22 insertions(+), 20 deletions(-) diff --git a/docs/website/inc/page-header.php b/docs/website/inc/page-header.php index a7aa10fa..f2433937 100644 --- a/docs/website/inc/page-header.php +++ b/docs/website/inc/page-header.php @@ -17,7 +17,7 @@ if ( isset($title) ) { echo $title; } else { - echo "DAViCal CalDAV Store"; + echo "DAViCal CalDAV Server"; } ?>
DAViCal CalDAV Server
diff --git a/docs/website/index.php b/docs/website/index.php index d19bc67e..bbdae445 100644 --- a/docs/website/index.php +++ b/docs/website/index.php @@ -1,5 +1,5 @@

Background

@@ -30,19 +30,19 @@ but no testing has been undertaken in other PHP environments to date.

operating environments, and which is fully ACID compliant.

Simplicity of Setup

-

For the greatest ease use you should consider installing RSCDS on the Debian GNU/Linux +

For the greatest ease use you should consider installing DAViCal on the Debian GNU/Linux distribution from the readily available, signed packages.

We expect to increase the level of automation and simplicity for the Debian target release in particular, although other distributions might also become easier at the same time. We do expect slightly greater installation complexity in the first few releases as we come to understand the particular problems people experience.

Simplicity of Operation

-

In general RSCDS should not need significant maintenance to keep it operating.

+

In general DAViCal should not need significant maintenance to keep it operating.

Administrative functionality will be kept as simple as possible, within the target of supporting organisations of up to several hundred staff.

-

This is called a Store rather than a Server because the server-side smarts are intended to be -minimised to support CalDAV only in a manner sufficient to inter-operate with clients, and with the focus primarily -on the storage of calendar resources.

+

The server-side smarts in DAViCal are intended to be fairly minimal in order to support CalDAV + only in a manner sufficient to inter-operate with clients, and with the focus primarily + on the storage of calendar resources.

Web-based Administration

General administration of the system should be through a web-based application.

@@ -51,7 +51,7 @@ maintainable through a web-based client, although the server should support the works using the CalDAV protocol.

Credits

-

The Really Simple CalDAV Store was conceived and written by Andrew McMillan.

+

DAViCal CalDAV Server was conceived and written by Andrew McMillan.

Translations of the administration interface have been done by:

Other contributors:

Your Name Here!

diff --git a/docs/website/installation.php b/docs/website/installation.php index 03d40892..feebd8f8 100644 --- a/docs/website/installation.php +++ b/docs/website/installation.php @@ -29,8 +29,8 @@ sudo apt-key advanced --keyserver subkeys.pgp.net --recv-keys CCA377BD77494424B0 notes to pages somewhere under here: http://rscds.sourceforge.net/moin/InstallationStuff

-

RPM Packages of RSCDS

-

We have created RPM packages of RSCDS and libawl-php from the .deb packages +

RPM Packages of DAViCal

+

We have created RPM packages of DAViCal and libawl-php from the .deb packages using "alien". I don't know how well these work, so would appreciate feedback about your success with them.

@@ -40,7 +40,7 @@ about your success with them.

Gentoo, Slackware, BSD and the rest

You will need to download the latest versions of the rscds and awl packages -from the sourceforge download page for rscds.

+from the sourceforge download page for DAViCal.

You will need to untar these. Preferably you will untar them from within the "/usr/share" directory and everything will be in it's expected location (well, except the docs, but it will at least be tidy and everything will be in one place).

@@ -60,7 +60,7 @@ the database creation scripts are likely to need love.

Pre-requisites

-

RSCDS depends on a number of things. Firstly, it depends +

DAViCal depends on a number of things. Firstly, it depends on Andrew's Web Libraries (AWL) which is a set of useful PHP functions and objects written by Andrew McMillan over a number of years.

@@ -68,8 +68,8 @@ a number of years.

The following other software is also needed:

The PostgreSQL database may be installed on a server other @@ -79,7 +79,7 @@ installation.

Since the CalDAV store takes over a significant amount of path hierarchy, it is designed to be installed in it's own virtual -host. If you want it to operate within the web root of some +host. However if you want it to operate within the web root of some other application there are instructions on the Wiki about doing this, and other fancy tricks such as URL rewriting to shorten the path.

@@ -139,11 +139,11 @@ computer as the web server, the following line (near the top of the pg_hba.conf file) should be enough:

-local   rscds    general   trust
+local   davical    general   trust
 

This means that anyone on the local computer (including the -web application) will have rights to connect to the RSCDS +web application) will have rights to connect to the DAViCal database as the 'general' user. It will not allow remote access, or access as any user other than 'general'.

@@ -152,7 +152,7 @@ unix sockets, the line in the pg_hba.conf file should look something like:

-host rscds general 127.0.0.1/32 trust
+host davical general 127.0.0.1/32 trust
 

If the webserver is on a different machine to the database, that @@ -178,13 +178,14 @@ single virtual host.

<VirtualHost 123.4.56.78 > DocumentRoot /usr/share/rscds/htdocs DirectoryIndex index.php index.html - ServerName rscds.example.net + ServerName davical.example.net ServerAlias calendar.example.net Alias /images/ /usr/share/rscds/htdocs/images/ php_value include_path /usr/share/awl/inc php_value magic_quotes_gpc 0 php_value register_globals 0 php_value error_reporting "E_ALL & ~E_NOTICE" + php_value default_charset "utf-8" </VirtualHost>