##// END OF EJS Templates
nix: Updated hash of rhodecode-tools....
nix: Updated hash of rhodecode-tools. This should be the last time we have to update the hash without code changes in rhodecode-tools becuase the archive creation now uses the modifucation time of the changeset. Therefore the hash only changes if another commit is referenced.

File last commit:

r764:52c2b99a default
r875:5a048c57 default
Show More
plugins_base.html
11 lines | 478 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