partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
valid
Roster.get_items_by_group
Return a list of items within a given group. :Parameters: - `name`: name to look-up - `case_sensitive`: if `False` the matching will be case insensitive. :Types: - `name`: `unicode` - `case_sensitive`: `bool` :Returntype: `list` of ...
pyxmpp2/roster.py
def get_items_by_group(self, group, case_sensitive = True): """ Return a list of items within a given group. :Parameters: - `name`: name to look-up - `case_sensitive`: if `False` the matching will be case insensitive. :Types: - `name`: `...
def get_items_by_group(self, group, case_sensitive = True): """ Return a list of items within a given group. :Parameters: - `name`: name to look-up - `case_sensitive`: if `False` the matching will be case insensitive. :Types: - `name`: `...
[ "Return", "a", "list", "of", "items", "within", "a", "given", "group", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L576-L604
[ "def", "get_items_by_group", "(", "self", ",", "group", ",", "case_sensitive", "=", "True", ")", ":", "result", "=", "[", "]", "if", "not", "group", ":", "for", "item", "in", "self", ".", "_items", ":", "if", "not", "item", ".", "groups", ":", "resul...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Roster.add_item
Add an item to the roster. This will not automatically update the roster on the server. :Parameters: - `item`: the item to add - `replace`: if `True` then existing item will be replaced, otherwise a `ValueError` will be raised on conflict :Types: ...
pyxmpp2/roster.py
def add_item(self, item, replace = False): """ Add an item to the roster. This will not automatically update the roster on the server. :Parameters: - `item`: the item to add - `replace`: if `True` then existing item will be replaced, otherwise a `V...
def add_item(self, item, replace = False): """ Add an item to the roster. This will not automatically update the roster on the server. :Parameters: - `item`: the item to add - `replace`: if `True` then existing item will be replaced, otherwise a `V...
[ "Add", "an", "item", "to", "the", "roster", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L606-L627
[ "def", "add_item", "(", "self", ",", "item", ",", "replace", "=", "False", ")", ":", "if", "item", ".", "jid", "in", "self", ".", "_jids", ":", "if", "replace", ":", "self", ".", "remove_item", "(", "item", ".", "jid", ")", "else", ":", "raise", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Roster.remove_item
Remove item from the roster. :Parameters: - `jid`: JID of the item to remove :Types: - `jid`: `JID`
pyxmpp2/roster.py
def remove_item(self, jid): """Remove item from the roster. :Parameters: - `jid`: JID of the item to remove :Types: - `jid`: `JID` """ if jid not in self._jids: raise KeyError(jid) index = self._jids[jid] for i in range(index, ...
def remove_item(self, jid): """Remove item from the roster. :Parameters: - `jid`: JID of the item to remove :Types: - `jid`: `JID` """ if jid not in self._jids: raise KeyError(jid) index = self._jids[jid] for i in range(index, ...
[ "Remove", "item", "from", "the", "roster", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L629-L643
[ "def", "remove_item", "(", "self", ",", "jid", ")", ":", "if", "jid", "not", "in", "self", ".", "_jids", ":", "raise", "KeyError", "(", "jid", ")", "index", "=", "self", ".", "_jids", "[", "jid", "]", "for", "i", "in", "range", "(", "index", ",",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.load_roster
Load roster from an XML file. Can be used before the connection is started to load saved roster copy, for efficient retrieval of versioned roster. :Parameters: - `source`: file name or a file object :Types: - `source`: `str` or file-like object
pyxmpp2/roster.py
def load_roster(self, source): """Load roster from an XML file. Can be used before the connection is started to load saved roster copy, for efficient retrieval of versioned roster. :Parameters: - `source`: file name or a file object :Types: - `source`: `...
def load_roster(self, source): """Load roster from an XML file. Can be used before the connection is started to load saved roster copy, for efficient retrieval of versioned roster. :Parameters: - `source`: file name or a file object :Types: - `source`: `...
[ "Load", "roster", "from", "an", "XML", "file", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L670-L688
[ "def", "load_roster", "(", "self", ",", "source", ")", ":", "try", ":", "tree", "=", "ElementTree", ".", "parse", "(", "source", ")", "except", "ElementTree", ".", "ParseError", ",", "err", ":", "raise", "ValueError", "(", "\"Invalid roster format: {0}\"", "...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.save_roster
Save the roster to an XML file. Can be used to save the last know roster copy for faster loading of a verisoned roster (if server supports that). :Parameters: - `dest`: file name or a file object - `pretty`: pretty-format the roster XML :Types: - `de...
pyxmpp2/roster.py
def save_roster(self, dest, pretty = True): """Save the roster to an XML file. Can be used to save the last know roster copy for faster loading of a verisoned roster (if server supports that). :Parameters: - `dest`: file name or a file object - `pretty`: pretty-...
def save_roster(self, dest, pretty = True): """Save the roster to an XML file. Can be used to save the last know roster copy for faster loading of a verisoned roster (if server supports that). :Parameters: - `dest`: file name or a file object - `pretty`: pretty-...
[ "Save", "the", "roster", "to", "an", "XML", "file", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L690-L726
[ "def", "save_roster", "(", "self", ",", "dest", ",", "pretty", "=", "True", ")", ":", "if", "self", ".", "roster", "is", "None", ":", "raise", "ValueError", "(", "\"No roster\"", ")", "element", "=", "self", ".", "roster", ".", "as_xml", "(", ")", "i...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.handle_got_features_event
Check for roster related features in the stream features received and set `server_features` accordingly.
pyxmpp2/roster.py
def handle_got_features_event(self, event): """Check for roster related features in the stream features received and set `server_features` accordingly. """ server_features = set() logger.debug("Checking roster-related features") if event.features.find(FEATURE_ROSTERVER) i...
def handle_got_features_event(self, event): """Check for roster related features in the stream features received and set `server_features` accordingly. """ server_features = set() logger.debug("Checking roster-related features") if event.features.find(FEATURE_ROSTERVER) i...
[ "Check", "for", "roster", "related", "features", "in", "the", "stream", "features", "received", "and", "set", "server_features", "accordingly", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L729-L741
[ "def", "handle_got_features_event", "(", "self", ",", "event", ")", ":", "server_features", "=", "set", "(", ")", "logger", ".", "debug", "(", "\"Checking roster-related features\"", ")", "if", "event", ".", "features", ".", "find", "(", "FEATURE_ROSTERVER", ")"...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.handle_authorized_event
Request roster upon login.
pyxmpp2/roster.py
def handle_authorized_event(self, event): """Request roster upon login.""" self.server = event.authorized_jid.bare() if "versioning" in self.server_features: if self.roster is not None and self.roster.version is not None: version = self.roster.version else...
def handle_authorized_event(self, event): """Request roster upon login.""" self.server = event.authorized_jid.bare() if "versioning" in self.server_features: if self.roster is not None and self.roster.version is not None: version = self.roster.version else...
[ "Request", "roster", "upon", "login", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L744-L754
[ "def", "handle_authorized_event", "(", "self", ",", "event", ")", ":", "self", ".", "server", "=", "event", ".", "authorized_jid", ".", "bare", "(", ")", "if", "\"versioning\"", "in", "self", ".", "server_features", ":", "if", "self", ".", "roster", "is", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.request_roster
Request roster from server. :Parameters: - `version`: if not `None` versioned roster will be requested for given local version. Use "" to request full roster. :Types: - `version`: `unicode`
pyxmpp2/roster.py
def request_roster(self, version = None): """Request roster from server. :Parameters: - `version`: if not `None` versioned roster will be requested for given local version. Use "" to request full roster. :Types: - `version`: `unicode` """ pr...
def request_roster(self, version = None): """Request roster from server. :Parameters: - `version`: if not `None` versioned roster will be requested for given local version. Use "" to request full roster. :Types: - `version`: `unicode` """ pr...
[ "Request", "roster", "from", "server", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L756-L770
[ "def", "request_roster", "(", "self", ",", "version", "=", "None", ")", ":", "processor", "=", "self", ".", "stanza_processor", "request", "=", "Iq", "(", "stanza_type", "=", "\"get\"", ")", "request", ".", "set_payload", "(", "RosterPayload", "(", "version"...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient._get_success
Handle successful response to the roster request.
pyxmpp2/roster.py
def _get_success(self, stanza): """Handle successful response to the roster request. """ payload = stanza.get_payload(RosterPayload) if payload is None: if "versioning" in self.server_features and self.roster: logger.debug("Server will send roster delta in pus...
def _get_success(self, stanza): """Handle successful response to the roster request. """ payload = stanza.get_payload(RosterPayload) if payload is None: if "versioning" in self.server_features and self.roster: logger.debug("Server will send roster delta in pus...
[ "Handle", "successful", "response", "to", "the", "roster", "request", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L772-L788
[ "def", "_get_success", "(", "self", ",", "stanza", ")", ":", "payload", "=", "stanza", ".", "get_payload", "(", "RosterPayload", ")", "if", "payload", "is", "None", ":", "if", "\"versioning\"", "in", "self", ".", "server_features", "and", "self", ".", "ros...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient._get_error
Handle failure of the roster request.
pyxmpp2/roster.py
def _get_error(self, stanza): """Handle failure of the roster request. """ if stanza: logger.debug(u"Roster request failed: {0}".format( stanza.error.condition_name)) else: logger.debug(u"Roster request failed: timeo...
def _get_error(self, stanza): """Handle failure of the roster request. """ if stanza: logger.debug(u"Roster request failed: {0}".format( stanza.error.condition_name)) else: logger.debug(u"Roster request failed: timeo...
[ "Handle", "failure", "of", "the", "roster", "request", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L790-L798
[ "def", "_get_error", "(", "self", ",", "stanza", ")", ":", "if", "stanza", ":", "logger", ".", "debug", "(", "u\"Roster request failed: {0}\"", ".", "format", "(", "stanza", ".", "error", ".", "condition_name", ")", ")", "else", ":", "logger", ".", "debug"...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.handle_roster_push
Handle a roster push received from server.
pyxmpp2/roster.py
def handle_roster_push(self, stanza): """Handle a roster push received from server. """ if self.server is None and stanza.from_jid: logger.debug(u"Server address not known, cannot verify roster push" " from {0}".format(stanza.from_jid)) ret...
def handle_roster_push(self, stanza): """Handle a roster push received from server. """ if self.server is None and stanza.from_jid: logger.debug(u"Server address not known, cannot verify roster push" " from {0}".format(stanza.from_jid)) ret...
[ "Handle", "a", "roster", "push", "received", "from", "server", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L801-L829
[ "def", "handle_roster_push", "(", "self", ",", "stanza", ")", ":", "if", "self", ".", "server", "is", "None", "and", "stanza", ".", "from_jid", ":", "logger", ".", "debug", "(", "u\"Server address not known, cannot verify roster push\"", "\" from {0}\"", ".", "for...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.add_item
Add a contact to the roster. :Parameters: - `jid`: contact's jid - `name`: name for the contact - `groups`: sequence of group names the contact should belong to - `callback`: function to call when the request succeeds. It should accept a single argu...
pyxmpp2/roster.py
def add_item(self, jid, name = None, groups = None, callback = None, error_callback = None): """Add a contact to the roster. :Parameters: - `jid`: contact's jid - `name`: name for the contact - `groups`: sequence of group names the con...
def add_item(self, jid, name = None, groups = None, callback = None, error_callback = None): """Add a contact to the roster. :Parameters: - `jid`: contact's jid - `name`: name for the contact - `groups`: sequence of group names the con...
[ "Add", "a", "contact", "to", "the", "roster", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L831-L854
[ "def", "add_item", "(", "self", ",", "jid", ",", "name", "=", "None", ",", "groups", "=", "None", ",", "callback", "=", "None", ",", "error_callback", "=", "None", ")", ":", "# pylint: disable=R0913", "if", "jid", "in", "self", ".", "roster", ":", "rai...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.update_item
Modify a contact in the roster. :Parameters: - `jid`: contact's jid - `name`: a new name for the contact - `groups`: a sequence of group names the contact should belong to - `callback`: function to call when the request succeeds. It should accept a ...
pyxmpp2/roster.py
def update_item(self, jid, name = NO_CHANGE, groups = NO_CHANGE, callback = None, error_callback = None): """Modify a contact in the roster. :Parameters: - `jid`: contact's jid - `name`: a new name for the contact - `groups`: a sequenc...
def update_item(self, jid, name = NO_CHANGE, groups = NO_CHANGE, callback = None, error_callback = None): """Modify a contact in the roster. :Parameters: - `jid`: contact's jid - `name`: a new name for the contact - `groups`: a sequenc...
[ "Modify", "a", "contact", "in", "the", "roster", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L856-L884
[ "def", "update_item", "(", "self", ",", "jid", ",", "name", "=", "NO_CHANGE", ",", "groups", "=", "NO_CHANGE", ",", "callback", "=", "None", ",", "error_callback", "=", "None", ")", ":", "# pylint: disable=R0913", "item", "=", "self", ".", "roster", "[", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient.remove_item
Remove a contact from the roster. :Parameters: - `jid`: contact's jid - `callback`: function to call when the request succeeds. It should accept a single argument - a `RosterItem` describing the requested change - `error_callback`: function to cal...
pyxmpp2/roster.py
def remove_item(self, jid, callback = None, error_callback = None): """Remove a contact from the roster. :Parameters: - `jid`: contact's jid - `callback`: function to call when the request succeeds. It should accept a single argument - a `RosterItem` describing the...
def remove_item(self, jid, callback = None, error_callback = None): """Remove a contact from the roster. :Parameters: - `jid`: contact's jid - `callback`: function to call when the request succeeds. It should accept a single argument - a `RosterItem` describing the...
[ "Remove", "a", "contact", "from", "the", "roster", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L886-L904
[ "def", "remove_item", "(", "self", ",", "jid", ",", "callback", "=", "None", ",", "error_callback", "=", "None", ")", ":", "item", "=", "self", ".", "roster", "[", "jid", "]", "if", "jid", "not", "in", "self", ".", "roster", ":", "raise", "KeyError",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
RosterClient._roster_set
Send a 'roster set' to the server. :Parameters: - `item`: the requested change :Types: - `item`: `RosterItem`
pyxmpp2/roster.py
def _roster_set(self, item, callback, error_callback): """Send a 'roster set' to the server. :Parameters: - `item`: the requested change :Types: - `item`: `RosterItem` """ stanza = Iq(to_jid = self.server, stanza_type = "set") payload = RosterPayl...
def _roster_set(self, item, callback, error_callback): """Send a 'roster set' to the server. :Parameters: - `item`: the requested change :Types: - `item`: `RosterItem` """ stanza = Iq(to_jid = self.server, stanza_type = "set") payload = RosterPayl...
[ "Send", "a", "roster", "set", "to", "the", "server", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/roster.py#L906-L930
[ "def", "_roster_set", "(", "self", ",", "item", ",", "callback", ",", "error_callback", ")", ":", "stanza", "=", "Iq", "(", "to_jid", "=", "self", ".", "server", ",", "stanza_type", "=", "\"set\"", ")", "payload", "=", "RosterPayload", "(", "[", "item", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucXBase.free
Unlink and free the XML node owned by `self`.
pyxmpp2/ext/muc/muccore.py
def free(self): """ Unlink and free the XML node owned by `self`. """ if not self.borrowed: self.xmlnode.unlinkNode() self.xmlnode.freeNode() self.xmlnode=None
def free(self): """ Unlink and free the XML node owned by `self`. """ if not self.borrowed: self.xmlnode.unlinkNode() self.xmlnode.freeNode() self.xmlnode=None
[ "Unlink", "and", "free", "the", "XML", "node", "owned", "by", "self", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L105-L112
[ "def", "free", "(", "self", ")", ":", "if", "not", "self", ".", "borrowed", ":", "self", ".", "xmlnode", ".", "unlinkNode", "(", ")", "self", ".", "xmlnode", ".", "freeNode", "(", ")", "self", ".", "xmlnode", "=", "None" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucXBase.xpath_eval
Evaluate XPath expression in context of `self.xmlnode`. :Parameters: - `expr`: the XPath expression :Types: - `expr`: `unicode` :return: the result of the expression evaluation. :returntype: list of `libxml2.xmlNode`
pyxmpp2/ext/muc/muccore.py
def xpath_eval(self,expr): """ Evaluate XPath expression in context of `self.xmlnode`. :Parameters: - `expr`: the XPath expression :Types: - `expr`: `unicode` :return: the result of the expression evaluation. :returntype: list of `libxml2.xmlNode...
def xpath_eval(self,expr): """ Evaluate XPath expression in context of `self.xmlnode`. :Parameters: - `expr`: the XPath expression :Types: - `expr`: `unicode` :return: the result of the expression evaluation. :returntype: list of `libxml2.xmlNode...
[ "Evaluate", "XPath", "expression", "in", "context", "of", "self", ".", "xmlnode", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L120-L137
[ "def", "xpath_eval", "(", "self", ",", "expr", ")", ":", "ctxt", "=", "common_doc", ".", "xpathNewContext", "(", ")", "ctxt", ".", "setContextNode", "(", "self", ".", "xmlnode", ")", "ctxt", ".", "xpathRegisterNs", "(", "\"muc\"", ",", "self", ".", "ns",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucX.set_history
Set history parameters. Types: - `parameters`: `HistoryParameters`
pyxmpp2/ext/muc/muccore.py
def set_history(self, parameters): """ Set history parameters. Types: - `parameters`: `HistoryParameters` """ for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "history": child.unli...
def set_history(self, parameters): """ Set history parameters. Types: - `parameters`: `HistoryParameters` """ for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "history": child.unli...
[ "Set", "history", "parameters", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L157-L186
[ "def", "set_history", "(", "self", ",", "parameters", ")", ":", "for", "child", "in", "xml_element_iter", "(", "self", ".", "xmlnode", ".", "children", ")", ":", "if", "get_node_ns_uri", "(", "child", ")", "==", "MUC_NS", "and", "child", ".", "name", "==...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucX.get_history
Return history parameters carried by the stanza. :returntype: `HistoryParameters`
pyxmpp2/ext/muc/muccore.py
def get_history(self): """Return history parameters carried by the stanza. :returntype: `HistoryParameters`""" for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "history": maxchars = from_utf8(child.prop("maxc...
def get_history(self): """Return history parameters carried by the stanza. :returntype: `HistoryParameters`""" for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "history": maxchars = from_utf8(child.prop("maxc...
[ "Return", "history", "parameters", "carried", "by", "the", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L188-L205
[ "def", "get_history", "(", "self", ")", ":", "for", "child", "in", "xml_element_iter", "(", "self", ".", "xmlnode", ".", "children", ")", ":", "if", "get_node_ns_uri", "(", "child", ")", "==", "MUC_NS", "and", "child", ".", "name", "==", "\"history\"", "...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucX.set_password
Set password for the MUC request. :Parameters: - `password`: password :Types: - `password`: `unicode`
pyxmpp2/ext/muc/muccore.py
def set_password(self, password): """Set password for the MUC request. :Parameters: - `password`: password :Types: - `password`: `unicode`""" for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "...
def set_password(self, password): """Set password for the MUC request. :Parameters: - `password`: password :Types: - `password`: `unicode`""" for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "...
[ "Set", "password", "for", "the", "MUC", "request", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L207-L221
[ "def", "set_password", "(", "self", ",", "password", ")", ":", "for", "child", "in", "xml_element_iter", "(", "self", ".", "xmlnode", ".", "children", ")", ":", "if", "get_node_ns_uri", "(", "child", ")", "==", "MUC_NS", "and", "child", ".", "name", "=="...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucX.get_password
Get password from the MUC request. :returntype: `unicode`
pyxmpp2/ext/muc/muccore.py
def get_password(self): """Get password from the MUC request. :returntype: `unicode` """ for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "password": return from_utf8(child.getContent()) retur...
def get_password(self): """Get password from the MUC request. :returntype: `unicode` """ for child in xml_element_iter(self.xmlnode.children): if get_node_ns_uri(child) == MUC_NS and child.name == "password": return from_utf8(child.getContent()) retur...
[ "Get", "password", "from", "the", "MUC", "request", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L223-L231
[ "def", "get_password", "(", "self", ")", ":", "for", "child", "in", "xml_element_iter", "(", "self", ".", "xmlnode", ".", "children", ")", ":", "if", "get_node_ns_uri", "(", "child", ")", "==", "MUC_NS", "and", "child", ".", "name", "==", "\"password\"", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucItem.__init
Initialize a `MucItem` object from a set of attributes. :Parameters: - `affiliation`: affiliation of the user. - `role`: role of the user. - `jid`: JID of the user. - `nick`: nickname of the user. - `actor`: actor modyfying the user data. ...
pyxmpp2/ext/muc/muccore.py
def __init(self,affiliation,role,jid=None,nick=None,actor=None,reason=None): """Initialize a `MucItem` object from a set of attributes. :Parameters: - `affiliation`: affiliation of the user. - `role`: role of the user. - `jid`: JID of the user. - `nick`: ...
def __init(self,affiliation,role,jid=None,nick=None,actor=None,reason=None): """Initialize a `MucItem` object from a set of attributes. :Parameters: - `affiliation`: affiliation of the user. - `role`: role of the user. - `jid`: JID of the user. - `nick`: ...
[ "Initialize", "a", "MucItem", "object", "from", "a", "set", "of", "attributes", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L322-L359
[ "def", "__init", "(", "self", ",", "affiliation", ",", "role", ",", "jid", "=", "None", ",", "nick", "=", "None", ",", "actor", "=", "None", ",", "reason", "=", "None", ")", ":", "if", "not", "affiliation", ":", "affiliation", "=", "None", "elif", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucItem.__from_xmlnode
Initialize a `MucItem` object from an XML node. :Parameters: - `xmlnode`: the XML node. :Types: - `xmlnode`: `libxml2.xmlNode`
pyxmpp2/ext/muc/muccore.py
def __from_xmlnode(self, xmlnode): """Initialize a `MucItem` object from an XML node. :Parameters: - `xmlnode`: the XML node. :Types: - `xmlnode`: `libxml2.xmlNode` """ actor=None reason=None n=xmlnode.children while n: ...
def __from_xmlnode(self, xmlnode): """Initialize a `MucItem` object from an XML node. :Parameters: - `xmlnode`: the XML node. :Types: - `xmlnode`: `libxml2.xmlNode` """ actor=None reason=None n=xmlnode.children while n: ...
[ "Initialize", "a", "MucItem", "object", "from", "an", "XML", "node", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L361-L388
[ "def", "__from_xmlnode", "(", "self", ",", "xmlnode", ")", ":", "actor", "=", "None", "reason", "=", "None", "n", "=", "xmlnode", ".", "children", "while", "n", ":", "ns", "=", "n", ".", "ns", "(", ")", "if", "ns", "and", "ns", ".", "getContent", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucItem.as_xml
Create XML representation of `self`. :Parameters: - `parent`: the element to which the created node should be linked to. :Types: - `parent`: `libxml2.xmlNode` :return: an XML node. :returntype: `libxml2.xmlNode`
pyxmpp2/ext/muc/muccore.py
def as_xml(self,parent): """ Create XML representation of `self`. :Parameters: - `parent`: the element to which the created node should be linked to. :Types: - `parent`: `libxml2.xmlNode` :return: an XML node. :returntype: `libxml2.xmlNode` ...
def as_xml(self,parent): """ Create XML representation of `self`. :Parameters: - `parent`: the element to which the created node should be linked to. :Types: - `parent`: `libxml2.xmlNode` :return: an XML node. :returntype: `libxml2.xmlNode` ...
[ "Create", "XML", "representation", "of", "self", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L390-L414
[ "def", "as_xml", "(", "self", ",", "parent", ")", ":", "n", "=", "parent", ".", "newChild", "(", "None", ",", "\"item\"", ",", "None", ")", "if", "self", ".", "actor", ":", "n", ".", "newTextChild", "(", "None", ",", "\"actor\"", ",", "to_utf8", "(...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucStatus.__init
Initialize a `MucStatus` element from a status code. :Parameters: - `code`: the status code. :Types: - `code`: `int`
pyxmpp2/ext/muc/muccore.py
def __init(self,code): """Initialize a `MucStatus` element from a status code. :Parameters: - `code`: the status code. :Types: - `code`: `int` """ code=int(code) if code<0 or code>999: raise ValueError("Bad status code") self.c...
def __init(self,code): """Initialize a `MucStatus` element from a status code. :Parameters: - `code`: the status code. :Types: - `code`: `int` """ code=int(code) if code<0 or code>999: raise ValueError("Bad status code") self.c...
[ "Initialize", "a", "MucStatus", "element", "from", "a", "status", "code", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L440-L451
[ "def", "__init", "(", "self", ",", "code", ")", ":", "code", "=", "int", "(", "code", ")", "if", "code", "<", "0", "or", "code", ">", "999", ":", "raise", "ValueError", "(", "\"Bad status code\"", ")", "self", ".", "code", "=", "code" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucStatus.as_xml
Create XML representation of `self`. :Parameters: - `parent`: the element to which the created node should be linked to. :Types: - `parent`: `libxml2.xmlNode` :return: an XML node. :returntype: `libxml2.xmlNode`
pyxmpp2/ext/muc/muccore.py
def as_xml(self,parent): """ Create XML representation of `self`. :Parameters: - `parent`: the element to which the created node should be linked to. :Types: - `parent`: `libxml2.xmlNode` :return: an XML node. :returntype: `libxml2.xmlNode` ...
def as_xml(self,parent): """ Create XML representation of `self`. :Parameters: - `parent`: the element to which the created node should be linked to. :Types: - `parent`: `libxml2.xmlNode` :return: an XML node. :returntype: `libxml2.xmlNode` ...
[ "Create", "XML", "representation", "of", "self", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L463-L477
[ "def", "as_xml", "(", "self", ",", "parent", ")", ":", "n", "=", "parent", ".", "newChild", "(", "None", ",", "\"status\"", ",", "None", ")", "n", ".", "setProp", "(", "\"code\"", ",", "\"%03i\"", "%", "(", "self", ".", "code", ",", ")", ")", "re...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucUserX.get_items
Get a list of objects describing the content of `self`. :return: the list of objects. :returntype: `list` of `MucItemBase` (`MucItem` and/or `MucStatus`)
pyxmpp2/ext/muc/muccore.py
def get_items(self): """Get a list of objects describing the content of `self`. :return: the list of objects. :returntype: `list` of `MucItemBase` (`MucItem` and/or `MucStatus`) """ if not self.xmlnode.children: return [] ret=[] n=self.xmlnode.childre...
def get_items(self): """Get a list of objects describing the content of `self`. :return: the list of objects. :returntype: `list` of `MucItemBase` (`MucItem` and/or `MucStatus`) """ if not self.xmlnode.children: return [] ret=[] n=self.xmlnode.childre...
[ "Get", "a", "list", "of", "objects", "describing", "the", "content", "of", "self", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L491-L511
[ "def", "get_items", "(", "self", ")", ":", "if", "not", "self", ".", "xmlnode", ".", "children", ":", "return", "[", "]", "ret", "=", "[", "]", "n", "=", "self", ".", "xmlnode", ".", "children", "while", "n", ":", "ns", "=", "n", ".", "ns", "("...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucUserX.clear
Clear the content of `self.xmlnode` removing all <item/>, <status/>, etc.
pyxmpp2/ext/muc/muccore.py
def clear(self): """ Clear the content of `self.xmlnode` removing all <item/>, <status/>, etc. """ if not self.xmlnode.children: return n=self.xmlnode.children while n: ns=n.ns() if ns and ns.getContent()!=MUC_USER_NS: p...
def clear(self): """ Clear the content of `self.xmlnode` removing all <item/>, <status/>, etc. """ if not self.xmlnode.children: return n=self.xmlnode.children while n: ns=n.ns() if ns and ns.getContent()!=MUC_USER_NS: p...
[ "Clear", "the", "content", "of", "self", ".", "xmlnode", "removing", "all", "<item", "/", ">", "<status", "/", ">", "etc", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L512-L526
[ "def", "clear", "(", "self", ")", ":", "if", "not", "self", ".", "xmlnode", ".", "children", ":", "return", "n", "=", "self", ".", "xmlnode", ".", "children", "while", "n", ":", "ns", "=", "n", ".", "ns", "(", ")", "if", "ns", "and", "ns", ".",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucUserX.add_item
Add an item to `self`. :Parameters: - `item`: the item to add. :Types: - `item`: `MucItemBase`
pyxmpp2/ext/muc/muccore.py
def add_item(self,item): """Add an item to `self`. :Parameters: - `item`: the item to add. :Types: - `item`: `MucItemBase` """ if not isinstance(item,MucItemBase): raise TypeError("Bad item type for muc#user") item.as_xml(self.xmlnode)
def add_item(self,item): """Add an item to `self`. :Parameters: - `item`: the item to add. :Types: - `item`: `MucItemBase` """ if not isinstance(item,MucItemBase): raise TypeError("Bad item type for muc#user") item.as_xml(self.xmlnode)
[ "Add", "an", "item", "to", "self", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L527-L537
[ "def", "add_item", "(", "self", ",", "item", ")", ":", "if", "not", "isinstance", "(", "item", ",", "MucItemBase", ")", ":", "raise", "TypeError", "(", "\"Bad item type for muc#user\"", ")", "item", ".", "as_xml", "(", "self", ".", "xmlnode", ")" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucStanzaExt.get_muc_child
Get the MUC specific payload element. :return: the object describing the stanza payload in MUC namespace. :returntype: `MucX` or `MucUserX` or `MucAdminQuery` or `MucOwnerX`
pyxmpp2/ext/muc/muccore.py
def get_muc_child(self): """ Get the MUC specific payload element. :return: the object describing the stanza payload in MUC namespace. :returntype: `MucX` or `MucUserX` or `MucAdminQuery` or `MucOwnerX` """ if self.muc_child: return self.muc_child if ...
def get_muc_child(self): """ Get the MUC specific payload element. :return: the object describing the stanza payload in MUC namespace. :returntype: `MucX` or `MucUserX` or `MucAdminQuery` or `MucOwnerX` """ if self.muc_child: return self.muc_child if ...
[ "Get", "the", "MUC", "specific", "payload", "element", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L576-L609
[ "def", "get_muc_child", "(", "self", ")", ":", "if", "self", ".", "muc_child", ":", "return", "self", ".", "muc_child", "if", "not", "self", ".", "xmlnode", ".", "children", ":", "return", "None", "n", "=", "self", ".", "xmlnode", ".", "children", "whi...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucStanzaExt.clear_muc_child
Remove the MUC specific stanza payload element.
pyxmpp2/ext/muc/muccore.py
def clear_muc_child(self): """ Remove the MUC specific stanza payload element. """ if self.muc_child: self.muc_child.free_borrowed() self.muc_child=None if not self.xmlnode.children: return n=self.xmlnode.children while n: ...
def clear_muc_child(self): """ Remove the MUC specific stanza payload element. """ if self.muc_child: self.muc_child.free_borrowed() self.muc_child=None if not self.xmlnode.children: return n=self.xmlnode.children while n: ...
[ "Remove", "the", "MUC", "specific", "stanza", "payload", "element", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L611-L633
[ "def", "clear_muc_child", "(", "self", ")", ":", "if", "self", ".", "muc_child", ":", "self", ".", "muc_child", ".", "free_borrowed", "(", ")", "self", ".", "muc_child", "=", "None", "if", "not", "self", ".", "xmlnode", ".", "children", ":", "return", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucStanzaExt.make_muc_userinfo
Create <x xmlns="...muc#user"/> element in the stanza. :return: the element created. :returntype: `MucUserX`
pyxmpp2/ext/muc/muccore.py
def make_muc_userinfo(self): """ Create <x xmlns="...muc#user"/> element in the stanza. :return: the element created. :returntype: `MucUserX` """ self.clear_muc_child() self.muc_child=MucUserX(parent=self.xmlnode) return self.muc_child
def make_muc_userinfo(self): """ Create <x xmlns="...muc#user"/> element in the stanza. :return: the element created. :returntype: `MucUserX` """ self.clear_muc_child() self.muc_child=MucUserX(parent=self.xmlnode) return self.muc_child
[ "Create", "<x", "xmlns", "=", "...", "muc#user", "/", ">", "element", "in", "the", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L635-L644
[ "def", "make_muc_userinfo", "(", "self", ")", ":", "self", ".", "clear_muc_child", "(", ")", "self", ".", "muc_child", "=", "MucUserX", "(", "parent", "=", "self", ".", "xmlnode", ")", "return", "self", ".", "muc_child" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucStanzaExt.make_muc_admin_quey
Create <query xmlns="...muc#admin"/> element in the stanza. :return: the element created. :returntype: `MucAdminQuery`
pyxmpp2/ext/muc/muccore.py
def make_muc_admin_quey(self): """ Create <query xmlns="...muc#admin"/> element in the stanza. :return: the element created. :returntype: `MucAdminQuery` """ self.clear_muc_child() self.muc_child=MucAdminQuery(parent=self.xmlnode) return self.muc_child
def make_muc_admin_quey(self): """ Create <query xmlns="...muc#admin"/> element in the stanza. :return: the element created. :returntype: `MucAdminQuery` """ self.clear_muc_child() self.muc_child=MucAdminQuery(parent=self.xmlnode) return self.muc_child
[ "Create", "<query", "xmlns", "=", "...", "muc#admin", "/", ">", "element", "in", "the", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L646-L655
[ "def", "make_muc_admin_quey", "(", "self", ")", ":", "self", ".", "clear_muc_child", "(", ")", "self", ".", "muc_child", "=", "MucAdminQuery", "(", "parent", "=", "self", ".", "xmlnode", ")", "return", "self", ".", "muc_child" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucPresence.make_join_request
Make the presence stanza a MUC room join request. :Parameters: - `password`: password to the room. - `history_maxchars`: limit of the total number of characters in history. - `history_maxstanzas`: limit of the total number of messages in history. ...
pyxmpp2/ext/muc/muccore.py
def make_join_request(self, password = None, history_maxchars = None, history_maxstanzas = None, history_seconds = None, history_since = None): """ Make the presence stanza a MUC room join request. :Parameters: - `password`: password to the room. ...
def make_join_request(self, password = None, history_maxchars = None, history_maxstanzas = None, history_seconds = None, history_since = None): """ Make the presence stanza a MUC room join request. :Parameters: - `password`: password to the room. ...
[ "Make", "the", "presence", "stanza", "a", "MUC", "room", "join", "request", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L709-L740
[ "def", "make_join_request", "(", "self", ",", "password", "=", "None", ",", "history_maxchars", "=", "None", ",", "history_maxstanzas", "=", "None", ",", "history_seconds", "=", "None", ",", "history_since", "=", "None", ")", ":", "self", ".", "clear_muc_child...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucPresence.get_join_info
If `self` is a MUC room join request return the information contained. :return: the join request details or `None`. :returntype: `MucX`
pyxmpp2/ext/muc/muccore.py
def get_join_info(self): """If `self` is a MUC room join request return the information contained. :return: the join request details or `None`. :returntype: `MucX` """ x=self.get_muc_child() if not x: return None if not isinstance(x,MucX): ...
def get_join_info(self): """If `self` is a MUC room join request return the information contained. :return: the join request details or `None`. :returntype: `MucX` """ x=self.get_muc_child() if not x: return None if not isinstance(x,MucX): ...
[ "If", "self", "is", "a", "MUC", "room", "join", "request", "return", "the", "information", "contained", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L742-L753
[ "def", "get_join_info", "(", "self", ")", ":", "x", "=", "self", ".", "get_muc_child", "(", ")", "if", "not", "x", ":", "return", "None", "if", "not", "isinstance", "(", "x", ",", "MucX", ")", ":", "return", "None", "return", "x" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MucIq.make_kick_request
Make the iq stanza a MUC room participant kick request. :Parameters: - `nick`: nickname of user to kick. - `reason`: reason of the kick. :Types: - `nick`: `unicode` - `reason`: `unicode` :return: object describing the kick request details. ...
pyxmpp2/ext/muc/muccore.py
def make_kick_request(self,nick,reason): """ Make the iq stanza a MUC room participant kick request. :Parameters: - `nick`: nickname of user to kick. - `reason`: reason of the kick. :Types: - `nick`: `unicode` - `reason`: `unicode` ...
def make_kick_request(self,nick,reason): """ Make the iq stanza a MUC room participant kick request. :Parameters: - `nick`: nickname of user to kick. - `reason`: reason of the kick. :Types: - `nick`: `unicode` - `reason`: `unicode` ...
[ "Make", "the", "iq", "stanza", "a", "MUC", "room", "participant", "kick", "request", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/muc/muccore.py#L794-L812
[ "def", "make_kick_request", "(", "self", ",", "nick", ",", "reason", ")", ":", "self", ".", "clear_muc_child", "(", ")", "self", ".", "muc_child", "=", "MucAdminQuery", "(", "parent", "=", "self", ".", "xmlnode", ")", "item", "=", "MucItem", "(", "\"none...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
nfkc
Do NFKC normalization of Unicode data. :Parameters: - `data`: list of Unicode characters or Unicode string. :return: normalized Unicode string.
pyxmpp2/xmppstringprep.py
def nfkc(data): """Do NFKC normalization of Unicode data. :Parameters: - `data`: list of Unicode characters or Unicode string. :return: normalized Unicode string.""" if isinstance(data, list): data = u"".join(data) return unicodedata.normalize("NFKC", data)
def nfkc(data): """Do NFKC normalization of Unicode data. :Parameters: - `data`: list of Unicode characters or Unicode string. :return: normalized Unicode string.""" if isinstance(data, list): data = u"".join(data) return unicodedata.normalize("NFKC", data)
[ "Do", "NFKC", "normalization", "of", "Unicode", "data", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L61-L70
[ "def", "nfkc", "(", "data", ")", ":", "if", "isinstance", "(", "data", ",", "list", ")", ":", "data", "=", "u\"\"", ".", "join", "(", "data", ")", "return", "unicodedata", ".", "normalize", "(", "\"NFKC\"", ",", "data", ")" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
set_stringprep_cache_size
Modify stringprep cache size. :Parameters: - `size`: new cache size
pyxmpp2/xmppstringprep.py
def set_stringprep_cache_size(size): """Modify stringprep cache size. :Parameters: - `size`: new cache size """ # pylint: disable-msg=W0603 global _stringprep_cache_size _stringprep_cache_size = size if len(Profile.cache_items) > size: remove = Profile.cache_items[:-size] ...
def set_stringprep_cache_size(size): """Modify stringprep cache size. :Parameters: - `size`: new cache size """ # pylint: disable-msg=W0603 global _stringprep_cache_size _stringprep_cache_size = size if len(Profile.cache_items) > size: remove = Profile.cache_items[:-size] ...
[ "Modify", "stringprep", "cache", "size", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L237-L253
[ "def", "set_stringprep_cache_size", "(", "size", ")", ":", "# pylint: disable-msg=W0603", "global", "_stringprep_cache_size", "_stringprep_cache_size", "=", "size", "if", "len", "(", "Profile", ".", "cache_items", ")", ">", "size", ":", "remove", "=", "Profile", "."...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Profile.prepare
Complete string preparation procedure for 'stored' strings. (includes checks for unassigned codes) :Parameters: - `data`: Unicode string to prepare. :return: prepared string :raise StringprepError: if the preparation fails
pyxmpp2/xmppstringprep.py
def prepare(self, data): """Complete string preparation procedure for 'stored' strings. (includes checks for unassigned codes) :Parameters: - `data`: Unicode string to prepare. :return: prepared string :raise StringprepError: if the preparation fails """ ...
def prepare(self, data): """Complete string preparation procedure for 'stored' strings. (includes checks for unassigned codes) :Parameters: - `data`: Unicode string to prepare. :return: prepared string :raise StringprepError: if the preparation fails """ ...
[ "Complete", "string", "preparation", "procedure", "for", "stored", "strings", ".", "(", "includes", "checks", "for", "unassigned", "codes", ")" ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L101-L135
[ "def", "prepare", "(", "self", ",", "data", ")", ":", "ret", "=", "self", ".", "cache", ".", "get", "(", "data", ")", "if", "ret", "is", "not", "None", ":", "return", "ret", "result", "=", "self", ".", "map", "(", "data", ")", "if", "self", "."...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Profile.prepare_query
Complete string preparation procedure for 'query' strings. (without checks for unassigned codes) :Parameters: - `data`: Unicode string to prepare. :return: prepared string :raise StringprepError: if the preparation fails
pyxmpp2/xmppstringprep.py
def prepare_query(self, data): """Complete string preparation procedure for 'query' strings. (without checks for unassigned codes) :Parameters: - `data`: Unicode string to prepare. :return: prepared string :raise StringprepError: if the preparation fails ""...
def prepare_query(self, data): """Complete string preparation procedure for 'query' strings. (without checks for unassigned codes) :Parameters: - `data`: Unicode string to prepare. :return: prepared string :raise StringprepError: if the preparation fails ""...
[ "Complete", "string", "preparation", "procedure", "for", "query", "strings", ".", "(", "without", "checks", "for", "unassigned", "codes", ")" ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L137-L156
[ "def", "prepare_query", "(", "self", ",", "data", ")", ":", "data", "=", "self", ".", "map", "(", "data", ")", "if", "self", ".", "normalization", ":", "data", "=", "self", ".", "normalization", "(", "data", ")", "data", "=", "self", ".", "prohibit",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Profile.map
Mapping part of string preparation.
pyxmpp2/xmppstringprep.py
def map(self, data): """Mapping part of string preparation.""" result = [] for char in data: ret = None for lookup in self.mapping: ret = lookup(char) if ret is not None: break if ret is not None: ...
def map(self, data): """Mapping part of string preparation.""" result = [] for char in data: ret = None for lookup in self.mapping: ret = lookup(char) if ret is not None: break if ret is not None: ...
[ "Mapping", "part", "of", "string", "preparation", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L158-L171
[ "def", "map", "(", "self", ",", "data", ")", ":", "result", "=", "[", "]", "for", "char", "in", "data", ":", "ret", "=", "None", "for", "lookup", "in", "self", ".", "mapping", ":", "ret", "=", "lookup", "(", "char", ")", "if", "ret", "is", "not...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Profile.prohibit
Checks for prohibited characters.
pyxmpp2/xmppstringprep.py
def prohibit(self, data): """Checks for prohibited characters.""" for char in data: for lookup in self.prohibited: if lookup(char): raise StringprepError("Prohibited character: {0!r}" .format(...
def prohibit(self, data): """Checks for prohibited characters.""" for char in data: for lookup in self.prohibited: if lookup(char): raise StringprepError("Prohibited character: {0!r}" .format(...
[ "Checks", "for", "prohibited", "characters", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L173-L180
[ "def", "prohibit", "(", "self", ",", "data", ")", ":", "for", "char", "in", "data", ":", "for", "lookup", "in", "self", ".", "prohibited", ":", "if", "lookup", "(", "char", ")", ":", "raise", "StringprepError", "(", "\"Prohibited character: {0!r}\"", ".", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Profile.check_unassigned
Checks for unassigned character codes.
pyxmpp2/xmppstringprep.py
def check_unassigned(self, data): """Checks for unassigned character codes.""" for char in data: for lookup in self.unassigned: if lookup(char): raise StringprepError("Unassigned character: {0!r}" ...
def check_unassigned(self, data): """Checks for unassigned character codes.""" for char in data: for lookup in self.unassigned: if lookup(char): raise StringprepError("Unassigned character: {0!r}" ...
[ "Checks", "for", "unassigned", "character", "codes", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L182-L189
[ "def", "check_unassigned", "(", "self", ",", "data", ")", ":", "for", "char", "in", "data", ":", "for", "lookup", "in", "self", ".", "unassigned", ":", "if", "lookup", "(", "char", ")", ":", "raise", "StringprepError", "(", "\"Unassigned character: {0!r}\"",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Profile.check_bidi
Checks if sting is valid for bidirectional printing.
pyxmpp2/xmppstringprep.py
def check_bidi(data): """Checks if sting is valid for bidirectional printing.""" has_l = False has_ral = False for char in data: if stringprep.in_table_d1(char): has_ral = True elif stringprep.in_table_d2(char): has_l = True ...
def check_bidi(data): """Checks if sting is valid for bidirectional printing.""" has_l = False has_ral = False for char in data: if stringprep.in_table_d1(char): has_ral = True elif stringprep.in_table_d2(char): has_l = True ...
[ "Checks", "if", "sting", "is", "valid", "for", "bidirectional", "printing", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/xmppstringprep.py#L192-L207
[ "def", "check_bidi", "(", "data", ")", ":", "has_l", "=", "False", "has_ral", "=", "False", "for", "char", "in", "data", ":", "if", "stringprep", ".", "in_table_d1", "(", "char", ")", ":", "has_ral", "=", "True", "elif", "stringprep", ".", "in_table_d2",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
hold_exception
Decorator for glib callback methods of GLibMainLoop used to store the exception raised.
pyxmpp2/mainloop/glib.py
def hold_exception(method): """Decorator for glib callback methods of GLibMainLoop used to store the exception raised.""" @functools.wraps(method) def wrapper(self, *args, **kwargs): """Wrapper for methods decorated with `hold_exception`.""" # pylint: disable=W0703,W0212 try: ...
def hold_exception(method): """Decorator for glib callback methods of GLibMainLoop used to store the exception raised.""" @functools.wraps(method) def wrapper(self, *args, **kwargs): """Wrapper for methods decorated with `hold_exception`.""" # pylint: disable=W0703,W0212 try: ...
[ "Decorator", "for", "glib", "callback", "methods", "of", "GLibMainLoop", "used", "to", "store", "the", "exception", "raised", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L36-L60
[ "def", "hold_exception", "(", "method", ")", ":", "@", "functools", ".", "wraps", "(", "method", ")", "def", "wrapper", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "\"\"\"Wrapper for methods decorated with `hold_exception`.\"\"\"", "# pylin...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._configure_io_handler
Register an io-handler with the glib main loop.
pyxmpp2/mainloop/glib.py
def _configure_io_handler(self, handler): """Register an io-handler with the glib main loop.""" if self.check_events(): return if handler in self._unprepared_handlers: old_fileno = self._unprepared_handlers[handler] prepared = self._prepare_io_handler(handler)...
def _configure_io_handler(self, handler): """Register an io-handler with the glib main loop.""" if self.check_events(): return if handler in self._unprepared_handlers: old_fileno = self._unprepared_handlers[handler] prepared = self._prepare_io_handler(handler)...
[ "Register", "an", "io", "-", "handler", "with", "the", "glib", "main", "loop", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L90-L121
[ "def", "_configure_io_handler", "(", "self", ",", "handler", ")", ":", "if", "self", ".", "check_events", "(", ")", ":", "return", "if", "handler", "in", "self", ".", "_unprepared_handlers", ":", "old_fileno", "=", "self", ".", "_unprepared_handlers", "[", "...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._io_callback
Called by glib on I/O event.
pyxmpp2/mainloop/glib.py
def _io_callback(self, fileno, condition, handler): """Called by glib on I/O event.""" # pylint: disable=W0613 self._anything_done = True logger.debug("_io_callback called for {0!r}, cond: {1}".format(handler, condition)...
def _io_callback(self, fileno, condition, handler): """Called by glib on I/O event.""" # pylint: disable=W0613 self._anything_done = True logger.debug("_io_callback called for {0!r}, cond: {1}".format(handler, condition)...
[ "Called", "by", "glib", "on", "I", "/", "O", "event", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L124-L145
[ "def", "_io_callback", "(", "self", ",", "fileno", ",", "condition", ",", "handler", ")", ":", "# pylint: disable=W0613", "self", ".", "_anything_done", "=", "True", "logger", ".", "debug", "(", "\"_io_callback called for {0!r}, cond: {1}\"", ".", "format", "(", "...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._prepare_io_handler
Call the `interfaces.IOHandler.prepare` method and remove the handler from unprepared handler list when done.
pyxmpp2/mainloop/glib.py
def _prepare_io_handler(self, handler): """Call the `interfaces.IOHandler.prepare` method and remove the handler from unprepared handler list when done. """ logger.debug(" preparing handler: {0!r}".format(handler)) self._unprepared_pending.discard(handler) ret = handler.p...
def _prepare_io_handler(self, handler): """Call the `interfaces.IOHandler.prepare` method and remove the handler from unprepared handler list when done. """ logger.debug(" preparing handler: {0!r}".format(handler)) self._unprepared_pending.discard(handler) ret = handler.p...
[ "Call", "the", "interfaces", ".", "IOHandler", ".", "prepare", "method", "and", "remove", "the", "handler", "from", "unprepared", "handler", "list", "when", "done", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L147-L175
[ "def", "_prepare_io_handler", "(", "self", ",", "handler", ")", ":", "logger", ".", "debug", "(", "\" preparing handler: {0!r}\"", ".", "format", "(", "handler", ")", ")", "self", ".", "_unprepared_pending", ".", "discard", "(", "handler", ")", "ret", "=", "...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._prepare_pending
Prepare pending handlers.
pyxmpp2/mainloop/glib.py
def _prepare_pending(self): """Prepare pending handlers. """ if not self._unprepared_pending: return for handler in list(self._unprepared_pending): self._configure_io_handler(handler) self.check_events()
def _prepare_pending(self): """Prepare pending handlers. """ if not self._unprepared_pending: return for handler in list(self._unprepared_pending): self._configure_io_handler(handler) self.check_events()
[ "Prepare", "pending", "handlers", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L177-L184
[ "def", "_prepare_pending", "(", "self", ")", ":", "if", "not", "self", ".", "_unprepared_pending", ":", "return", "for", "handler", "in", "list", "(", "self", ".", "_unprepared_pending", ")", ":", "self", ".", "_configure_io_handler", "(", "handler", ")", "s...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._prepare_io_handler_cb
Timeout callback called to try prepare an IOHandler again.
pyxmpp2/mainloop/glib.py
def _prepare_io_handler_cb(self, handler): """Timeout callback called to try prepare an IOHandler again.""" self._anything_done = True logger.debug("_prepar_io_handler_cb called for {0!r}".format(handler)) self._configure_io_handler(handler) self._prepare_sources.pop(handler, Non...
def _prepare_io_handler_cb(self, handler): """Timeout callback called to try prepare an IOHandler again.""" self._anything_done = True logger.debug("_prepar_io_handler_cb called for {0!r}".format(handler)) self._configure_io_handler(handler) self._prepare_sources.pop(handler, Non...
[ "Timeout", "callback", "called", "to", "try", "prepare", "an", "IOHandler", "again", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L187-L193
[ "def", "_prepare_io_handler_cb", "(", "self", ",", "handler", ")", ":", "self", ".", "_anything_done", "=", "True", "logger", ".", "debug", "(", "\"_prepar_io_handler_cb called for {0!r}\"", ".", "format", "(", "handler", ")", ")", "self", ".", "_configure_io_hand...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._remove_io_handler
Remove an i/o-handler.
pyxmpp2/mainloop/glib.py
def _remove_io_handler(self, handler): """Remove an i/o-handler.""" if handler in self._unprepared_handlers: del self._unprepared_handlers[handler] tag = self._prepare_sources.pop(handler, None) if tag is not None: glib.source_remove(tag) tag = self._io_so...
def _remove_io_handler(self, handler): """Remove an i/o-handler.""" if handler in self._unprepared_handlers: del self._unprepared_handlers[handler] tag = self._prepare_sources.pop(handler, None) if tag is not None: glib.source_remove(tag) tag = self._io_so...
[ "Remove", "an", "i", "/", "o", "-", "handler", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L195-L204
[ "def", "_remove_io_handler", "(", "self", ",", "handler", ")", ":", "if", "handler", "in", "self", ".", "_unprepared_handlers", ":", "del", "self", ".", "_unprepared_handlers", "[", "handler", "]", "tag", "=", "self", ".", "_prepare_sources", ".", "pop", "("...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._add_timeout_handler
Add a `TimeoutHandler` to the main loop.
pyxmpp2/mainloop/glib.py
def _add_timeout_handler(self, handler): """Add a `TimeoutHandler` to the main loop.""" # pylint: disable=W0212 for dummy, method in inspect.getmembers(handler, callable): if not hasattr(method, "_pyxmpp_timeout"): continue tag = glib.timeout_add(int(metho...
def _add_timeout_handler(self, handler): """Add a `TimeoutHandler` to the main loop.""" # pylint: disable=W0212 for dummy, method in inspect.getmembers(handler, callable): if not hasattr(method, "_pyxmpp_timeout"): continue tag = glib.timeout_add(int(metho...
[ "Add", "a", "TimeoutHandler", "to", "the", "main", "loop", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L206-L214
[ "def", "_add_timeout_handler", "(", "self", ",", "handler", ")", ":", "# pylint: disable=W0212", "for", "dummy", ",", "method", "in", "inspect", ".", "getmembers", "(", "handler", ",", "callable", ")", ":", "if", "not", "hasattr", "(", "method", ",", "\"_pyx...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._remove_timeout_handler
Remove `TimeoutHandler` from the main loop.
pyxmpp2/mainloop/glib.py
def _remove_timeout_handler(self, handler): """Remove `TimeoutHandler` from the main loop.""" for dummy, method in inspect.getmembers(handler, callable): if not hasattr(method, "_pyxmpp_timeout"): continue tag = self._timer_sources.pop(method, None) if...
def _remove_timeout_handler(self, handler): """Remove `TimeoutHandler` from the main loop.""" for dummy, method in inspect.getmembers(handler, callable): if not hasattr(method, "_pyxmpp_timeout"): continue tag = self._timer_sources.pop(method, None) if...
[ "Remove", "TimeoutHandler", "from", "the", "main", "loop", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L216-L223
[ "def", "_remove_timeout_handler", "(", "self", ",", "handler", ")", ":", "for", "dummy", ",", "method", "in", "inspect", ".", "getmembers", "(", "handler", ",", "callable", ")", ":", "if", "not", "hasattr", "(", "method", ",", "\"_pyxmpp_timeout\"", ")", "...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._timeout_cb
Call the timeout handler due.
pyxmpp2/mainloop/glib.py
def _timeout_cb(self, method): """Call the timeout handler due. """ self._anything_done = True logger.debug("_timeout_cb() called for: {0!r}".format(method)) result = method() # pylint: disable=W0212 rec = method._pyxmpp_recurring if rec: self....
def _timeout_cb(self, method): """Call the timeout handler due. """ self._anything_done = True logger.debug("_timeout_cb() called for: {0!r}".format(method)) result = method() # pylint: disable=W0212 rec = method._pyxmpp_recurring if rec: self....
[ "Call", "the", "timeout", "handler", "due", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L226-L246
[ "def", "_timeout_cb", "(", "self", ",", "method", ")", ":", "self", ".", "_anything_done", "=", "True", "logger", ".", "debug", "(", "\"_timeout_cb() called for: {0!r}\"", ".", "format", "(", "method", ")", ")", "result", "=", "method", "(", ")", "# pylint: ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
GLibMainLoop._loop_timeout_cb
Stops the loop after the time specified in the `loop` call.
pyxmpp2/mainloop/glib.py
def _loop_timeout_cb(self, main_loop): """Stops the loop after the time specified in the `loop` call. """ self._anything_done = True logger.debug("_loop_timeout_cb() called") main_loop.quit()
def _loop_timeout_cb(self, main_loop): """Stops the loop after the time specified in the `loop` call. """ self._anything_done = True logger.debug("_loop_timeout_cb() called") main_loop.quit()
[ "Stops", "the", "loop", "after", "the", "time", "specified", "in", "the", "loop", "call", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/glib.py#L301-L306
[ "def", "_loop_timeout_cb", "(", "self", ",", "main_loop", ")", ":", "self", ".", "_anything_done", "=", "True", "logger", ".", "debug", "(", "\"_loop_timeout_cb() called\"", ")", "main_loop", ".", "quit", "(", ")" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
stanza_factory
Creates Iq, Message or Presence object for XML stanza `element` :Parameters: - `element`: the stanza XML element - `return_path`: object through which responses to this stanza should be sent (will be weakly referenced by the stanza object). - `language`: default language for the s...
pyxmpp2/stanzaprocessor.py
def stanza_factory(element, return_path = None, language = None): """Creates Iq, Message or Presence object for XML stanza `element` :Parameters: - `element`: the stanza XML element - `return_path`: object through which responses to this stanza should be sent (will be weakly reference...
def stanza_factory(element, return_path = None, language = None): """Creates Iq, Message or Presence object for XML stanza `element` :Parameters: - `element`: the stanza XML element - `return_path`: object through which responses to this stanza should be sent (will be weakly reference...
[ "Creates", "Iq", "Message", "or", "Presence", "object", "for", "XML", "stanza", "element" ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L46-L67
[ "def", "stanza_factory", "(", "element", ",", "return_path", "=", "None", ",", "language", "=", "None", ")", ":", "tag", "=", "element", ".", "tag", "if", "tag", ".", "endswith", "(", "\"}iq\"", ")", "or", "tag", "==", "\"iq\"", ":", "return", "Iq", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor._process_handler_result
Examines out the response returned by a stanza handler and sends all stanzas provided. :Parameters: - `response`: the response to process. `None` or `False` means 'not handled'. `True` means 'handled'. Stanza or stanza list means handled with the stanzas to send ...
pyxmpp2/stanzaprocessor.py
def _process_handler_result(self, response): """Examines out the response returned by a stanza handler and sends all stanzas provided. :Parameters: - `response`: the response to process. `None` or `False` means 'not handled'. `True` means 'handled'. Stanza or stanza li...
def _process_handler_result(self, response): """Examines out the response returned by a stanza handler and sends all stanzas provided. :Parameters: - `response`: the response to process. `None` or `False` means 'not handled'. `True` means 'handled'. Stanza or stanza li...
[ "Examines", "out", "the", "response", "returned", "by", "a", "stanza", "handler", "and", "sends", "all", "stanzas", "provided", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L106-L143
[ "def", "_process_handler_result", "(", "self", ",", "response", ")", ":", "if", "response", "is", "None", "or", "response", "is", "False", ":", "return", "False", "if", "isinstance", "(", "response", ",", "Stanza", ")", ":", "self", ".", "send", "(", "re...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor._process_iq_response
Process IQ stanza of type 'response' or 'error'. :Parameters: - `stanza`: the stanza received :Types: - `stanza`: `Iq` If a matching handler is available pass the stanza to it. Otherwise ignore it if it is "error" or "result" stanza or return "feature-n...
pyxmpp2/stanzaprocessor.py
def _process_iq_response(self, stanza): """Process IQ stanza of type 'response' or 'error'. :Parameters: - `stanza`: the stanza received :Types: - `stanza`: `Iq` If a matching handler is available pass the stanza to it. Otherwise ignore it if it is "err...
def _process_iq_response(self, stanza): """Process IQ stanza of type 'response' or 'error'. :Parameters: - `stanza`: the stanza received :Types: - `stanza`: `Iq` If a matching handler is available pass the stanza to it. Otherwise ignore it if it is "err...
[ "Process", "IQ", "stanza", "of", "type", "response", "or", "error", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L145-L193
[ "def", "_process_iq_response", "(", "self", ",", "stanza", ")", ":", "stanza_id", "=", "stanza", ".", "stanza_id", "from_jid", "=", "stanza", ".", "from_jid", "if", "from_jid", ":", "ufrom", "=", "from_jid", ".", "as_unicode", "(", ")", "else", ":", "ufrom...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.process_iq
Process IQ stanza received. :Parameters: - `stanza`: the stanza received :Types: - `stanza`: `Iq` If a matching handler is available pass the stanza to it. Otherwise ignore it if it is "error" or "result" stanza or return "feature-not-implemented" error...
pyxmpp2/stanzaprocessor.py
def process_iq(self, stanza): """Process IQ stanza received. :Parameters: - `stanza`: the stanza received :Types: - `stanza`: `Iq` If a matching handler is available pass the stanza to it. Otherwise ignore it if it is "error" or "result" stanza or retur...
def process_iq(self, stanza): """Process IQ stanza received. :Parameters: - `stanza`: the stanza received :Types: - `stanza`: `Iq` If a matching handler is available pass the stanza to it. Otherwise ignore it if it is "error" or "result" stanza or retur...
[ "Process", "IQ", "stanza", "received", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L195-L229
[ "def", "process_iq", "(", "self", ",", "stanza", ")", ":", "typ", "=", "stanza", ".", "stanza_type", "if", "typ", "in", "(", "\"result\"", ",", "\"error\"", ")", ":", "return", "self", ".", "_process_iq_response", "(", "stanza", ")", "if", "typ", "not", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor._get_iq_handler
Get an <iq/> handler for given iq type and payload.
pyxmpp2/stanzaprocessor.py
def _get_iq_handler(self, iq_type, payload): """Get an <iq/> handler for given iq type and payload.""" key = (payload.__class__, payload.handler_key) logger.debug("looking up iq {0} handler for {1!r}, key: {2!r}" .format(iq_type, payload, key)) logger.debug("...
def _get_iq_handler(self, iq_type, payload): """Get an <iq/> handler for given iq type and payload.""" key = (payload.__class__, payload.handler_key) logger.debug("looking up iq {0} handler for {1!r}, key: {2!r}" .format(iq_type, payload, key)) logger.debug("...
[ "Get", "an", "<iq", "/", ">", "handler", "for", "given", "iq", "type", "and", "payload", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L231-L238
[ "def", "_get_iq_handler", "(", "self", ",", "iq_type", ",", "payload", ")", ":", "key", "=", "(", "payload", ".", "__class__", ",", "payload", ".", "handler_key", ")", "logger", ".", "debug", "(", "\"looking up iq {0} handler for {1!r}, key: {2!r}\"", ".", "form...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.__try_handlers
Search the handler list for handlers matching given stanza type and payload namespace. Run the handlers found ordering them by priority until the first one which returns `True`. :Parameters: - `handler_list`: list of available handlers - `stanza`: the stanza to h...
pyxmpp2/stanzaprocessor.py
def __try_handlers(self, handler_list, stanza, stanza_type = None): """ Search the handler list for handlers matching given stanza type and payload namespace. Run the handlers found ordering them by priority until the first one which returns `True`. :Parameters: - `h...
def __try_handlers(self, handler_list, stanza, stanza_type = None): """ Search the handler list for handlers matching given stanza type and payload namespace. Run the handlers found ordering them by priority until the first one which returns `True`. :Parameters: - `h...
[ "Search", "the", "handler", "list", "for", "handlers", "matching", "given", "stanza", "type", "and", "payload", "namespace", ".", "Run", "the", "handlers", "found", "ordering", "them", "by", "priority", "until", "the", "first", "one", "which", "returns", "True...
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L240-L275
[ "def", "__try_handlers", "(", "self", ",", "handler_list", ",", "stanza", ",", "stanza_type", "=", "None", ")", ":", "# pylint: disable=W0212", "if", "stanza_type", "is", "None", ":", "stanza_type", "=", "stanza", ".", "stanza_type", "payload", "=", "stanza", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.process_message
Process message stanza. Pass it to a handler of the stanza's type and payload namespace. If no handler for the actual stanza type succeeds then hadlers for type "normal" are used. :Parameters: - `stanza`: message stanza to be handled
pyxmpp2/stanzaprocessor.py
def process_message(self, stanza): """Process message stanza. Pass it to a handler of the stanza's type and payload namespace. If no handler for the actual stanza type succeeds then hadlers for type "normal" are used. :Parameters: - `stanza`: message stanza to be ha...
def process_message(self, stanza): """Process message stanza. Pass it to a handler of the stanza's type and payload namespace. If no handler for the actual stanza type succeeds then hadlers for type "normal" are used. :Parameters: - `stanza`: message stanza to be ha...
[ "Process", "message", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L277-L300
[ "def", "process_message", "(", "self", ",", "stanza", ")", ":", "stanza_type", "=", "stanza", ".", "stanza_type", "if", "stanza_type", "is", "None", ":", "stanza_type", "=", "\"normal\"", "if", "self", ".", "__try_handlers", "(", "self", ".", "_message_handler...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.process_presence
Process presence stanza. Pass it to a handler of the stanza's type and payload namespace. :Parameters: - `stanza`: presence stanza to be handled
pyxmpp2/stanzaprocessor.py
def process_presence(self, stanza): """Process presence stanza. Pass it to a handler of the stanza's type and payload namespace. :Parameters: - `stanza`: presence stanza to be handled """ stanza_type = stanza.stanza_type return self.__try_handlers(self._pre...
def process_presence(self, stanza): """Process presence stanza. Pass it to a handler of the stanza's type and payload namespace. :Parameters: - `stanza`: presence stanza to be handled """ stanza_type = stanza.stanza_type return self.__try_handlers(self._pre...
[ "Process", "presence", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L302-L312
[ "def", "process_presence", "(", "self", ",", "stanza", ")", ":", "stanza_type", "=", "stanza", ".", "stanza_type", "return", "self", ".", "__try_handlers", "(", "self", ".", "_presence_handlers", ",", "stanza", ",", "stanza_type", ")" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.route_stanza
Process stanza not addressed to us. Return "recipient-unavailable" return if it is not "error" nor "result" stanza. This method should be overriden in derived classes if they are supposed to handle stanzas not addressed directly to local stream endpoint. :Parameters: ...
pyxmpp2/stanzaprocessor.py
def route_stanza(self, stanza): """Process stanza not addressed to us. Return "recipient-unavailable" return if it is not "error" nor "result" stanza. This method should be overriden in derived classes if they are supposed to handle stanzas not addressed directly to local ...
def route_stanza(self, stanza): """Process stanza not addressed to us. Return "recipient-unavailable" return if it is not "error" nor "result" stanza. This method should be overriden in derived classes if they are supposed to handle stanzas not addressed directly to local ...
[ "Process", "stanza", "not", "addressed", "to", "us", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L314-L330
[ "def", "route_stanza", "(", "self", ",", "stanza", ")", ":", "if", "stanza", ".", "stanza_type", "not", "in", "(", "\"error\"", ",", "\"result\"", ")", ":", "response", "=", "stanza", ".", "make_error_response", "(", "u\"recipient-unavailable\"", ")", "self", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.process_stanza
Process stanza received from the stream. First "fix" the stanza with `self.fix_in_stanza()`, then pass it to `self.route_stanza()` if it is not directed to `self.me` and `self.process_all_stanzas` is not True. Otherwise stanza is passwd to `self.process_iq()`, `self.process_message()` ...
pyxmpp2/stanzaprocessor.py
def process_stanza(self, stanza): """Process stanza received from the stream. First "fix" the stanza with `self.fix_in_stanza()`, then pass it to `self.route_stanza()` if it is not directed to `self.me` and `self.process_all_stanzas` is not True. Otherwise stanza is passwd to `s...
def process_stanza(self, stanza): """Process stanza received from the stream. First "fix" the stanza with `self.fix_in_stanza()`, then pass it to `self.route_stanza()` if it is not directed to `self.me` and `self.process_all_stanzas` is not True. Otherwise stanza is passwd to `s...
[ "Process", "stanza", "received", "from", "the", "stream", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L332-L376
[ "def", "process_stanza", "(", "self", ",", "stanza", ")", ":", "self", ".", "fix_in_stanza", "(", "stanza", ")", "to_jid", "=", "stanza", ".", "to_jid", "if", "not", "self", ".", "process_all_stanzas", "and", "to_jid", "and", "(", "to_jid", "!=", "self", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.set_response_handlers
Set response handler for an IQ "get" or "set" stanza. This should be called before the stanza is sent. :Parameters: - `stanza`: an IQ stanza - `res_handler`: result handler for the stanza. Will be called when matching <iq type="result"/> is received. Its only ...
pyxmpp2/stanzaprocessor.py
def set_response_handlers(self, stanza, res_handler, err_handler, timeout_handler = None, timeout = None): """Set response handler for an IQ "get" or "set" stanza. This should be called before the stanza is sent. :Parameters: - `stanza`: an IQ st...
def set_response_handlers(self, stanza, res_handler, err_handler, timeout_handler = None, timeout = None): """Set response handler for an IQ "get" or "set" stanza. This should be called before the stanza is sent. :Parameters: - `stanza`: an IQ st...
[ "Set", "response", "handler", "for", "an", "IQ", "get", "or", "set", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L389-L420
[ "def", "set_response_handlers", "(", "self", ",", "stanza", ",", "res_handler", ",", "err_handler", ",", "timeout_handler", "=", "None", ",", "timeout", "=", "None", ")", ":", "# pylint: disable-msg=R0913", "self", ".", "lock", ".", "acquire", "(", ")", "try",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor._set_response_handlers
Same as `set_response_handlers` but assume `self.lock` is acquired.
pyxmpp2/stanzaprocessor.py
def _set_response_handlers(self, stanza, res_handler, err_handler, timeout_handler = None, timeout = None): """Same as `set_response_handlers` but assume `self.lock` is acquired.""" # pylint: disable-msg=R0913 self.fix_out_stanza(stanza) to_jid = s...
def _set_response_handlers(self, stanza, res_handler, err_handler, timeout_handler = None, timeout = None): """Same as `set_response_handlers` but assume `self.lock` is acquired.""" # pylint: disable-msg=R0913 self.fix_out_stanza(stanza) to_jid = s...
[ "Same", "as", "set_response_handlers", "but", "assume", "self", ".", "lock", "is", "acquired", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L422-L444
[ "def", "_set_response_handlers", "(", "self", ",", "stanza", ",", "res_handler", ",", "err_handler", ",", "timeout_handler", "=", "None", ",", "timeout", "=", "None", ")", ":", "# pylint: disable-msg=R0913", "self", ".", "fix_out_stanza", "(", "stanza", ")", "to...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.setup_stanza_handlers
Install stanza handlers provided by `handler_objects`
pyxmpp2/stanzaprocessor.py
def setup_stanza_handlers(self, handler_objects, usage_restriction): """Install stanza handlers provided by `handler_objects`""" # pylint: disable=W0212 iq_handlers = {"get": {}, "set": {}} message_handlers = [] presence_handlers = [] for obj in handler_objects: ...
def setup_stanza_handlers(self, handler_objects, usage_restriction): """Install stanza handlers provided by `handler_objects`""" # pylint: disable=W0212 iq_handlers = {"get": {}, "set": {}} message_handlers = [] presence_handlers = [] for obj in handler_objects: ...
[ "Install", "stanza", "handlers", "provided", "by", "handler_objects" ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L450-L485
[ "def", "setup_stanza_handlers", "(", "self", ",", "handler_objects", ",", "usage_restriction", ")", ":", "# pylint: disable=W0212", "iq_handlers", "=", "{", "\"get\"", ":", "{", "}", ",", "\"set\"", ":", "{", "}", "}", "message_handlers", "=", "[", "]", "prese...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
StanzaProcessor.send
Send a stanza somwhere. The default implementation sends it via the `uplink` if it is defined or raises the `NoRouteError`. :Parameters: - `stanza`: the stanza to send. :Types: - `stanza`: `pyxmpp.stanza.Stanza`
pyxmpp2/stanzaprocessor.py
def send(self, stanza): """Send a stanza somwhere. The default implementation sends it via the `uplink` if it is defined or raises the `NoRouteError`. :Parameters: - `stanza`: the stanza to send. :Types: - `stanza`: `pyxmpp.stanza.Stanza`""" if s...
def send(self, stanza): """Send a stanza somwhere. The default implementation sends it via the `uplink` if it is defined or raises the `NoRouteError`. :Parameters: - `stanza`: the stanza to send. :Types: - `stanza`: `pyxmpp.stanza.Stanza`""" if s...
[ "Send", "a", "stanza", "somwhere", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzaprocessor.py#L504-L517
[ "def", "send", "(", "self", ",", "stanza", ")", ":", "if", "self", ".", "uplink", ":", "self", ".", "uplink", ".", "send", "(", "stanza", ")", "else", ":", "raise", "NoRouteError", "(", "\"No route for stanza\"", ")" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MainLoopBase.check_events
Call the event dispatcher. Quit the main loop when the `QUIT` event is reached. :Return: `True` if `QUIT` was reached.
pyxmpp2/mainloop/base.py
def check_events(self): """Call the event dispatcher. Quit the main loop when the `QUIT` event is reached. :Return: `True` if `QUIT` was reached. """ if self.event_dispatcher.flush() is QUIT: self._quit = True return True return False
def check_events(self): """Call the event dispatcher. Quit the main loop when the `QUIT` event is reached. :Return: `True` if `QUIT` was reached. """ if self.event_dispatcher.flush() is QUIT: self._quit = True return True return False
[ "Call", "the", "event", "dispatcher", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/base.py#L95-L105
[ "def", "check_events", "(", "self", ")", ":", "if", "self", ".", "event_dispatcher", ".", "flush", "(", ")", "is", "QUIT", ":", "self", ".", "_quit", "=", "True", "return", "True", "return", "False" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MainLoopBase._add_timeout_handler
Add a `TimeoutHandler` to the main loop.
pyxmpp2/mainloop/base.py
def _add_timeout_handler(self, handler): """Add a `TimeoutHandler` to the main loop.""" # pylint: disable-msg=W0212 now = time.time() for dummy, method in inspect.getmembers(handler, callable): if not hasattr(method, "_pyxmpp_timeout"): continue se...
def _add_timeout_handler(self, handler): """Add a `TimeoutHandler` to the main loop.""" # pylint: disable-msg=W0212 now = time.time() for dummy, method in inspect.getmembers(handler, callable): if not hasattr(method, "_pyxmpp_timeout"): continue se...
[ "Add", "a", "TimeoutHandler", "to", "the", "main", "loop", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/base.py#L107-L116
[ "def", "_add_timeout_handler", "(", "self", ",", "handler", ")", ":", "# pylint: disable-msg=W0212", "now", "=", "time", ".", "time", "(", ")", "for", "dummy", ",", "method", "in", "inspect", ".", "getmembers", "(", "handler", ",", "callable", ")", ":", "i...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MainLoopBase._remove_timeout_handler
Remove `TimeoutHandler` from the main loop.
pyxmpp2/mainloop/base.py
def _remove_timeout_handler(self, handler): """Remove `TimeoutHandler` from the main loop.""" self._timeout_handlers = [(t, h) for (t, h) in self._timeout_handlers if h.im_self != handler]
def _remove_timeout_handler(self, handler): """Remove `TimeoutHandler` from the main loop.""" self._timeout_handlers = [(t, h) for (t, h) in self._timeout_handlers if h.im_self != handler]
[ "Remove", "TimeoutHandler", "from", "the", "main", "loop", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/base.py#L118-L122
[ "def", "_remove_timeout_handler", "(", "self", ",", "handler", ")", ":", "self", ".", "_timeout_handlers", "=", "[", "(", "t", ",", "h", ")", "for", "(", "t", ",", "h", ")", "in", "self", ".", "_timeout_handlers", "if", "h", ".", "im_self", "!=", "ha...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
MainLoopBase._call_timeout_handlers
Call the timeout handlers due. :Return: (next_event_timeout, sources_handled) tuple. next_event_timeout is number of seconds until the next timeout event, sources_handled is number of handlers called.
pyxmpp2/mainloop/base.py
def _call_timeout_handlers(self): """Call the timeout handlers due. :Return: (next_event_timeout, sources_handled) tuple. next_event_timeout is number of seconds until the next timeout event, sources_handled is number of handlers called. """ sources_handled = 0 ...
def _call_timeout_handlers(self): """Call the timeout handlers due. :Return: (next_event_timeout, sources_handled) tuple. next_event_timeout is number of seconds until the next timeout event, sources_handled is number of handlers called. """ sources_handled = 0 ...
[ "Call", "the", "timeout", "handlers", "due", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/mainloop/base.py#L124-L164
[ "def", "_call_timeout_handlers", "(", "self", ")", ":", "sources_handled", "=", "0", "now", "=", "time", ".", "time", "(", ")", "schedule", "=", "None", "while", "self", ".", "_timeout_handlers", ":", "schedule", ",", "handler", "=", "self", ".", "_timeout...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
xml_elements_equal
Check if two XML elements are equal. :Parameters: - `element1`: the first element to compare - `element2`: the other element to compare - `ignore_level1_cdata`: if direct text children of the elements should be ignored for the comparision :Types: - `element1`: :etree:`...
pyxmpp2/utils.py
def xml_elements_equal(element1, element2, ignore_level1_cdata = False): """Check if two XML elements are equal. :Parameters: - `element1`: the first element to compare - `element2`: the other element to compare - `ignore_level1_cdata`: if direct text children of the elements ...
def xml_elements_equal(element1, element2, ignore_level1_cdata = False): """Check if two XML elements are equal. :Parameters: - `element1`: the first element to compare - `element2`: the other element to compare - `ignore_level1_cdata`: if direct text children of the elements ...
[ "Check", "if", "two", "XML", "elements", "are", "equal", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/utils.py#L24-L64
[ "def", "xml_elements_equal", "(", "element1", ",", "element2", ",", "ignore_level1_cdata", "=", "False", ")", ":", "# pylint: disable-msg=R0911", "if", "None", "in", "(", "element1", ",", "element2", ")", "or", "element1", ".", "tag", "!=", "element2", ".", "t...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
datetime_utc_to_local
An ugly hack to convert naive :std:`datetime.datetime` object containing UTC time to a naive :std:`datetime.datetime` object with local time. It seems standard Python 2.3 library doesn't provide any better way to do that.
pyxmpp2/utils.py
def datetime_utc_to_local(utc): """ An ugly hack to convert naive :std:`datetime.datetime` object containing UTC time to a naive :std:`datetime.datetime` object with local time. It seems standard Python 2.3 library doesn't provide any better way to do that. """ # pylint: disable-msg=C0103 ...
def datetime_utc_to_local(utc): """ An ugly hack to convert naive :std:`datetime.datetime` object containing UTC time to a naive :std:`datetime.datetime` object with local time. It seems standard Python 2.3 library doesn't provide any better way to do that. """ # pylint: disable-msg=C0103 ...
[ "An", "ugly", "hack", "to", "convert", "naive", ":", "std", ":", "datetime", ".", "datetime", "object", "containing", "UTC", "time", "to", "a", "naive", ":", "std", ":", "datetime", ".", "datetime", "object", "with", "local", "time", ".", "It", "seems", ...
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/utils.py#L72-L102
[ "def", "datetime_utc_to_local", "(", "utc", ")", ":", "# pylint: disable-msg=C0103", "ts", "=", "time", ".", "time", "(", ")", "cur", "=", "datetime", ".", "datetime", ".", "fromtimestamp", "(", "ts", ")", "cur_utc", "=", "datetime", ".", "datetime", ".", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
datetime_local_to_utc
Simple function to convert naive :std:`datetime.datetime` object containing local time to a naive :std:`datetime.datetime` object with UTC time.
pyxmpp2/utils.py
def datetime_local_to_utc(local): """ Simple function to convert naive :std:`datetime.datetime` object containing local time to a naive :std:`datetime.datetime` object with UTC time. """ timestamp = time.mktime(local.timetuple()) return datetime.datetime.utcfromtimestamp(timestamp)
def datetime_local_to_utc(local): """ Simple function to convert naive :std:`datetime.datetime` object containing local time to a naive :std:`datetime.datetime` object with UTC time. """ timestamp = time.mktime(local.timetuple()) return datetime.datetime.utcfromtimestamp(timestamp)
[ "Simple", "function", "to", "convert", "naive", ":", "std", ":", "datetime", ".", "datetime", "object", "containing", "local", "time", "to", "a", "naive", ":", "std", ":", "datetime", ".", "datetime", "object", "with", "UTC", "time", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/utils.py#L104-L110
[ "def", "datetime_local_to_utc", "(", "local", ")", ":", "timestamp", "=", "time", ".", "mktime", "(", "local", ".", "timetuple", "(", ")", ")", "return", "datetime", ".", "datetime", ".", "utcfromtimestamp", "(", "timestamp", ")" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Message._decode_subelements
Decode the stanza subelements.
pyxmpp2/message.py
def _decode_subelements(self): """Decode the stanza subelements.""" for child in self._element: if child.tag == self._subject_tag: self._subject = child.text elif child.tag == self._body_tag: self._body = child.text elif child.tag == se...
def _decode_subelements(self): """Decode the stanza subelements.""" for child in self._element: if child.tag == self._subject_tag: self._subject = child.text elif child.tag == self._body_tag: self._body = child.text elif child.tag == se...
[ "Decode", "the", "stanza", "subelements", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/message.py#L103-L111
[ "def", "_decode_subelements", "(", "self", ")", ":", "for", "child", "in", "self", ".", "_element", ":", "if", "child", ".", "tag", "==", "self", ".", "_subject_tag", ":", "self", ".", "_subject", "=", "child", ".", "text", "elif", "child", ".", "tag",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Message.as_xml
Return the XML stanza representation. Always return an independent copy of the stanza XML representation, which can be freely modified without affecting the stanza. :returntype: :etree:`ElementTree.Element`
pyxmpp2/message.py
def as_xml(self): """Return the XML stanza representation. Always return an independent copy of the stanza XML representation, which can be freely modified without affecting the stanza. :returntype: :etree:`ElementTree.Element`""" result = Stanza.as_xml(self) if self._s...
def as_xml(self): """Return the XML stanza representation. Always return an independent copy of the stanza XML representation, which can be freely modified without affecting the stanza. :returntype: :etree:`ElementTree.Element`""" result = Stanza.as_xml(self) if self._s...
[ "Return", "the", "XML", "stanza", "representation", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/message.py#L113-L130
[ "def", "as_xml", "(", "self", ")", ":", "result", "=", "Stanza", ".", "as_xml", "(", "self", ")", "if", "self", ".", "_subject", ":", "child", "=", "ElementTree", ".", "SubElement", "(", "result", ",", "self", ".", "_subject_tag", ")", "child", ".", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Message.copy
Create a deep copy of the stanza. :returntype: `Message`
pyxmpp2/message.py
def copy(self): """Create a deep copy of the stanza. :returntype: `Message`""" result = Message(None, self.from_jid, self.to_jid, self.stanza_type, self.stanza_id, self.error, self._return_path(), self._subject, self._body, ...
def copy(self): """Create a deep copy of the stanza. :returntype: `Message`""" result = Message(None, self.from_jid, self.to_jid, self.stanza_type, self.stanza_id, self.error, self._return_path(), self._subject, self._body, ...
[ "Create", "a", "deep", "copy", "of", "the", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/message.py#L132-L142
[ "def", "copy", "(", "self", ")", ":", "result", "=", "Message", "(", "None", ",", "self", ".", "from_jid", ",", "self", ".", "to_jid", ",", "self", ".", "stanza_type", ",", "self", ".", "stanza_id", ",", "self", ".", "error", ",", "self", ".", "_re...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Message.make_error_response
Create error response for any non-error message stanza. :Parameters: - `cond`: error condition name, as defined in XMPP specification. :return: new message stanza with the same "id" as self, "from" and "to" attributes swapped, type="error" and containing <error /> e...
pyxmpp2/message.py
def make_error_response(self, cond): """Create error response for any non-error message stanza. :Parameters: - `cond`: error condition name, as defined in XMPP specification. :return: new message stanza with the same "id" as self, "from" and "to" attributes swapped, typ...
def make_error_response(self, cond): """Create error response for any non-error message stanza. :Parameters: - `cond`: error condition name, as defined in XMPP specification. :return: new message stanza with the same "id" as self, "from" and "to" attributes swapped, typ...
[ "Create", "error", "response", "for", "any", "non", "-", "error", "message", "stanza", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/message.py#L183-L209
[ "def", "make_error_response", "(", "self", ",", "cond", ")", ":", "if", "self", ".", "stanza_type", "==", "\"error\"", ":", "raise", "ValueError", "(", "\"Errors may not be generated in response\"", "\" to errors\"", ")", "msg", "=", "Message", "(", "stanza_type", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
_move_session_handler
Find a SessionHandler instance in the list and move it to the beginning.
pyxmpp2/client.py
def _move_session_handler(handlers): """Find a SessionHandler instance in the list and move it to the beginning. """ index = 0 for i, handler in enumerate(handlers): if isinstance(handler, SessionHandler): index = i break if index: handlers[:index + 1] = [hand...
def _move_session_handler(handlers): """Find a SessionHandler instance in the list and move it to the beginning. """ index = 0 for i, handler in enumerate(handlers): if isinstance(handler, SessionHandler): index = i break if index: handlers[:index + 1] = [hand...
[ "Find", "a", "SessionHandler", "instance", "in", "the", "list", "and", "move", "it", "to", "the", "beginning", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L73-L82
[ "def", "_move_session_handler", "(", "handlers", ")", ":", "index", "=", "0", "for", "i", ",", "handler", "in", "enumerate", "(", "handlers", ")", ":", "if", "isinstance", "(", "handler", ",", "SessionHandler", ")", ":", "index", "=", "i", "break", "if",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client.connect
Schedule a new XMPP c2s connection.
pyxmpp2/client.py
def connect(self): """Schedule a new XMPP c2s connection. """ with self.lock: if self.stream: logger.debug("Closing the previously used stream.") self._close_stream() transport = TCPTransport(self.settings) addr = self.setting...
def connect(self): """Schedule a new XMPP c2s connection. """ with self.lock: if self.stream: logger.debug("Closing the previously used stream.") self._close_stream() transport = TCPTransport(self.settings) addr = self.setting...
[ "Schedule", "a", "new", "XMPP", "c2s", "connection", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L157-L185
[ "def", "connect", "(", "self", ")", ":", "with", "self", ".", "lock", ":", "if", "self", ".", "stream", ":", "logger", ".", "debug", "(", "\"Closing the previously used stream.\"", ")", "self", ".", "_close_stream", "(", ")", "transport", "=", "TCPTransport"...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client.disconnect
Gracefully disconnect from the server.
pyxmpp2/client.py
def disconnect(self): """Gracefully disconnect from the server.""" with self.lock: if self.stream: if self.settings[u"initial_presence"]: self.send(Presence(stanza_type = "unavailable")) self.stream.disconnect()
def disconnect(self): """Gracefully disconnect from the server.""" with self.lock: if self.stream: if self.settings[u"initial_presence"]: self.send(Presence(stanza_type = "unavailable")) self.stream.disconnect()
[ "Gracefully", "disconnect", "from", "the", "server", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L187-L193
[ "def", "disconnect", "(", "self", ")", ":", "with", "self", ".", "lock", ":", "if", "self", ".", "stream", ":", "if", "self", ".", "settings", "[", "u\"initial_presence\"", "]", ":", "self", ".", "send", "(", "Presence", "(", "stanza_type", "=", "\"una...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client._close_stream
Same as `close_stream` but with the `lock` acquired.
pyxmpp2/client.py
def _close_stream(self): """Same as `close_stream` but with the `lock` acquired. """ self.stream.close() if self.stream.transport in self._ml_handlers: self._ml_handlers.remove(self.stream.transport) self.main_loop.remove_handler(self.stream.transport) sel...
def _close_stream(self): """Same as `close_stream` but with the `lock` acquired. """ self.stream.close() if self.stream.transport in self._ml_handlers: self._ml_handlers.remove(self.stream.transport) self.main_loop.remove_handler(self.stream.transport) sel...
[ "Same", "as", "close_stream", "but", "with", "the", "lock", "acquired", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L201-L209
[ "def", "_close_stream", "(", "self", ")", ":", "self", ".", "stream", ".", "close", "(", ")", "if", "self", ".", "stream", ".", "transport", "in", "self", ".", "_ml_handlers", ":", "self", ".", "_ml_handlers", ".", "remove", "(", "self", ".", "stream",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client._stream_authenticated
Handle the `AuthenticatedEvent`.
pyxmpp2/client.py
def _stream_authenticated(self, event): """Handle the `AuthenticatedEvent`. """ with self.lock: if event.stream != self.stream: return self.me = event.stream.me self.peer = event.stream.peer handlers = self._base_handlers[:] ...
def _stream_authenticated(self, event): """Handle the `AuthenticatedEvent`. """ with self.lock: if event.stream != self.stream: return self.me = event.stream.me self.peer = event.stream.peer handlers = self._base_handlers[:] ...
[ "Handle", "the", "AuthenticatedEvent", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L219-L229
[ "def", "_stream_authenticated", "(", "self", ",", "event", ")", ":", "with", "self", ".", "lock", ":", "if", "event", ".", "stream", "!=", "self", ".", "stream", ":", "return", "self", ".", "me", "=", "event", ".", "stream", ".", "me", "self", ".", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client._stream_authorized
Handle the `AuthorizedEvent`.
pyxmpp2/client.py
def _stream_authorized(self, event): """Handle the `AuthorizedEvent`. """ with self.lock: if event.stream != self.stream: return self.me = event.stream.me self.peer = event.stream.peer presence = self.settings[u"initial_presence"] ...
def _stream_authorized(self, event): """Handle the `AuthorizedEvent`. """ with self.lock: if event.stream != self.stream: return self.me = event.stream.me self.peer = event.stream.peer presence = self.settings[u"initial_presence"] ...
[ "Handle", "the", "AuthorizedEvent", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L232-L242
[ "def", "_stream_authorized", "(", "self", ",", "event", ")", ":", "with", "self", ".", "lock", ":", "if", "event", ".", "stream", "!=", "self", ".", "stream", ":", "return", "self", ".", "me", "=", "event", ".", "stream", ".", "me", "self", ".", "p...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client._stream_disconnected
Handle stream disconnection event.
pyxmpp2/client.py
def _stream_disconnected(self, event): """Handle stream disconnection event. """ with self.lock: if event.stream != self.stream: return if self.stream is not None and event.stream == self.stream: if self.stream.transport in self._ml_handler...
def _stream_disconnected(self, event): """Handle stream disconnection event. """ with self.lock: if event.stream != self.stream: return if self.stream is not None and event.stream == self.stream: if self.stream.transport in self._ml_handler...
[ "Handle", "stream", "disconnection", "event", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L245-L256
[ "def", "_stream_disconnected", "(", "self", ",", "event", ")", ":", "with", "self", ".", "lock", ":", "if", "event", ".", "stream", "!=", "self", ".", "stream", ":", "return", "if", "self", ".", "stream", "is", "not", "None", "and", "event", ".", "st...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client.regular_tasks
Do some housekeeping (cache expiration, timeout handling). This method should be called periodically from the application's main loop. :Return: suggested delay (in seconds) before the next call to this method. :Returnt...
pyxmpp2/client.py
def regular_tasks(self): """Do some housekeeping (cache expiration, timeout handling). This method should be called periodically from the application's main loop. :Return: suggested delay (in seconds) before the next call to this ...
def regular_tasks(self): """Do some housekeeping (cache expiration, timeout handling). This method should be called periodically from the application's main loop. :Return: suggested delay (in seconds) before the next call to this ...
[ "Do", "some", "housekeeping", "(", "cache", "expiration", "timeout", "handling", ")", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L259-L274
[ "def", "regular_tasks", "(", "self", ")", ":", "with", "self", ".", "lock", ":", "ret", "=", "self", ".", "_iq_response_handlers", ".", "expire", "(", ")", "if", "ret", "is", "None", ":", "return", "1", "else", ":", "return", "min", "(", "1", ",", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
Client.base_handlers_factory
Default base client handlers factory. Subclasses can provide different behaviour by overriding this. :Return: list of handlers
pyxmpp2/client.py
def base_handlers_factory(self): """Default base client handlers factory. Subclasses can provide different behaviour by overriding this. :Return: list of handlers """ tls_handler = StreamTLSHandler(self.settings) sasl_handler = StreamSASLHandler(self.settings) s...
def base_handlers_factory(self): """Default base client handlers factory. Subclasses can provide different behaviour by overriding this. :Return: list of handlers """ tls_handler = StreamTLSHandler(self.settings) sasl_handler = StreamSASLHandler(self.settings) s...
[ "Default", "base", "client", "handlers", "factory", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/client.py#L276-L287
[ "def", "base_handlers_factory", "(", "self", ")", ":", "tls_handler", "=", "StreamTLSHandler", "(", "self", ".", "settings", ")", "sasl_handler", "=", "StreamSASLHandler", "(", "self", ".", "settings", ")", "session_handler", "=", "SessionHandler", "(", ")", "bi...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
payload_class_for_element_name
Return a payload class for given element name.
pyxmpp2/stanzapayload.py
def payload_class_for_element_name(element_name): """Return a payload class for given element name.""" logger.debug(" looking up payload class for element: {0!r}".format( element_name)) logger.debug(" known: {0!r}".format(STANZA_PAYLOAD_CLASSE...
def payload_class_for_element_name(element_name): """Return a payload class for given element name.""" logger.debug(" looking up payload class for element: {0!r}".format( element_name)) logger.debug(" known: {0!r}".format(STANZA_PAYLOAD_CLASSE...
[ "Return", "a", "payload", "class", "for", "given", "element", "name", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/stanzapayload.py#L66-L74
[ "def", "payload_class_for_element_name", "(", "element_name", ")", ":", "logger", ".", "debug", "(", "\" looking up payload class for element: {0!r}\"", ".", "format", "(", "element_name", ")", ")", "logger", ".", "debug", "(", "\" known: {0!r}\"", ".", "format", "("...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
_unquote
Unquote quoted value from DIGEST-MD5 challenge or response. If `data` doesn't start or doesn't end with '"' then return it unchanged, remove the quotes and escape backslashes otherwise. :Parameters: - `data`: a quoted string. :Types: - `data`: `bytes` :return: the unquoted string....
pyxmpp2/sasl/digest_md5.py
def _unquote(data): """Unquote quoted value from DIGEST-MD5 challenge or response. If `data` doesn't start or doesn't end with '"' then return it unchanged, remove the quotes and escape backslashes otherwise. :Parameters: - `data`: a quoted string. :Types: - `data`: `bytes` :r...
def _unquote(data): """Unquote quoted value from DIGEST-MD5 challenge or response. If `data` doesn't start or doesn't end with '"' then return it unchanged, remove the quotes and escape backslashes otherwise. :Parameters: - `data`: a quoted string. :Types: - `data`: `bytes` :r...
[ "Unquote", "quoted", "value", "from", "DIGEST", "-", "MD5", "challenge", "or", "response", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/sasl/digest_md5.py#L43-L59
[ "def", "_unquote", "(", "data", ")", ":", "if", "not", "data", ".", "startswith", "(", "b'\"'", ")", "or", "not", "data", ".", "endswith", "(", "b'\"'", ")", ":", "return", "data", "return", "QUOTE_RE", ".", "sub", "(", "b\"\\\\1\"", ",", "data", "["...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
_quote
Prepare a string for quoting for DIGEST-MD5 challenge or response. Don't add the quotes, only escape '"' and "\\" with backslashes. :Parameters: - `data`: a raw string. :Types: - `data`: `bytes` :return: `data` with '"' and "\\" escaped using "\\". :returntype: `bytes`
pyxmpp2/sasl/digest_md5.py
def _quote(data): """Prepare a string for quoting for DIGEST-MD5 challenge or response. Don't add the quotes, only escape '"' and "\\" with backslashes. :Parameters: - `data`: a raw string. :Types: - `data`: `bytes` :return: `data` with '"' and "\\" escaped using "\\". :return...
def _quote(data): """Prepare a string for quoting for DIGEST-MD5 challenge or response. Don't add the quotes, only escape '"' and "\\" with backslashes. :Parameters: - `data`: a raw string. :Types: - `data`: `bytes` :return: `data` with '"' and "\\" escaped using "\\". :return...
[ "Prepare", "a", "string", "for", "quoting", "for", "DIGEST", "-", "MD5", "challenge", "or", "response", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/sasl/digest_md5.py#L61-L76
[ "def", "_quote", "(", "data", ")", ":", "data", "=", "data", ".", "replace", "(", "b'\\\\'", ",", "b'\\\\\\\\'", ")", "data", "=", "data", ".", "replace", "(", "b'\"'", ",", "b'\\\\\"'", ")", "return", "data" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
_make_urp_hash
Compute MD5 sum of username:realm:password. :Parameters: - `username`: a username. - `realm`: a realm. - `passwd`: a password. :Types: - `username`: `bytes` - `realm`: `bytes` - `passwd`: `bytes` :return: the MD5 sum of the parameters joined with ':'. :r...
pyxmpp2/sasl/digest_md5.py
def _make_urp_hash(username, realm, passwd): """Compute MD5 sum of username:realm:password. :Parameters: - `username`: a username. - `realm`: a realm. - `passwd`: a password. :Types: - `username`: `bytes` - `realm`: `bytes` - `passwd`: `bytes` :return: t...
def _make_urp_hash(username, realm, passwd): """Compute MD5 sum of username:realm:password. :Parameters: - `username`: a username. - `realm`: a realm. - `passwd`: a password. :Types: - `username`: `bytes` - `realm`: `bytes` - `passwd`: `bytes` :return: t...
[ "Compute", "MD5", "sum", "of", "username", ":", "realm", ":", "password", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/sasl/digest_md5.py#L105-L121
[ "def", "_make_urp_hash", "(", "username", ",", "realm", ",", "passwd", ")", ":", "if", "realm", "is", "None", ":", "realm", "=", "b\"\"", "return", "_h_value", "(", "b\":\"", ".", "join", "(", "(", "username", ",", "realm", ",", "passwd", ")", ")", "...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
_compute_response
Compute DIGEST-MD5 response value. :Parameters: - `urp_hash`: MD5 sum of username:realm:password. - `nonce`: nonce value from a server challenge. - `cnonce`: cnonce value from the client response. - `nonce_count`: nonce count value. - `authzid`: authorization id. - `...
pyxmpp2/sasl/digest_md5.py
def _compute_response(urp_hash, nonce, cnonce, nonce_count, authzid, digest_uri): """Compute DIGEST-MD5 response value. :Parameters: - `urp_hash`: MD5 sum of username:realm:password. - `nonce`: nonce value from a server challen...
def _compute_response(urp_hash, nonce, cnonce, nonce_count, authzid, digest_uri): """Compute DIGEST-MD5 response value. :Parameters: - `urp_hash`: MD5 sum of username:realm:password. - `nonce`: nonce value from a server challen...
[ "Compute", "DIGEST", "-", "MD5", "response", "value", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/sasl/digest_md5.py#L123-L152
[ "def", "_compute_response", "(", "urp_hash", ",", "nonce", ",", "cnonce", ",", "nonce_count", ",", "authzid", ",", "digest_uri", ")", ":", "# pylint: disable-msg=C0103,R0913", "logger", ".", "debug", "(", "\"_compute_response{0!r}\"", ".", "format", "(", "(", "urp...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
rfc2425encode
Encodes a vCard field into an RFC2425 line. :Parameters: - `name`: field type name - `value`: field value - `parameters`: optional parameters - `charset`: encoding of the output and of the `value` (if not `unicode`) :Types: - `name`: `str` - `value`: `u...
pyxmpp2/ext/vcard.py
def rfc2425encode(name,value,parameters=None,charset="utf-8"): """Encodes a vCard field into an RFC2425 line. :Parameters: - `name`: field type name - `value`: field value - `parameters`: optional parameters - `charset`: encoding of the output and of the `value` (if not ...
def rfc2425encode(name,value,parameters=None,charset="utf-8"): """Encodes a vCard field into an RFC2425 line. :Parameters: - `name`: field type name - `value`: field value - `parameters`: optional parameters - `charset`: encoding of the output and of the `value` (if not ...
[ "Encodes", "a", "vCard", "field", "into", "an", "RFC2425", "line", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/vcard.py#L60-L98
[ "def", "rfc2425encode", "(", "name", ",", "value", ",", "parameters", "=", "None", ",", "charset", "=", "\"utf-8\"", ")", ":", "if", "not", "parameters", ":", "parameters", "=", "{", "}", "if", "type", "(", "value", ")", "is", "unicode", ":", "value", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
VCardString.as_xml
Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`
pyxmpp2/ext/vcard.py
def as_xml(self,parent): """Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`""" retu...
def as_xml(self,parent): """Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`""" retu...
[ "Create", "vcard", "-", "tmp", "XML", "representation", "of", "the", "field", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/vcard.py#L161-L171
[ "def", "as_xml", "(", "self", ",", "parent", ")", ":", "return", "parent", ".", "newTextChild", "(", "None", ",", "to_utf8", "(", "self", ".", "name", ".", "upper", "(", ")", ")", ",", "to_utf8", "(", "self", ".", "value", ")", ")" ]
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
VCardJID.as_xml
Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`
pyxmpp2/ext/vcard.py
def as_xml(self,parent): """Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`""" name...
def as_xml(self,parent): """Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`""" name...
[ "Create", "vcard", "-", "tmp", "XML", "representation", "of", "the", "field", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/vcard.py#L231-L243
[ "def", "as_xml", "(", "self", ",", "parent", ")", ":", "name", "=", "to_utf8", "(", "self", ".", "name", ".", "upper", "(", ")", ")", "content", "=", "self", ".", "value", ".", "as_utf8", "(", ")", "return", "parent", ".", "newTextChild", "(", "Non...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
VCardName.rfc2426
RFC2426-encode the field content. :return: the field in the RFC 2426 format. :returntype: `str`
pyxmpp2/ext/vcard.py
def rfc2426(self): """RFC2426-encode the field content. :return: the field in the RFC 2426 format. :returntype: `str`""" return rfc2425encode("n",u';'.join(quote_semicolon(val) for val in (self.family,self.given,self.middle,self.prefix,self.suffix)))
def rfc2426(self): """RFC2426-encode the field content. :return: the field in the RFC 2426 format. :returntype: `str`""" return rfc2425encode("n",u';'.join(quote_semicolon(val) for val in (self.family,self.given,self.middle,self.prefix,self.suffix)))
[ "RFC2426", "-", "encode", "the", "field", "content", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/vcard.py#L316-L322
[ "def", "rfc2426", "(", "self", ")", ":", "return", "rfc2425encode", "(", "\"n\"", ",", "u';'", ".", "join", "(", "quote_semicolon", "(", "val", ")", "for", "val", "in", "(", "self", ".", "family", ",", "self", ".", "given", ",", "self", ".", "middle"...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
VCardName.as_xml
Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`
pyxmpp2/ext/vcard.py
def as_xml(self,parent): """Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`""" n=pa...
def as_xml(self,parent): """Create vcard-tmp XML representation of the field. :Parameters: - `parent`: parent node for the element :Types: - `parent`: `libxml2.xmlNode` :return: xml node with the field data. :returntype: `libxml2.xmlNode`""" n=pa...
[ "Create", "vcard", "-", "tmp", "XML", "representation", "of", "the", "field", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/vcard.py#L323-L339
[ "def", "as_xml", "(", "self", ",", "parent", ")", ":", "n", "=", "parent", ".", "newChild", "(", "None", ",", "\"N\"", ",", "None", ")", "n", ".", "newTextChild", "(", "None", ",", "\"FAMILY\"", ",", "to_utf8", "(", "self", ".", "family", ")", ")",...
14a40a3950910a9cd008b55f0d8905aa0186ce18
valid
VCardImage.rfc2426
RFC2426-encode the field content. :return: the field in the RFC 2426 format. :returntype: `str`
pyxmpp2/ext/vcard.py
def rfc2426(self): """RFC2426-encode the field content. :return: the field in the RFC 2426 format. :returntype: `str`""" if self.uri: return rfc2425encode(self.name,self.uri,{"value":"uri"}) elif self.image: if self.type: p={"type":self.ty...
def rfc2426(self): """RFC2426-encode the field content. :return: the field in the RFC 2426 format. :returntype: `str`""" if self.uri: return rfc2425encode(self.name,self.uri,{"value":"uri"}) elif self.image: if self.type: p={"type":self.ty...
[ "RFC2426", "-", "encode", "the", "field", "content", "." ]
Jajcus/pyxmpp2
python
https://github.com/Jajcus/pyxmpp2/blob/14a40a3950910a9cd008b55f0d8905aa0186ce18/pyxmpp2/ext/vcard.py#L411-L423
[ "def", "rfc2426", "(", "self", ")", ":", "if", "self", ".", "uri", ":", "return", "rfc2425encode", "(", "self", ".", "name", ",", "self", ".", "uri", ",", "{", "\"value\"", ":", "\"uri\"", "}", ")", "elif", "self", ".", "image", ":", "if", "self", ...
14a40a3950910a9cd008b55f0d8905aa0186ce18