Release 0.9.3

This commit is contained in:
Andrew McMillan 2008-01-16 22:31:51 +13:00
parent 6346ae5966
commit 4fba80a1c7
4 changed files with 22 additions and 10 deletions

View File

@ -1 +1 @@
0.9.2
0.9.3

15
debian/changelog vendored
View File

@ -1,3 +1,18 @@
rscds (0.9.3) unstable; urgency=low
* Start renaming to DAViCal internally and in documentation.
* Fix handling of CONFIDENTIAL events
* Fixes to support iCal 3.0.1 and later.
* Changes to support SOHO Organizer
* Change style of response to Freebusy queries
* Various refactoring.
* Use relative URLs where possible and refactor to use URL formatting
routine.
* Start to implement structured support for DAV Principals
* Fixes to timezone handling.
-- Andrew McMillan <debian@mcmillan.net.nz> Wed, 16 Jan 2008 21:55:31 +1300
rscds (0.9.2) unstable; urgency=low
* Add support for principal-url and calendar-home-set properties.

10
debian/control vendored
View File

@ -2,7 +2,7 @@ Source: rscds
Section: web
Priority: extra
Maintainer: Andrew McMillan <andrew@catalyst.net.nz>
Standards-Version: 3.6.3
Standards-Version: 3.7.3
Build-Depends: debhelper
Package: rscds
@ -10,7 +10,7 @@ Architecture: all
Depends: debconf (>= 1.0.32), php5 | php4 (>= 4:4.3), php5-pgsql | php4-pgsql(>= 3:4.3.0), postgresql-client-8.2 | postgresql-client-8.1 | postgresql-client-8.0 | postgresql-client (>= 7.4), libawl-php (>=0.20), libclass-dbi-pg-perl, php5 | php4-domxml
Description: DAViCal Calendar Server
The DAViCal Calendar Server is designed to trivially store
CalDAV calendars, such as those from Evolution, Sunbird/Lightning
or Mulberry, in a central location, providing shared calendars,
free/busy publication and basic administration (grouping, delegating,
etc).
CalDAV calendars, such as those from Evolution, Sunbird/Lightning,
Mulberry, iCal or SOHO Organizer, in a central location, providing
shared calendars, free/busy publication and basic administration
(grouping, delegating, etc).

View File

@ -85,7 +85,7 @@ awl_set_locale($c->default_locale);
*
*/
$c->code_version = 0;
$c->version_string = '0.9.2'; // The actual version # is replaced into that during the build /release process
$c->version_string = '0.9.3'; // The actual version # is replaced into that during the build /release process
if ( isset($c->version_string) && preg_match( '/(\d+)\.(\d+)\.(\d+)(.*)/', $c->version_string, $matches) ) {
$c->code_major = $matches[1];
$c->code_minor = $matches[2];
@ -231,6 +231,3 @@ function ConstructURL( $partial_path ) {
return $url;
}
?>