Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
test /
HTML_Progress /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
ancestor.ini
793
B
-rw-r--r--
HTML_Progress_Bug28.php
1.09
KB
-rw-r--r--
HTML_Progress_TestCase_addListener.php
2.7
KB
-rw-r--r--
HTML_Progress_TestCase_DM_new.php
2
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setIncrement.php
2.56
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setMaximum.php
2.82
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setMinimum.php
2.75
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setValue.php
2.79
KB
-rw-r--r--
HTML_Progress_TestCase_getDM.php
2.28
KB
-rw-r--r--
HTML_Progress_TestCase_getString.php
2.41
KB
-rw-r--r--
HTML_Progress_TestCase_getUI.php
2.28
KB
-rw-r--r--
HTML_Progress_TestCase_removeListener.php
2.84
KB
-rw-r--r--
HTML_Progress_TestCase_setAnimSpeed.php
2.75
KB
-rw-r--r--
HTML_Progress_TestCase_setBorderPainted.php
2.35
KB
-rw-r--r--
HTML_Progress_TestCase_setDM.php
2.03
KB
-rw-r--r--
HTML_Progress_TestCase_setIndeterminate.php
2.35
KB
-rw-r--r--
HTML_Progress_TestCase_setModel.php
2.55
KB
-rw-r--r--
HTML_Progress_TestCase_setStringPainted.php
2.35
KB
-rw-r--r--
HTML_Progress_TestCase_setString.php
2.57
KB
-rw-r--r--
HTML_Progress_TestCase_setUI.php
2.03
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getBorderAttributes.php
2.43
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getCellAttributes.php
2.41
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getProgressAttributes.php
2.45
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getStringAttributes.php
2.43
KB
-rw-r--r--
HTML_Progress_TestCase_UI_new.php
1.71
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setCellAttributes.php
2.89
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setCellCoordinates.php
2.88
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setCellCount.php
3.33
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setFillWay.php
2.56
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setOrientation.php
4.05
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setScript.php
2.54
KB
-rw-r--r--
HTML_TestListener.php
1.91
KB
-rw-r--r--
progress3.js
1.36
KB
-rw-r--r--
stylesheet.css
1.3
KB
-rw-r--r--
testsuite.php
2.98
KB
-rw-r--r--
TestUnit.php
1.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : progress3.js
var isDom = document.getElementById?true:false; var isIE = document.all?true:false; var isNS4 = document.layers?true:false; var cellCount = 10; function setprogress(pIdent, pValue, pString) { if (isDom) prog = document.getElementById(pIdent+'installationProgress'); if (isIE) prog = document.all[pIdent+'installationProgress']; if (isNS4) prog = document.layers[pIdent+'installationProgress']; if (prog != null) prog.innerHTML = pString; if (pValue == 0) { for (i=0; i < cellCount; i++) { if (isDom) document.getElementById(pIdent+'progressCell'+i+'A').style.visibility = "hidden"; if (isIE) document.all[pIdent+'progressCell'+i+'A'].style.visibility = "hidden"; if (isNS4) document.layers[pIdent+'progressCell'+i+'A'].style.visibility = "hidden"; } } for (i=pValue-1; i >= 0; i--) { if (isDom) document.getElementById(pIdent+'progressCell'+i+'A').style.visibility = "visible"; if (isIE) document.all[pIdent+'progressCell'+i+'A'].style.visibility = "visible"; if (isNS4) document.layers[pIdent+'progressCell'+i+'A'].style.visibility = "visible"; } }
Close