Projects
Kolab:Winterfell
chwala
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 5
View file
chwala.spec
Changed
@@ -32,7 +32,7 @@ Name: chwala Version: 0.4 -Release: 0.20160223.git%{?dist} +Release: 0.20160224.git%{?dist} Summary: Glorified WebDAV, done right Group: Applications/Internet
View file
chwala-0.4.tar.gz/config/config.inc.php.dist
Changed
@@ -64,6 +64,7 @@ $config['fileapi_seafile_cache_ttl'] = '7d'; // Default SeaFile Web API host +// Note: http:// and https:// (default) prefixes can be used here $config['fileapi_seafile_host'] = 'localhost'; // Enables SSL certificates validation when connecting
View file
chwala-0.4.tar.gz/lib/drivers/seafile/seafile_api.php
Changed
@@ -83,7 +83,12 @@ $this->config = $config; // set Web API URI - $this->url = rtrim('https://' . ($config['host'] ?: 'localhost'), '/'); + $this->url = rtrim(trim($config['host']), '/') ?: 'localhost'; + + if (!preg_match('|^https?://|i', $this->url)) { + $this->url = 'https://' . $this->url; + } + if (!preg_match('|/api2$|', $this->url)) { $this->url .= '/api2/'; }
View file
chwala-0.4.tar.gz/lib/drivers/webdav/webdav_file_storage.php
Changed
@@ -22,7 +22,14 @@ +--------------------------------------------------------------------------+ */ -require 'SabreDAV/vendor/autoload.php'; +// try SabreDAV installed as described in README +if (file_exists(__DIR__ . '/../../ext/SabreDAV/vendor/autoload.php')) { + require __DIR__ . '/../../ext/SabreDAV/vendor/autoload.php'; +} +// fallback to System-installed package +else { + require 'Sabre/autoload.php'; +} use Sabre\DAV\Client;
View file
chwala.dsc
Changed
@@ -2,7 +2,7 @@ Source: chwala Binary: chwala Architecture: all -Version: 0.4~dev20160223-0~kolab1 +Version: 0.4~dev20160224-0~kolab1 Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Uploaders: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>, Paul Klos <kolab@klos2day.nl> Homepage: http://kolab.org/about/chwala/
View file
debian.changelog
Changed
@@ -1,4 +1,4 @@ -chwala (0.4~dev20160223-0~kolab1) unstable; urgency=low +chwala (0.4~dev20160224-0~kolab1) unstable; urgency=low * Require roundcubemail-plugin-kolab_folders and create necessary symbolic link
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
.