]> git.mxchange.org Git - friendica-addons.git/commitdiff
Some Bugfixes and new ways to create an event
authorTobias Hößl <tobias@hoessl.eu>
Sun, 10 Jun 2012 16:29:31 +0000 (16:29 +0000)
committerTobias Hößl <tobias@hoessl.eu>
Sun, 10 Jun 2012 16:29:31 +0000 (16:29 +0000)
dav/calendar.friendica.fnk.php
dav/common/calendar.fnk.php
dav/common/wdcal.js
dav/common/wdcal/js/jquery.calendar.js
dav/dav.php
dav/layout.fnk.php
dav/main.php
dav/wdcal/Changelog.txt [new file with mode: 0644]
dav/wdcal/css/main.css

index 1d4600c6a7db7182417dfacd0e121f04c65bad6f..af4a0175f5ed88900d264b6a9544347d69ee9494 100644 (file)
@@ -22,11 +22,17 @@ define("CARDDAV_NAMESPACE_PHONECONTACTS", 2);
 
 define("CALDAV_DB_VERSION", 1);
 
+/**
+ * @return int
+ */
 function getCurMicrotime () {
         list($usec, $sec) = explode(" ", microtime());
         return sprintf("%14.0f", $sec * 10000 + $usec * 10000);
 } // function getCurMicrotime
 
