Просмотр исходного кода
Merge pull request #2233 from etkecc/etherpad-soffice-option
etherpad: add abiword and soffice config options, update log level
pull/2235/head^2
Slavi Pantaleev
3 лет назад
committed by
GitHub
Родитель
Сommit
5fdcead744
Не найден GPG ключ соответствующий данной подписи
Идентификатор GPG ключа: 4AEE18F83AFDEB23
2 измененных файлов:
5 добавлений и
3 удалений
-
roles/custom/matrix-etherpad/defaults/main.yml
-
roles/custom/matrix-etherpad/templates/settings.json.j2
|
|
|
@@ -58,6 +58,8 @@ matrix_etherpad_database_connection_string: 'postgres://{{ matrix_etherpad_datab |
|
|
|
|
|
|
|
# Variables configuring the etherpad |
|
|
|
matrix_etherpad_title: 'Etherpad' |
|
|
|
matrix_etherpad_abiword: null |
|
|
|
matrix_etherpad_soffice: null |
|
|
|
matrix_etherpad_default_pad_text: | |
|
|
|
Welcome to Etherpad! |
|
|
|
|
|
|
|
|
|
|
|
@@ -20,8 +20,8 @@ |
|
|
|
"editOnly": false, |
|
|
|
"minify": true, |
|
|
|
"maxAge": 21600, |
|
|
|
"abiword": null, |
|
|
|
"soffice": null, |
|
|
|
"abiword": {{ matrix_etherpad_abiword|to_json }}, |
|
|
|
"soffice": {{ matrix_etherpad_soffice|to_json }}, |
|
|
|
"tidyHtml": null, |
|
|
|
"allowUnknownFileEnds": true, |
|
|
|
"requireAuthentication": false, |
|
|
|
@@ -103,7 +103,7 @@ |
|
|
|
"pageUp": true, |
|
|
|
"pageDown": true |
|
|
|
}, |
|
|
|
"loglevel": "INFO", |
|
|
|
"loglevel": "WARN", |
|
|
|
"logconfig" : |
|
|
|
{ "appenders": [ |
|
|
|
{ "type": "console", |
|
|
|
|