forked from cisti/infra
101 lines
2.6 KiB
Django/Jinja
101 lines
2.6 KiB
Django/Jinja
#jinja2: lstrip_blocks: True
|
|
{
|
|
"title": "{{ title }}",
|
|
"favicon": "{{ favicon }}",
|
|
"ip": "127.0.0.1",
|
|
"port" : "31337",
|
|
"showSettingsInAdminPage": false,
|
|
"sessionKey": "oijaoifd",
|
|
"skinName": "colibris",
|
|
"dbType": "postgres",
|
|
"dbSettings" : {
|
|
"user" : "etherpad",
|
|
"host" : "/var/run/postgresql",
|
|
"password": "{{ database_password }}",
|
|
"database": "etherpad",
|
|
"charset" : "utf8mb4"
|
|
},
|
|
"defaultPadText": "{{ pad_default_text | replace("\n", "\\n")}}",
|
|
"padOptions": {
|
|
"noColors": false,
|
|
"showControls": true,
|
|
"showChat": true,
|
|
"showLineNumbers": true,
|
|
"useMonospaceFont": true,
|
|
"userName": true,
|
|
"userColor": false,
|
|
"rtl": false,
|
|
"alwaysShowChat": false,
|
|
"chatAndUsers": false,
|
|
"lang": "{{ pad_options_lang }}"
|
|
},
|
|
"padShortcutEnabled" : {
|
|
"altF9": true,
|
|
"altC": true,
|
|
"cmdShift2": true,
|
|
"delete": true,
|
|
"return": true,
|
|
"esc": true,
|
|
"cmdS": true,
|
|
"tab": true,
|
|
"cmdZ": true,
|
|
"cmdY": true,
|
|
"cmdI": true,
|
|
"cmdB": true,
|
|
"cmdU": true,
|
|
"cmd5": true,
|
|
"cmdShiftL": true,
|
|
"cmdShiftN": true,
|
|
"cmdShift1": true,
|
|
"cmdShiftC": true,
|
|
"cmdH": true,
|
|
"ctrlHome": true,
|
|
"pageUp": true,
|
|
"pageDown": true
|
|
},
|
|
"suppressErrorsInPadText": false,
|
|
"requireSession": false,
|
|
"editOnly": false,
|
|
"sessionNoPassword": false,
|
|
"minify": true,
|
|
"maxAge": 21600,
|
|
"abiword": "/usr/bin/abiword",
|
|
"soffice": false,
|
|
"tidyHtml": "/usr/bin/tidy",
|
|
"allowUnknownFileEnds": true,
|
|
"requireAuthentication": false,
|
|
"requireAuthorization": false,
|
|
"trustProxy": false,
|
|
"disableIPlogging": true,
|
|
"automaticReconnectionTimeout": 5,
|
|
"scrollWhenFocusLineIsOutOfViewport": {
|
|
"percentage": {
|
|
"editionAboveViewport": 0,
|
|
"editionBelowViewport": 0
|
|
},
|
|
"duration": 0,
|
|
"scrollWhenCaretIsInTheLastLineOfViewport": false,
|
|
"percentageToScrollWhenUserPressesArrowUp": 0
|
|
},
|
|
"socketTransportProtocols": ["xhr-polling", "jsonp-polling", "htmlfile"],
|
|
"loadTest": false,
|
|
"indentationOnNewLine": false,
|
|
"toolbar": {
|
|
"left": [
|
|
["bold", "italic", "underline", "strikethrough"],
|
|
["orderedlist", "unorderedlist", "indent", "outdent"],
|
|
["undo", "redo"],
|
|
["clearauthorship"]
|
|
],
|
|
"right": [
|
|
["importexport", "timeslider", "savedrevision"],
|
|
["settings", "embed"],
|
|
["showusers"]
|
|
],
|
|
"timeslider": [
|
|
["timeslider_export", "timeslider_returnToPad"]
|
|
]
|
|
},
|
|
"exposeVersion": false,
|
|
"loglevel": "WARN"
|
|
}
|