##// END OF EJS Templates
packaging: Backport bower support utilities...
packaging: Backport bower support utilities To support nixos-16.03 the utilities to build bower components are backported inside of this PR. Once we switch to the new stable branch, we should be able to drop these pieces again.

File last commit:

r526:1b57d2ee default
r725:57489056 default
Show More
plugins_base.html
14 lines | 556 B | text/html | HtmlLexer
frontend: prepare for plugin registration and life-cycle handling
r373 <%
from pyramid.renderers import render as pyramid_render
from pyramid.threadlocal import get_current_registry, get_current_request
pyramid_registry = get_current_registry()
%>
notifications: support real-time notifications with websockets via channelstream
r526 % for plugin, config in getattr(pyramid_registry, 'rhodecode_plugins', {}).items():
frontend: prepare for plugin registration and life-cycle handling
r373 % if config['template_hooks'].get('plugin_init_template'):
${pyramid_render(config['template_hooks'].get('plugin_init_template'),
{'config':config}, request=get_current_request(), package='rc_ae')|n}
% endif
% endfor
<script>
topics: improve handling topics without callbacks subscribed
r451 $.Topic('/plugins/__REGISTER__').prepareOrPublish({});
frontend: prepare for plugin registration and life-cycle handling
r373 </script>