+/**
+ *
+ */
 function debug_time() {
         $cur = getCurMicrotime();
         if ($GLOBALS["debug_time_last"] > 0) {
@@ -80,13 +86,30 @@ function dav_compat_principal2uid($principalUri = "")
        return dav_compat_username2id($username);
 }
 
+
+/**
+ * @param string $name
+ * @return null|string
+ */
+function dav_compat_getRequestVar($name = "") {
+       if (x($_REQUEST, $name)) return $_REQUEST[$name];
+       else return null;
+}
+
 /**
  * @param $text
- * @return mixed
+ * @return null|string
  */
-function wdcal_parse_text_serverside($text)
+function dav_compat_parse_text_serverside($text)
 {
-       return $text;
+       return dav_compat_getRequestVar($text);
+}
+
+/**
+ * @param string $uri
+ */
+function dav_compat_redirect($uri = "") {
+       goaway($uri);
 }
 
 /**
index 51b7f5e036e61da3953ed68dedf536fdd4142013..410c60dd2a7ec1535b2fc0f51040fdf3e7202039 100644 (file)
@@ -477,6 +477,67 @@ function wdcal_get_list_range_params($day, $weekstartday, $num_days, $type)
 }
 
 
+
+
+
+/**
+ * @param string $uri
+ * @param string $recurr_uri
+ * @param int $uid
+ * @param string $timezone
+ * @param string $goaway_url
+ * @return string
+ */
+function wdcal_postEditPage($uri, $recurr_uri = "", $uid = 0, $timezone = "", $goaway_url = "")
+{
+       $uid = IntVal($uid);
+       $localization = wdcal_local::getInstanceByUser($uid);
+
+       if (isset($_REQUEST["allday"])) {
+               $start    = $localization->date_parseLocal($_REQUEST["start_date"] . " 00:00");
+               $end      = $localization->date_parseLocal($_REQUEST["end_date"] . " 20:00");
+               $isallday = true;
+       } else {
+               $start    = $localization->date_parseLocal($_REQUEST["start_date"] . " " . $_REQUEST["start_time"]);
+               $end      = $localization->date_parseLocal($_REQUEST["end_date"] . " " . $_REQUEST["end_time"]);
+               $isallday = false;
+       }
+
+       if ($uri == "new") {
+               $cals = dav_getMyCals($uid);
+               foreach ($cals as $c) {
+                       $cs = wdcal_calendar_factory($uid, $c->namespace, $c->namespace_id);
+                       $p = $cs->getPermissionsCalendar($uid);
+
+                       if ($p["write"]) try {
+                               $cs->addItem($start, $end, dav_compat_getRequestVar("subject"), $isallday, dav_compat_parse_text_serverside("wdcal_desc"),
+                                       dav_compat_getRequestVar("location"), dav_compat_getRequestVar("color"), $timezone,
+                                       isset($_REQUEST["notification"]), $_REQUEST["notification_type"], $_REQUEST["notification_value"]);
+                       } catch (Exception $e) {
+                               notification(t("Error") . ": " . $e);
+                       }
+                       dav_compat_redirect($goaway_url);
+               }
+
+       } else {
+               $cals = dav_getMyCals($uid);
+               foreach ($cals as $c) {
+                       $cs = wdcal_calendar_factory($uid, $c->namespace, $c->namespace_id);
+                       $p  = $cs->getPermissionsItem($uid, $uri, $recurr_uri);
+                       if ($p["write"]) try {
+                               $cs->updateItem($uri, $start, $end,
+                                       dav_compat_getRequestVar("subject"), $isallday, dav_compat_parse_text_serverside("wdcal_desc"),
+                                       dav_compat_getRequestVar("location"), dav_compat_getRequestVar("color"), $timezone,
+                                       isset($_REQUEST["notification"]), $_REQUEST["notification_type"], $_REQUEST["notification_value"]);
+                       } catch (Exception $e) {
+                               notification(t("Error") . ": " . $e);
+                       }
+                       dav_compat_redirect($goaway_url);
+               }
+       }
+}
+
+
 /**
  *
  */
index cbdc5a435ead34788e2ffd3abe29d09bfa70c675..877d3852522e8ad08c5132902bea4f12355d021e 100644 (file)
@@ -1,17 +1,53 @@
+function wdcal_edit_getStartEnd() {
+       "use strict";
+
+       var start = $("#cal_start_date").datepicker("getDate");
+       var start_time = $.timePicker("#cal_start_time").getTime();
+       start.setHours(start_time.getHours());
+       start.setMinutes(start_time.getMinutes());
+
+       var end = $("#cal_end_date").datepicker("getDate");
+       var end_time = $.timePicker("#cal_end_time").getTime();
+       end.setHours(end_time.getHours());
+       end.setMinutes(end_time.getMinutes());
+
+       return {"start": start, "end": end};
+}
+
+function wdcal_edit_checktime_startChanged() {
+       "use strict";
+       var time = wdcal_edit_getStartEnd();
+       if (time.start.getTime() >= time.end.getTime()) {
+               var newend = new Date(time.start.getTime() + 3600000);
+               $("#cal_end_date").datepicker("setDate", newend);
+               $.timePicker("#cal_end_time").setTime(newend);
+       }
+}
+
+function wdcal_edit_checktime_endChanged() {
+       "use strict";
+       var time = wdcal_edit_getStartEnd();
+       if (time.start.getTime() >= time.end.getTime()) {
+               var newstart = new Date(time.end.getTime() - 3600000);
+               $("#cal_start_date").datepicker("setDate", newstart);
+               $.timePicker("#cal_start_time").setTime(newstart);
+       }
+}
+
 function wdcal_edit_init(dateFormat) {
        "use strict";
 
        $("#cal_color").colorPicker();
 
-       $("#cal_start_time").timePicker({ step: 15 });
-       $("#cal_end_time").timePicker();
+       $("#cal_start_time").timePicker({ step: 15 }).on("change", wdcal_edit_checktime_startChanged);
+       $("#cal_end_time").timePicker().on("change", wdcal_edit_checktime_endChanged);
 
        $("#cal_start_date").datepicker({
                "dateFormat": dateFormat
-       });
+       }).on("change", wdcal_edit_checktime_startChanged);
        $("#cal_end_date").datepicker({
                "dateFormat": dateFormat
-       });
+       }).on("change", wdcal_edit_checktime_endChanged);
 
        $("#notification").on("click change", function() {
                if ($(this).prop("checked")) $("#notification_detail").show();
index 88987cf595836580442e17c3df1a94b51e3883ca..194ae56642a8160e56bee2503f6679182fb36d6a 100644 (file)
                         * {Number} Calendar height, false for page height by default.\r
                         */\r
                        height:false,\r
+                       baseurl: "",\r
                        /**\r
                         * @description {Config} url\r
                         * {String} Url to request calendar data.\r
                                temparr.push(i18n.xgcalendar.time, ':</th><td class=cb-value><div id="bbit-cal-buddle-timeshow"></div></td></tr><tr><th class="cb-key">');\r
                                temparr.push(i18n.xgcalendar.content, ':</th><td class="cb-value"><div class="textbox-fill-wrapper"><div class="textbox-fill-mid"><input id="bbit-cal-what" class="textbox-fill-input"/></div></div><div class="cb-example">');\r
                                temparr.push(i18n.xgcalendar.example, '</div></td></tr></tbody></table><input id="bbit-cal-start" type="hidden"/><input id="bbit-cal-end" type="hidden"/><input id="bbit-cal-allday" type="hidden"/><input id="bbit-cal-quickAddBTN" value="');\r
-                               temparr.push(i18n.xgcalendar.create_event, '" type="submit"/>&nbsp; <SPAN id="bbit-cal-editLink" class="lk">');\r
+                               temparr.push(i18n.xgcalendar.create_event, '" type="submit"/>&nbsp; <a href="" class="lk bbit-cal-editLink">');\r
                                temparr.push(i18n.xgcalendar.update_detail, ' <StrONG>&gt;&gt;</StrONG></SPAN></div></div></div><tr><td><div id="bl1" class="bubble-corner"><div class="bubble-sprite bubble-bl"></div></div><td><div class="bubble-bottom"></div><td><div id="br1" class="bubble-corner"><div class="bubble-sprite bubble-br"></div></div></tr></tbody></table><div id="bubbleClose1" class="bubble-closebutton"></div><div id="prong2" class="prong"><div class=bubble-sprite></div></div></div>');\r
                                temparr.push('</form>');\r
-                               var tempquickAddHanler = temparr.join("");\r
+                               var tempquickAddHandler = temparr.join("");\r
                                temparr = null;\r
-                               $(document.body).append(tempquickAddHanler);\r
+                               $(document.body).append(tempquickAddHandler);\r
                                buddle = $("#bbit-cal-buddle");\r
-                               $("#bubbleClose1").click(function () {\r
+                               $("#bubbleClose1").on("click", function () {\r
                                        $("#bbit-cal-buddle").css("visibility", "hidden");\r
                                        releasedragevent();\r
                                });\r
-                               $("#bbit-cal-submitFORM").keyup(function (e) {\r
+                               $("#bbit-cal-submitFORM").on("keyup", function (e) {\r
                                        if (e.which == 27) $("#bubbleClose1").click();\r
                                });\r
-                               $("#bbit-cal-submitFORM").submit(function (e) {\r
+                               $("#bbit-cal-submitFORM").on("submit", function (e) {\r
                                        e.stopPropagation();\r
                                        e.preventDefault();\r
                                        if (option.isloading) {\r
                                        }\r
                                        return false;\r
                                });\r
-                               buddle.mousedown(function (e) {\r
+                               buddle.on("mousedown", function (e) {\r
                                        e.stopPropagation();\r
                                        e.preventDefault();\r
                                });\r
                        $("#bbit-cal-allday").val(isallday ? "1" : "0");\r
                        $("#bbit-cal-start").val(start.getTime());\r
                        $("#bbit-cal-end").val(end.getTime());\r
+\r
+                       var addurl = option.baseurl + "new/?start=" + Math.floor($("#bbit-cal-start").val() / 1000) + "&end=" + Math.floor($("#bbit-cal-end").val() / 1000) + "&isallday=" + (isallday ? "1" : "0");\r
+                       buddle.find(".bbit-cal-editLink").attr("href", addurl);\r
+\r
                        buddle.css({ "visibility":"visible", left:off.left, top:off.top });\r
                        calwhat.blur().focus(); //add 2010-01-26 blur() fixed chrome \r
                        $(document).one("mousedown", function () {\r
index 8c29e385dd2e1c50f0f9018bd074a16f5436745e..1f35b06ad5422c4f95211dfb364aa07acd27f590 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * Name: Calendar with CalDAV Support
  * Description: A web-based calendar system with CalDAV-support. Also brings your Friendica-Contacts to your CardDAV-capable mobile phone. Requires PHP >= 5.3.
- * Version: 0.1
+ * Version: 0.1.1
  * Author: Tobias Hößl <https://github.com/CatoTH/>
  */
 
index a712a09bc98059ce68a3909a90e1afb148d97915..550f90b6aacf6e04bef2b62c084865f65ffe3fa7 100644 (file)
@@ -18,8 +18,11 @@ function wdcal_addRequiredHeaders()
        $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/dav/wdcal/css/main.css' . '" media="all" />' . "\r\n";
 
        switch (get_config("system", "language")) {
-               case "de": $a->page['htmlhead'] .= '<script type="text/javascript" src="' . $a->get_baseurl() . '/addon/dav/common/wdcal/js/wdCalendar_lang_DE.js"></script>' . "\r\n"; break;
-               default: $a->page['htmlhead'] .= '<script type="text/javascript" src="' . $a->get_baseurl() . '/addon/dav/common/wdcal/js/wdCalendar_lang_EN.js"></script>' . "\r\n";
+               case "de":
+                       $a->page['htmlhead'] .= '<script type="text/javascript" src="' . $a->get_baseurl() . '/addon/dav/common/wdcal/js/wdCalendar_lang_DE.js"></script>' . "\r\n";
+                       break;
+               default:
+                       $a->page['htmlhead'] .= '<script type="text/javascript" src="' . $a->get_baseurl() . '/addon/dav/common/wdcal/js/wdCalendar_lang_EN.js"></script>' . "\r\n";
        }
 
        $a->page['htmlhead'] .= '<script type="text/javascript" src="' . $a->get_baseurl() . '/addon/dav/common/wdcal/js/jquery.calendar.js"></script>' . "\r\n";
@@ -80,6 +83,7 @@ function wdcal_printCalendar($calendars, $calendar_preselected, $data_feed_url,
                "date_format_dm2"  => $localization->dateformat_js_dm2(),
                "date_format_dm3"  => $localization->dateformat_js_dm3(),
                "date_format_full" => $localization->dateformat_datepicker_js(),
+               "baseurl"          => $a->get_baseurl() . "/dav/wdcal/",
        );
 
        $x = '
@@ -111,6 +115,9 @@ function wdcal_printCalendar($calendars, $calendar_preselected, $data_feed_url,
                <div class="fbutton faddbtn" style="float: right;">
                        <div><a href="' . $a->get_baseurl() . '/dav/settings/"><span>' . t("Settings") . ' / ' . t("Help") . '</span></a></div>
                </div>
+               <div class="fbutton addcal">
+                       <div><a href="' . $a->get_baseurl() . '/dav/wdcal/new/" class="addcal">' . t("New event") . '</a></div>
+               </div>
                <div class="btnseparator"></div>
                <div class="fbutton showtodaybtn">
                        <div><span class="showtoday">' . t("Today") . '</span></div>
@@ -122,7 +129,7 @@ function wdcal_printCalendar($calendars, $calendar_preselected, $data_feed_url,
 
                if ($view == "day") $x .= 'fcurrent';
 
-               $x .= '">Tag</span></div>
+               $x .= '">' . t("Day") . '</span></div>
                </div>
                <div class="fbutton showweekbtn ';
 
@@ -178,10 +185,10 @@ function wdcal_printCalendar($calendars, $calendar_preselected, $data_feed_url,
  */
 function wdcal_getDetailPage($uri, $recurr_uri)
 {
-       $a            = get_app();
+       $a = get_app();
 
        $details = null;
-       $cals = dav_getMyCals($a->user["uid"]);
+       $cals    = dav_getMyCals($a->user["uid"]);
        foreach ($cals as $c) {
                $cs = wdcal_calendar_factory($a->user["uid"], $c->namespace, $c->namespace_id);
                $p  = $cs->getPermissionsItem($a->user["uid"], $uri, $recurr_uri);
@@ -199,54 +206,12 @@ function wdcal_getDetailPage($uri, $recurr_uri)
        return $uri . " / " . $recurr_uri . "<br>" . print_r($details, true);
 }
 
-
-/**
- * @param string $uri
- * @param string $recurr_uri
- * @return string
- */
-function wdcal_postEditPage($uri, $recurr_uri)
-{
-
-       $a            = get_app();
-       $localization = wdcal_local::getInstanceByUser($a->user["uid"]);
-
-       check_form_security_token_redirectOnErr($a->get_baseurl() . "/dav/wdcal/", "caledit");
-
-       if (isset($_REQUEST["allday"])) {
-               $start    = $localization->date_parseLocal($_REQUEST["start_date"] . " 00:00");
-               $end      = $localization->date_parseLocal($_REQUEST["end_date"] . " 20:00");
-               $isallday = true;
-       } else {
-               $start    = $localization->date_parseLocal($_REQUEST["start_date"] . " " . $_REQUEST["start_time"]);
-               $end      = $localization->date_parseLocal($_REQUEST["end_date"] . " " . $_REQUEST["end_time"]);
-               $isallday = false;
-       }
-
-
-       $cals = dav_getMyCals($a->user["uid"]);
-       foreach ($cals as $c) {
-               $cs = wdcal_calendar_factory($a->user["uid"], $c->namespace, $c->namespace_id);
-               $p  = $cs->getPermissionsItem($a->user["uid"], $uri, $recurr_uri);
-               if ($p["write"]) try {
-                       $cs->updateItem($uri, $start, $end,
-                               stripslashes($_REQUEST["subject"]), $isallday, wdcal_parse_text_serverside($_REQUEST["wdcal_desc"]),
-                               stripslashes($_REQUEST["location"]), $_REQUEST["color"], $a->timezone,
-                               isset($_REQUEST["notification"]), $_REQUEST["notification_type"], $_REQUEST["notification_value"]);
-               } catch (Exception $e) {
-                       notification(t("Error") . ": " . $e);
-               }
-               goaway($a->get_baseurl() . "/dav/wdcal/");
-       }
-
-}
-
 /**
  * @param string $uri
  * @param string $recurr_uri
  * @return string
  */
-function wdcal_getEditPage($uri, $recurr_uri)
+function wdcal_getEditPage($uri, $recurr_uri = "")
 {
 
        $a            = get_app();
@@ -290,8 +255,8 @@ function wdcal_getEditPage($uri, $recurr_uri)
                        "Subject"       => $_REQUEST["title"],
                        "Location"      => "",
                        "Description"   => "",
-                       "StartTime"     => $_REQUEST["start"],
-                       "EndTime"       => $_REQUEST["end"],
+                       "StartTime"     => wdcal_php2MySqlTime($_REQUEST["start"]),
+                       "EndTime"       => wdcal_php2MySqlTime($_REQUEST["end"]),
                        "IsAllDayEvent" => $_REQUEST["isallday"],
                        "Color"         => null,
                        "RecurringRule" => null,
@@ -311,10 +276,10 @@ function wdcal_getEditPage($uri, $recurr_uri)
                        "Subject"       => "",
                        "Location"      => "",
                        "Description"   => "",
-                       "StartTime"     => "",
-                       "EndTime"       => "",
-                       "IsAllDayEvent" => "",
-                       "Color"         => null,
+                       "StartTime"     => date("Y-m-d H:i:s"),
+                       "EndTime"       => date("Y-m-d H:i:s", time() + 3600),
+                       "IsAllDayEvent" => "0",
+                       "Color"         => "#5858ff",
                        "RecurringRule" => null,
                );
                $notification_type  = "hour";
@@ -322,26 +287,27 @@ function wdcal_getEditPage($uri, $recurr_uri)
                $notification       = true;
        }
 
+       $postto = $a->get_baseurl() . "/dav/wdcal/" . ($uri == "new" ? "new/" : $uri . "/edit/");
 
        $out = "<a href='" . $a->get_baseurl() . "/dav/wdcal/'>" . t("Go back to the calendar") . "</a><br><br>";
-       $out .= "<form method='POST' action='" . $a->get_baseurl() . "/dav/wdcal/$uri/edit/'><input type='hidden' name='form_security_token' value='" . get_form_security_token('caledit') . "'>\n";
+       $out .= "<form method='POST' action='$postto'><input type='hidden' name='form_security_token' value='" . get_form_security_token('caledit') . "'>\n";
 
        $out .= "<label for='cal_subject'>Subject:</label>
                <input name='color' id='cal_color' value='" . (strlen($event["Color"]) != 7 ? "#5858ff" : escape_tags($event["Color"])) . "'>
                <input name='subject' id='cal_subject' value='" . escape_tags($event["Subject"]) . "'><br>\n";
        $out .= "<label for='cal_allday'>Is All-Day event:</label><input type='checkbox' name='allday' id='cal_allday' " . ($event["IsAllDayEvent"] ? "checked" : "") . "><br>\n";
 
-       $out .= "<label for='cal_startdate'>Starts:</label>";
+       $out .= "<label for='cal_startdate'>" . t("Starts") . ":</label>";
        $out .= "<input name='start_date' value='" . $localization->dateformat_datepicker_php(wdcal_mySql2PhpTime($event["StartTime"])) . "' id='cal_start_date'>";
        $out .= "<input name='start_time' value='" . substr($event["StartTime"], 11, 5) . "' id='cal_start_time'>";
        $out .= "<br>\n";
 
-       $out .= "<label for='cal_enddate'>Ends:</label>";
+       $out .= "<label for='cal_enddate'>" . t("Ends") . ":</label>";
        $out .= "<input name='end_date' value='" . $localization->dateformat_datepicker_php(wdcal_mySql2PhpTime($event["EndTime"])) . "' id='cal_end_date'>";
        $out .= "<input name='end_time' value='" . substr($event["EndTime"], 11, 5) . "' id='cal_end_time'>";
        $out .= "<br>\n";
 
-       $out .= "<label for='cal_location'>Location:</label><input name='location' id='cal_location' value='" . escape_tags($event["Location"]) . "'><br>\n";
+       $out .= "<label for='cal_location'>" . t("Location") . ":</label><input name='location' id='cal_location' value='" . escape_tags($event["Location"]) . "'><br>\n";
 
        $out .= "<label for='event-desc-textarea'>" . t("Description") . ":</label> <textarea id='event-desc-textarea' name='wdcal_desc' style='vertical-align: top; width: 400px; height: 100px;'>" . escape_tags($event["Description"]) . "</textarea>";
        $out .= "<br style='clear: both;'>";
index b79a477974a6d46fe430712bce58ff2414a31bf9..6635d18aca544961977cc80f87f9226a2d9f3412 100644 (file)
@@ -22,48 +22,49 @@ function dav_module()
 {
 }
 
-function dav_include_files() {
-        require_once (__DIR__ . "/common/dbclasses/dbclass_animexx.class.php");
-        require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.calendars.class.php");
-        require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.jqcalendar.class.php");
-        require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.notifications.class.php");
-        require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.calendarobjects.class.php");
-
-        /*
-        require_once (__DIR__ . "/SabreDAV/lib/Sabre.includes.php");
-        require_once (__DIR__ . "/SabreDAV/lib/Sabre/VObject/includes.php");
-        require_once (__DIR__ . "/SabreDAV/lib/Sabre/DAVACL/includes.php");
-        require_once (__DIR__ . "/SabreDAV/lib/Sabre/CalDAV/includes.php");
-        */
-        require_once (__DIR__ . "/SabreDAV/lib/Sabre/autoload.php");
-
-        $tz_before = date_default_timezone_get();
-        require_once (__DIR__ . "/iCalcreator/iCalcreator.class.php");
-        date_default_timezone_set($tz_before);
-
-        require_once (__DIR__ . "/common/calendar.fnk.php");
-        require_once (__DIR__ . "/common/dav_caldav_backend_common.inc.php");
-        require_once (__DIR__ . "/common/dav_caldav_backend.inc.php");
-        require_once (__DIR__ . "/common/dav_caldav_root.inc.php");
-        require_once (__DIR__ . "/common/dav_user_calendars.inc.php");
-        require_once (__DIR__ . "/common/dav_carddav_root.inc.php");
-        require_once (__DIR__ . "/common/dav_carddav_backend_std.inc.php");
-        require_once (__DIR__ . "/common/dav_user_addressbooks.inc.php");
-        require_once (__DIR__ . "/common/virtual_cal_source_backend.inc.php");
-        require_once (__DIR__ . "/common/wdcal_configuration.php");
-        require_once (__DIR__ . "/common/wdcal_cal_source.inc.php");
-        require_once (__DIR__ . "/common/wdcal_cal_source_private.inc.php");
-
-        require_once (__DIR__ . "/dav_friendica_principal.inc.php");
-        require_once (__DIR__ . "/dav_friendica_auth.inc.php");
-        require_once (__DIR__ . "/dav_carddav_backend_friendica_community.inc.php");
-        require_once (__DIR__ . "/dav_caldav_backend_friendica.inc.php");
-        require_once (__DIR__ . "/virtual_cal_source_friendica.inc.php");
-        require_once (__DIR__ . "/wdcal_cal_source_friendicaevents.inc.php");
-        require_once (__DIR__ . "/FriendicaACLPlugin.inc.php");
-
-        require_once (__DIR__ . "/calendar.friendica.fnk.php");
-        require_once (__DIR__ . "/layout.fnk.php");
+function dav_include_files()
+{
+       require_once (__DIR__ . "/common/dbclasses/dbclass_animexx.class.php");
+       require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.calendars.class.php");
+       require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.jqcalendar.class.php");
+       require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.notifications.class.php");
+       require_once (__DIR__ . "/common/dbclasses/dbclass.friendica.calendarobjects.class.php");
+
+       /*
+                       require_once (__DIR__ . "/SabreDAV/lib/Sabre.includes.php");
+                       require_once (__DIR__ . "/SabreDAV/lib/Sabre/VObject/includes.php");
+                       require_once (__DIR__ . "/SabreDAV/lib/Sabre/DAVACL/includes.php");
+                       require_once (__DIR__ . "/SabreDAV/lib/Sabre/CalDAV/includes.php");
+                       */
+       require_once (__DIR__ . "/SabreDAV/lib/Sabre/autoload.php");
+
+       $tz_before = date_default_timezone_get();
+       require_once (__DIR__ . "/iCalcreator/iCalcreator.class.php");
+       date_default_timezone_set($tz_before);
+
+       require_once (__DIR__ . "/common/calendar.fnk.php");
+       require_once (__DIR__ . "/common/dav_caldav_backend_common.inc.php");
+       require_once (__DIR__ . "/common/dav_caldav_backend.inc.php");
+       require_once (__DIR__ . "/common/dav_caldav_root.inc.php");
+       require_once (__DIR__ . "/common/dav_user_calendars.inc.php");
+       require_once (__DIR__ . "/common/dav_carddav_root.inc.php");
+       require_once (__DIR__ . "/common/dav_carddav_backend_std.inc.php");
+       require_once (__DIR__ . "/common/dav_user_addressbooks.inc.php");
+       require_once (__DIR__ . "/common/virtual_cal_source_backend.inc.php");
+       require_once (__DIR__ . "/common/wdcal_configuration.php");
+       require_once (__DIR__ . "/common/wdcal_cal_source.inc.php");
+       require_once (__DIR__ . "/common/wdcal_cal_source_private.inc.php");
+
+       require_once (__DIR__ . "/dav_friendica_principal.inc.php");
+       require_once (__DIR__ . "/dav_friendica_auth.inc.php");
+       require_once (__DIR__ . "/dav_carddav_backend_friendica_community.inc.php");
+       require_once (__DIR__ . "/dav_caldav_backend_friendica.inc.php");
+       require_once (__DIR__ . "/virtual_cal_source_friendica.inc.php");
+       require_once (__DIR__ . "/wdcal_cal_source_friendicaevents.inc.php");
+       require_once (__DIR__ . "/FriendicaACLPlugin.inc.php");
+
+       require_once (__DIR__ . "/calendar.friendica.fnk.php");
+       require_once (__DIR__ . "/layout.fnk.php");
 }
 
 
@@ -79,7 +80,7 @@ function dav_init(&$a)
         */
 
        dav_include_files();
-       
+
        if (false) {
                dbg(true);
                error_reporting(E_ALL);
@@ -174,15 +175,29 @@ function dav_content()
                return wdcal_getSettingsPage($a);
        } elseif ($a->argv[1] == "wdcal") {
                if ($a->argc >= 3 && strlen($a->argv[2]) > 0) {
-                       $uri        = $a->argv[2];
-                       $recurr_uri = ""; // @TODO
-                       if (isset($a->argv[3]) && $a->argv[3] == "edit") {
+                       $uri = $a->argv[2];
+
+                       if ($uri == "new") {
                                $o = "";
-                               if (isset($_REQUEST["save"])) $o .= wdcal_postEditPage($uri, $recurr_uri);
-                               $o .= wdcal_getEditPage($uri, $recurr_uri);
+                               if (isset($_REQUEST["save"])) {
+                                       check_form_security_token_redirectOnErr($a->get_baseurl() . "/dav/wdcal/", "caledit");
+                                       $o .= wdcal_postEditPage("new", "", $a->user["uid"], $a->timezone, $a->get_baseurl() . "/dav/wdcal/");
+                               }
+                               $o .= wdcal_getEditPage("new");
                                return $o;
                        } else {
-                               return wdcal_getDetailPage($uri, $recurr_uri);
+                               $recurr_uri = ""; // @TODO
+                               if (isset($a->argv[3]) && $a->argv[3] == "edit") {
+                                       $o = "";
+                                       if (isset($_REQUEST["save"])) {
+                                               check_form_security_token_redirectOnErr($a->get_baseurl() . "/dav/wdcal/", "caledit");
+                                               $o .= wdcal_postEditPage($uri, $recurr_uri, $a->user["uid"], $a->timezone, $a->get_baseurl() . "/dav/wdcal/");
+                                       }
+                                       $o .= wdcal_getEditPage($uri, $recurr_uri);
+                                       return $o;
+                               } else {
+                                       return wdcal_getDetailPage($uri, $recurr_uri);
+                               }
                        }
                } else {
                        $cals      = dav_getMyCals($a->user["uid"]);
@@ -226,9 +241,9 @@ function dav_event_updated_hook(&$a, &$b)
 function dav_profile_tabs_hook(&$a, &$b)
 {
        $b["tabs"][] = array(
-       "label" => t('Calendar'),
-               "url" => $a->get_baseurl() . "/dav/wdcal/",
-               "sel" => "",
+               "label" => t('Calendar'),
+               "url"   => $a->get_baseurl() . "/dav/wdcal/",
+               "sel"   => "",
                "title" => t('Extended calendar with CalDAV-support'),
        );
 }
diff --git a/dav/wdcal/Changelog.txt b/dav/wdcal/Changelog.txt
new file mode 100644 (file)
index 0000000..9cc23a4
--- /dev/null
@@ -0,0 +1,10 @@
+v0.1.1
+======
+[FEATURE] A "New Event" Button in the navigation bar of the calendar is added.
+[FEATURE] When creating an event by dragging in the calendar, the "Edit Details"-Link leads to a page where the details can be added before actually creating the event.
+[BUGFIX] When editing a event, the start time cannot be set befor the end time anymore.
+[BUGFIX] Fixed some problems with Magic Quotes
+
+v0.1
+======
+Initial Release
\ No newline at end of file
index c9ca2d36ff5d5d696e2815a13f94f90f9863f161..78872d5b0bad2a941004a2f0691c556ef5b5d087 100644 (file)
@@ -107,10 +107,11 @@ a.imgbtn span.Delete
        background: url(./images/icons/delete.png) no-repeat 3px 4px;\r
 }\r
 \r
-span.addcal\r
+a.addcal\r
 {\r
     padding-left:20px;\r
        background: url(./images/icons/date_add.png)  no-repeat 1px 50%;\r
+       color: black;\r
 }\r
 span.showdayview\r
 {\r