##// END OF EJS Templates
dependencies: bumped loosely pinned dependencies:...
dependencies: bumped loosely pinned dependencies: - setuptools-40.7.3 - python-editor-1.0.4 - pyasn1-modules-0.2.4 - configparser-3.7.1

File last commit:

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