Show More
@@ -0,0 +1,14 b'' | |||||
|
1 | <% | |||
|
2 | from pyramid.renderers import render as pyramid_render | |||
|
3 | from pyramid.threadlocal import get_current_registry, get_current_request | |||
|
4 | pyramid_registry = get_current_registry() | |||
|
5 | %> | |||
|
6 | % for plugin, config in pyramid_registry.rhodecode_plugins.items(): | |||
|
7 | % if config['template_hooks'].get('plugin_init_template'): | |||
|
8 | ${pyramid_render(config['template_hooks'].get('plugin_init_template'), | |||
|
9 | {'config':config}, request=get_current_request(), package='rc_ae')|n} | |||
|
10 | % endif | |||
|
11 | % endfor | |||
|
12 | <script> | |||
|
13 | $.Topic('/plugins/__REGISTER__').publish({}); | |||
|
14 | </script> |
@@ -23,8 +23,6 b' def get_plugin_settings(prefix, settings' | |||||
23 | """ |
|
23 | """ | |
24 | Returns plugin settings. Use:: |
|
24 | Returns plugin settings. Use:: | |
25 |
|
25 | |||
26 |
|
||||
27 |
|
||||
28 | :param prefix: |
|
26 | :param prefix: | |
29 | :param settings: |
|
27 | :param settings: | |
30 | :return: |
|
28 | :return: | |
@@ -45,21 +43,15 b' def register_rhodecode_plugin(config, pl' | |||||
45 | 'javascript': None, |
|
43 | 'javascript': None, | |
46 | 'static': None, |
|
44 | 'static': None, | |
47 | 'css': None, |
|
45 | 'css': None, | |
48 |
' |
|
46 | 'nav': None, | |
49 | 'fulltext_indexer': None, |
|
47 | 'fulltext_indexer': None, | |
50 | 'sqlalchemy_migrations': None, |
|
48 | 'sqlalchemy_migrations': None, | |
51 | 'default_values_setter': None, |
|
49 | 'default_values_setter': None, | |
52 |
' |
|
50 | 'url_gen': None, | |
53 |
' |
|
51 | 'template_hooks': {} | |
54 | } |
|
52 | } | |
55 | config.registry.rhodecode_plugins[plugin_name].update( |
|
53 | config.registry.rhodecode_plugins[plugin_name].update( | |
56 | plugin_config) |
|
54 | plugin_config) | |
57 | # inform RC what kind of resource types we have available |
|
|||
58 | # so we can avoid failing when a plugin is removed but data |
|
|||
59 | # is still present in the db |
|
|||
60 | if plugin_config.get('resource_types'): |
|
|||
61 | config.registry.resource_types.extend( |
|
|||
62 | plugin_config['resource_types']) |
|
|||
63 |
|
55 | |||
64 | config.action( |
|
56 | config.action( | |
65 | 'register_rhodecode_plugin={}'.format(plugin_name), register) |
|
57 | 'register_rhodecode_plugin={}'.format(plugin_name), register) |
@@ -397,5 +397,4 b' function offsetScroll(element, offset){' | |||||
397 | } |
|
397 | } | |
398 |
|
398 | |||
399 | collapsableContent(); |
|
399 | collapsableContent(); | |
400 | $.Topic('/plugins/__REGISTER__').prepare({}); |
|
|||
401 | }); |
|
400 | }); |
@@ -140,6 +140,8 b'' | |||||
140 | <%def name="head_extra()"></%def> |
|
140 | <%def name="head_extra()"></%def> | |
141 | ${self.head_extra()} |
|
141 | ${self.head_extra()} | |
142 |
|
142 | |||
|
143 | <%include file="/base/plugins_base.html"/> | |||
|
144 | ||||
143 | ## extra stuff |
|
145 | ## extra stuff | |
144 | %if c.pre_code: |
|
146 | %if c.pre_code: | |
145 | ${c.pre_code|n} |
|
147 | ${c.pre_code|n} |
General Comments 0
You need to be logged in to leave comments.
Login now