📑 Collabora Online for Nextcloud
Перейти к файлу
Andras Timar 875ca1a766 Bump version to 1.0.0 2016-06-22 10:29:53 +02:00
appinfo Shared documents now show correct editor's name in the change hisotry 2016-06-18 20:43:00 -04:00
assets Move the expected FFS response to the assets 2014-11-05 18:05:06 +03:00
controller Shared documents now show correct editor's name in the change hisotry 2016-06-18 20:43:00 -04:00
css Use new owncloud9 addMenuEntry plugin 2016-06-15 22:38:08 +05:30
img adjust app icon to fit new filetype icons 2015-09-03 16:12:19 +02:00
js remove WebODF l10n 2016-06-22 08:55:54 +02:00
l10n [tx-robot] updated from transifex 2016-06-22 02:36:05 -04:00
lib Shared documents now show correct editor's name in the change hisotry 2016-06-18 20:43:00 -04:00
src/patches remove WebODF l10n 2016-06-22 08:55:54 +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 Bump version to 0.15.0 2016-04-17 11:56:56 +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 Bump version to 1.0.0 2016-06-22 10:29: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 Fix appid 2015-12-16 18:04:32 +03: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