Projects
Kolab:3.4
kolab-webadmin
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 51
View file
kolab-webadmin.spec
Changed
@@ -34,7 +34,7 @@ %global kolabr_group_id 414 Name: kolab-webadmin -Version: 3.2.4 +Version: 3.2.5 Release: 1%{?dist} Summary: Kolab Groupware Server Web Administration Interface License: AGPLv3+ @@ -167,6 +167,10 @@ %attr(0770,%{httpd_user},%{httpd_group}) %{_var}/log/%{name} %changelog +* Fri Nov 28 2014 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.2.5-1 +- New upstream release +- Resolve #3613, #3821, #3987, #4000, #4002 + * Wed Nov 19 2014 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.2.4-1 - New upstream release
View file
debian.changelog
Changed
@@ -1,3 +1,10 @@ +kolab-webadmin (3.2.5-0~kolab1) unstable; urgency=low + + * New upstream release 3.2.5 + * Resolve #3821, #3613, #3987, #4000, #4002 + + -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Fri, 28 Nov 2014 22:08:00 +0100 + kolab-webadmin (3.2.4-0~kolab1) unstable; urgency=low * New upstream release 3.2.4
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-group_types.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-group_types.php
Changed
@@ -9,7 +9,7 @@ $db = SQL::get_instance(); - $result = $db->query("TRUNCATE `group_types`"); + $result = $db->query("TRUNCATE TABLE `group_types`"); $attributes = Array( "auto_form_fields" => Array(
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-hosted-user_types.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-hosted-user_types.php
Changed
@@ -9,7 +9,7 @@ $db = SQL::get_instance(); - $result = $db->query("TRUNCATE `user_types`"); + $result = $db->query("TRUNCATE TABLE `user_types`"); $attributes = Array(
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-options.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-options.php
Changed
@@ -8,7 +8,7 @@ $db = SQL::get_instance(); - $db->query("TRUNCATE `options`"); + $db->query("TRUNCATE TABLE `options`"); exec("locale -a | cut -d'.' -f 1 | cut -d'@' -f1 | grep -E \"^([a-zA-Z_]*)\$\" | sort -u", $output);
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-ou_types.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-ou_types.php
Changed
@@ -9,7 +9,7 @@ $db = SQL::get_instance(); - $result = $db->query("TRUNCATE `ou_types`"); + $result = $db->query("TRUNCATE TABLE `ou_types`"); $attributes = Array( "auto_form_fields" => Array(
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-resource_types.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-resource_types.php
Changed
@@ -9,7 +9,7 @@ $db = SQL::get_instance(); - $result = $db->query("TRUNCATE `resource_types`"); + $result = $db->query("TRUNCATE TABLE `resource_types`"); $attributes = Array( "auto_form_fields" => Array( @@ -24,6 +24,7 @@ "top", "groupofuniquenames", "kolabgroupofuniquenames", + "kolabresource", ), ), "form_fields" => Array( @@ -36,6 +37,15 @@ "autocomplete" => true, "optional" => true, ), + "owner" => Array( + "type" => "list", + "autocomplete" => true, + "optional" => true + ), + "kolabinvitationpolicy" => Array( + "type" => "list", + "optional" => true + ), ), ); @@ -65,6 +75,7 @@ "objectclass" => Array( "top", "kolabsharedfolder", + "kolabresource", "mailrecipient", ), "kolabfoldertype" => Array( @@ -85,6 +96,10 @@ "autocomplete" => true, "optional" => true ), + "kolabinvitationpolicy" => Array( + "type" => "list", + "optional" => true + ), ), );
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-role_types.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-role_types.php
Changed
@@ -9,7 +9,7 @@ $db = SQL::get_instance(); - $result = $db->query("TRUNCATE `role_types`"); + $result = $db->query("TRUNCATE TABLE `role_types`"); $attributes = Array( "auto_form_fields" => Array(
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-sharedfolder_types.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-sharedfolder_types.php
Changed
@@ -9,7 +9,7 @@ $db = SQL::get_instance(); - $result = $db->query("TRUNCATE `sharedfolder_types`"); + $result = $db->query("TRUNCATE TABLE `sharedfolder_types`"); $attributes = Array( "auto_form_fields" => Array(
View file
kolab-webadmin-3.2.4.tar.gz/doc/sample-insert-user_types.php -> kolab-webadmin-3.2.5.tar.gz/doc/sample-insert-user_types.php
Changed
@@ -9,7 +9,7 @@ $db = SQL::get_instance(); - $result = $db->query("TRUNCATE `user_types`"); + $result = $db->query("TRUNCATE TABLE `user_types`"); $attributes = Array( "auto_form_fields" => Array(
View file
kolab-webadmin-3.2.4.tar.gz/lib/Auth/LDAP.php -> kolab-webadmin-3.2.5.tar.gz/lib/Auth/LDAP.php
Changed
@@ -1151,7 +1151,7 @@ { if ($typeid) { $db = SQL::get_instance(); - $query = $db->query("SELECT " . $db->quote_identifier('key') . " FROM {$type}_types WHERE id = ?", array($typeid)); + $query = $db->query("SELECT `key` FROM `{$type}_types` WHERE `id` = ?", array($typeid)); $sql = $db->fetch_assoc($query); // Check if the type has a specific base DN specified.
View file
kolab-webadmin-3.2.4.tar.gz/public_html/skins/default/style.css -> kolab-webadmin-3.2.5.tar.gz/public_html/skins/default/style.css
Changed
@@ -246,10 +246,7 @@ position: absolute; top: 0px; left: 10px; - width: 198px; - height: 74px; cursor: pointer; - background: url(images/logo.png) 0 0 no-repeat; } #content {
View file
kolab-webadmin.dsc
Changed
@@ -2,7 +2,7 @@ Source: kolab-webadmin Binary: kolab-webadmin Architecture: all -Version: 3.2.4-0~kolab1 +Version: 3.2.5-0~kolab1 Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Uploaders: Paul Klos <kolab@klos2day.nl> Homepage: http://www.kolab.org/ @@ -13,5 +13,5 @@ Package-List: kolab-webadmin deb admin extra Files: - 00000000000000000000000000000000 0 kolab-webadmin-3.2.4.tar.gz + 00000000000000000000000000000000 0 kolab-webadmin-3.2.5.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
.