diff options
author | yvesf <yvesf-git@xapek.org> | 2011-02-24 22:45:14 +0100 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2011-02-24 22:45:14 +0100 |
commit | 6dc7723c738c8307369f2fcfd8feb0fd2ea703c1 (patch) | |
tree | 33faebb05fbb8793f465ef976a7d22995985e5d9 /src/site/xdoc/user-allgemein.xml | |
parent | 962ddff447068e759b37841536a51e8973691097 (diff) | |
download | dhbw-calendar-6dc7723c738c8307369f2fcfd8feb0fd2ea703c1.tar.gz dhbw-calendar-6dc7723c738c8307369f2fcfd8feb0fd2ea703c1.zip |
file-copy from previous development-repository
Diffstat (limited to 'src/site/xdoc/user-allgemein.xml')
-rw-r--r-- | src/site/xdoc/user-allgemein.xml | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/src/site/xdoc/user-allgemein.xml b/src/site/xdoc/user-allgemein.xml new file mode 100644 index 0000000..6995e77 --- /dev/null +++ b/src/site/xdoc/user-allgemein.xml @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="UTF-8"?> +<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd"> + <properties> + <title>Anbindung Allgemein</title> + <author>Yves Fischer</author> + <date>24.02.2011</date> + </properties> + + <body> + <section name="Anbindung Allgemein"> + <p>Die Software stellt Ihnen eine iCalendar Schnittstelle über HTTP + bereit. Sie ist also mit jeder kompatiblen Kalendersoftware nutzbar. + </p> + <p> + Die Internet RFC zu iCalendar findet sich unter + <a href="http://tools.ietf.org/html/rfc5545">rfc5545</a> + . + </p> + <p>Zusätzlich stellt der DHBW Calendar eine Webschnittstelle bereit + mit dem die Daten in Tabellenform betrachtet werden können. Diese + ist primär zu Test- und Prüfzwecke gedacht.</p> + <subsection name="Beispiel einer iCalendar Ausgabe"> + <source><![CDATA[ +BEGIN:VCALENDAR +PRODID:-//DHBW Horb i08005//DHBW Calender 0.1//EN +VERSION:2.0 +CALSCALE:GREGORIAN +METHOD:PUBLISH +X-WR-TIMEZONE:UTC +X-WR-CALDESC:DHBW Calendar +X-WR-CALNAME:DHBW Calendar +BEGIN:VEVENT +DTSTART:20110208T081500Z +DTEND:20110208T104500Z +DTSTAMP:20110208T081500Z +UID:vevent_20110208T081500Z@dhbw.de +CREATED:20110224T211542Z +STATUS:CONFIRMED +SUMMARY:Open Source Systeme +DESCRIPTION:Open Source Systeme +LOCATION:HOR-121 +TRANSP:OPAQUE +END:VEVENT +BEGIN:VEVENT +DTSTART:20110208T123000Z +DTEND:20110208T160000Z +DTSTAMP:20110208T123000Z +UID:vevent_20110208T123000Z@dhbw.de +CREATED:20110224T211542Z +STATUS:CONFIRMED +SUMMARY:Computergrafik HOR-TIT08 +DESCRIPTION:Computergrafik HOR-TIT08 +LOCATION:HOR-121 +TRANSP:OPAQUE +END:VEVENT +BEGIN:VEVENT +DTSTART:20110209T084500Z +DTEND:20110209T120000Z +DTSTAMP:20110209T084500Z +UID:vevent_20110209T084500Z@dhbw.de +CREATED:20110224T211542Z +STATUS:CONFIRMED +SUMMARY:Web Engineering II +DESCRIPTION:Web Engineering II +LOCATION:HOR-121 +TRANSP:OPAQUE +END:VEVENT +BEGIN:VEVENT +DTSTART:20110209T123000Z +DTEND:20110209T150000Z +DTSTAMP:20110209T123000Z +UID:vevent_20110209T123000Z@dhbw.de +CREATED:20110224T211542Z +STATUS:CONFIRMED +SUMMARY:Anwendung von Fallbeispielen +DESCRIPTION:Anwendung von Fallbeispielen +LOCATION:HOR-121 +TRANSP:OPAQUE +END:VEVENT +END:VCALENDAR +]]></source> + </subsection> + </section> + </body> +</document> + |