Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 uid=99(nobody) gid=98(nobody) groups=98(nobody) Safe-mode: OFF (not secure) /home/jerryg/public_html/gallery2/modules/core/templates/ drwxr-xr-x | |
| Viewing file: Select action/file-type: function validateRepositoryList() {
var count = 0;
for (i in repositoryArgs) {
if (formElements[repositoryArgs[i]].checked) {
count++;
}
}
if (count > 0) {
return 1;
}
var dialog = new YAHOO.widget.SimpleDialog(
"gDialog", { width: "20em",
effect: { effect:YAHOO.widget.ContainerEffect.FADE, duration:0.25 },
fixedcenter: true,
modal: true,
draggable: false });
dialog.setHeader(repositoryMessageTitle);
dialog.setBody(repositoryMessageBody);
dialog.cfg.setProperty("icon", YAHOO.widget.SimpleDialog.ICON_WARN);
dialog.cfg.queueProperty(
"buttons",
[ { text: repositoryMessageOkButton, handler:function() { this.hide() } } ]);
dialog.render(document.body);
}
function saveRepositoryList() {
var postArgs = commandArg + '=saveRepositoryList';
postArgs += '&' + viewArg + '=core.RepositoryCallback';
postArgs += '&' + authTokenArg;
for (i in repositoryArgs) {
postArgs += '&' + repositoryArgs[i] + '=' +
(formElements[repositoryArgs[i]].checked ? 1 : 0);
}
YAHOO.util.Connect.asyncRequest('POST', postUrl, function() { }, postArgs);
}
function closeRepositoryList() {
var anim1 = new YAHOO.util.Anim(
'AdminRepository_Configure', { opacity: { to: 0.0 }, height: { to: '0' } }, 1,
YAHOO.util.Easing.easeOut);
anim1.animate();
var anim2 = new YAHOO.util.Anim(
'AdminRepository_showRepositoryList', { opacity: { to: 1.0 } }, 1,
YAHOO.util.Easing.easeOut);
anim2.animate();
}
function showRepositoryList() {
document.getElementById('AdminRepository_Configure').style.height = '100%';
/* IE leaves the dotted focus-box around when the button is transparent, so shift focus */
document.getElementById('AdminRepository_showRepositoryList').blur();
var anim1 = new YAHOO.util.Anim(
'AdminRepository_Configure', { opacity: { to: 1.0 } }, 1,
YAHOO.util.Easing.easeOut);
anim1.animate();
var anim2 = new YAHOO.util.Anim(
'AdminRepository_showRepositoryList', { opacity: { to: 0.0 } }, 1,
YAHOO.util.Easing.easeOut);
anim2.animate();
}
|
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0217 ]-- |