view ns.js @ 13:161d4ea1c3f8

Migration of the client-side to XMPP.js instead of Strophe.js. Drop BOSH support and add WebSockets support. The server-side is untested, may be broken.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Thu, 03 Nov 2011 14:23:10 -0700
parents 461a24a5a788
children
line wrap: on
line source

var ns = {
	xhtml: 'http://www.w3.org/1999/xhtml',
	atom: 'http://www.w3.org/2005/Atom',
	e: 'urn:eldonilo',
	j: 'jabber:client',
	info: 'http://jabber.org/protocol/disco#info',
	items: 'http://jabber.org/protocol/disco#items',
	data: 'jabber:x:data',
	ps: 'http://jabber.org/protocol/pubsub',
	pse: 'http://jabber.org/protocol/pubsub#event'
};

var parsers = {};

if (typeof module !== 'undefined')
	module.exports = ns;