1# Copyright (C) 2002-09  Stephane Galland <galland@arakhne.org>
2# Copyright (C) 2011  Stephane Galland <galland@arakhne.org>
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; see the file COPYING.  If not, write to
16# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17# Boston, MA 02111-1307, USA.
18
19package Bib2HTML::Release;
20@ISA = ('Exporter');
21@EXPORT = qw( &getVersionNumber &getVersionDate &getBugReportURL
22	      &getAuthorName &getAuthorEmail &getMainURL
23	      &getContributors ) ;
24@EXPORT_OK = qw();
25use strict;
26use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
27my $VERSION = "6.7" ;
28
29#------------------------------------------------------
30#
31# DEFINITIONS
32#
33#------------------------------------------------------
34
35my $BIB2HTML_VERSION      = $VERSION ;
36my $BIB2HTML_DATE         = '2011/07/31' ;
37my $BIB2HTML_BUG_URL      = 'mailto:bugreport@arakhne.org' ;
38my $BIB2HTML_AUTHOR       = 'Stephane GALLAND' ;
39my $BIB2HTML_AUTHOR_EMAIL = 'galland@arakhne.org' ;
40my $BIB2HTML_URL          = 'http://www.arakhne.org/bib2ml/' ;
41my %BIB2HTML_CONTRIBS     = ( 'zinser@zinser.no-ip.info' => "Martin P.J. ZINSER",
42			      'preining@logic.at' => "Norbert PREINING",
43			      'sebastian.rodriguez@utbm.fr' => "Sebastian RODRIGUEZ",
44			      'michail@mpi-sb.mpg.de' => "Dimitris MICHAIL",
45			      'joao.lourenco@di.fct.unl.pt' => "Joao LOURENCO",
46			      'paolini@di.unito.it' => "Luca PAOLINI",
47			      'cri@linux.it' => "Cristian RIGAMONTI",
48			      'loew@mathematik.tu-darmstadt.de' => "Tobias LOEW",
49			      'loew@mathematik.tu-darmstadt.de' => "Tobias LOEW",
50			      'gasper.jaklic@fmf.uni-lj.si' => "Gasper JAKLIC",
51                              'olivier.hugues@gmail.com' => "Olivier HUGUES",
52			    ) ;
53
54#------------------------------------------------------
55#
56# Functions
57#
58#------------------------------------------------------
59
60sub getVersionNumber() {
61  return $BIB2HTML_VERSION ;
62}
63
64sub getVersionDate() {
65  return $BIB2HTML_DATE ;
66}
67
68sub getBugReportURL() {
69  return $BIB2HTML_BUG_URL ;
70}
71
72sub getAuthorName() {
73  return $BIB2HTML_AUTHOR ;
74}
75
76sub getAuthorEmail() {
77  return $BIB2HTML_AUTHOR_EMAIL ;
78}
79
80sub getMainURL() {
81  return $BIB2HTML_URL ;
82}
83
84sub getContributors() {
85  return %BIB2HTML_CONTRIBS ;
86}
87
881;
89__END__
90