Subversion Repositories ALCASAR

Rev

Rev 2976 | Rev 3179 | Go to most recent revision | Details | Compare with Previous | 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" />
2976 rexy 13
    <link type="text/css" rel="stylesheet" href="./templates/misc/emptyfile.css" title="PSI_Template" />
2807 rexy 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;?>"/>
2976 rexy 44
    <input type="hidden" id="hideTotals" value="<?php echo $hideTotals;?>"/>
45
    <input type="hidden" id="increaseWidth" value="<?php echo $increaseWidth;?>"/>
2807 rexy 46
    <input type="hidden" id="blocks" value="<?php echo $blocks;?>"/>
47
    <div id="loader">
48
      <h1>
49
        <a href="#errors" class="nyroModal">
50
          <img id="loadwarn" style="vertical-align: middle; display:none; border:0px; width:32px;" src="./gfx/attention.gif" title="errors" alt="errors" />
51
        </a>
52
      Loading... please wait!</h1>
53
      <div id="container">
54
        <noscript>
55
        <p>Your navigator does not support JavaScript (or JavaScript is not activated).</p>
56
        <p>In approximatively 2 seconds you will be redirected to the static version of phpSysInfo.</p>
57
        <p>&nbsp;</p>
58
        <p><a href="index.php?disp=static">Click here to switch to the static version</a></p>
59
        </noscript>
60
      </div>
61
    </div>
62
    <div id="errors" style="display:none; width:940px">
63
      <div id="errorlist">
64
        <h2>Oh, I'm sorry. Something seems to be wrong.</h2>
65
      </div>
66
    </div>
67
    <div id="output" style="display:none;">
68
      <h1>
69
        <a href="#errors" class="nyroModal">
70
          <img id="warn" style="vertical-align: middle; display:none; border:0px; width:32px;" src="./gfx/attention.gif" title="errors" alt="errors" />
71
        </a>
72
        <span id="title">
73
          <span class="lang_001">System information</span>
74
          :&nbsp;<span id="s_hostname_title"></span>
75
          (<span id="s_ip_title"></span>)
76
        </span>
77
      </h1>
78
      <div id="select">
79
        <span class="lang_044" style="display:none;">Template</span>
80
        <select id="template" name="template" style="display:none;">
81
<?php
82
if ($picktemplate) {
83
    foreach ($templates as $t) :
84
        $selected = "";
85
        if ($template === $t) {
86
            $selected = " selected=\"selected\"";
87
        }
88
        echo "          <option value=\"".$t."\"".$selected.">".$t."</option>\n";
89
    endforeach;
90
} else {
91
    echo "          <option value=\"".$template."\" selected=\"selected\">".$template."</option>\n";
92
}
93
?>
94
        </select>
95
        <span class="lang_045" style="display:none;">Language</span>
96
        <select id="language" name="language" style="display:none;">
97
<?php
98
if ($picklanguage) {
99
    foreach ($languages as $l) :
100
        $selected = "";
101
        if ($language === $l) {
102
            $selected = " selected=\"selected\"";
103
        }
104
        echo "          <option value=\"".$l."\"".$selected.">".$l."</option>\n";
105
    endforeach;
106
} else {
107
    echo "          <option value=\"".$language."\" selected=\"selected\">".$language."</option>\n";
108
}
109
?>
110
        </select>
111
      </div>
2976 rexy 112
      <div id="vitals" class="halfsize">
2807 rexy 113
        <h2><span class="lang_002">System vitals</span></h2>
114
        <div style="overflow-x:auto;">
3037 rexy 115
          <table id="vitalsTable" style="border-collapse:collapse;">
2807 rexy 116
            <tr>
117
              <td style="width:160px;"><span class="lang_003">Hostname</span></td>
118
              <td><span id="s_hostname"></span></td>
119
            </tr>
120
            <tr>
121
              <td style="width:160px;"><span class="lang_004">Listening IP</span></td>
122
              <td><span id="s_ip"></span></td>
123
            </tr>
124
            <tr>
125
              <td style="width:160px;"><span class="lang_005">Kernel Version</span></td>
126
              <td><span id="s_kernel"></span></td>
127
            </tr>
128
            <tr>
129
              <td style="width:160px;"><span class="lang_006">Distro Name</span></td>
130
              <td><span id="s_distro"></span></td>
131
            </tr>
132
            <tr>
133
              <td style="width:160px;"><span class="lang_127">OS Type</span></td>
134
              <td><span id="s_os"></span></td>
135
            </tr>
136
            <tr>
137
              <td style="width:160px;"><span class="lang_007">Uptime</span></td>
138
              <td><span id="s_uptime"></span></td>
139
            </tr>
140
            <tr>
141
              <td style="width:160px;"><span class="lang_095">Last boot</span></td>
142
              <td><span id="s_lastboot"></span></td>
143
            </tr>
144
            <tr>
145
              <td style="width:160px;"><span class="lang_008">Current Users</span></td>
146
              <td><span id="s_users"></span></td>
147
            </tr>
148
            <tr>
149
              <td style="width:160px;"><span class="lang_009">Load Averages</span></td>
150
              <td><span id="s_loadavg"></span></td>
151
            </tr>
3037 rexy 152
            <tr>
2807 rexy 153
              <td style="width:160px;"><span class="lang_097">System Language</span></td>
154
              <td><span id="s_syslang"></span></td>
155
            </tr>
3037 rexy 156
            <tr>
2807 rexy 157
              <td style="width:160px;"><span class="lang_098">Code Page</span></td>
3037 rexy 158
              <td><span id="s_codepage"></span></td>
2807 rexy 159
            </tr>
