Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2783 → Rev 2784

/web/acc/phpsysinfo/plugins/ps/js/ps.js
0,0 → 1,142
/***************************************************************************
* Copyright (C) 2008 by phpSysInfo - A PHP System Information Script *
* http://phpsysinfo.sourceforge.net/ *
* *
* 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. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
//
// $Id: ps.js 661 2012-08-27 11:26:39Z namiltd $
//
 
/*global $, jQuery, buildBlock, datetime, plugin_translate, createBar, genlang */
 
"use strict";
 
var ps_show = false;
 
/**
* build the table where content is inserted
* @param {jQuery} xml plugin-XML
*/
function ps_buildTable(xml) {
var html = "", tree = [], closed = [], memwas = false, cpuwas = false;
 
$("#Plugin_PS #Plugin_PSTable").remove();
 
html += " <div style=\"overflow-x:auto;\">\n";
html += " <table id=\"Plugin_PSTable\" class=\"tablemain\">\n";
html += " <thead>\n";
html += " <tr>\n";
html += " <th>" + genlang(2, "PS") + "</th>\n";
html += " <th style=\"width:40px;\">" + genlang(3, "PS") + "</th>\n";
html += " <th style=\"width:40px;\">" + genlang(4, "PS") + "</th>\n";
html += " <th style=\"width:120px;\">" + genlang(5, "PS") + "</th>\n";
html += " <th style=\"width:120px;\">" + genlang(6, "PS") + "</th>\n";
html += " </tr>\n";
html += " </thead>\n";
html += " <tbody class=\"tree\">\n";
 
$("Plugins Plugin_PS Process", xml).each(function ps_getprocess(id) {
var close = 0, pid = 0, ppid = 0, name = "", percent = 0, parentId = 0, expanded = 0, cpu = 0;
name = $(this).attr("Name").replace(/,/g, ",<wbr>").replace(/\s/g, " <wbr>").replace(/\./g, ".<wbr>").replace(/-/g, "<wbr>-").replace(/\//g, "<wbr>/"); /* split long name */
parentId = parseInt($(this).attr("ParentID"), 10);
pid = parseInt($(this).attr("PID"), 10);
ppid = parseInt($(this).attr("PPID"), 10);
percent = parseInt($(this).attr("MemoryUsage"), 10);
cpu = parseInt($(this).attr("CPUUsage"), 10);
expanded = parseInt($(this).attr("Expanded"), 10);
 
html += " <tr><td><div class=\"treediv\"><span class=\"treespan\">" + name + "</div></span></td><td>" + pid + "</td><td>" + ppid + "</td><td>" + createBar(percent) + "</td><td>" + createBar(cpu) + "</td></tr>\n";
close = tree.push(parentId);
if (!isNaN(expanded) && (expanded === 0)) {
closed.push(close);
}
if (!memwas && !isNaN(percent)) {
memwas = true;
}
if (!cpuwas && !isNaN(cpu)) {
cpuwas = true;
}
ps_show = true;
});
 
html += " </tbody>\n";
html += " </table>\n";
html += " </div>\n";
 
$("#Plugin_PS").append(html);
 
if (memwas) {
$('#Plugin_PSTable td:nth-child(4),#Plugin_PSTable th:nth-child(4)').show();
} else {
$('#Plugin_PSTable td:nth-child(4),#Plugin_PSTable th:nth-child(4)').hide();
}
if (cpuwas) {
$('#Plugin_PSTable td:nth-child(5),#Plugin_PSTable th:nth-child(5)').show();
} else {
$('#Plugin_PSTable td:nth-child(5),#Plugin_PSTable th:nth-child(5)').hide();
}
 
$("#Plugin_PSTable").jqTreeTable(tree, {
openImg: "./gfx/treeTable/tv-collapsable.gif",
shutImg: "./gfx/treeTable/tv-expandable.gif",
leafImg: "./gfx/treeTable/tv-item.gif",
lastOpenImg: "./gfx/treeTable/tv-collapsable-last.gif",
lastShutImg: "./gfx/treeTable/tv-expandable-last.gif",
lastLeafImg: "./gfx/treeTable/tv-item-last.gif",
vertLineImg: "./gfx/treeTable/vertline.gif",
blankImg: "./gfx/treeTable/blank.gif",
collapse: closed,
column: 0,
striped: true,
highlight: false,
state: false
});
}
 
/**
* load the xml via ajax
*/
function ps_request() {
$("#Reload_PSTable").attr("title", "reload");
$.ajax({
url: "xml.php?plugin=PS",
dataType: "xml",
error: function ps_error() {
$.jGrowl("Error loading XML document for Plugin PS!");
},
success: function ps_buildblock(xml) {
populateErrors(xml);
ps_buildTable(xml);
if (ps_show) {
plugin_translate("PS");
$("#Plugin_PS").show();
}
}
});
}
 
$(document).ready(function ps_buildpage() {
$("#footer").before(buildBlock("PS", 1, true));
$("#Plugin_PS").css("width", "915px");
 
ps_request();
 
$("#Reload_PSTable").click(function ps_reload(id) {
ps_request();
$(this).attr("title", datetime());
});
});
/web/acc/phpsysinfo/plugins/ps/js/ps_bootstrap.js
0,0 → 1,85
function renderPlugin_ps(data) {
 
var directives = {
MemoryUsage: {
html: function () {
return '<div class="progress"><div class="progress-bar progress-bar-info" style="width:' + this.MemoryUsage + '%;"></div>' +
'</div><div class="percent">' + this.MemoryUsage + '%</div>';
}
},
CPUUsage: {
html: function () {
return '<div class="progress"><div class="progress-bar progress-bar-info" style="width:' + this.CPUUsage + '%;"></div>' +
'</div><div class="percent">' + this.CPUUsage + '%</div>';
}
},
Name: {
html: function () {
return this.Name.replace(/,/g, ",<wbr>").replace(/\s/g, " <wbr>").replace(/\./g, ".<wbr>").replace(/-/g, "<wbr>-").replace(/\//g, "<wbr>/"); /* split long name */
}
}
};
 
if (data.Plugins.Plugin_PS !== undefined) {
var psitems = items(data.Plugins.Plugin_PS.Process);
if (psitems.length > 0) {
 
var html = "", ps_item = [], expanded = 0, memwas = false, cpuwas = false;
for (var i = 0; i < psitems.length ; i++) {
ps_item = psitems[i]["@attributes"];
 
if (ps_item.ParentID === "0") {
html+="<tr id=\"ps-" + (i+1) + "\" class=\"treegrid-ps-" + (i+1) + "\" style=\"display:none;\" >";
} else {
html+="<tr id=\"ps-" + (i+1) + "\" class=\"treegrid-ps-" + (i+1) + " treegrid-parent-ps-" + ps_item.ParentID + "\" style=\"display:none;\" >";
}
html+="<td><span class=\"treegrid-span\" data-bind=\"Name\"></span></td>";
html+="<td><span data-bind=\"PID\"></span></td>";
html+="<td><span data-bind=\"PPID\"></span></td>";
html+="<td style=\"width:10%;\"><span data-bind=\"MemoryUsage\"></span></td>";
html+="<td style=\"width:10%;\"><span data-bind=\"CPUUsage\"></span></td>";
html+="</tr>";
}
 
$("#ps-data").empty().append(html);
 
$('#ps').treegrid({
initialState: 'expanded',
expanderExpandedClass: 'normalicon normalicon-down',
expanderCollapsedClass: 'normalicon normalicon-right'
});
 
for (var j = 0; j < psitems.length ; j++) {
ps_item = psitems[j]["@attributes"];
$('#ps-'+(j+1)).render(ps_item, directives);
if (!memwas && (ps_item.MemoryUsage !== undefined)) {
memwas = true;
}
if (!cpuwas && (ps_item.CPUUsage !== undefined)) {
cpuwas = true;
}
expanded = ps_item.Expanded;
if ((expanded !== undefined) && (expanded === "0")) {
$('#ps-'+(j+1)).treegrid('collapse');
}
}
 
if (memwas) {
$('#ps td:nth-child(4),#ps th:nth-child(4)').show();
} else {
$('#ps td:nth-child(4),#ps th:nth-child(4)').hide();
}
if (cpuwas) {
$('#ps td:nth-child(5),#ps th:nth-child(5)').show();
} else {
$('#ps td:nth-child(5),#ps th:nth-child(5)').hide();
}
 
$('#block_ps').show();
} else {
$('#block_ps').hide();
}
} else {
$('#block_ps').hide();
}
}
/web/acc/phpsysinfo/plugins/ps/lang/cz.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: cz.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Czech Created by: Tomáš Růžička
-->
<tns:translationPlugin language="czech" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Procesy</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Příkaz</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>PID</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>Rodičovský PID</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Spotřeba paměti</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>CPU Usage</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/de.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: de.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: German Created by: Michael Cramer
-->
<tns:translationPlugin language="german" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Prozess Status</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Befehl</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>Prozess ID</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>Eltern ID</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Speichernutzung</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>CPU Usage</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/en.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: en.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: English Created by: Michael Cramer
-->
<tns:translationPlugin language="english" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Process Status</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Command</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>Process ID</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>Parent ID</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Memory Usage</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>CPU Usage</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/fr.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: fr.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: French Created by: Erkan VALENTIN
-->
<tns:translationPlugin language="french" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Etat des processus</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Commande</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>ID processus</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>ID processus père</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Utilisation mémoire</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>CPU Usage</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/gr.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: gr.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Greek Created by: mojiro
-->
<tns:translationPlugin language="greek" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Διεργασίες Συστήματος</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Εντολή</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>ID Διεργασίας</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>ID Κύριας Διεργασίας</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Χρήση Μνήμης</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>Χρήση Επεξεργαστή</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/pl.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: pl.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Polish Created by: Mieczyslaw Nalewaj
-->
<tns:translationPlugin language="polish" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Status Procesów</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Polecenie</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>PID</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>PID rodzica</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Wykorzystanie pamięci</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>Wykorzystanie procesora</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/ro.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: ro.xml 661 2014-05-02 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Romană Created by: Iulian Alexe
-->
<tns:translationPlugin language="romana" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Stare proces</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Comanda</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>ID Proces</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>ID Parinte</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Utilizare Memorie</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>CPU Usage</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/ru.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: ru.xml 661 2012-08-27 11:26:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Russian Created by: Denis Sevostyanov (den007)
-->
<tns:translationPlugin language="russian" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Статус процессов</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Команда</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>ID процесса</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>ID родителя</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Использовано памяти</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>CPU Usage</exp>
</expression>
</tns:translationPlugin>
/web/acc/phpsysinfo/plugins/ps/lang/uk.xml
0,0 → 1,27
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: uk.xml 661 2017-06-03 16:32:39Z namiltd $ -->
<!--
phpSysInfo language file Language: Ukrainian Created by: Rostyslav Gaitkulov (nightfly)
-->
<tns:translationPlugin language="ukrainian" charset="utf-8"
xmlns:tns="http://phpsysinfo.sourceforge.net/translation-plugin" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://phpsysinfo.sourceforge.net/translation-plugin ../../../language/translation-plugin.xsd">
<expression id="plugin_ps_001" name="ps_title">
<exp>Стан процесів</exp>
</expression>
<expression id="plugin_ps_002" name="ps_command">
<exp>Команда</exp>
</expression>
<expression id="plugin_ps_003" name="ps_pid">
<exp>ID процесу</exp>
</expression>
<expression id="plugin_ps_004" name="ps_ppid">
<exp>ID батьківський</exp>
</expression>
<expression id="plugin_ps_005" name="ps_mem">
<exp>Використано пам`яті</exp>
</expression>
<expression id="plugin_ps_006" name="ps_cpu">
<exp>CPU Usage</exp>
</expression>
</tns:translationPlugin>