# HG changeset patch # User souliane # Date 1449043858 -3600 # Node ID 0d972af37ff543cdcd34fc795789fc5035b23aec # Parent 96b722a5e263724a34dbea37a00dbc4b8d2d5c6f plugin misc_account: temporary disabling posts and account deletion diff -r 96b722a5e263 -r 0d972af37ff5 src/plugins/plugin_misc_account.py --- a/src/plugins/plugin_misc_account.py Wed Dec 02 00:37:28 2015 +0100 +++ b/src/plugins/plugin_misc_account.py Wed Dec 02 09:10:58 2015 +0100 @@ -304,6 +304,8 @@ form_ui.addLabel(D_("New password (again)")) form_ui.addPassword("new_passwd2", value="") + # FIXME: uncomment and fix these features + """ if 'GROUPBLOG' in self.host.plugins: tab_container.addTab("delete_posts", D_("Delete your posts"), container=xml_tools.PairsContainer) form_ui.addLabel(D_("Current profile password")) @@ -318,6 +320,8 @@ form_ui.addPassword("delete_passwd", value="") form_ui.addLabel(D_("Delete your account")) form_ui.addBool("delete_checkbox", "false") + """ + return form_ui.toXml() @defer.inlineCallbacks @@ -341,6 +345,8 @@ return {'xmlui': error_ui.toXml()} # check for account deletion + # FIXME: uncomment and fix these features + """ delete_passwd = data[xml_tools.SAT_FORM_PREFIX + 'delete_passwd'] delete_checkbox = data[xml_tools.SAT_FORM_PREFIX + 'delete_checkbox'] if delete_checkbox == 'true': @@ -363,6 +369,7 @@ if verified: defer.returnValue(self.__deleteBlogPosts(posts, comments, profile)) defer.returnValue(error_ui()) + """ # check for password modification current_passwd = data[xml_tools.SAT_FORM_PREFIX + 'current_passwd']