diff ns.js @ 0:f62b5c395a48

Initial commit.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 04 Jun 2011 05:02:47 +0200
parents
children eb5b6d3ab09b
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/ns.js
@@ -0,0 +1,16 @@
+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 exports === 'object')
+	exports.ns = ns;