📑 Collabora Online for Nextcloud
Перейти к файлу
Jenkins for ownCloud 0e88c8e2b5 [tx-robot] updated from transifex 2016-07-01 02:34:36 -04:00
appinfo Add a revision history sidebar 2016-06-28 14:24:26 +05:30
assets remove unused assets 2016-06-26 17:29:46 +02:00
controller Add a revision history sidebar 2016-06-28 14:24:26 +05:30
css No horizontal scrollbar in revison history sidebar 2016-06-28 20:23:16 +05:30
img adjust app icon to fit new filetype icons 2015-09-03 16:12:19 +02:00
js Wait till page is rendered 2016-06-29 22:03:01 +05:30
l10n [tx-robot] updated from transifex 2016-07-01 02:34:36 -04:00
lib Add a revision history sidebar 2016-06-28 14:24:26 +05:30
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 .gitignore: Add built targets, *.tar.gz, *.spec 2016-06-28 14:24:57 +05:30
.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 add app target in Makefile 2016-06-29 10:13:39 +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