Subversion Repositories ALCASAR

Rev

Rev 3037 | Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
2807 rexy 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
  <head>
5
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
    <meta http-equiv="Content-Style-Type" content="text/css" />
7
    <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
    <meta name="Description" content="phpSysInfo is a customizable PHP script that displays information about your system nicely" />
9
    <noscript>
10
      <meta http-equiv="refresh" content="2; URL=index.php?disp=static" />
11
    </noscript>
12
    <link rel="shortcut icon" href="gfx/favicon.gif" />
13
    <link type="text/css" rel="stylesheet" href="./templates/misc/emptyfile.css" title="PSI_Template"/>
14
    <link type="text/css" rel="stylesheet" href="./templates/plugin/nyroModal.full.css" />
15
    <link type="text/css" rel="stylesheet" href="./templates/plugin/jquery.jgrowl.css" />
16
    <link type="text/css" rel="stylesheet" href="./templates/plugin/jquery.dataTables.css" />
17
    <link type="text/css" rel="stylesheet" href="./templates/plugin/jquery.treeTable.css" />
18
 
19
    <script type="text/JavaScript" src="./js.php?name=jquery"></script>
20
    <script type="text/JavaScript" src="./js.php?name=jquery.dataTables"></script>
21
    <script type="text/JavaScript" src="./js.php?name=jquery.nyroModal"></script>
22
    <script type="text/JavaScript" src="./js.php?name=jquery.jgrowl"></script>
23
    <script type="text/JavaScript" src="./js.php?name=jquery.timer"></script>
24
    <script type="text/JavaScript" src="./js.php?name=jquery.treeTable"></script>
25
<!--[if lte IE 6]>
26
    <script type="text/JavaScript" src="./js.php?name=jquery.ifixpng"></script>
27
<![endif]-->
28
    <script type="text/JavaScript" src="./js.php?name=phpsysinfo"></script>
29
<?php foreach (CommonFunctions::getPlugins() as $plugin) : ?>
30
    <?php if (file_exists("./plugins/".$plugin."/css/".$plugin.".css")) : ?>
31
      <link type="text/css" rel="stylesheet" href="./plugins/<?php echo $plugin ?>/css/<?php echo $plugin ?>.css" />
32
    <?php endif; ?>
33
    <script type="text/JavaScript" src="./js.php?plugin=<?php echo $plugin ?>"></script>
34
<?php endforeach; ?>
35
    <title>phpSysInfo <?php echo PSI_VERSION_STRING ?></title>
36
  </head>
37
  <body>
38
    <input type="hidden" id="showCPUListExpanded" value="<?php echo $showCPUListExpanded;?>"/>
39
    <input type="hidden" id="showCPUInfoExpanded" value="<?php echo $showCPUInfoExpanded;?>"/>
40
    <input type="hidden" id="showNetworkInfosExpanded" value="<?php echo $showNetworkInfosExpanded;?>"/>
41
    <input type="hidden" id="showMemoryInfosExpanded" value="<?php echo $showMemoryInfosExpanded;?>"/>
42
    <input type="hidden" id="showNetworkActiveSpeed" value="<?php echo $showNetworkActiveSpeed;?>"/>
43
    <input type="hidden" id="showCPULoadCompact" value="<?php echo $showCPULoadCompact;?>"/>
44
    <input type="hidden" id="blocks" value="<?php echo $blocks;?>"/>
45
    <div id="loader">
46
      <h1>
47
        <a href="#errors" class="nyroModal">
48
          <img id="loadwarn" style="vertical-align: middle; display:none; border:0px; width:32px;" src="./gfx/attention.gif" title="errors" alt="errors" />
49
        </a>
50
      Loading... please wait!</h1>
51
      <div id="container">
52
        <noscript>
53
        <p>Your navigator does not support JavaScript (or JavaScript is not activated).</p>
54
        <p>In approximatively 2 seconds you will be redirected to the static version of phpSysInfo.</p>
55
        <p>&nbsp;</p>
56
        <p><a href="index.php?disp=static">Click here to switch to the static version</a></p>
57
        </noscript>
58
      </div>
59
    </div>
60
    <div id="errors" style="display:none; width:940px">
61
      <div id="errorlist">
62
        <h2>Oh, I'm sorry. Something seems to be wrong.</h2>
63
      </div>
64
    </div>
65
    <div id="output" style="display:none;">
66
      <h1>
67
        <a href="#errors" class="nyroModal">
68
          <img id="warn" style="vertical-align: middle; display:none; border:0px; width:32px;" src="./gfx/attention.gif" title="errors" alt="errors" />
