Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/node-xmpp-client/commit/44740b78402c0e1963c42cb6863671610bdd3ee0?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
3 deletions
@ -62,10 +62,19 @@ Client.prototype.getRoster = function(callback) {
} ) ;
} ) ;
} ;
} ;
/ *
http : //xmpp.org/extensions/xep-0092.html
* /
Client . prototype . getVersion = function ( jid , callback , error ) {
Client . prototype . getVersion = function ( jid , callback , error ) {
var jabber = this ;
var jabber = this ;
this . iq ( jid , new xmpp . Element ( 'query' , { xmlns : 'jabber:iq:version' } ) , function ( iq ) {
this . iq ( jid , new xmpp . Element ( 'query' , { xmlns : 'jabber:iq:version' } ) , function ( iq ) {
callback . call ( jabber , iq . getChild ( 'query' , 'jabber:iq:version' ) ) ;
var v = iq . getChild ( 'query' , 'jabber:iq:version' ) ;
var version = {
name : v . getChildText ( 'name' ) ,
version : v . getChildText ( 'version' ) ,
os : v . getChildText ( 'os' )
} ;
callback . call ( jabber , version ) ;
} , error ) ;
} , error ) ;
} ;
} ;
@ -11,8 +11,8 @@ exports.testIq = function(test) {
var b = new Client ( conf . b , function ( ) {
var b = new Client ( conf . b , function ( ) {
//sys.debug(this.jid.toString().blue);
//sys.debug(this.jid.toString().blue);
a . getVersion ( b . jid , function ( version ) {
a . getVersion ( b . jid , function ( version ) {
sys . debug ( version. toString ( ) . yellow ) ;
sys . debug ( JSON. stringify ( version ) . yellow ) ;
test . ok( true , 'version ') ;
test . equals( 'node-xmpp-client' , version . name , 'same client ') ;
test . done ( ) ;
test . done ( ) ;
} ,
} ,
function ( iq ) {
function ( iq ) {