Projects
Kolab:Winterfell
kolab-autoconf
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 14
View file
kolab-autoconf.spec
Changed
@@ -29,7 +29,7 @@ %global _ap_sysconfdir %{_sysconfdir}/%{httpd_name} Name: kolab-autoconf -Version: 1.3.0 +Version: 1.3.1 Release: 1%{?dist} Summary: Autodiscovery for clients of Kolab Groupware @@ -83,6 +83,9 @@ %attr(0750,%{httpd_user},%{httpd_group}) %{_var}/log/%{name} %changelog +* Mon Mar 18 2019 Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> - 1.3.1-1 +- Release 1.3.1 + * Wed Jun 27 2018 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 1.3.0-1 - Release version 1.3.0
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +kolab-autoconf (1.3.1-1) unstable; urgency=medium + + * Release of version 1.3.1. + + -- Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Mon, 18 Mar 2019 16:24:02 +0100 + kolab-autoconf (1.3.0-3) unstable; urgency=medium * Fix dependency - the Debian package is called php-net-ldap3
View file
kolab-autoconf-1.3.0.tar.gz/lib/Autodiscover.php -> kolab-autoconf-1.3.1.tar.gz/lib/Autodiscover.php
Changed
@@ -197,15 +197,15 @@ */ protected function init_ldap() { - $ldap_uri = $this->conf->get('ldap_uri', FALSE); + $ldap_uri = $this->conf->get('ldap_uri', false); if (!$ldap_uri) { - return FALSE; + return false; } $uri = parse_url($ldap_uri); - $this->_ldap_server = $uri['host']; + $this->_ldap_server = ($uri['scheme'] === 'ldaps' ? 'ldaps://' : '') . $uri['host']; $this->_ldap_port = $uri['port']; $this->_ldap_scheme = $uri['scheme']; $this->_ldap_bind_dn = $this->conf->get('ldap', 'service_bind_dn');
View file
kolab-autoconf-1.3.0.tar.gz/lib/Conf.php -> kolab-autoconf-1.3.1.tar.gz/lib/Conf.php
Changed
@@ -95,7 +95,7 @@ return (string) $value; } - public function get_list($key1, $key2 = NULL) + public function get_list($key1, $key2 = null) { $list = array(); $value = $this->get($key1, $key2); @@ -111,7 +111,7 @@ return $list; } - public function get_raw($key1, $key2 = NULL) + public function get_raw($key1, $key2 = null) { if (isset($this->_conf[$key1])) { if ($key2) { @@ -154,7 +154,7 @@ return null; } - public function expand($str, $custom = FALSE) + public function expand($str, $custom = false) { if (preg_match_all('/%\((?P<variable>\w+)\)s/', $str, $matches)) { if (isset($matches['variable']) && !empty($matches['variable'])) {
View file
kolab-autoconf-1.3.0.tar.gz/lib/Log.php -> kolab-autoconf-1.3.1.tar.gz/lib/Log.php
Changed
@@ -173,7 +173,7 @@ } if (!empty($args)) { - $logline .= var_export($args, TRUE); + $logline .= var_export($args, true); } }
View file
kolab-autoconf.dsc
Changed
@@ -2,7 +2,7 @@ Source: kolab-autoconf Binary: kolab-autoconf Architecture: all -Version: 1.3.0-3 +Version: 1.3.1-1 Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Uploaders: Tobias Brunner <tobias.brunner@vshn.ch> Homepage: http://www.kolab.org/ @@ -13,5 +13,5 @@ Package-List: kolab-autoconf deb admin extra Files: - 00000000000000000000000000000000 0 kolab-autoconf-1.3.0.tar.gz + 00000000000000000000000000000000 0 kolab-autoconf-1.3.1.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
.