Mercurial > psgxs
view modules/mod_version.js @ 28:7cfcd7d5796c
Replace Paul Sowden’s ISO8601 functions by my own, since their licence is possibly incompatible with AGPL.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Mon, 01 Nov 2010 03:01:40 +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; } }