view modules/mod_version.js @ 38:5395a501c991

Use internal toISOString method of Data.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Tue, 16 Nov 2010 19:00:15 +0100
parents b80ab94da447
children bc717575e66a
line wrap: on
line source

// XEP-0092: Software Version

var config = require('../configuration');
var NS = require('../namespaces');

exports.version = {
	type: 'get',
	child: 'query',
	ns: NS.VERSION,
	func: function(response) {
		response.c('query', {xmlns: NS.VERSION})
			.s('name').t('PSĜS')
			.s('version').t(config.version)
			.s('os').t(config.os);
		return response;
	}
}