summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/horde-kronolith-kolab/files')
-rw-r--r--www-apps/horde-kronolith-kolab/files/HK-GW-Fix_create_new_event-2.2_alpha.patch14
-rw-r--r--www-apps/horde-kronolith-kolab/files/HK-GW-Fix_share_right_editing-2.2_alpha.patch14
-rw-r--r--www-apps/horde-kronolith-kolab/files/HK-UV-Fix_list_events-2.2_alpha.patch39
-rw-r--r--www-apps/horde-kronolith-kolab/files/conf.php_2.2_alpha.config20
-rw-r--r--www-apps/horde-kronolith-kolab/files/digest-horde-kronolith-kolab-2.2_alpha3
-rw-r--r--www-apps/horde-kronolith-kolab/files/horde-kronolith-kolab-conf-2.2_alpha.template10
6 files changed, 0 insertions, 100 deletions
diff --git a/www-apps/horde-kronolith-kolab/files/HK-GW-Fix_create_new_event-2.2_alpha.patch b/www-apps/horde-kronolith-kolab/files/HK-GW-Fix_create_new_event-2.2_alpha.patch
deleted file mode 100644
index f4e5b00..0000000
--- a/www-apps/horde-kronolith-kolab/files/HK-GW-Fix_create_new_event-2.2_alpha.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Fix the return value when creating a new event.
-
-diff -r b92bff17929a kronolith/lib/Driver/kolab.php
---- a/kronolith/lib/Driver/kolab.php Wed Oct 03 16:28:16 2007 +0200
-+++ b/kronolith/lib/Driver/kolab.php Wed Oct 03 17:15:02 2007 +0200
-@@ -1190,7 +1190,7 @@ class Kronolith_Driver_kolab_wrapper_new
- Kolab::triggerFreeBusyUpdate($this->_store->parseFolder($this->_driver->_calendar));
- }
-
-- return $uid;
-+ return $event->getUID();
- }
-
- /**
diff --git a/www-apps/horde-kronolith-kolab/files/HK-GW-Fix_share_right_editing-2.2_alpha.patch b/www-apps/horde-kronolith-kolab/files/HK-GW-Fix_share_right_editing-2.2_alpha.patch
deleted file mode 100644
index 3d43e72..0000000
--- a/www-apps/horde-kronolith-kolab/files/HK-GW-Fix_share_right_editing-2.2_alpha.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Fixes share right editing for kronolith.
-
-diff -r 0855b853bf45 kronolith/templates/calendars/calendars.inc
---- a/kronolith/templates/calendars/calendars.inc Wed Oct 03 19:42:07 2007 +0200
-+++ b/kronolith/templates/calendars/calendars.inc Wed Oct 03 19:43:30 2007 +0200
-@@ -113,7 +113,7 @@ function checkSubmit()
- <strong><?php echo _("Permissions") ?></strong>
- </td>
- <td>
-- <input type="button" name="perms" class="button" onclick="if (document.shares.edit_share.value) popup(editURL + document.shares.edit_share.value); else alert('<?php echo addslashes(_("You need to select a calendar first")) ?>')" value="<?php echo _("Edit") ?>" />
-+ <input type="button" name="perms" class="button" onclick="if (document.shares.edit_share.value) popup(editURL + encodeURIComponent(document.shares.edit_share.value)); else alert('<?php echo addslashes(_("You need to select a calendar first")) ?>')" value="<?php echo _("Edit") ?>" />
- </td>
- </tr>
- <?php endif; ?>
diff --git a/www-apps/horde-kronolith-kolab/files/HK-UV-Fix_list_events-2.2_alpha.patch b/www-apps/horde-kronolith-kolab/files/HK-UV-Fix_list_events-2.2_alpha.patch
deleted file mode 100644
index b5c58aa..0000000
--- a/www-apps/horde-kronolith-kolab/files/HK-UV-Fix_list_events-2.2_alpha.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Fix event display in kronolith.
-
-diff -r 3bb98854b586 kronolith/lib/Driver/kolab.php
---- a/kronolith/lib/Driver/kolab.php Thu Oct 04 08:29:40 2007 +0200
-+++ b/kronolith/lib/Driver/kolab.php Thu Oct 04 08:39:10 2007 +0200
-@@ -1080,25 +1080,19 @@ class Kronolith_Driver_kolab_wrapper_new
- }
-
- $keep_event = false;
--/*
-- echo "Start: ".$startDate->compareDate($event->start)."<br>\n";
-- echo "End: ".$endDate->compareDate($event->end)."<br>\n";
--*/
-- // check normal event date
-- if ($startDate->compareDate($event->start) <= 0
-- && $endDate->compareDate($event->end) >= -1)
-- {
-+ /* check if event period intersects with given period */
-+ if (!(($endDate->compareDateTime($event->start) < 0) ||
-+ ($startDate->compareDateTime($event->end) > 0))) {
- $keep_event = true;
- }
-
-- // do recurrence expansion if not keeping anyway
-+ /* do recurrence expansion if not keeping anyway */
- if (!$keep_event && $event->recurs()) {
- $next = $event->recurrence->nextRecurrence($startDate);
--
-- if ($next !== false && !$event->recurrence->hasException($next->year, $next->month, $next->mday)
-- && $startDate->compareDate($next) <= 0
-- && $endDate->compareDate($next) >= 0)
-- {
-+ if ($next !== false &&
-+ !$event->recurrence->hasException($next->year, $next->month, $next->mday) &&
-+ (!(($endDate->compareDateTime($event->start) < 0) ||
-+ ($startDate->compareDateTime($event->end) > 0)))) {
- $keep_event = true;
- }
- }
diff --git a/www-apps/horde-kronolith-kolab/files/conf.php_2.2_alpha.config b/www-apps/horde-kronolith-kolab/files/conf.php_2.2_alpha.config
deleted file mode 100644
index 1ffd708..0000000
--- a/www-apps/horde-kronolith-kolab/files/conf.php_2.2_alpha.config
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-/* CONFIG START. DO NOT CHANGE ANYTHING IN OR AFTER THIS LINE. */
-// $Horde: kronolith/config/conf.xml,v 1.19 2006/11/25 00:13:41 jan Exp $
-$conf['calendar']['driver'] = 'kolab';
-$conf['storage']['default_domain'] = '';
-$conf['storage']['freebusy']['protocol'] = 'https';
-$conf['storage']['freebusy']['port'] = 443;
-$conf['storage']['driver'] = 'kolab';
-$conf['metadata']['keywords'] = false;
-$conf['reminder']['server_name'] = '';
-$conf['reminder']['from_addr'] = '';
-$conf['autoshare']['shareperms'] = 'none';
-$conf['holidays']['enable'] = true;
-$conf['menu']['print'] = true;
-$conf['menu']['import_export'] = true;
-$conf['menu']['apps'] = array();
-/* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */
-if (file_exists(dirname(__FILE__) . '/kolab.php')) {
- require_once(dirname(__FILE__) . '/kolab.php');
-}
diff --git a/www-apps/horde-kronolith-kolab/files/digest-horde-kronolith-kolab-2.2_alpha b/www-apps/horde-kronolith-kolab/files/digest-horde-kronolith-kolab-2.2_alpha
deleted file mode 100644
index d532d79..0000000
--- a/www-apps/horde-kronolith-kolab/files/digest-horde-kronolith-kolab-2.2_alpha
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 8ad421ffeb4eda2aff20bd94d5ecbac9 kronolith-h3-2.2-alpha.tar.gz 2013090
-RMD160 b1fe6e176a0cacb1dbaa2e41affd983d0c66d115 kronolith-h3-2.2-alpha.tar.gz 2013090
-SHA256 f908a6ff3ef1436cc121d110302633b9a64911ce536dd8b617d6479b95530bc6 kronolith-h3-2.2-alpha.tar.gz 2013090
diff --git a/www-apps/horde-kronolith-kolab/files/horde-kronolith-kolab-conf-2.2_alpha.template b/www-apps/horde-kronolith-kolab/files/horde-kronolith-kolab-conf-2.2_alpha.template
deleted file mode 100644
index 19c1e75..0000000
--- a/www-apps/horde-kronolith-kolab/files/horde-kronolith-kolab-conf-2.2_alpha.template
+++ /dev/null
@@ -1,10 +0,0 @@
-KOLAB_META_START
-TARGET=/var/www/kolab/htdocs/horde/kronolith/config/kolab.php
-PERMISSIONS=0600
-OWNERSHIP=apache:apache
-KOLAB_META_END
-<?php
-$conf['storage']['default_domain'] = '@@@postfix-mydomain@@@';
-$conf['reminder']['server_name'] = '@@@fqdnhostname@@@';
-$conf['reminder']['from_addr'] = 'postmaster@@@@postfix-mydomain@@@';
-?>