1 ;;; gnus-vers.el --- Declare gnus version
3 ;; Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 ;; Author: Keiichi Suzuki <keiichi@nanap.org>
6 ;; Katsumi Yamaoka <yamaoka@jpl.org>
7 ;; Keywords: news, mail, compatibility
9 ;; This file is part of T-gnus.
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ;; General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with this program; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
30 (eval-when-compile (require 'cl))
31 (eval-when-compile (require 'gnus-clfns))
37 (defconst gnus-revision-number "00"
38 "Revision number for this version of gnus.")
40 ;; Product information of this gnus.
41 (product-provide 'gnus-vers
42 (product-define "T-gnus" nil
44 (string-to-number gnus-revision-number))))
46 (defconst gnus-original-version-number "0.18"
47 "Version number for this version of Gnus.")
49 (provide 'running-pterodactyl-gnus-0_73-or-later)
51 (defconst gnus-original-product-name "Oort Gnus"
52 "Product name of the original version of Gnus.")
54 (defconst gnus-product-name (product-name (product-find 'gnus-vers))
55 "Product name of this version of gnus.")
57 (defconst gnus-version-number
60 (butlast (product-version (product-find 'gnus-vers)))
62 "Version number for this version of gnus.")
64 (defconst gnus-version
65 (format "%s %s r%s (based on %s v%s ; for SEMI 1.14 FLIM 1.14)"
66 gnus-product-name gnus-version-number gnus-revision-number
67 gnus-original-product-name gnus-original-version-number)
68 "Version string for this version of gnus.")
70 (defun gnus-version (&optional arg)
71 "Version number of this version of Gnus.
72 If ARG, insert string at point."
75 (insert (message "%s" gnus-version))
76 (message "%s" gnus-version)))
78 (defun gnus-extended-version ()
79 "Stringified gnus version."
80 (concat gnus-product-name "/" gnus-version-number
82 gnus-original-product-name " v" gnus-original-version-number ")"
83 (if (zerop (string-to-number gnus-revision-number))
85 (concat " (revision " gnus-revision-number ")"))
88 ;; gnus-vers.el ends here