Projects
Kolab:Winterfell
roundcubemail-plugins-kolab
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 7
View file
roundcubemail-plugins-kolab.spec
Changed
@@ -24,7 +24,7 @@ Name: roundcubemail-plugins-kolab Version: 3.3 -Release: 0.20160209.git%{?dist} +Release: 0.20160211.git%{?dist} Summary: Kolab Groupware plugins for Roundcube Webmail Group: Applications/Internet
View file
debian.changelog
Changed
@@ -1,4 +1,4 @@ -roundcubemail-plugins-kolab (1:3.3~dev20160209-0~kolab1) unstable; urgency=low +roundcubemail-plugins-kolab (1:3.3~dev20160211-0~kolab1) unstable; urgency=low * fix package version: we need epoch 1
View file
roundcubemail-plugins-kolab-3.3.tar.gz/plugins/calendar/drivers/kolab/kolab_invitation_calendar.php
Changed
@@ -257,7 +257,7 @@ } if ($match) { - $events[$event['uid']] = $this->_mod_event($event); + $events[$event['id'] ?: $event['uid']] = $this->_mod_event($event); } }
View file
roundcubemail-plugins-kolab-3.3.tar.gz/plugins/kolab_delegation/config.inc.php.dist
Changed
@@ -9,18 +9,6 @@ // Note: LDAP addressbook defined for kolab_auth plugin is used $config['kolab_delegation_delegate_field'] = 'kolabDelegate'; -// User authentication ID field (from fieldmap configuration) -// See kolab_auth plugin config -$config['kolab_delegation_login_field'] = 'email'; - -// Use this fields (from fieldmap configuration) for identities -// If the value array contains more than one field, first non-empty will be used -// Note: These aren't LDAP attributes, but field names in config -// Note: If there's more than one email address, as many identities will be created -// See kolab_auth plugin config -$config['kolab_delegation_name_field'] = array('name', 'cn'); -$config['kolab_delegation_email_field'] = array('email'); - // Remove all user identities which do not match the user's primary or alias // addresses and delegator's addresses $config['kolab_delegation_purge_identities'] = false;
View file
roundcubemail-plugins-kolab-3.3.tar.gz/plugins/kolab_files/skins/larry/style.css
Changed
@@ -514,6 +514,10 @@ width: 200px; } +#file-rename-form input { + width: 98%; +} + table.propform td.source.selected { background-color: #c7e3ef; }
View file
roundcubemail-plugins-kolab-3.3.tar.gz/plugins/libkolab/lib/kolab_format_event.php
Changed
@@ -106,7 +106,7 @@ $vexceptions = new vectorevent; foreach ($object['exceptions'] as $i => $exception) { $exevent = new kolab_format_event; - $exevent->set(($compacted = $this->compact_exception($exception, $object))); // only save differing values + $exevent->set($compacted = $this->compact_exception($exception, $object)); // only save differing values // get value for recurrence-id $recurrence_id = null; @@ -320,11 +320,17 @@ */ private function expand_exception($exception, $master) { + // Note: If an exception has no attendees it means there's "no attendees + // for this occurrence", not "attendees are the same as in the event" (#5300) + + $forbidden = array('exceptions', 'attendees'); $is_recurring = !empty($master['recurrence']); foreach ($master as $prop => $value) { - if (empty($exception[$prop]) && !empty($value) && $prop != 'exceptions' && $prop[0] != '_' - && ($is_recurring || in_array($prop, array('uid','organizer','_attachments')))) { + if (empty($exception[$prop]) && !empty($value) && $prop[0] != '_' + && !in_array($prop, $forbidden) + && ($is_recurring || in_array($prop, array('uid','organizer'))) + ) { $exception[$prop] = $value; if ($prop == 'recurrence') { unset($exception[$prop]['EXCEPTIONS']); @@ -334,5 +340,4 @@ return $exception; } - }
View file
roundcubemail-plugins-kolab.dsc
Changed
@@ -2,7 +2,7 @@ Source: roundcubemail-plugins-kolab Binary: roundcubemail-plugins-kolab Architecture: all -Version: 1:3.3~dev20160209-0~kolab1 +Version: 1:3.3~dev20160211-0~kolab1 Maintainer: Christoph Wickert <wickert@kolabsys.com> Uploaders: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>, Paul Klos <kolab@klos2day.nl> Standards-Version: 3.9.3
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.