69
        </a>
70
        <span id="title">
71
          <span class="lang_001">System information</span>
72
          :&nbsp;<span id="s_hostname_title"></span>
73
          (<span id="s_ip_title"></span>)
74
        </span>
75
      </h1>
76
      <div id="select">
77
        <span class="lang_044" style="display:none;">Template</span>
78
        <select id="template" name="template" style="display:none;">
79
<?php
80
if ($picktemplate) {
81
    foreach ($templates as $t) :
82
        $selected = "";
83
        if ($template === $t) {
84
            $selected = " selected=\"selected\"";
85
        }
86
        echo "          <option value=\"".$t."\"".$selected.">".$t."</option>\n";
87
    endforeach;
88
} else {
89
    echo "          <option value=\"".$template."\" selected=\"selected\">".$template."</option>\n";
90
}
91
?>
92
        </select>
93
        <span class="lang_045" style="display:none;">Language</span>
94
        <select id="language" name="language" style="display:none;">
95
<?php
96
if ($picklanguage) {
97
    foreach ($languages as $l) :
98
        $selected = "";
99
        if ($language === $l) {
100
            $selected = " selected=\"selected\"";
101
        }
102
        echo "          <option value=\"".$l."\"".$selected.">".$l."</option>\n";
103
    endforeach;
104
} else {
105
    echo "          <option value=\"".$language."\" selected=\"selected\">".$language."</option>\n";
106
}
107
?>
108
        </select>
109
      </div>
110
      <div id="vitals">
111
        <h2><span class="lang_002">System vitals</span></h2>
112
        <div style="overflow-x:auto;">
113
          <table class="stripeMe" id="vitalsTable" style="border-collapse:collapse;">
114
            <tr>
115
              <td style="width:160px;"><span class="lang_003">Hostname</span></td>
116
              <td><span id="s_hostname"></span></td>
117
            </tr>
118
            <tr>
119
              <td style="width:160px;"><span class="lang_004">Listening IP</span></td>
120
              <td><span id="s_ip"></span></td>
121
            </tr>
122
            <tr>
123
              <td style="width:160px;"><span class="lang_005">Kernel Version</span></td>
124
              <td><span id="s_kernel"></span></td>
125
            </tr>
126
            <tr>
127
              <td style="width:160px;"><span class="lang_006">Distro Name</span></td>
128
              <td><span id="s_distro"></span></td>
129
            </tr>
130
            <tr>
131
              <td style="width:160px;"><span class="lang_127">OS Type</span></td>
132
              <td><span id="s_os"></span></td>
133
            </tr>
134
            <tr>
135
              <td style="width:160px;"><span class="lang_007">Uptime</span></td>
136
              <td><span id="s_uptime"></span></td>
137
            </tr>
138
            <tr>
139
              <td style="width:160px;"><span class="lang_095">Last boot</span></td>
140
              <td><span id="s_lastboot"></span></td>
141
            </tr>
142
            <tr>
143
              <td style="width:160px;"><span class="lang_008">Current Users</span></td>
144
              <td><span id="s_users"></span></td>
145
            </tr>
146
            <tr>
147
              <td style="width:160px;"><span class="lang_009">Load Averages</span></td>
148
              <td><span id="s_loadavg"></span></td>
149
            </tr>
150
            <tr style="display:none;" id="s_syslang_tr">
151
              <td style="width:160px;"><span class="lang_097">System Language</span></td>
152
              <td><span id="s_syslang"></span></td>
153
            </tr>
154
            <tr style="display:none;" id="s_codepage_tr1">
155
              <td style="width:160px;"><span class="lang_098">Code Page</span></td>
156
              <td><span id="s_codepage_1"></span></td>
157
            </tr>
158
            <tr style="display:none;" id="s_codepage_tr2">
159
              <td style="width:160px;"><span class="lang_098">Code Page</span></td>
160
              <td><span id="s_codepage_2"></span></td>
161
            </tr>
162
            <tr style="display:none;" id="s_processes_tr1">
163
              <td style="width:160px;"><span class="lang_110">Processes</span></td>
164
              <td><span id="s_processes_1"></span></td>
165
            </tr>
166
            <tr style="display:none;" id="s_processes_tr2">
167
              <td style="width:160px;"><span class="lang_110">Processes</span></td>
168
              <td><span id="s_processes_2"></span></td>
169
            </tr>
170
          </table>
171
        </div>
172
      </div>
173
      <div id="hardware">
