Release 0.9.9
[davical.git] / docs / website / index.php
blobac5908d244ba8c53a0f6abbc05b1b45e4bf31d4f
1 <?php
2 $title = "DAViCal Home";
3 include("inc/page-header.php");
4 ?>
5 <h1>About DAViCal</h1>
6 <p>DAViCal is a server for calendar sharing. It is an implementation of the CalDAV protocol which is designed
7 for storing calendaring resources (in iCalendar format) on a remote shared server. </p>
8 <p>An increasing number of calendar clients support
9 the maintenance of shared remote calendars through CalDAV including Mozilla Calendar
10 (Sunbird/Lightning), Evolution, Mulberry, Chandler, and various other closed-source products
11 such as Apple's iCal and iPhone. </p>
12 <h2>Features</h2>
13 <ul>DAViCal:
14 <li>is <a href="http://www.gnu.org/philosophy/open-source-misses-the-point.html">Free Software</a> licensed under the <a href="http://www.gnu.org/licenses/gpl.html">General Public License</a>.</li>
15 <li>uses an SQL database for storage of event data</li>
16 <li>supports backward-compatible access via WebDAV in read-only or read-write mode (not recommended)</li>
17 <li>is committed to inter-operation with the widest possible CalDAV client software.</li>
18 </ul>
20 <p>DAViCal supports basic delegation of read/write access among calendar users, multiple users or clients reading
21 and writing the same calendar entries over time, and scheduling of meetings with free/busy time displayed. </p>
23 <h1>Overview of Installation and Use</h1>
24 <h2>Prerequisites</h2>
25 <ul>To install and use DAViCal you will need:
26 <li>a PostgreSQL database server</li>
27 <li>a web server which can run PHP version 5</li>
28 </ul>
29 <p>We use <a href="http://www.debian.org/">Debian GNU/Linux</a> for this, but other people use various different
30 versions of Linux, FreeBSD, Mac OSX and even Microsoft Windows. We definitely do not recommend using Windows
31 for this unless you are completely hobbled by silly internal IT policies and have to do so.</p>
33 <h2>Getting DAViCal and Installing DAViCal</h2>
34 <p>You can download DAViCal from <a href="http://debian.mcmillan.net.nz/">http://debian.mcmillan.net.nz/</a></p>
35 <p>Start looking on the <a href="installation.php">DAViCal Installation Page</a> for more places to download, and
36 detailed instructions as to what to do when you have it.</p>
38 <h2>Using DAViCal</h2>
39 <p>Read here about <a href="clients.php">how to configure various CalDAV Clients with DAViCal</a>. There is also
40 a page on the wiki which will sometimes have newer information.</p>
42 <h2>Getting Help</h2>
43 <p>Specifically: help on DAViCal!</p>
44 <p>The <em>best</em> place to go for help on DAViCal is the <a href="http://wiki.davical.org/">DAViCal Wiki</a>.</p>
45 <p>If you can't find your answer there, then the IRC channel #davical on <a href="http://irc.oftc.net/">irc.oftc.net</a> is
46 a great next port of call. Many problems can be solved quickly with a short on-line chat.</p>
47 <p>Almost as good as the IRC channel is the <a href="https://lists.sourceforge.net/mailman/listinfo/rscds-general">DAViCal General Mailing List</a>.</p>
48 <ul>Other places to try include:
49 <li>The sourceforge forums.</li>
50 <li>Googling your problem.</li>
51 </ul>
52 <p>As a last resort, or in case your organisation likes that sort of thing, paid commercial support is available
53 through the author's company <a href="http://www.morphoss.com/products/davical/support">Morphoss</a>.</p>
55 <h1>Credits</h1>
56 <p>DAViCal CalDAV Server was conceived and written by <a href="http://andrew.mcmillan.net.nz/">Andrew McMillan</a>.</p>
57 <ul>Translations of the administration interface have been done by:
58 <li>Lorena Paoletti (Spanish)</li>
59 <li>Cristina Radalescu (German)</li>
60 <li>Guillaume Rosquin &amp; Maxime Delorme (French)</li>
61 <li>Nick Khazov (Russian)</li>
62 <li>Eelco Maljaars (Dutch)</li>
63 </ul>
64 <ul>Other contributors:
65 <li>Maxime Delorme (CSS, LDAP, SyncML, French translations)</li>
66 <li>Andrew Ruthven (Various enhancements)</li>
67 </ul>
69 <h1>Contributing to DAViCal</h1>
70 <p>We welcome contributions from interested people. You don't need to be able to write code - there are lots of
71 small tasks around the project that can be done.
72 CalDAV server:</p>
73 <ul>Here are some things you could do that will help us to concentrate on making DAViCal a better:
74 <li>writing documentation</li>
75 <li>helping people on IRC, on the mailing list or sf.net forums</li>
76 <li>translating the DAViCal interface to another language</li>
77 <li>managing the release process</li>
78 <li>reviewing and tidying the Wiki updates</li>
79 <li>writing and reviewing patches</li>
80 <li>designing future functionality</li>
81 <li>thinking of more interesting ways to contribute to DAViCal!</li>
82 </ul>
84 <p>Can you think of more?</p>
86 <?php
87 include("inc/page-footer.php");