3037 rexy 160
            <tr>
2807 rexy 161
              <td style="width:160px;"><span class="lang_110">Processes</span></td>
3037 rexy 162
              <td><span id="s_processes"></span></td>
2807 rexy 163
            </tr>
164
          </table>
165
        </div>
166
      </div>
2976 rexy 167
      <div id="hardware" class="halfsize">
2807 rexy 168
      </div>
2976 rexy 169
      <div id="memory" class="fullsize">
2807 rexy 170
      </div>
2976 rexy 171
      <div id="filesystem" class="fullsize">
2807 rexy 172
      </div>
2976 rexy 173
      <div id="network" class="halfsize">
2807 rexy 174
      </div>
2976 rexy 175
      <div id="voltage" class="halfsize" style="display:none;">
2807 rexy 176
        <h2><span class="lang_052">Voltage</span></h2>
177
        <div style="overflow-x:auto;">
178
          <table class="stripeMe" id="voltageTable" style="border-collapse:collapse;">
179
            <thead>
180
              <tr>
181
                <th><span class="lang_059">Label</span></th>
2976 rexy 182
                <th class="right" style="width:24.3%;"><span class="lang_054">Value</span></th>
183
                <th class="right" style="width:24.3%;"><span class="lang_055">Min</span></th>
184
                <th class="right" style="width:24.3%;"><span class="lang_056">Max</span></th>
2807 rexy 185
              </tr>
186
            </thead>
187
            <tbody>
188
            </tbody>
189
          </table>
190
        </div>
191
      </div>
2976 rexy 192
      <div id="current" class="halfsize" style="display:none;">
2807 rexy 193
        <h2><span class="lang_105">Current</span></h2>
194
        <div style="overflow-x:auto;">
195
          <table class="stripeMe" id="currentTable" style="border-collapse:collapse;">
196
            <thead>
197
              <tr>
198
                <th><span class="lang_059">Label</span></th>
2976 rexy 199
                <th class="right" style="width:24.3%;"><span class="lang_054">Value</span></th>
200
                <th class="right" style="width:24.3%;"><span class="lang_055">Min</span></th>
201
                <th class="right" style="width:24.3%;"><span class="lang_056">Max</span></th>
2807 rexy 202
              </tr>
203
            </thead>
204
            <tbody>
205
            </tbody>
206
          </table>
207
        </div>
208
      </div>
2976 rexy 209
      <div id="temperature" class="halfsize" style="display:none;">
2807 rexy 210
        <h2><span class="lang_051">Temperature</span></h2>
211
        <div style="overflow-x:auto;">
212
          <table class="stripeMe" id="temperatureTable" style="border-collapse:collapse;">
213
            <thead>
214
              <tr>
215
                <th><span class="lang_059">Label</span></th>
2976 rexy 216
                <th class="right" style="width:24.3%;"><span class="lang_054">Value</span></th>
217
                <th class="right" style="width:24.3%;"><span class="lang_058">Limit</span></th>
2807 rexy 218
              </tr>
219
            </thead>
220
            <tbody>
221
            </tbody>
222
          </table>
223
        </div>
224
      </div>
2976 rexy 225
      <div id="fans" class="halfsize" style="display:none;">
2807 rexy 226
        <h2><span class="lang_053">Fans</span></h2>
227
        <div style="overflow-x:auto;">
228
          <table class="stripeMe" id="fansTable" style="border-collapse:collapse;">
229
            <thead>
230
              <tr>
231
                <th><span class="lang_059">Label</span></th>
2976 rexy 232
                <th class="right" style="width:24.3%;"><span class="lang_054">Value</span></th>
233
                <th class="right" style="width:24.3%;"><span class="lang_055">Min</span></th>
2807 rexy 234
              </tr>
235
            </thead>
236
            <tbody>
237
            </tbody>
238
          </table>
239
        </div>
240
      </div>
2976 rexy 241
      <div id="power" class="halfsize" style="display:none;">
2807 rexy 242
        <h2><span class="lang_102">Power</span></h2>
243
        <div style="overflow-x:auto;">
244
          <table class="stripeMe" id="powerTable" style="border-collapse:collapse;">
245
            <thead>
246
              <tr>
247
                <th><span class="lang_059">Label</span></th>
2976 rexy 248
                <th class="right" style="width:24.3%;"><span class="lang_054">Value</span></th>
249
                <th class="right" style="width:24.3%;"><span class="lang_058">Limit</span></th>
2807 rexy 250
              </tr>
251
            </thead>
252
            <tbody>
253
            </tbody>
254
          </table>
255
        </div>
256
      </div>
2976 rexy 257
      <div id="other" class="halfsize" style="display:none;">
2807 rexy 258
        <h2><span class="lang_121">Other</span></h2>
259
        <div style="overflow-x:auto;">
260
          <table class="stripeMe" id="otherTable" style="border-collapse:collapse;">
261
            <thead>
262
              <tr>
263
                <th><span class="lang_059">Label</span></th>
2976 rexy 264
                <th class="right" style="width:48.6%;"><span class="lang_054">Value</span></th>
2807 rexy 265
              </tr>
266
            </thead>
267
            <tbody>
268
            </tbody>
269
          </table>
270
        </div>
271
      </div>
2976 rexy 272
      <div id="ups" class="halfsize" style="display:none;">
2807 rexy 273
      </div>
274
      <div id="footer">
275
        <span class="lang_047">Generated by</span>&nbsp;<a href="http://phpsysinfo.sourceforge.net/" target="psihref">phpSysInfo&nbsp;-&nbsp;<span id="version"></span></a>
276
      </div>
277
    </div>
278
  </body>
279
</html>