xmpp4r 0.3 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +10 -0
- data/README +12 -4
- data/Rakefile +1 -1
- data/data/doc/xmpp4r/examples/advanced/fileserve.rb +2 -0
- data/data/doc/xmpp4r/examples/advanced/recvfile.rb +2 -0
- data/data/doc/xmpp4r/examples/basic/client.rb +2 -2
- data/data/doc/xmpp4r/examples/basic/mass_sender.rb +1 -0
- data/data/doc/xmpp4r/examples/buggy/miniedgarr_cgi.rb +1 -1
- data/lib/xmpp4r/bytestreams.rb +4 -0
- data/lib/xmpp4r/bytestreams/helper/filetransfer.rb +10 -4
- data/lib/xmpp4r/bytestreams/helper/ibb/base.rb +4 -0
- data/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +5 -1
- data/lib/xmpp4r/bytestreams/helper/ibb/target.rb +5 -1
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +5 -1
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +4 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +20 -6
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +4 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +4 -0
- data/lib/xmpp4r/bytestreams/iq/si.rb +4 -0
- data/lib/xmpp4r/component.rb +1 -1
- data/lib/xmpp4r/dataforms.rb +4 -0
- data/lib/xmpp4r/delay.rb +4 -0
- data/lib/xmpp4r/discovery.rb +4 -0
- data/lib/xmpp4r/feature_negotiation.rb +4 -0
- data/lib/xmpp4r/feature_negotiation/iq/feature.rb +4 -0
- data/lib/xmpp4r/iq.rb +1 -1
- data/lib/xmpp4r/message.rb +10 -3
- data/lib/xmpp4r/muc.rb +4 -0
- data/lib/xmpp4r/muc/helper/simplemucclient.rb +4 -0
- data/lib/xmpp4r/presence.rb +9 -5
- data/lib/xmpp4r/rexmladdons.rb +65 -3
- data/lib/xmpp4r/roster.rb +4 -0
- data/lib/xmpp4r/roster/helper/roster.rb +18 -3
- data/lib/xmpp4r/sasl.rb +59 -10
- data/lib/xmpp4r/stream.rb +22 -2
- data/lib/xmpp4r/vcard.rb +4 -0
- data/lib/xmpp4r/vcard/helper/vcard.rb +4 -4
- data/lib/xmpp4r/version.rb +4 -0
- data/lib/xmpp4r/xmpp4r.rb +1 -1
- data/setup.rb +800 -575
- data/test/bytestreams/tc_socks5bytestreams.rb +46 -0
- data/test/tc_iq.rb +1 -1
- data/test/tc_rexml.rb +60 -0
- data/test/ts_xmpp4r.rb +2 -1
- data/test/vcard/tc_helper.rb +49 -0
- metadata +96 -94
- data/test/roster/.tc_helper.rb.swp +0 -0
| @@ -19,6 +19,52 @@ class SOCKS5BytestreamsTest < Test::Unit::TestCase | |
| 19 19 | 
             
                ([nil] * size).collect { rand(256).chr }.join
         | 
| 20 20 | 
             
              end
         | 
| 21 21 |  | 
| 22 | 
            +
              def test_server2multi
         | 
| 23 | 
            +
                target1 = Bytestreams::SOCKS5BytestreamsTarget.new(@server, '1', '1@a.com/1', '1@a.com/2')
         | 
| 24 | 
            +
                target2 = Bytestreams::SOCKS5BytestreamsTarget.new(@server, '2', '2@a.com/1', '2@a.com/2')
         | 
| 25 | 
            +
                initiator1 = Bytestreams::SOCKS5BytestreamsInitiator.new(@client, '1', '1@a.com/1', '1@a.com/2')
         | 
| 26 | 
            +
                initiator2 = Bytestreams::SOCKS5BytestreamsInitiator.new(@client, '2', '2@a.com/1', '2@a.com/2')
         | 
| 27 | 
            +
                initiator1.add_streamhost(@@server)
         | 
| 28 | 
            +
                initiator2.add_streamhost(@@server)
         | 
| 29 | 
            +
             | 
| 30 | 
            +
                buf1 = create_buffer(8192)
         | 
| 31 | 
            +
                buf2 = create_buffer(8192)
         | 
| 32 | 
            +
             | 
| 33 | 
            +
                Thread.new do 
         | 
| 34 | 
            +
                  target1.accept
         | 
| 35 | 
            +
                  target1.write(buf1)
         | 
| 36 | 
            +
                  target1.flush
         | 
| 37 | 
            +
                  target1.close
         | 
| 38 | 
            +
                end
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                Thread.new do
         | 
| 41 | 
            +
                  target2.accept
         | 
| 42 | 
            +
                  target2.write(buf2)
         | 
| 43 | 
            +
                  target2.flush
         | 
