mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-31 03:34:18 +00:00
Release 0.8.0
This commit is contained in:
parent
e00e62d36a
commit
c968d2f333
17
debian/changelog
vendored
17
debian/changelog
vendored
@ -1,18 +1,25 @@
|
|||||||
rscds (0.7.2~rc3) unstable; urgency=low
|
rscds (0.8.0) unstable; urgency=low
|
||||||
|
|
||||||
* Check whether a URL missing a trailing '/' might still be a collection.
|
* Check whether a URL missing a trailing '/' might still be a collection.
|
||||||
* Fix for REPORT to exclude PRIVATE events.
|
* Fix for REPORT to exclude PRIVATE events.
|
||||||
* Show a list of the user's relationships in the admin page.
|
* Show a list of the user's relationships in the admin page.
|
||||||
* Add XML with MKCALENDAR support.
|
* Add XML with MKCALENDAR support.
|
||||||
* Add polish language support from Rafał Ślubowski
|
* Add Polish language support from Rafał Ślubowski
|
||||||
* Patch to support reporting of "Busy" for confidential events (Maxime
|
* Patch to support reporting of "Busy" for confidential events (Maxime
|
||||||
Delorme).
|
Delorme).
|
||||||
* Allow hiding of alarms for calendars which are not ours (Maxime Delorme).
|
* Allow hiding of alarms for calendars which are not ours (Maxime Delorme).
|
||||||
* Allow uploading of a whole calendar .ics from within user maintenance
|
* Allow uploading whole calendars (Maxime Delorme).
|
||||||
(Maxime Delorme).
|
|
||||||
* Basic LDAP authentication (Maxime Delorme)
|
* Basic LDAP authentication (Maxime Delorme)
|
||||||
|
* Add Hungarian (Magyar) language support from Dávid Takács
|
||||||
|
* Ensure username is case-insensitive.
|
||||||
|
* Improve security on viewing other's calendar entries.
|
||||||
|
* Add basic support for installation in a Windows environment.
|
||||||
|
* Add support for automatically creating a user's home calendar.
|
||||||
|
* Add a primary key to the calendar_item table for performance.
|
||||||
|
* Only process the filter criteria on a REPORT once.
|
||||||
|
* Add a basic client library.
|
||||||
|
|
||||||
-- Andrew McMillan <debian@mcmillan.net.nz> Sat, 05 May 2007 18:26:33 +1200
|
-- Andrew McMillan <debian@mcmillan.net.nz> Wed, 23 May 2007 08:09:45 +1200
|
||||||
|
|
||||||
rscds (0.7.1) unstable; urgency=low
|
rscds (0.7.1) unstable; urgency=low
|
||||||
|
|
||||||
|
|||||||
@ -77,7 +77,7 @@ awl_set_locale($c->default_locale);
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
$c->code_version = 0;
|
$c->code_version = 0;
|
||||||
$c->version_string = '0.8.0~rc3'; // The actual version # is replaced into that during the build /release process
|
$c->version_string = '0.8.0'; // 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) ) {
|
if ( isset($c->version_string) && preg_match( '/(\d+)\.(\d+)\.(\d+)(.*)/', $c->version_string, $matches) ) {
|
||||||
$c->code_major = $matches[1];
|
$c->code_major = $matches[1];
|
||||||
$c->code_minor = $matches[1];
|
$c->code_minor = $matches[1];
|
||||||
@ -106,7 +106,7 @@ if ( $qry->Exec("always") && $row = $qry->Fetch() ) {
|
|||||||
$_known_users = array();
|
$_known_users = array();
|
||||||
function getUserByName( $username ) {
|
function getUserByName( $username ) {
|
||||||
// Provide some basic caching in case this ends up being overused.
|
// Provide some basic caching in case this ends up being overused.
|
||||||
if ( isset( $_known_users[$username] ) ) return $_known_users[$username] ;
|
if ( isset( $_known_users[$username] ) ) return $_known_users[$username] );
|
||||||
|
|
||||||
$qry = new PgQuery( "SELECT * FROM usr WHERE lower(username) = lower(?) ", $username );
|
$qry = new PgQuery( "SELECT * FROM usr WHERE lower(username) = lower(?) ", $username );
|
||||||
if ( $qry->Exec('always',__LINE__,__FILE__) && $qry->rows == 1 ) {
|
if ( $qry->Exec('always',__LINE__,__FILE__) && $qry->rows == 1 ) {
|
||||||
|
|||||||
11
rscds.webprj
11
rscds.webprj
@ -38,7 +38,6 @@
|
|||||||
<item url="htdocs/help.php" uploadstatus="1" />
|
<item url="htdocs/help.php" uploadstatus="1" />
|
||||||
<item url="htdocs/roles.php" uploadstatus="1" />
|
<item url="htdocs/roles.php" uploadstatus="1" />
|
||||||
<item url="dba/caldav_functions.sql" uploadstatus="1" />
|
<item url="dba/caldav_functions.sql" uploadstatus="1" />
|
||||||
<item url="htdocs/user.php" uploadstatus="1" />
|
|
||||||
<item url="inc/RSCDSUser.php" uploadstatus="1" />
|
<item url="inc/RSCDSUser.php" uploadstatus="1" />
|
||||||
<item url="inc/caldav-PROPFIND.php" uploadstatus="1" />
|
<item url="inc/caldav-PROPFIND.php" uploadstatus="1" />
|
||||||
<item url="inc/caldav-MKCALENDAR.php" uploadstatus="1" />
|
<item url="inc/caldav-MKCALENDAR.php" uploadstatus="1" />
|
||||||
@ -226,11 +225,17 @@
|
|||||||
<item url="inc/test-RRULE.php" uploadstatus="1" />
|
<item url="inc/test-RRULE.php" uploadstatus="1" />
|
||||||
<item url="debian/control" uploadstatus="1" />
|
<item url="debian/control" uploadstatus="1" />
|
||||||
<item url="dba/patches/1.1.7.sql" uploadstatus="1" />
|
<item url="dba/patches/1.1.7.sql" uploadstatus="1" />
|
||||||
<item url="inc/caldav-PUT-collection.php" uploadstatus="1" />
|
|
||||||
<item url="dba/rrule_functions.sql" uploadstatus="1" />
|
<item url="dba/rrule_functions.sql" uploadstatus="1" />
|
||||||
<item url="config/example-config.php" uploadstatus="1" />
|
<item url="config/example-config.php" uploadstatus="1" />
|
||||||
<item url="config/other-config.php" uploadstatus="1" />
|
<item url="config/other-config.php" uploadstatus="1" />
|
||||||
<item url="config/debug-config.php" uploadstatus="1" />
|
<item url="config/debug-config.php" uploadstatus="1" />
|
||||||
<item url="inc/drivers_ldap.php" />
|
<item url="inc/drivers_ldap.php" uploadstatus="1" />
|
||||||
|
<item url="dba/patches/1.1.8.sql" uploadstatus="1" />
|
||||||
|
<item url="inc/caldav-client.php" uploadstatus="1" />
|
||||||
|
<item url="htdocs/calendar.php" uploadstatus="1" />
|
||||||
|
<item url="dba/patches/1.1.9.sql" uploadstatus="1" />
|
||||||
|
<item url="inc/always.php.in" uploadstatus="1" />
|
||||||
|
<item url="htdocs/usr.php" uploadstatus="1" />
|
||||||
|
<item url="inc/CalDAVRequest.php.xxx" uploadstatus="1" />
|
||||||
</project>
|
</project>
|
||||||
</webproject>
|
</webproject>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user