Class Jabber::Protocol::REXMLJabberParser
|
|
[R] |
:started |
status if the parser is started
|
Included modules
REXML::StreamListener
Constructs a parser for the supplied stream (socket input)
Callback for REXML::Document.parse_stream when a start tag is encountered
name: | [String] The tag name <name>
|
attrs: | [Array] The attribute array...attrs = [["key","value"],
["key2", "value2"]]
|
Callback for REXML::Document.parse_stream when an end tag is encountered
name: | [String] the tag name
|
Callback for REXML::Document.parse_stream when text is encountered
text: | [String] The text (<tag>text</tag>)
|
Callback for REXML::Document.parse_stream when cdata is encountered
content: | [String] The CData content
|
Begins parsing the XML stream and does not return until the stream closes.