Revert xmpp back to a working state
[citadel.git] / citadel / modules / xmpp / token.def
diff --git a/citadel/modules/xmpp/token.def b/citadel/modules/xmpp/token.def
deleted file mode 100644 (file)
index d4470e0..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-
-#define NAMESPACE_iq "jabber:client"
-TOKEN(iq,
-      {
-             STRPROP(iq, type);
-             STRPROP(iq, id);
-             STRPROP(iq, from);
-             STRPROP(iq, to);
-      });
-
-
-#define NAMESPACE_piq "bub"
-
-TOKEN(piq,
-      {
-             STRPROP(piq, type);
-             STRPROP(piq, id);
-             STRPROP(piq, from);
-             STRPROP(piq, to);
-      });
-
-#define NAMESPACE_message "jabber:client"
-TOKEN(message,
-       {
-               STRPROP(message, to);
-               STRPROP(message, type);
-               STRPROP(message, id);
-               PAYLOAD(message, body);
-       });
-
-#define NAMESPACE_message_chatstate "http://jabber.org/protocol/chatstates"
-
-SUBTOKEN(message,
-        chatstate,
-        active,
-        {
-                CALLBACK(active);
-        });
-
-SUBTOKEN(message,
-        chatstate,
-        composing,
-        {
-                CALLBACK(composing);
-        });
-
-SUBTOKEN(message,
-        chatstate,
-        paused,
-        {
-                CALLBACK(paused);
-        });
-
-SUBTOKEN(message,
-        chatstate,
-        inactive,
-        {
-                CALLBACK(inactive);
-        });
-
-SUBTOKEN(message,
-        chatstate,
-        gone,
-        {
-                CALLBACK(gone);
-        });
-
-// <message type='chat' id='purplef5a7ed34' to='testuser@blarg.potzblitz.outgesourced.org'><active xmlns='http://jabber.org/protocol/chatstates'/><body>gci</body></message>
-
-// <iq type="result" id="unsolicited_2"><query xmlns="jabber:iq:roster"><item subscription="both" jid="willi@potzblitz.outgesourced.org" name="testuser"><group>potzblitz</group></item></query></iq><presence>testuser@blarg.potzblitz.outgesourced.org to="willi@potzblitz.outgesourced.org/potzblitz"</presence><message type="chat" to="willi@potzblitz.outgesourced.org/potzblitz" from="testuser@blarg.potzblitz.outgesourced.org"><body>rgilgci</body></message>