174
      </div>
175
      <div id="memory">
176
      </div>
177
      <div id="filesystem">
178
      </div>
179
      <div id="network">
180
      </div>
181
      <div id="voltage" style="display:none;">
182
        <h2><span class="lang_052">Voltage</span></h2>
183
        <div style="overflow-x:auto;">
184
          <table class="stripeMe" id="voltageTable" style="border-collapse:collapse;">
185
            <thead>
186
              <tr>
187
                <th><span class="lang_059">Label</span></th>
188
                <th class="right"><span class="lang_054">Value</span></th>
189
                <th class="right" style="width: 80px;"><span class="lang_055">Min</span></th>
190
                <th class="right" style="width: 80px;"><span class="lang_056">Max</span></th>
191
              </tr>
192
            </thead>
193
            <tbody>
194
            </tbody>
195
          </table>
196
        </div>
197
      </div>
198
      <div id="current" style="display:none;">
199
        <h2><span class="lang_105">Current</span></h2>
200
        <div style="overflow-x:auto;">
201
          <table class="stripeMe" id="currentTable" style="border-collapse:collapse;">
202
            <thead>
203
              <tr>
204
                <th><span class="lang_059">Label</span></th>
205
                <th class="right" style="width: 80px;"><span class="lang_054">Value</span></th>
206
                <th class="right" style="width: 80px;"><span class="lang_055">Min</span></th>
207
                <th class="right" style="width: 80px;"><span class="lang_056">Max</span></th>
208
              </tr>
209
            </thead>
210
            <tbody>
211
            </tbody>
212
          </table>
213
        </div>
214
      </div>
215
      <div id="temperature" style="display:none;">
216
        <h2><span class="lang_051">Temperature</span></h2>
217
        <div style="overflow-x:auto;">
218
          <table class="stripeMe" id="temperatureTable" style="border-collapse:collapse;">
219
            <thead>
220
              <tr>
221
                <th><span class="lang_059">Label</span></th>
222
                <th class="right" style="width: 80px;"><span class="lang_054">Value</span></th>
223
                <th class="right" style="width: 80px;"><span class="lang_058">Limit</span></th>
224
              </tr>
225
            </thead>
226
            <tbody>
227
            </tbody>
228
          </table>
229
        </div>
230
      </div>
231
      <div id="fans" style="display:none;">
232
        <h2><span class="lang_053">Fans</span></h2>
233
        <div style="overflow-x:auto;">
234
          <table class="stripeMe" id="fansTable" style="border-collapse:collapse;">
235
            <thead>
236
              <tr>
237
                <th><span class="lang_059">Label</span></th>
238
                <th class="right" style="width: 80px;"><span class="lang_054">Value</span></th>
239
                <th class="right" style="width: 80px;"><span class="lang_055">Min</span></th>
240
              </tr>
241
            </thead>
242
            <tbody>
243
            </tbody>
244
          </table>
245
        </div>
246
      </div>
247
      <div id="power" style="display:none;">
248
        <h2><span class="lang_102">Power</span></h2>
249
        <div style="overflow-x:auto;">
250
          <table class="stripeMe" id="powerTable" style="border-collapse:collapse;">
251
            <thead>
252
              <tr>
253
                <th><span class="lang_059">Label</span></th>
254
                <th class="right" style="width: 80px;"><span class="lang_054">Value</span></th>
255
                <th class="right" style="width: 80px;"><span class="lang_058">Limit</span></th>
256
              </tr>
257
            </thead>
258
            <tbody>
259
            </tbody>
260
          </table>
261
        </div>
262
      </div>
263
      <div id="other" style="display:none;">
264
        <h2><span class="lang_121">Other</span></h2>
265
        <div style="overflow-x:auto;">
266
          <table class="stripeMe" id="otherTable" style="border-collapse:collapse;">
267
            <thead>
268
              <tr>
269
                <th><span class="lang_059">Label</span></th>
270
                <th class="right" style="width: 160px;"><span class="lang_054">Value</span></th>
271
              </tr>
272
            </thead>
273
            <tbody>
274
            </tbody>
275
          </table>
276
        </div>
277
      </div>
278
      <div id="ups" style="display:none;">
279
      </div>
280
      <div id="footer">
281
        <span class="lang_047">Generated by</span>&nbsp;<a href="http://phpsysinfo.sourceforge.net/" target="psihref">phpSysInfo&nbsp;-&nbsp;<span id="version"></span></a>
282
      </div>
283
    </div>
284
  </body>
285
</html>