mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-25 02:34:17 +00:00
Miscellaneous minor changes for new release.
This commit is contained in:
parent
61b5bae4f7
commit
d9e86b8e6f
@ -8,9 +8,9 @@
|
||||
$c->pg_connect[] = 'dbname=caldav port=5433 user=general';
|
||||
$c->pg_connect[] = 'dbname=caldav port=5432 user=general';
|
||||
|
||||
// $c->dbg['ALL'] = 1;
|
||||
$c->dbg['ALL'] = 1;
|
||||
$c->dbg['propfind'] = 1;
|
||||
// $c->dbg['report'] = 1;
|
||||
$c->dbg['report'] = 1;
|
||||
// $c->dbg['get'] = 1;
|
||||
// $c->dbg['put'] = 1;
|
||||
// $c->dbg['ics'] = 1;
|
||||
|
||||
10
debian/changelog
vendored
10
debian/changelog
vendored
@ -1,3 +1,10 @@
|
||||
rscds (0.2.0) unstable; urgency=low
|
||||
|
||||
* A code sanity review and clean up. Much commenting of code and review for
|
||||
behaviour against the specification.
|
||||
|
||||
-- Andrew McMillan <debian@mcmillan.net.nz> Wed, 11 Oct 2006 14:16:31 +1300
|
||||
|
||||
rscds (0.1.6) unstable; urgency=low
|
||||
|
||||
* Fix some bugs in caldav-REPORT, which was not working with Lightning.
|
||||
@ -13,8 +20,9 @@ rscds (0.1.6) unstable; urgency=low
|
||||
tasks someone else puts there with (e.g.) Sunbird.
|
||||
* Started development of a regression testing framework.
|
||||
* Cleaned up code to remove as many warnings as possible.
|
||||
* Make caldav.php work with 'cadaver' for more DAV love.
|
||||
|
||||
-- Andrew McMillan <debian@mcmillan.net.nz> Sat, 7 Oct 2006 15:31:47 +1300
|
||||
-- Andrew McMillan <debian@mcmillan.net.nz> Sun, 8 Oct 2006 20:13:44 +1300
|
||||
|
||||
rscds (0.1.5) unstable; urgency=low
|
||||
|
||||
|
||||
13
debian/control
vendored
13
debian/control
vendored
@ -1,5 +1,5 @@
|
||||
Source: rscds
|
||||
Section: catalyst
|
||||
Section: web
|
||||
Priority: extra
|
||||
Maintainer: Andrew McMillan <andrew@catalyst.net.nz>
|
||||
Standards-Version: 3.6.3
|
||||
@ -8,8 +8,9 @@ Build-Depends: debhelper
|
||||
Package: rscds
|
||||
Architecture: all
|
||||
Depends: debconf (>= 1.0.32), php4 (>= 4:4.3) | php5, php4-pgsql(>= 3:4.3.0) | php5-pgsql, postgresql-client (>= 7.4) | postgresql-client-8.0 | postgresql-client-8.1, libawl-php (>=0.5-0)
|
||||
Description: Really Simple CalDAV Server
|
||||
The Really Simple CalDAV Server is designed to trivially store
|
||||
CalDAV calendars, such as those from Evolution, in a central
|
||||
location, providing shared calendars, free/busy publication
|
||||
and basic administration (grouping, delegating, etc).
|
||||
Description: Really Simple CalDAV Store
|
||||
The Really Simple CalDAV Store 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).
|
||||
|
||||
3
docs/.gitignore
vendored
Normal file
3
docs/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
rfc2068.html
|
||||
rfc3744.html
|
||||
rfc3744.txt
|
||||
8291
docs/rfc2445.txt
8291
docs/rfc2445.txt
File diff suppressed because it is too large
Load Diff
16
rscds.webprj
16
rscds.webprj
@ -79,13 +79,13 @@
|
||||
<item url="testing/tests/mulberry/REPORT-1href.test" uploadstatus="1" />
|
||||
<item url="inc/xxx-caldav-REPORT.php" uploadstatus="1" />
|
||||
<item url="inc/caldav-REPORT.php" uploadstatus="1" />
|
||||
<item url="testing/tests/mulberry/PUT1.data" />
|
||||
<item url="testing/tests/mulberry/PUT2.data" />
|
||||
<item url="testing/tests/mulberry/PUT2.test" />
|
||||
<item url="testing/tests/mulberry/PUT1.test" />
|
||||
<item url="htdocs/ics.php" />
|
||||
<item url="testing/tests/mulberry/GET1.test" />
|
||||
<item url="testing/tests/evolution/PUT1.test" />
|
||||
<item url="testing/tests/evolution/DELETE1.test" />
|
||||
<item url="testing/tests/mulberry/PUT1.data" uploadstatus="1" />
|
||||
<item url="testing/tests/mulberry/PUT2.data" uploadstatus="1" />
|
||||
<item url="testing/tests/mulberry/PUT2.test" uploadstatus="1" />
|
||||
<item url="testing/tests/mulberry/PUT1.test" uploadstatus="1" />
|
||||
<item url="htdocs/ics.php" uploadstatus="1" />
|
||||
<item url="testing/tests/mulberry/GET1.test" uploadstatus="1" />
|
||||
<item url="testing/tests/evolution/PUT1.test" uploadstatus="1" />
|
||||
<item url="testing/tests/evolution/DELETE1.test" uploadstatus="1" />
|
||||
</project>
|
||||
</webproject>
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
sudo tcpdump -i lo -s0 -t -n -q -A 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'
|
||||
PORT=${1:-"80"}
|
||||
|
||||
sudo tcpdump -i lo -s0 -n -q -A "tcp port ${PORT} and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user