| 44 | 
            +
                  target2.close
         | 
| 45 | 
            +
                end
         | 
| 46 | 
            +
             | 
| 47 | 
            +
                initiator1.open
         | 
| 48 | 
            +
                initiator2.open
         | 
| 49 | 
            +
             | 
| 50 | 
            +
                recv1 = ''
         | 
| 51 | 
            +
                recv2 = ''
         | 
| 52 | 
            +
             | 
| 53 | 
            +
                while buf = initiator2.read(256)
         | 
| 54 | 
            +
                  recv2 += buf
         | 
| 55 | 
            +
                end
         | 
| 56 | 
            +
             | 
| 57 | 
            +
                while buf = initiator1.read(256)
         | 
| 58 | 
            +
                  recv1 += buf
         | 
| 59 | 
            +
                end
         | 
| 60 | 
            +
             | 
| 61 | 
            +
                initiator1.close
         | 
| 62 | 
            +
                initiator2.close
         | 
| 63 | 
            +
             | 
| 64 | 
            +
                assert_equal(buf1, recv1)
         | 
| 65 | 
            +
                assert_equal(buf2, recv2)
         | 
| 66 | 
            +
              end
         | 
| 67 | 
            +
             | 
| 22 68 | 
             
              def test_pingpong
         | 
| 23 69 | 
             
                target = Bytestreams::SOCKS5BytestreamsTarget.new(@server, '1', '1@a.com/1', '1@a.com/2')
         | 
| 24 70 | 
             
                initiator = Bytestreams::SOCKS5BytestreamsInitiator.new(@client, '1', '1@a.com/1', '1@a.com/2')
         | 
    
        data/test/tc_iq.rb
    CHANGED
    
    | @@ -22,7 +22,7 @@ class IqTest < Test::Unit::TestCase | |
| 22 22 |  | 
| 23 23 | 
             
              def test_iqauth_digest
         | 
| 24 24 | 
             
                x = Iq::new_authset_digest(JID::new('node@domain/resource'), '', 'password')
         | 
