Projects
Kolab:3.4
roundcubemail-plugins-kolab
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 91
View file
roundcubemail-plugins-kolab.spec
Changed
@@ -23,7 +23,7 @@ %global tmpdir %{_var}/lib/roundcubemail Name: roundcubemail-plugins-kolab -Version: 3.2.1 +Version: 3.2.2 Release: 1%{?dist} Summary: Kolab Groupware plugins for Roundcube Webmail @@ -1965,6 +1965,15 @@ %defattr(-,root,root,-) %changelog +* Thu Jan 1 2015 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.2.2-1 +- Release 0f 3.2.2 +- Fix reference to blank.gif (#4115) +- Fix folder navigation when splitting assets (#4114) +- Clarify configuring login as functionality to limit impersonation to settings only (#4113) +- Fix using a group for authorization of the login as functionality (#4111) +- Clarify the license verbiage (#4035) +- Add creating a folder dialog to save to cloud dialog (#4034) + * Wed Dec 10 2014 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.2.1-1 - New upstream release
View file
debian.changelog
Changed
@@ -1,3 +1,15 @@ +roundcubemail-plugins-kolab (1:3.2.2-0~kolab1) unstable; urgency=low + + * Release 0f 3.2.2 + * Fix reference to blank.gif (#4115) + * Fix folder navigation when splitting assets (#4114) + * Clarify configuring login as functionality to limit impersonation to settings only (#4113) + * Fix using a group for authorization of the login as functionality (#4111) + * Clarify the license verbiage (#4035) + * Add creating a folder dialog to save to cloud dialog (#4034) + + -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Thu, 1 Jan 2015 18:41:13 +0200 + roundcubemail-plugins-kolab (1:3.2.1-0~kolab1) unstable; urgency=low * Release 0f 3.2.1
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/calendar_ui.js -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/calendar_ui.js
Changed
@@ -1936,9 +1936,10 @@ rcmail.gettext('expandattendeegroup','libcalendaring') + '</a>'; } + var img_src = rcmail.assets_path('program/resources/blank.gif'); var html = '<td class="role">' + select + '</td>' + '<td class="name">' + dispname + '</td>' + - '<td class="availability"><img src="./program/resources/blank.gif" class="availabilityicon ' + avail + '" data-email="' + data.email + '" alt="" /></td>' + + '<td class="availability"><img src="' + img_src + '" class="availabilityicon ' + avail + '" data-email="' + data.email + '" alt="" /></td>' + '<td class="confirmstate"><span class="' + String(data.status).toLowerCase() + '" title="' + Q(tooltip) + '">' + Q(data.status || '') + '</span></td>' + (data.cutype != 'RESOURCE' ? '<td class="invite">' + (organizer || readonly || !invbox ? '' : invbox) + '</td>' : '') + '<td class="options">' + (organizer || readonly ? '' : dellink) + '</td>'; @@ -3881,12 +3882,16 @@ base_date.setYear(minical.data('year')); base_date.setHours(12); base_date.setDate(base_date.getDate() - ((base_date.getDay() + 6) % 7) + datepicker_settings.firstDay); - var day_off = base_date.getDay() - datepicker_settings.firstDay; - var base_kw = iso8601Week(base_date); - var target_kw = parseInt(cell.html()); - var diff = (target_kw - base_kw) * 7 * DAY_MS; + var base_kw = iso8601Week(base_date), + target_kw = parseInt(cell.html()), + wdiff = target_kw - base_kw; + if (wdiff > 10) // year jump + base_date.setYear(base_date.getFullYear() - 1); + else if (wdiff < -10) + base_date.setYear(base_date.getFullYear() + 1); // select monday of the chosen calendar week - var date = new Date(base_date.getTime() - day_off * DAY_MS + diff); + var day_off = base_date.getDay() - datepicker_settings.firstDay, + date = new Date(base_date.getTime() - day_off * DAY_MS + wdiff * 7 * DAY_MS); fc.fullCalendar('gotoDate', date).fullCalendar('setDate', date).fullCalendar('changeView', 'agendaWeek'); minical.datepicker('setDate', date); }
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/composer.json -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Calendar plugin", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "1.1.0", + "version": "3.2.2", "authors": [ { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/lib/calendar_ui.php -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/lib/calendar_ui.php
Changed
@@ -119,7 +119,7 @@ $this->rc->output->include_script('treelist.js'); // include kolab folderlist widget if available - if (is_readable($this->cal->api->dir . 'libkolab/js/folderlist.js')) { + if (in_array('libkolab', $this->cal->api->loaded_plugins())) { $this->cal->api->include_script('libkolab/js/folderlist.js'); }
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/skins/classic/templates/calendar.html -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/skins/classic/templates/calendar.html
Changed
@@ -4,7 +4,7 @@ <title><roundcube:object name="pagetitle" /></title> <roundcube:include file="/includes/links.html" /> <script type="text/javascript" src="/functions.js"></script> -<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="./plugins/calendar/skins/classic/iehacks.css" /><![endif]--> +<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="plugins/calendar/skins/classic/iehacks.css" /><![endif]--> </head> <roundcube:if condition="env:extwin" /><body class="calendarmain extwin"><roundcube:else /><body class="calendarmain"><roundcube:endif />
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/skins/classic/templates/freebusylegend.html -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/skins/classic/templates/freebusylegend.html
Changed
@@ -1,7 +1,7 @@ <div id="edit-attendees-legend" class="availability"> - <span class="legend"><img class="availabilityicon free" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availfree" /></span> - <span class="legend"><img class="availabilityicon busy" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availbusy" /></span> - <span class="legend"><img class="availabilityicon tentative" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availtentative" /></span> - <!--<span class="legend"><img class="availabilityicon out-of-office" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availoutofoffice" /></span>--> - <span class="legend"><img class="availabilityicon unknown" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availunknown" /></span> + <span class="legend"><img class="availabilityicon free" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availfree" /></span> + <span class="legend"><img class="availabilityicon busy" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availbusy" /></span> + <span class="legend"><img class="availabilityicon tentative" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availtentative" /></span> + <!--<span class="legend"><img class="availabilityicon out-of-office" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availoutofoffice" /></span>--> + <span class="legend"><img class="availabilityicon unknown" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availunknown" /></span> </div>
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/skins/classic/templates/print.html -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/skins/classic/templates/print.html
Changed
@@ -23,6 +23,6 @@ <roundcube:object name="plugin.calendar_css" printmode="true" /> -<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="./plugins/calendar/skins/classic/print.iehacks.css" /><![endif]--> +<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="plugins/calendar/skins/classic/print.iehacks.css" /><![endif]--> </body> </html> \ No newline at end of file
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/skins/larry/templates/freebusylegend.html -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/skins/larry/templates/freebusylegend.html
Changed
@@ -1,7 +1,7 @@ <div id="edit-attendees-legend" class="availability"> - <span class="legend"><img class="availabilityicon free" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availfree" /></span> - <span class="legend"><img class="availabilityicon busy" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availbusy" /></span> - <span class="legend"><img class="availabilityicon tentative" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availtentative" /></span> - <!--<span class="legend"><img class="availabilityicon out-of-office" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availoutofoffice" /></span>--> - <span class="legend"><img class="availabilityicon unknown" src="./program/resources/blank.gif" /> <roundcube:label name="calendar.availunknown" /></span> + <span class="legend"><img class="availabilityicon free" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availfree" /></span> + <span class="legend"><img class="availabilityicon busy" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availbusy" /></span> + <span class="legend"><img class="availabilityicon tentative" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availtentative" /></span> + <!--<span class="legend"><img class="availabilityicon out-of-office" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availoutofoffice" /></span>--> + <span class="legend"><img class="availabilityicon unknown" src="program/resources/blank.gif" /> <roundcube:label name="calendar.availunknown" /></span> </div>
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/calendar/skins/larry/templates/print.html -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/calendar/skins/larry/templates/print.html
Changed
@@ -23,6 +23,6 @@ <roundcube:object name="plugin.calendar_css" printmode="true" /> -<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="./plugins/calendar/skins/classic/print.iehacks.css" /><![endif]--> +<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="plugins/calendar/skins/classic/print.iehacks.css" /><![endif]--> </body> </html> \ No newline at end of file
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_addressbook/composer.json -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_addressbook/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab addressbook", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "1.0.0", + "version": "3.2.2", "authors": [ { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_addressbook/lib/kolab_addressbook_ui.php -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_addressbook/lib/kolab_addressbook_ui.php
Changed
@@ -55,7 +55,7 @@ $this->plugin->include_stylesheet($this->plugin->local_skin_path().'/kolab_addressbook.css'); // include kolab folderlist widget if available - if (is_readable($this->plugin->api->dir . 'libkolab/js/folderlist.js')) { + if (in_array('libkolab', $this->plugin->api->loaded_plugins())) { $this->plugin->api->include_script('libkolab/js/folderlist.js'); }
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_auth/composer.json -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_auth/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab authentication", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "1.0.0", + "version": "3.2.2", "authors": [ { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_auth/config.inc.php.dist -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_auth/config.inc.php.dist
Changed
@@ -18,10 +18,10 @@ // This will overwrite defined filter $config['kolab_auth_filter'] = '(&(objectClass=kolabInetOrgPerson)(|(uid=%u)(mail=%fu)(alias=%fu)))'; -// Use this fields (from fieldmap configuration) to get authentication ID +// Use this field (from fieldmap configuration) to get authentication ID. Don't use an array here! $config['kolab_auth_login'] = 'email'; -// Use this fields (from fieldmap configuration) for default identity. +// Use these fields (from fieldmap configuration) for default identity. // 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
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_auth/kolab_auth_ldap.php -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_auth/kolab_auth_ldap.php
Changed
@@ -155,11 +155,10 @@ $groups = array(); foreach ($result as $entry) { + $dn = $entry['dn']; $entry = rcube_ldap_generic::normalize_entry($entry); - if (!$entry['dn']) { - $entry['dn'] = key($result->entries(true)); - } - $groups[$entry['dn']] = $entry[$name_attr]; + + $groups[$dn] = $entry[$name_attr]; } return $groups;
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_delegation/composer.json -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_delegation/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab delegation feature", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "0.5.0", + "version": "3.2.2", "authors": [ { "name": "Aleksander Machniak", @@ -22,6 +22,6 @@ "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", "kolab/libkolab": ">=1.1.0", - "kolab/kolab_auth": ">=1.0.0" + "kolab/kolab_auth": ">=3.2.2" } }
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_delegation/skins/larry/style.css -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_delegation/skins/larry/style.css
Changed
@@ -61,7 +61,7 @@ padding: 2px; padding-top: 4px; min-width: 2em; - background: #d6eaf3; + background-color: #d6eaf3; border-bottom: 2px solid #fff; text-align: center; }
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_files/composer.json -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_files/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "User interface for Kolab File Manager (Chwala)", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "1.1.0", + "version": "3.2.2", "authors": [ { "name": "Aleksander Machniak",
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_files/kolab_files.js -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_files/kolab_files.js
Changed
@@ -70,6 +70,10 @@ rcmail.addEventListener('menu-open', kolab_files_attach_menu_open); rcmail.enable_command('folder-create', true); } + // attachment preview + else if (rcmail.env.action == 'get') { + rcmail.enable_command('folder-create', true); + } kolab_files_init(); } @@ -142,7 +146,7 @@ sort_col: 'name', sort_reverse: false, search_threads: rcmail.env.search_threads, - resources_dir: 'program/resources', + resources_dir: rcmail.assets_path('program/resources'), supported_mimetypes: rcmail.env.file_mimetypes }); @@ -1938,7 +1942,8 @@ // otherwise the form will be posted to a new window if (document.all) { var html = '<iframe id="'+frame_name+'" name="'+frame_name+'"' - + ' src="program/resources/blank.gif" style="width:0;height:0;visibility:hidden;"></iframe>'; + + ' src="' + rcmail.assets_path('program/resources/blank.gif') + '"' + + ' style="width:0;height:0;visibility:hidden;"></iframe>'; document.body.insertAdjacentHTML('BeforeEnd', html); } // for standards-compliant browsers
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_notes/composer.json -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_notes/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Notes module for Roundcube connecting to a Kolab server for storage", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "1.1.0", + "version": "3.2.2", "authors": [ { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_notes/kolab_notes_ui.php -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_notes/kolab_notes_ui.php
Changed
@@ -58,7 +58,7 @@ $this->plugin->include_script('jquery.tagedit.js'); // include kolab folderlist widget if available - if (is_readable($this->plugin->api->dir . 'libkolab/js/folderlist.js')) { + if (in_array('libkolab', $this->plugin->api->loaded_plugins())) { $this->plugin->api->include_script('libkolab/js/folderlist.js'); }
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/kolab_notes/notes.js -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/kolab_notes/notes.js
Changed
@@ -370,7 +370,7 @@ selector: '#notecontent', theme: 'modern', language: settings.editor.lang, - content_css: 'program/js/tinymce/roundcube/content.css?v1', + content_css: rcmail.assets_path('program/js/tinymce/roundcube/content.css?v2'), plugins: 'autolink charmap code link paste tabfocus searchreplace table textcolor', toolbar: 'bold italic underline | alignleft aligncenter alignright alignjustify ' + '| bullist numlist outdent indent blockquote | forecolor backcolor fontselect fontsizeselect '
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/tasklist/composer.json -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/tasklist/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Task management plugin", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "1.1.0", + "version": "3.2.2", "authors": [ { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.2.1.tar.gz/plugins/tasklist/tasklist_ui.php -> roundcubemail-plugins-kolab-3.2.2.tar.gz/plugins/tasklist/tasklist_ui.php
Changed
@@ -156,7 +156,7 @@ $this->rc->output->include_script('treelist.js'); // include kolab folderlist widget if available - if (is_readable($this->plugin->api->dir . 'libkolab/js/folderlist.js')) { + if (in_array('libkolab', $this->plugin->api->loaded_plugins())) { $this->plugin->api->include_script('libkolab/js/folderlist.js'); }
View file
roundcubemail-plugins-kolab.dsc
Changed
@@ -2,7 +2,7 @@ Source: roundcubemail-plugins-kolab Binary: roundcubemail-plugins-kolab Architecture: all -Version: 1:3.2.1-0~kolab1 +Version: 1:3.2.2-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 @@ -10,5 +10,5 @@ Package-List: roundcubemail-plugins-kolab deb web extra Files: - 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.2.1.tar.gz + 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.2.2.tar.gz 00000000000000000000000000000000 0 debian.tar.gz
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
.