##// END OF EJS Templates
caches: use repo.lru based Dict cache. This LRUDict uses Timing Algo to not have to use locking...
caches: use repo.lru based Dict cache. This LRUDict uses Timing Algo to not have to use locking for the LRU implementation, this it's safer to use for dogpile. We used it before with beaker, so it's generally more stable.

File last commit:

r2351:59272121 default
r2945:ec5716e4 default
Show More
plugin_init.mako
19 lines | 620 B | application/x-mako | MakoHtmlLexer
pylons: remove pylons as dependency...
r2351 <%page args="config"/>
templating: use .mako as extensions for template files.
r1282 <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')}',
routing: removed more usage of pylons url() objects.
r2103 'webapp_location': '${h.route_url('home').rstrip('/')}'
templating: use .mako as extensions for template files.
r1282 };
%else:
var CHANNELSTREAM_SETTINGS = {
'enabled':false,
'ws_location': '',
routing: removed more usage of pylons url() objects.
r2103 'webapp_location': '${h.route_url('home').rstrip('/')}'
};
templating: use .mako as extensions for template files.
r1282 %endif
</script>