| 25 | 
            -
                assert_equal("<iq type='set'><query xmlns='jabber:iq:auth'><username>node</username><digest>#{Digest::SHA1. | 
| 25 | 
            +
                assert_equal("<iq type='set'><query xmlns='jabber:iq:auth'><username>node</username><digest>#{Digest::SHA1.hexdigest('password')}</digest><resource>resource</resource></query></iq>", x.to_s)
         | 
| 26 26 | 
             
              end
         | 
| 27 27 |  | 
| 28 28 | 
             
              def test_register
         | 
    
        data/test/tc_rexml.rb
    ADDED
    
    | @@ -0,0 +1,60 @@ | |
| 1 | 
            +
            #!/usr/bin/ruby
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            $:.unshift '../lib'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            require 'test/unit'
         | 
| 6 | 
            +
            require 'xmpp4r/rexmladdons'
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            class REXMLTest < Test::Unit::TestCase
         | 
| 9 | 
            +
              def test_simple
         | 
| 10 | 
            +
                e = REXML::Element.new('e')
         | 
| 11 | 
            +
                assert_kind_of(REXML::Element, e)
         | 
| 12 | 
            +
                assert_nil(e.text)
         | 
| 13 | 
            +
                assert_nil(e.attributes['x'])
         | 
| 14 | 
            +
              end
         | 
| 15 | 
            +
             | 
| 16 | 
            +
              def test_normalize
         | 
| 17 | 
            +
                assert_equal('&', REXML::Text::normalize('&'))
         | 
| 18 | 
            +
                assert_equal('&amp;', REXML::Text::normalize('&'))
         | 
| 19 | 
            +
                assert_equal('&amp;amp;', REXML::Text::normalize('&amp;'))
         | 
| 20 | 
            +
                assert_equal('&nbsp;', REXML::Text::normalize(' '))
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
             | 
| 23 | 
            +
              def test_unnormalize
         | 
| 24 | 
            +
                assert_equal('&', REXML::Text::unnormalize('&'))
         | 
| 25 | 
            +
                assert_equal('&', REXML::Text::unnormalize('&amp;'))
         | 
| 26 | 
            +
                assert_equal('&amp;', REXML::Text::unnormalize('&amp;amp;'))
         | 
| 27 | 
            +
                assert_equal(' ', REXML::Text::unnormalize('&nbsp;'))
         | 
| 28 | 
            +
                assert_equal(' ', REXML::Text::unnormalize(' '))  # ?
         | 
| 29 | 
            +
              end
         | 
| 30 | 
            +
             | 
| 31 | 
            +
              def test_text_entities
         | 
| 32 | 
            +
                e = REXML::Element.new('e')
         | 
| 33 | 
            +
                e.text = '&'
         | 
| 34 | 
            +
                assert_equal('<e>&</e>', e.to_s)
         | 
| 35 | 
            +
                e.text = '&'
         | 
| 36 | 
            +
                assert_equal('<e>&amp;</e>', e.to_s)
         | 
| 37 | 
            +
                e.text = ' '
         | 
| 38 | 
            +
                assert_equal('<e>&nbsp</e>', e.to_s)
         | 
| 39 | 
            +
                e.text = ' '
         | 
| 40 | 
            +
                assert_equal('<e>&nbsp;</e>', e.to_s)
         | 
| 41 | 
            +
                e.text = '&<;'
         | 
| 42 | 
            +
                assert_equal('<e>&<;</e>', e.to_s)
         | 
| 43 | 
            +
                e.text = '<>"\''
         | 
| 44 | 
            +
                assert_equal('<e><>"'</e>', e.to_s)
         | 
| 45 | 
            +
                e.text = '<x>&</x>'
         | 
| 46 | 
            +
                assert_equal('<e><x>&amp;</x></e>', e.to_s)
         | 
| 47 | 
            +
              end
         | 
| 48 | 
            +
             | 
| 49 | 
            +
              def test_attribute_entites
         | 
| 50 | 
            +
                e = REXML::Element.new('e')
         | 
| 51 | 
            +
                e.attributes['x'] = '&'
         | 
| 52 | 
            +
                assert_equal('&', e.attributes['x'])
         | 
| 53 | 
            +
                e.attributes['x'] = '&'
         | 
| 54 | 
            +
                assert_equal('&', e.attributes['x'])
         | 
| 55 | 
            +
                e.attributes['x'] = ' '
         | 
| 56 | 
            +
                assert_equal(' ', e.attributes['x'])
         | 
| 57 | 
            +
                e.attributes['x'] = ' '
         | 
| 58 | 
            +
                assert_equal(' ', e.attributes['x'])
         | 
| 59 | 
            +
              end
         | 
| 60 | 
            +
            end
         | 
    
        data/test/ts_xmpp4r.rb
    CHANGED
    
    | @@ -21,7 +21,7 @@ require 'tc_presence' | |
| 21 21 | 
             
            require 'vcard/tc_iqvcard'
         | 
| 22 22 | 
             
            require 'roster/tc_iqqueryroster'
         | 
| 23 23 | 
             
            require 'roster/tc_xroster'
         | 
| 24 | 
            -
            require 'roster/tc_helper'
         | 
| 24 | 
            +
            #require 'roster/tc_helper'
         | 
| 25 25 | 
             
            require 'version/tc_iqqueryversion'
         | 
| 26 26 | 
             
            require 'version/tc_helper'
         | 
| 27 27 | 
             
            require 'tc_streamSend'
         | 
| @@ -32,3 +32,4 @@ require 'tc_callbacks' | |
| 32 32 | 
             
            require 'tc_xmlstanza'
         | 
| 33 33 | 
             
            require 'tc_message'
         | 
| 34 34 | 
             
            require 'tc_class_names'
         | 
| 35 | 
            +
            require 'tc_rexml'
         | 
| @@ -0,0 +1,49 @@ | |
| 1 | 
            +
            #!/usr/bin/ruby
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            $:.unshift File::dirname(__FILE__) + '/../../lib'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            require 'test/unit'
         | 
| 6 | 
            +
            require File::dirname(__FILE__) + '/../lib/clienttester'
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            require 'xmpp4r'
         | 
| 9 | 
            +
            require 'xmpp4r/vcard/helper/vcard'
         | 
| 10 | 
            +
            include Jabber
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            class Vcard::HelperTest < Test::Unit::TestCase
         | 
| 13 | 
            +
              include ClientTester
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              def test_create
         | 
| 16 | 
            +
                h = Vcard::Helper::new(@client)
         | 
| 17 | 
            +
                assert_kind_of(Vcard::Helper, h)
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              def test_callback
         | 
| 21 | 
            +
                @server.on_exception{|*e| p e}
         | 
| 22 | 
            +
                class << @client
         | 
| 23 | 
            +
                  def jid
         | 
| 24 | 
            +
                    JID.new('b@b.com/b')
         | 
| 25 | 
            +
                  end
         | 
| 26 | 
            +
                end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
                state { |iq|
         | 
| 29 | 
            +
                  assert_kind_of(Iq, iq)
         | 
| 30 | 
            +
                  assert_equal(JID.new('a@b.com'), iq.to)
         | 
| 31 | 
            +
                  assert_equal(:get, iq.type)
         | 
| 32 | 
            +
                  assert_nil(iq.queryns)
         | 
| 33 | 
            +
                  assert_kind_of(Vcard::IqVcard, iq.vcard)
         | 
| 34 | 
            +
                  children = 0
         | 
| 35 | 
            +
                  iq.vcard.each_child { children += 1 }
         | 
| 36 | 
            +
                  assert_equal(0, children)
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                  send("<iq type='result' from='#{iq.to}' to='#{iq.from}' id='#{iq.id}'><vCard xmlns='vcard-temp'><NICKNAME>Mr. B</NICKNAME><PHOTO><TYPE>image/png</TYPE><BINVAL>====</BINVAL></PHOTO></vCard></iq>")
         | 
| 39 | 
            +
                }
         | 
| 40 | 
            +
             | 
| 41 | 
            +
                res = Vcard::Helper::get(@client, 'a@b.com')
         | 
| 42 | 
            +
                wait_state
         | 
| 43 | 
            +
                assert_kind_of(Vcard::IqVcard, res)
         | 
| 44 | 
            +
                assert_equal('Mr. B', res['NICKNAME'])
         | 
| 45 | 
            +
                assert_equal('image/png', res['PHOTO/TYPE'])
         | 
| 46 | 
            +
                assert_equal('====', res['PHOTO/BINVAL'])
         | 
| 47 | 
            +
              end
         | 
| 48 | 
            +
            end
         | 
| 49 | 
            +
             | 
    
        metadata
    CHANGED
    
    | @@ -1,10 +1,10 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 | 
            -
            rubygems_version: 0. | 
| 2 | 
            +
            rubygems_version: 0.9.0
         | 
| 3 3 | 
             
            specification_version: 1
         | 
| 4 4 | 
             
            name: xmpp4r
         | 
| 5 5 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 6 | 
            -
              version:  | 
| 7 | 
            -
            date:  | 
| 6 | 
            +
              version: 0.3.1
         | 
| 7 | 
            +
            date: 2007-04-23 00:00:00 +02:00
         | 
| 8 8 | 
             
            summary: Ruby library for Jabber Instant-Messaging
         | 
| 9 9 | 
             
            require_paths: 
         | 
| 10 10 | 
             
            - lib
         | 
| @@ -25,6 +25,7 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement | |
| 25 25 | 
             
            platform: ruby
         | 
| 26 26 | 
             
            signing_key: 
         | 
| 27 27 | 
             
            cert_chain: 
         | 
| 28 | 
            +
            post_install_message: 
         | 
| 28 29 | 
             
            authors: []
         | 
| 29 30 |  | 
| 30 31 | 
             
            files: 
         | 
| @@ -39,91 +40,91 @@ files: | |
| 39 40 | 
             
            - lib/xmpp4r.rb
         | 
| 40 41 | 
             
            - lib/callbacks.rb
         | 
| 41 42 | 
             
            - lib/xmpp4r
         | 
| 42 | 
            -
            - lib/xmpp4r/ | 
| 43 | 
            +
            - lib/xmpp4r/iq.rb
         | 
| 44 | 
            +
            - lib/xmpp4r/errorexception.rb
         | 
| 45 | 
            +
            - lib/xmpp4r/x.rb
         | 
| 46 | 
            +
            - lib/xmpp4r/jid.rb
         | 
| 43 47 | 
             
            - lib/xmpp4r/vcard.rb
         | 
| 44 | 
            -
            - lib/xmpp4r/feature_negotiation.rb
         | 
| 45 | 
            -
            - lib/xmpp4r/roster.rb
         | 
| 46 48 | 
             
            - lib/xmpp4r/delay.rb
         | 
| 49 | 
            +
            - lib/xmpp4r/feature_negotiation.rb
         | 
| 50 | 
            +
            - lib/xmpp4r/debuglog.rb
         | 
| 51 | 
            +
            - lib/xmpp4r/authenticationfailure.rb
         | 
| 52 | 
            +
            - lib/xmpp4r/version.rb
         | 
| 53 | 
            +
            - lib/xmpp4r/message.rb
         | 
| 54 | 
            +
            - lib/xmpp4r/dataforms.rb
         | 
| 55 | 
            +
            - lib/xmpp4r/rexmladdons.rb
         | 
| 56 | 
            +
            - lib/xmpp4r/client.rb
         | 
| 57 | 
            +
            - lib/xmpp4r/streamparser.rb
         | 
| 47 58 | 
             
            - lib/xmpp4r/discovery.rb
         | 
| 48 59 | 
             
            - lib/xmpp4r/query.rb
         | 
| 49 | 
            -
            - lib/xmpp4r/ | 
| 50 | 
            -
            - lib/xmpp4r/ | 
| 51 | 
            -
            - lib/xmpp4r/ | 
| 52 | 
            -
            - lib/xmpp4r/ | 
| 60 | 
            +
            - lib/xmpp4r/presence.rb
         | 
| 61 | 
            +
            - lib/xmpp4r/idgenerator.rb
         | 
| 62 | 
            +
            - lib/xmpp4r/component.rb
         | 
| 63 | 
            +
            - lib/xmpp4r/bytestreams.rb
         | 
| 64 | 
            +
            - lib/xmpp4r/sasl.rb
         | 
| 65 | 
            +
            - lib/xmpp4r/connection.rb
         | 
| 66 | 
            +
            - lib/xmpp4r/stream.rb
         | 
| 67 | 
            +
            - lib/xmpp4r/xmpp4r.rb
         | 
| 68 | 
            +
            - lib/xmpp4r/error.rb
         | 
| 69 | 
            +
            - lib/xmpp4r/muc.rb
         | 
| 70 | 
            +
            - lib/xmpp4r/xmlstanza.rb
         | 
| 71 | 
            +
            - lib/xmpp4r/roster.rb
         | 
| 53 72 | 
             
            - lib/xmpp4r/bytestreams
         | 
| 73 | 
            +
            - lib/xmpp4r/bytestreams/iq
         | 
| 74 | 
            +
            - lib/xmpp4r/bytestreams/iq/si.rb
         | 
| 75 | 
            +
            - lib/xmpp4r/bytestreams/iq/bytestreams.rb
         | 
| 54 76 | 
             
            - lib/xmpp4r/bytestreams/helper
         | 
| 55 77 | 
             
            - lib/xmpp4r/bytestreams/helper/filetransfer.rb
         | 
| 78 | 
            +
            - lib/xmpp4r/bytestreams/helper/ibb
         | 
| 79 | 
            +
            - lib/xmpp4r/bytestreams/helper/ibb/base.rb
         | 
| 80 | 
            +
            - lib/xmpp4r/bytestreams/helper/ibb/target.rb
         | 
| 81 | 
            +
            - lib/xmpp4r/bytestreams/helper/ibb/initiator.rb
         | 
| 56 82 | 
             
            - lib/xmpp4r/bytestreams/helper/socks5bytestreams
         | 
| 57 83 | 
             
            - lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb
         | 
| 58 84 | 
             
            - lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb
         | 
| 59 85 | 
             
            - lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb
         | 
| 60 86 | 
             
            - lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb
         | 
| 61 87 | 
             
            - lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb
         | 
| 62 | 
            -
            - lib/xmpp4r/bytestreams/helper/ibb
         | 
| 63 | 
            -
            - lib/xmpp4r/bytestreams/helper/ibb/base.rb
         | 
| 64 | 
            -
            - lib/xmpp4r/bytestreams/helper/ibb/target.rb
         | 
| 65 | 
            -
            - lib/xmpp4r/bytestreams/helper/ibb/initiator.rb
         | 
| 66 | 
            -
            - lib/xmpp4r/bytestreams/iq
         | 
| 67 | 
            -
            - lib/xmpp4r/bytestreams/iq/bytestreams.rb
         | 
| 68 | 
            -
            - lib/xmpp4r/bytestreams/iq/si.rb
         | 
| 69 | 
            -
            - lib/xmpp4r/dataforms
         | 
| 70 | 
            -
            - lib/xmpp4r/dataforms/x
         | 
| 71 | 
            -
            - lib/xmpp4r/dataforms/x/data.rb
         | 
| 72 | 
            -
            - lib/xmpp4r/delay
         | 
| 73 | 
            -
            - lib/xmpp4r/delay/x
         | 
| 74 | 
            -
            - lib/xmpp4r/delay/x/delay.rb
         | 
| 75 88 | 
             
            - lib/xmpp4r/vcard
         | 
| 76 89 | 
             
            - lib/xmpp4r/vcard/iq
         | 
| 77 90 | 
             
            - lib/xmpp4r/vcard/iq/vcard.rb
         | 
| 78 91 | 
             
            - lib/xmpp4r/vcard/helper
         | 
| 79 92 | 
             
            - lib/xmpp4r/vcard/helper/vcard.rb
         | 
| 93 | 
            +
            - lib/xmpp4r/feature_negotiation
         | 
| 94 | 
            +
            - lib/xmpp4r/feature_negotiation/iq
         | 
| 95 | 
            +
            - lib/xmpp4r/feature_negotiation/iq/feature.rb
         | 
| 96 | 
            +
            - lib/xmpp4r/version
         | 
| 97 | 
            +
            - lib/xmpp4r/version/iq
         | 
| 98 | 
            +
            - lib/xmpp4r/version/iq/version.rb
         | 
| 99 | 
            +
            - lib/xmpp4r/version/helper
         | 
| 100 | 
            +
            - lib/xmpp4r/version/helper/simpleresponder.rb
         | 
| 101 | 
            +
            - lib/xmpp4r/version/helper/responder.rb
         | 
| 102 | 
            +
            - lib/xmpp4r/muc
         | 
| 103 | 
            +
            - lib/xmpp4r/muc/x
         | 
| 104 | 
            +
            - lib/xmpp4r/muc/x/muc.rb
         | 
| 105 | 
            +
            - lib/xmpp4r/muc/x/mucuseritem.rb
         | 
| 106 | 
            +
            - lib/xmpp4r/muc/x/mucuserinvite.rb
         | 
| 107 | 
            +
            - lib/xmpp4r/muc/helper
         | 
| 108 | 
            +
            - lib/xmpp4r/muc/helper/mucbrowser.rb
         | 
| 109 | 
            +
            - lib/xmpp4r/muc/helper/mucclient.rb
         | 
| 110 | 
            +
            - lib/xmpp4r/muc/helper/simplemucclient.rb
         | 
| 80 111 | 
             
            - lib/xmpp4r/roster
         | 
| 112 | 
            +
            - lib/xmpp4r/roster/iq
         | 
| 113 | 
            +
            - lib/xmpp4r/roster/iq/roster.rb
         | 
| 81 114 | 
             
            - lib/xmpp4r/roster/x
         | 
| 82 115 | 
             
            - lib/xmpp4r/roster/x/roster.rb
         | 
| 83 116 | 
             
            - lib/xmpp4r/roster/helper
         | 
| 84 117 | 
             
            - lib/xmpp4r/roster/helper/roster.rb
         | 
| 85 | 
            -
            - lib/xmpp4r/roster/iq
         | 
| 86 | 
            -
            - lib/xmpp4r/roster/iq/roster.rb
         | 
| 87 | 
            -
            - lib/xmpp4r/iq.rb
         | 
| 88 | 
            -
            - lib/xmpp4r/streamparser.rb
         | 
| 89 | 
            -
            - lib/xmpp4r/x.rb
         | 
| 90 | 
            -
            - lib/xmpp4r/jid.rb
         | 
| 91 | 
            -
            - lib/xmpp4r/presence.rb
         | 
| 92 | 
            -
            - lib/xmpp4r/idgenerator.rb
         | 
| 93 | 
            -
            - lib/xmpp4r/component.rb
         | 
| 94 | 
            -
            - lib/xmpp4r/authenticationfailure.rb
         | 
| 95 | 
            -
            - lib/xmpp4r/sasl.rb
         | 
| 96 | 
            -
            - lib/xmpp4r/connection.rb
         | 
| 97 | 
            -
            - lib/xmpp4r/stream.rb
         | 
| 98 | 
            -
            - lib/xmpp4r/xmpp4r.rb
         | 
| 99 | 
            -
            - lib/xmpp4r/error.rb
         | 
| 100 | 
            -
            - lib/xmpp4r/debuglog.rb
         | 
| 101 | 
            -
            - lib/xmpp4r/message.rb
         | 
| 102 | 
            -
            - lib/xmpp4r/xmlstanza.rb
         | 
| 103 118 | 
             
            - lib/xmpp4r/discovery
         | 
| 104 119 | 
             
            - lib/xmpp4r/discovery/iq
         | 
| 105 120 | 
             
            - lib/xmpp4r/discovery/iq/discoitems.rb
         | 
| 106 121 | 
             
            - lib/xmpp4r/discovery/iq/discoinfo.rb
         | 
| 107 | 
            -
            - lib/xmpp4r/ | 
| 108 | 
            -
            - lib/xmpp4r/ | 
| 109 | 
            -
            - lib/xmpp4r/ | 
| 110 | 
            -
            - lib/xmpp4r/ | 
| 111 | 
            -
            - lib/xmpp4r/ | 
| 112 | 
            -
            - lib/xmpp4r/ | 
| 113 | 
            -
            - lib/xmpp4r/muc/helper
         | 
| 114 | 
            -
            - lib/xmpp4r/muc/helper/mucclient.rb
         | 
| 115 | 
            -
            - lib/xmpp4r/muc/helper/mucbrowser.rb
         | 
| 116 | 
            -
            - lib/xmpp4r/muc/helper/simplemucclient.rb
         | 
| 117 | 
            -
            - lib/xmpp4r/version
         | 
| 118 | 
            -
            - lib/xmpp4r/version/helper
         | 
| 119 | 
            -
            - lib/xmpp4r/version/helper/responder.rb
         | 
| 120 | 
            -
            - lib/xmpp4r/version/helper/simpleresponder.rb
         | 
| 121 | 
            -
            - lib/xmpp4r/version/iq
         | 
| 122 | 
            -
            - lib/xmpp4r/version/iq/version.rb
         | 
| 123 | 
            -
            - lib/xmpp4r/bytestreams.rb
         | 
| 124 | 
            -
            - lib/xmpp4r/errorexception.rb
         | 
| 125 | 
            -
            - lib/xmpp4r/muc.rb
         | 
| 126 | 
            -
            - lib/xmpp4r/client.rb
         | 
| 122 | 
            +
            - lib/xmpp4r/delay
         | 
| 123 | 
            +
            - lib/xmpp4r/delay/x
         | 
| 124 | 
            +
            - lib/xmpp4r/delay/x/delay.rb
         | 
| 125 | 
            +
            - lib/xmpp4r/dataforms
         | 
| 126 | 
            +
            - lib/xmpp4r/dataforms/x
         | 
| 127 | 
            +
            - lib/xmpp4r/dataforms/x/data.rb
         | 
| 127 128 | 
             
            - data/
         | 
| 128 129 | 
             
            - data/doc
         | 
| 129 130 | 
             
            - data/doc/xmpp4r
         | 
| @@ -134,19 +135,19 @@ files: | |
| 134 135 | 
             
            - data/doc/xmpp4r/examples/buggy/jabber2jabber
         | 
| 135 136 | 
             
            - data/doc/xmpp4r/examples/buggy/jabber2jabber/jabber2jabber.rb
         | 
| 136 137 | 
             
            - data/doc/xmpp4r/examples/advanced
         | 
| 137 | 
            -
            - data/doc/xmpp4r/examples/advanced/sendfile.conf
         | 
| 138 138 | 
             
            - data/doc/xmpp4r/examples/advanced/versionpoll.rb
         | 
| 139 | 
            +
            - data/doc/xmpp4r/examples/advanced/sendfile.conf
         | 
| 139 140 | 
             
            - data/doc/xmpp4r/examples/advanced/sendfile.rb
         | 
| 140 | 
            -
            - data/doc/xmpp4r/examples/advanced/fileserve.conf
         | 
| 141 | 
            -
            - data/doc/xmpp4r/examples/advanced/migrate.rb
         | 
| 142 141 | 
             
            - data/doc/xmpp4r/examples/advanced/gtkmucclient.rb
         | 
| 143 | 
            -
            - data/doc/xmpp4r/examples/advanced/ | 
| 142 | 
            +
            - data/doc/xmpp4r/examples/advanced/migrate.rb
         | 
| 144 143 | 
             
            - data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb
         | 
| 144 | 
            +
            - data/doc/xmpp4r/examples/advanced/fileserve.conf
         | 
| 145 | 
            +
            - data/doc/xmpp4r/examples/advanced/xmppingrc.sample
         | 
| 146 | 
            +
            - data/doc/xmpp4r/examples/advanced/getonline.rb
         | 
| 147 | 
            +
            - data/doc/xmpp4r/examples/advanced/fileserve.rb
         | 
| 145 148 | 
             
            - data/doc/xmpp4r/examples/advanced/xmpping.rb
         | 
| 146 149 | 
             
            - data/doc/xmpp4r/examples/advanced/minimuc.rb
         | 
| 147 150 | 
             
            - data/doc/xmpp4r/examples/advanced/recvfile.rb
         | 
| 148 | 
            -
            - data/doc/xmpp4r/examples/advanced/fileserve.rb
         | 
| 149 | 
            -
            - data/doc/xmpp4r/examples/advanced/xmppingrc.sample
         | 
| 150 151 | 
             
            - data/doc/xmpp4r/examples/advanced/shellmgr
         | 
| 151 152 | 
             
            - data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb
         | 
| 152 153 | 
             
            - data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb
         | 
| @@ -168,54 +169,55 @@ files: | |
| 168 169 | 
             
            - data/doc/xmpp4r/examples/basic/component.rb
         | 
| 169 170 | 
             
            - data/doc/xmpp4r/examples/basic/mucinfo.rb
         | 
| 170 171 | 
             
            - data/doc/xmpp4r/examples/basic/jabbersend.rb
         | 
| 172 | 
            +
            - data/doc/xmpp4r/examples/basic/rosterprint.rb
         | 
| 173 | 
            +
            - data/doc/xmpp4r/examples/basic/versionbot.rb
         | 
| 171 174 | 
             
            - data/doc/xmpp4r/examples/basic/echo_nonthreaded.rb
         | 
| 175 | 
            +
            - data/doc/xmpp4r/examples/basic/remove_registration.rb
         | 
| 172 176 | 
             
            - data/doc/xmpp4r/examples/basic/register.rb
         | 
| 173 | 
            -
            - data/doc/xmpp4r/examples/basic/rosterprint.rb
         | 
| 174 177 | 
             
            - data/doc/xmpp4r/examples/basic/client.rb
         | 
| 175 | 
            -
            - data/doc/xmpp4r/examples/basic/roster.rb
         | 
| 176 | 
            -
            - data/doc/xmpp4r/examples/basic/versionbot.rb
         | 
| 177 178 | 
             
            - data/doc/xmpp4r/examples/basic/echo_threaded.rb
         | 
| 178 | 
            -
            - data/doc/xmpp4r/examples/basic/ | 
| 179 | 
            +
            - data/doc/xmpp4r/examples/basic/roster.rb
         | 
| 179 180 | 
             
            - test/
         | 
| 180 | 
            -
            - test/ | 
| 181 | 
            +
            - test/tc_message.rb
         | 
| 182 | 
            +
            - test/tc_xmlstanza.rb
         | 
| 181 183 | 
             
            - test/tc_callbacks.rb
         | 
| 182 184 | 
             
            - test/tc_client.rb
         | 
| 183 | 
            -
            - test/tc_message.rb
         | 
| 184 | 
            -
            - test/tc_iq.rb
         | 
| 185 185 | 
             
            - test/ts_xmpp4r.rb
         | 
| 186 | 
            +
            - test/tc_iq.rb
         | 
| 186 187 | 
             
            - test/tc_jid.rb
         | 
| 187 188 | 
             
            - test/tc_streamSend.rb
         | 
| 188 | 
            -
            - test/tc_xmlstanza.rb
         | 
| 189 | 
            -
            - test/version
         | 
| 190 | 
            -
            - test/version/tc_iqqueryversion.rb
         | 
| 191 | 
            -
            - test/version/tc_helper.rb
         | 
| 192 | 
            -
            - test/tc_presence.rb
         | 
| 193 189 | 
             
            - test/tc_streamError.rb
         | 
| 194 | 
            -
            - test/ | 
| 190 | 
            +
            - test/tc_presence.rb
         | 
| 195 191 | 
             
            - test/tc_idgenerator.rb
         | 
| 192 | 
            +
            - test/tc_iqquery.rb
         | 
| 193 | 
            +
            - test/tc_streamThreaded.rb
         | 
| 194 | 
            +
            - test/tc_stream.rb
         | 
| 195 | 
            +
            - test/tc_error.rb
         | 
| 196 | 
            +
            - test/tc_class_names.rb
         | 
| 197 | 
            +
            - test/tc_rexml.rb
         | 
| 196 198 | 
             
            - test/roster
         | 
| 197 | 
            -
            - test/roster/tc_helper.rb
         | 
| 198 199 | 
             
            - test/roster/tc_xroster.rb
         | 
| 200 | 
            +
            - test/roster/tc_helper.rb
         | 
| 199 201 | 
             
            - test/roster/tc_iqqueryroster.rb
         | 
| 200 | 
            -
            - test/ | 
| 202 | 
            +
            - test/lib
         | 
| 203 | 
            +
            - test/lib/clienttester.rb
         | 
| 204 | 
            +
            - test/bytestreams
         | 
| 205 | 
            +
            - test/bytestreams/tc_ibb.rb
         | 
| 206 | 
            +
            - test/bytestreams/tc_socks5bytestreams.rb
         | 
| 201 207 | 
             
            - test/vcard
         | 
| 208 | 
            +
            - test/vcard/tc_helper.rb
         | 
| 202 209 | 
             
            - test/vcard/tc_iqvcard.rb
         | 
| 203 | 
            -
            - test/tc_error.rb
         | 
| 204 | 
            -
            - test/tc_stream.rb
         | 
| 205 | 
            -
            - test/muc
         | 
| 206 | 
            -
            - test/muc/tc_muc_mucclient.rb
         | 
| 207 | 
            -
            - test/muc/tc_muc_simplemucclient.rb
         | 
| 208 | 
            -
            - test/tc_streamThreaded.rb
         | 
| 209 210 | 
             
            - test/delay
         | 
| 210 211 | 
             
            - test/delay/tc_xdelay.rb
         | 
| 211 | 
            -
            - test/ | 
| 212 | 
            -
            - test/ | 
| 213 | 
            -
            - test/ | 
| 214 | 
            -
            - test/ | 
| 215 | 
            -
            - test/ | 
| 212 | 
            +
            - test/version
         | 
| 213 | 
            +
            - test/version/tc_iqqueryversion.rb
         | 
| 214 | 
            +
            - test/version/tc_helper.rb
         | 
| 215 | 
            +
            - test/muc
         | 
| 216 | 
            +
            - test/muc/tc_muc_simplemucclient.rb
         | 
| 217 | 
            +
            - test/muc/tc_muc_mucclient.rb
         | 
| 216 218 | 
             
            - tools/
         | 
| 217 | 
            -
            - tools/doctoweb.bash
         | 
| 218 219 | 
             
            - tools/gen_requires.bash
         | 
| 220 | 
            +
            - tools/doctoweb.bash
         | 
| 219 221 | 
             
            test_files: []
         | 
| 220 222 |  | 
| 221 223 | 
             
            rdoc_options: []
         |