certmanager

aboutdata.cpp
1 /*
2  aboutdata.cpp
3 
4  This file is part of Kleopatra, the KDE keymanager
5  Copyright (c) 2001,2002,2004 Klarälvdalens Datakonsult AB
6 
7  Kleopatra is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2 of the License, or
10  (at your option) any later version.
11 
12  Kleopatra is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program; if not, write to the Free Software
19  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 
21  In addition, as a special exception, the copyright holders give
22  permission to link the code of this program with any edition of
23  the TQt library by Trolltech AS, Norway (or with modified versions
24  of TQt that use the same license as TQt), and distribute linked
25  combinations including the two. You must obey the GNU General
26  Public License in all respects for all of the code used other than
27  TQt. If you modify this file, you may extend this exception to
28  your version of the file, but you are not obligated to do so. If
29  you do not wish to do so, delete this exception statement from
30  your version.
31 */
32 
33 #ifdef HAVE_CONFIG_H
34 #include <config.h>
35 #endif
36 
37 #include "aboutdata.h"
38 
39 #include <tdelocale.h>
40 
41 static const char kleopatra_version[] = "0.40";
42 static const char description[] = I18N_NOOP("TDE Key Manager");
43 
44 struct about_data {
45  const char * name;
46  const char * desc;
47  const char * email;
48  const char * web;
49 };
50 
51 static const about_data authors[] = {
52  { "Marc Mutz", I18N_NOOP("Current Maintainer"), "mutz@kde.org", 0 },
53  { "Steffen Hansen", I18N_NOOP("Former Maintainer"), "hansen@kde.org", 0 },
54  { "Kalle Dalheimer", I18N_NOOP("Original Author"), "kalle@kde.org", 0 },
55  { "Jesper Petersen", I18N_NOOP("Original Author"), "blackie@kde.org", 0 },
56 };
57 
58 
59 static const about_data credits[] = {
60  { "David Faure",
61  I18N_NOOP("Backend configuration framework, TDEIO integration"),
62  "faure@kde.org", 0 },
63  { "Michel Boyer de la Giroday",
64  I18N_NOOP("Key-state dependant colors and fonts in the key list"),
65  "michel@klaralvdalens-datakonsult.se", 0 },
66  { "Daniel Molkentin",
67  I18N_NOOP("Certificate Wizard KIOSK integration, infrastructure"),
68  "molkentin@kde.org", 0 },
69  { "Ralf Nolden",
70  I18N_NOOP("Support for obsolete EMAIL RDN in Certificate Wizard"),
71  "nolden@kde.org", 0 },
72  { "Karl-Heinz Zimmer",
73  I18N_NOOP("DN display ordering support, infrastructure"),
74  "khz@kde.org", 0 },
75 };
76 
77 
78 AboutData::AboutData()
79  : TDEAboutData( "kleopatra", I18N_NOOP("Kleopatra"),
80  kleopatra_version, description, License_GPL,
81  "(c) 2002 Steffen Hansen, Jesper Pedersen,\n"
82  "Kalle Dalheimer, Klar\xC3\xA4lvdalens Datakonsult AB\n\n"
83  "(c) 2004 Marc Mutz, Klar\xC3\xA4lvdalens Datakonsult AB" )
84 {
85  using ::authors;
86  using ::credits;
87  for ( unsigned int i = 0 ; i < sizeof authors / sizeof *authors ; ++i )
88  addAuthor( authors[i].name, authors[i].desc,
89  authors[i].email, authors[i].web );
90  for ( unsigned int i = 0 ; i < sizeof credits / sizeof *credits ; ++i )
91  addCredit( credits[i].name, credits[i].desc,
92  credits[i].email, credits[i].web );
93 }