##// END OF EJS Templates
pull-requests: updated versioning support....
pull-requests: updated versioning support. - each pr version connects invalidated comments to it - in version list we show number of comments made on each version - show all outdated comments even for deleted files - linkify outdated comments to first one - added auto-collapse of commit range if they are more than 5 - styling changes, wide mode improvements

File last commit:

r764:52c2b99a default
r1268:7eb711c7 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