plugin_init.mako
18 lines
| 635 B
| application/x-mako
|
MakoHtmlLexer
r2351 | <%page args="config"/> | |||
r1282 | <script> | |||
var CHANNELSTREAM_URLS = ${config['url_gen'](request)|n}; | ||||
r4287 | %if request.registry.rhodecode_plugins['channelstream']['enabled'] and getattr(c.rhodecode_user, 'username', '') != h.DEFAULT_USER: | |||
r1282 | var CHANNELSTREAM_SETTINGS = { | |||
'enabled': true, | ||||
'ws_location': '${request.registry.settings.get('channelstream.ws_url')}', | ||||
r2103 | 'webapp_location': '${h.route_url('home').rstrip('/')}' | |||
r1282 | }; | |||
%else: | ||||
var CHANNELSTREAM_SETTINGS = { | ||||
'enabled':false, | ||||
'ws_location': '', | ||||
r2103 | 'webapp_location': '${h.route_url('home').rstrip('/')}' | |||
}; | ||||
r1282 | %endif | |||
</script> | ||||