From 5ab77c745270d7d5c016c1dc7ef2a82533a4b16e Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Thu, 17 Jul 2014 14:19:04 +0200 Subject: Rename to slixmpp --- sleekxmpp/plugins/xep_0172/stanza.py | 67 ------------------------------------ 1 file changed, 67 deletions(-) delete mode 100644 sleekxmpp/plugins/xep_0172/stanza.py (limited to 'sleekxmpp/plugins/xep_0172/stanza.py') diff --git a/sleekxmpp/plugins/xep_0172/stanza.py b/sleekxmpp/plugins/xep_0172/stanza.py deleted file mode 100644 index 110c237b..00000000 --- a/sleekxmpp/plugins/xep_0172/stanza.py +++ /dev/null @@ -1,67 +0,0 @@ -""" - SleekXMPP: The Sleek XMPP Library - Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout - This file is part of SleekXMPP. - - See the file LICENSE for copying permission. -""" - -from sleekxmpp.xmlstream import ElementBase, ET - - -class UserNick(ElementBase): - - """ - XEP-0172: User Nickname allows the addition of a element - in several stanza types, including and stanzas. - - The nickname contained in a should be the global, friendly or - informal name chosen by the owner of a bare JID. The element - may be included when establishing communications with new entities, - such as normal XMPP users or MUC services. - - The nickname contained in a element will not necessarily be - the same as the nickname used in a MUC. - - Example stanzas: - - The User - ... - - - - The User - - - Stanza Interface: - nick -- A global, friendly or informal name chosen by a user. - - Methods: - setup -- Overrides ElementBase.setup. - get_nick -- Return the nickname in the element. - set_nick -- Add a element with the given nickname. - del_nick -- Remove the element. - """ - - namespace = 'http://jabber.org/protocol/nick' - name = 'nick' - plugin_attrib = name - interfaces = set(('nick',)) - - def set_nick(self, nick): - """ - Add a element with the given nickname. - - Arguments: - nick -- A human readable, informal name. - """ - self.xml.text = nick - - def get_nick(self): - """Return the nickname in the element.""" - return self.xml.text - - def del_nick(self): - """Remove the element.""" - if self.parent is not None: - self.parent().xml.remove(self.xml) -- cgit v1.2.3