mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-03-01 06:03:46 +00:00
support the PROPFIND request that Mulberry makes but does not fully support Mulberry yet (their timezones are non-standard).
17 lines
266 B
Bash
Executable File
17 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Build the RSCDS database
|
|
#
|
|
|
|
DBNAME="${1:-rscds}"
|
|
|
|
DBADIR="`dirname \"$0\"`"
|
|
|
|
createdb -E UTF8 "${DBNAME}"
|
|
|
|
psql -f "${DBADIR}/rscds.sql" "${DBNAME}"
|
|
|
|
psql -f "${DBADIR}/caldav_functions.sql" "${DBNAME}"
|
|
|
|
psql -f "${DBADIR}/sample-data.sql" "${DBNAME}"
|