forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
86 lines (69 loc) · 4.24 KB
/
about.php
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
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2021 The Cacti Group |
| |
| 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
include('./include/auth.php');
top_header();
html_start_box(__('About Cacti'), '100%', '', '3', 'center', '');
?>
<tr class='tableHeader'>
<td class='tableSubHeaderColumn' colspan='2'>
<font class='textSubHeaderDark'><?php print CACTI_VERSION_TEXT_FULL; ?></font>
</td>
</tr>
<tr>
<td valign='top' class='odd' class='textArea'>
<div style='float:right;'><a href='http://www.cacti.net/'><img class='right' src='images/cacti_about_logo.gif' alt='raXnet'></a></div>
<p><?php print __('Cacti is designed to be a complete graphing solution based on the RRDtool\'s framework. Its goal is to make a network administrator\'s job easier by taking care of all the necessary details necessary to create meaningful graphs.'); ?></p>
<p><?php print __('Please see the official %sCacti website%s for information, support, and updates.', '<a href="http://www.cacti.net/?version=' . CACTI_VERSION . '">', '</a>'); ?></p>
<p><strong><?php print __('Cacti Developers'); ?></strong><br>
<ul type='disc'>
<li>Ian Berry <i>(raX)</i></li>
<li>Larry Adams <i>(TheWitness)</i></li>
<li>Tony Roman <i>(rony)</i></strong></li>
<li>J.P. Pasnak, CD <i>(Linegod)</i></strong></li>
<li>Jimmy Conner <i>(cigamit)</i></li>
<li>Reinhard Scheck <i>(gandalf)</i></li>
<li>Andreas Braun <i>(browniebraun)</i></li>
<li>Mark Brugnoli-Vinten <i>(netniV)</i></li>
</ul>
</p>
<p><strong><?php print __('Thanks'); ?></a></strong><br>
<ul type='disc'>
<li>
<?php print __('A very special thanks to %sTobi Oetiker%s, the creator of %sRRDtool%s and the very popular %sMRTG%s.', '<a href="http://tobi.oetiker.ch/"><strong>', '</strong></a>', '<a href="http://www.rrdtool.org/">', '</a>', '<a href="http://www.rrdtool.org">', '</a>'); ?>
</li>
<li>
<strong><?php print __('The users of Cacti'); ?></strong>
<?php print __('Especially anyone who has taken the time to create an issue report, or otherwise help fix a Cacti related problems. Also to anyone who has contributed to supporting Cacti.'); ?>
</li>
</ul>
</p>
<strong><?php print __('License'); ?></strong><br>
<p><?php print __('Cacti is licensed under the GNU GPL:'); ?></p>
<p><tt><?php print __('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.');?></tt></p>
<p><tt><?php print __('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.'); ?></tt></p>
</td>
</tr>
<?php
html_end_box();
bottom_footer();