Mercurial > libervia-backend
diff src/plugins/plugin_xep_0050.py @ 1539:98f92a054539
plugins: lowered security limits for non dangerous actions. A reference documentation is in progress to choose values: http://wiki.goffi.org/wiki/Security_Limits/en
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 29 Sep 2015 20:19:43 +0200 |
parents | 4eca4f5e21ec |
children | 94c450972346 |
line wrap: on
line diff
--- a/src/plugins/plugin_xep_0050.py Tue Sep 29 19:07:32 2015 +0200 +++ b/src/plugins/plugin_xep_0050.py Tue Sep 29 20:19:43 2015 +0200 @@ -219,7 +219,7 @@ method=self._requestCommandsList, async=True) self.__requesting_id = host.registerCallback(self._requestingEntity, with_data=True) - host.importMenu((D_("Service"), D_("commands")), self._commandsMenu, security_limit=4, help_string=D_("Execute ad-hoc commands")) + host.importMenu((D_("Service"), D_("commands")), self._commandsMenu, security_limit=2, help_string=D_("Execute ad-hoc commands")) def getHandler(self, profile): return XEP_0050_handler(self) @@ -401,7 +401,7 @@ form_ui.addText(_("Please enter target jid"), 'instructions') form_ui.changeContainer("pairs") form_ui.addLabel("jid") - jid = form_ui.addString("jid", value=self.host.getClient(profile).jid.host) + form_ui.addString("jid", value=self.host.getClient(profile).jid.host) return {'xmlui': form_ui.toXml()} def _statusCallback(self, command_elt, session_data, action, node, profile):