summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-05-16 21:05:15 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-05-16 21:05:15 +0200
commit9e83c3f823a545ea91b584d3d7c8a81ebf8c2fb4 (patch)
treea4b91e7de1770e9d71bae60755eadda8e1742626 /apps
parentb39f01fce6756a5c9a181de4e7387e10ad556428 (diff)
downloadnextcloud-server-9e83c3f823a545ea91b584d3d7c8a81ebf8c2fb4.tar.gz
nextcloud-server-9e83c3f823a545ea91b584d3d7c8a81ebf8c2fb4.zip
add caldav and carddav files in their old place for backward compatibility - add rewriterule for caldav and carddav
Diffstat (limited to 'apps')
-rw-r--r--apps/calendar/appinfo/remote.php4
-rw-r--r--apps/calendar/caldav.php6
-rw-r--r--apps/contacts/appinfo/remote.php4
-rw-r--r--apps/contacts/carddav.php6
4 files changed, 20 insertions, 0 deletions
diff --git a/apps/calendar/appinfo/remote.php b/apps/calendar/appinfo/remote.php
index 0673c36540f..3bd8737ee97 100644
--- a/apps/calendar/appinfo/remote.php
+++ b/apps/calendar/appinfo/remote.php
@@ -7,6 +7,10 @@
*/
OCP\App::checkAppEnabled('calendar');
+if(substr($_SERVER["REQUEST_URI"],0,strlen(OC::$APPSWEBROOT . '/apps/calendar/caldav.php')) == OC::$APPSWEBROOT . '/apps/calendar/caldav.php'){
+ $baseuri = OC::$APPSWEBROOT . '/apps/calendar/caldav.php';
+}
+
// only need authentication apps
$RUNTIME_APPTYPES=array('authentication');
OC_App::loadApps($RUNTIME_APPTYPES);
diff --git a/apps/calendar/caldav.php b/apps/calendar/caldav.php
new file mode 100644
index 00000000000..7b811d3cdf1
--- /dev/null
+++ b/apps/calendar/caldav.php
@@ -0,0 +1,6 @@
+<?php
+if(!file_exists('../../lib/base.php')){
+ die('Please update the path to /lib/base.php in caldav.php or make use of /remote.php/caldav/');
+}
+require_once('../../lib/base.php');
+require_once('appinfo/remote.php'); \ No newline at end of file
diff --git a/apps/contacts/appinfo/remote.php b/apps/contacts/appinfo/remote.php
index 9a34ecd4a4c..ef50e4ad39f 100644
--- a/apps/contacts/appinfo/remote.php
+++ b/apps/contacts/appinfo/remote.php
@@ -22,6 +22,10 @@
OCP\App::checkAppEnabled('contacts');
+if(substr($_SERVER["REQUEST_URI"],0,strlen(OC::$APPSWEBROOT . '/apps/contacts/carddav.php')) == OC::$APPSWEBROOT . '/apps/contacts/carddav.php'){
+ $baseuri = OC::$APPSWEBROOT . '/apps/contacts/carddav.php';
+}
+
// only need authentication apps
$RUNTIME_APPTYPES=array('authentication');
OC_App::loadApps($RUNTIME_APPTYPES);
diff --git a/apps/contacts/carddav.php b/apps/contacts/carddav.php
new file mode 100644
index 00000000000..e0579e625d7
--- /dev/null
+++ b/apps/contacts/carddav.php
@@ -0,0 +1,6 @@
+<?php
+if(!file_exists('../../lib/base.php')){
+ die('Please update the path to /lib/base.php in carddav.php or make use of /remote.php/carddav/');
+}
+require_once('../../lib/base.php');
+require_once('appinfo/remote.php'); \ No newline at end of file