/usr/share/emacs/site-lisp/emacs-jabber/jabber-version.el is in emacs-jabber 0.8.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | ;; jabber-version.el - version reporting by JEP-0092
;; Copyright (C) 2003, 2004, 2008 - Magnus Henoch - mange@freemail.hu
;; Copyright (C) 2002, 2003, 2004 - tom berger - object@intelectronica.net
;; This file is a part of jabber.el.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(require 'jabber-iq)
(require 'jabber-util)
(require 'jabber-ourversion)
(add-to-list 'jabber-jid-info-menu
(cons "Request software version" 'jabber-get-version))
(defun jabber-get-version (jc to)
"Request software version"
(interactive (list
(jabber-read-account)
(jabber-read-jid-completing "Request version of: " nil nil nil 'full)))
(jabber-send-iq jc to
"get"
'(query ((xmlns . "jabber:iq:version")))
#'jabber-process-data #'jabber-process-version
#'jabber-process-data "Version request failed"))
;; called by jabber-process-data
(defun jabber-process-version (jc xml-data)
"Handle results from jabber:iq:version requests."
(let ((query (jabber-iq-query xml-data)))
(dolist (x '((name . "Name:\t\t") (version . "Version:\t") (os . "OS:\t\t")))
(let ((data (car (jabber-xml-node-children (car (jabber-xml-get-children query (car x)))))))
(when data
(insert (cdr x) data "\n"))))))
(add-to-list 'jabber-iq-get-xmlns-alist (cons "jabber:iq:version" 'jabber-return-version))
(add-to-list 'jabber-advertised-features "jabber:iq:version")
(defun jabber-return-version (jc xml-data)
"Return client version as defined in JEP-0092. Sender and ID are
determined from the incoming packet passed in XML-DATA."
;; Things we might check: does this iq message really have type='get' and
;; exactly one child, namely query with xmlns='jabber:iq:version'?
;; Then again, jabber-process-iq should take care of that.
(let ((to (jabber-xml-get-attribute xml-data 'from))
(id (jabber-xml-get-attribute xml-data 'id)))
(jabber-send-iq jc to "result"
`(query ((xmlns . "jabber:iq:version"))
(name () "jabber.el")
(version () ,jabber-version)
;; Booting... /vmemacs.el
;; Shamelessly stolen from someone's sig.
(os () ,(emacs-version)))
nil nil nil nil
id)))
(provide 'jabber-version)
;;; arch-tag: 2051dbe7-01b5-401e-bd8a-fe24afb88e1e
|