📑 Collabora Online for Nextcloud
Перейти к файлу
Andras Timar 1bfa8d2a9d update name to fit in the app dropdown, for real 2016-07-19 20:49:04 +02:00
appinfo update name to fit in the app dropdown, for real 2016-07-19 20:49:04 +02:00
assets remove unused assets 2016-06-26 17:29:46 +02:00
controller Explicit is better than implicit 2016-07-18 17:09:27 +05:30
css Add restore button to the revision history sidebar 2016-07-18 11:11:52 +05:30
img adjust app icon to fit new filetype icons 2015-09-03 16:12:19 +02:00
js Add restore button to the revision history sidebar 2016-07-18 11:11:52 +05:30
l10n [tx-robot] updated from transifex 2016-07-19 02:36:17 -04:00
lib Use non strict comparison to validate token 2016-07-19 15:04:32 +02:00
templates we don't package and apparently we don't need 3rdparty/webodf/dojo-app.css 2016-06-08 11:27:37 +02:00
tests internal name: richdocuments, name: Collabora Online, version: 0.9.0 2016-03-15 00:13:55 +01:00
.gitignore Name file info.xml directly 2016-07-18 12:07:09 +02:00
.scrutinizer.yml adding scrutinizer.yml 2015-05-04 00:12:43 +02:00
.travis.yml Skip Oracle and hhvm for now 2015-12-21 20:26:52 +03:00
CONTRIBUTING.md Add CONTRIBUTING.md 2015-07-08 21:17:20 +02:00
Makefile get version number from appinfo/info.xml 2016-07-19 11:23:53 +02:00
README.md better README 2016-04-12 13:15:40 +02:00
admin.php Fix appid 2015-12-16 18:04:32 +03:00
owncloud-collabora-online.spec.in set default WOPI Client URL for rpm 2016-04-11 17:23:53 +02:00
personal.php Fix appid 2015-12-16 18:04:32 +03:00
public.php remove unused css 2016-06-26 17:34:02 +02:00
settings.php Fix appid 2015-12-16 18:04:32 +03:00

README.md

richdocuments – ownCloud application to integrate Collabora Online

Installation

make dist

Creates a tarball. The contents should go under owncloud/apps/richdocuments.

rpmbuild -ba -vv owncloud-collabora-online.spec

Creates an RPM package (tested only with openSUSE). The CODE VM uses it.

Memcache is a requirement (tested only with APCu). Install php-apcu, php5-apcu, or whatever this package is called on your Linux distro, and add the following line to owncloud/config/config.php:

'memcache.local' => '\OC\Memcache\APCu',

From command line you can use:

occ config:system:set --value='\OC\Memcache\APCu' memcache.local

You can enable richdocument application from the command line:

occ app:enable richdocuments

You need to configure the WOPI Client URL, which is where the LibreOffice Online WebSocket Daemon (loolwsd) is listening. It is in Admin - Collabora Online section in ownCloud, or you can set it from command line:

occ config:app:set --value='https://<hostname or IP address>:<port>' richdocuments wopi_url

Default port is 9980. If loolwsd was compiled without SSL (like in the CODE VM), you have to write http instead of https. If you use SSL, and you get the following error:

cURL error 60: SSL certificate problem: self signed certificate in certificate chain

You have to add the CA cert manually to ownCloud trusted cert storage:

cat ca-chain.cert.pem >> owncloud/resources/config/ca-bundle.crt