From: Simo Sorce Date: Fri, 29 Aug 2014 21:50:45 +0000 (-0400) Subject: Allow plugins to determine config options order X-Git-Tag: v0.3.0~95 X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=commitdiff_plain;h=ef4fcd195bbf4d69bac142b7767aff344588842c Allow plugins to determine config options order Ordering may also be partial, for any option not specified they will be appended in lexycographic order. Signed-off-by: Simo Sorce Reviewed-by: Patrick Uiterwijk --- diff --git a/ipsilon/admin/common.py b/ipsilon/admin/common.py index 424103e..d2ef3cf 100755 --- a/ipsilon/admin/common.py +++ b/ipsilon/admin/common.py @@ -36,18 +36,33 @@ class AdminPluginPage(Page): # Get the defaults self.plugin_config = obj.get_config_desc() if not self.plugin_config: - self.plugin_config = [] + self.plugin_config = dict() # Now overlay the actual config for option in self.plugin_config: self.plugin_config[option][2] = obj.get_config_value(option) + self.options_order = [] + if hasattr(obj, 'conf_opt_order'): + self.options_order = obj.conf_opt_order + + # append any undefined options + add = [] + for k in self.plugin_config.keys(): + if k not in self.options_order: + add.append(k) + if len(add): + add.sort() + for k in add: + self.options_order.append(k) + @admin_protect def GET(self, *args, **kwargs): return self._template('admin/plugin_config.html', title=self.title, name='admin_%s_%s_form' % (self.facility, self._obj.name), menu=self.menu, action=self.url, + options_order=self.options_order, options=self.plugin_config) @admin_protect diff --git a/templates/admin/plugin_config.html b/templates/admin/plugin_config.html index 7c143af..1f75182 100644 --- a/templates/admin/plugin_config.html +++ b/templates/admin/plugin_config.html @@ -9,7 +9,7 @@
- {% for o in options %} + {% for o in options_order %}