Update copyright notices for 2009
[prosody.git] / plugins / mod_version.lua
1 -- Prosody IM v0.3
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10
11 local st = require "util.stanza";
12
13 local xmlns_version = "jabber:iq:version"
14
15 module:add_feature(xmlns_version);
16
17 module:add_iq_handler({"c2s", "s2sin"}, xmlns_version, function(session, stanza)
18         if stanza.attr.type == "get" then
19                 session.send(st.reply(stanza):query(xmlns_version)
20                         :tag("name"):text("Prosody"):up()
21                         :tag("version"):text("0.3"):up()
22                         :tag("os"):text("the best operating system ever!"));
23         end
24 end);