Commit graph

134 commits

Author SHA1 Message Date
Matthew Wild
dd37beeff9 util.stanza, util.xml, util.xmppstream: Add support for tracking defined namespaces and their prefix (stanza.namespaces), knowing/preserving prefix names is required for some applications (thanks daurnimator) 2015-12-08 23:15:42 +00:00
Kim Alvefur
ee7527ac00 util.stanza: Export xml_escape (missed during removal of module() calls) 2015-09-03 23:39:00 +02:00
Kim Alvefur
eaa823a597 util.*: Remove use of module() function, make all module functions local and return them in a table at the end 2015-02-21 10:36:37 +01:00
Kim Alvefur
29326acffa Merge 0.9->0.10 2014-10-26 20:57:06 +01:00
Matthew Wild
886aa3c20a Backout changeset 6e67c73f730c: not a major fix and it breaks interop with at least Isode M-Link, and possibly standards, while it's not clear it actually fixes the original problem either. 2014-10-24 23:20:06 +01:00
Waqas Hussain
cff8575563 Merge 0.9->0.10 2014-10-08 18:42:33 -04:00
Waqas Hussain
6656c56b93 util.stanza: Escape newlines and tabs (\r\n\t) when serializing stanzas. \r\n transforms into \n otherwise, and \r\n\t in attributes transforms into spaces. 2014-10-08 15:56:11 -04:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Matthew Wild
552fdd0caf util.stanza: Use correct index when replacing the tag in .tags (thanks daurnimator) 2013-04-05 19:59:48 +01:00
Kim Alvefur
bd72dc3f88 util.stanza: Add stanza:find(), a light weight XPath-like method 2013-04-04 20:05:35 +02:00
Matthew Wild
3230dc4c0a util.stanza: :maptags(): Fixes to make loop more robust on item removal 2013-04-03 13:38:27 +01:00
Kim Alvefur
0f7cedcc1a util.stanza: Use ipairs instead of childtags (behavior changed in 92c86e11fd44) 2012-08-21 15:33:07 +02:00
Matthew Wild
e1b559853f util.stanza: Fix :top_tag() handling of namespaced attributes 2019-03-25 14:37:43 +00:00
Kim Alvefur
20429527b1 util.stanza: Require a type attribute for iq stanzas 2018-12-28 20:49:01 +01:00
Kim Alvefur
ae0fdd43a4 util.stanza: Make stanza:childtags() behave like :get_child() 2012-07-05 17:58:47 +02:00
Matthew Wild
811e44ec5e util.stanza: Remove unused function imports 2012-04-28 02:38:56 +01:00
Matthew Wild
d0f4bbd2db util.stanza: Remove unused __add metamethod 2011-12-21 07:58:22 +00:00
Matthew Wild
a9c25722e1 util.stanza: Remove childtags and rename matching_tags -> childtags (they are API-compatible) 2011-02-22 07:37:52 +00:00
Waqas Hussain
d833e47d79 util.stanza: Rewrite clone() to be more optimized. 2011-02-20 19:16:56 +05:00
Waqas Hussain
bbb4eabf46 util.stanza: Make some globals local, so they don't clutter the global checking script's output. It's also a minor optimization ;) 2011-02-03 13:13:49 +05:00
Matthew Wild
22bd191f86 util.stanza: Add get_child_text() method to get the text of the specified child element (get_child() + get_text() rolled into one step) 2011-01-31 13:05:49 +00:00
Kim Alvefur
8f9442b31c util.stanza: Iterate on childtags instead of all childs. 2010-12-17 17:28:05 +01:00
Matthew Wild
81b877341f util.stanza: Change get_error() to return nil rather than '' for no text 2010-12-11 22:34:29 +00:00
Waqas Hussain
539b221189 util.stanza, util.xmppstream, core.xmlhandlers: Allow stanza.last_add to be nil, and set it nil by default. Saves a table allocation per-element. 20% faster stanza building. 2010-11-26 05:23:37 +05:00
Waqas Hussain
076aadf990 util.stanza: Make the current element <message> instead of <body> when body text is passed to st.message(). 2010-09-21 17:24:25 +05:00
Matthew Wild
e3718ed22e util.stanza: stanza:matched_children() -> stanza:matching_tags() 2010-08-30 04:55:12 +01:00
Matthew Wild
f5fcc46905 util.stanza: Add stanza:maptags() to apply a function over child tags (return nil to remove tag from stanza) 2010-08-30 04:53:41 +01:00
Matthew Wild
a69205c3b9 util.stanza: Optimisation, remove useless if...then in stanza:children() iterator 2010-08-29 15:07:00 +01:00
Matthew Wild
aa509f9fce util.stanza: Add stanza:matched_children(name, xmlns) [name suggestions welcome] 2010-08-29 15:04:34 +01:00
Matthew Wild
46c0b8c7f9 Merge 0.6->0.7 2010-03-22 17:24:55 +00:00
Matthew Wild
2bc0606453 Update copyright headers for 2010 2010-03-22 17:06:15 +00:00
Waqas Hussain
675aab41f9 util.stanza: Fixed nil global accesses. 2010-03-02 00:50:54 +05:00
Matthew Wild
e1a8c86970 util.stanza: stanza.error_reply(): Fix to put the correct namespace on <text> 2010-01-31 19:27:52 +00:00
Matthew Wild
35d65ca55b util.stanza: Add stanza:get_error() to return type, condition and text of a stanza error 2010-01-29 14:22:03 +00:00
Matthew Wild
2545e17aeb util.stanza: Trailing whitespace 2010-01-21 13:22:41 +00:00
Matthew Wild
70c975bfe0 util.stanza: Add stanza:get_child(name, xmlns) to find a child tag given a name/xmlns 2009-11-30 16:39:27 +00:00
Matthew Wild
9ed7624f75 util.stanza: stanza.error_reply(): Fix to put the correct namespace on <text> 2010-01-31 19:27:52 +00:00
Matthew Wild
fe45368b05 util.stanza: Add stanza:get_child(name, xmlns) to find a child tag given a name/xmlns 2009-11-30 16:39:27 +00:00
Waqas Hussain
316bc45e71 Changed separator between attribute names and prefixes from '|' to '\1' (optimization and cleanup). 2009-11-12 13:42:44 +05:00
Matthew Wild
555d09e324 util.stanza: Don't add xmlns to tags when serializing if same as the parent tag's xmlns. Should hopefully shut up Gajim once and for all :) 2009-10-17 19:47:01 +01:00
Matthew Wild
7c81eebb01 util.stanza: Remove silly dependency on util.logger 2009-10-08 20:06:07 +01:00
Matthew Wild
2f726a9d3b util.stanza: Soften dependency on util.termcolours 2009-10-06 19:17:28 +01:00
Matthew Wild
7b3fe9ce14 util.stanza: Make xml_escape publicly accessible 2009-10-06 18:05:31 +01:00
Matthew Wild
b1f5f214b1 util.stanza: Add __type to metatable 2009-10-04 14:03:08 +01:00
Matthew Wild
118883d655 Remove version number from copyright headers 2009-07-10 03:11:45 +01:00
Matthew Wild
825d03cc43 util.stanza: Convert spaces to tabs 2009-07-10 02:25:14 +01:00
Waqas Hussain
852c7a62b1 util.stanza: Serializer optimizations, and nicer output for empty elements 2009-06-27 08:38:52 +05:00
Matthew Wild
49f2cc3baa util.stanza: Add stanza:get_text() to retrieve all child text nodes #api 2009-06-26 05:54:55 +01:00
Waqas Hussain
1ce4a34f68 util.stanza: Rewrote stanza_mt.__tostring. 20-30% faster stanza serialization. - #optimization 2009-06-25 17:22:53 +05:00
Waqas Hussain
3a8c1a3f6c util.stanza: Remove numeric attributes while deserializing 2009-06-25 17:19:13 +05:00