? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/board/components/com_joomgallery/assets/js/
File Upload :
Current File : /home/admin/public_html/old/board/components/com_joomgallery/assets/js/userpanel.js

// $HeadURL: https://joomgallery.org/svn/joomgallery/JG-1.5/JG/trunk/components/com_joomgallery/assets/js/userpanel.js $
// $Id: userpanel.js 2793 2011-02-23 00:49:09Z chraneco $
/****************************************************************************************\
**   JoomGallery  1.5.6                                                                 **
**   By: JoomGallery::ProjectTeam                                                       **
**   Copyright (C) 2008 - 2010  JoomGallery::ProjectTeam                                **
**   Based on: JoomGallery 1.0.0 by JoomGallery::ProjectTeam                            **
**   Released under GNU GPL Public License                                              **
**   License: http://www.gnu.org/copyleft/gpl.html or have a look                       **
**   at administrator/components/com_joomgallery/LICENSE.TXT                            **
\****************************************************************************************/

function joom_singleuploadcheck() {
  var form = document.SingleUploadForm;
  if(!jg_useorigfilename)
  {
    form.imgtitle.style.backgroundColor = '';
  }
  form.catid.style.backgroundColor = '';
  var doublefiles = false;
  // do field validation
  if(!jg_useorigfilename && (form.imgtitle.value == ''|| form.imgtitle.value == null)) {
    alert(JText._('JGS_COMMON_ALERT_IMAGE_MUST_HAVE_TITLE'));
    form.imgtitle.style.backgroundColor = jg_ffwrong;
    form.imgtitle.focus();
    return false;
  } else if (form.catid.value == "0") {
    alert(JText._('JGS_COMMON_ALERT_YOU_MUST_SELECT_CATEGORY'));
    form.catid.style.backgroundColor = jg_ffwrong;
    form.catid.focus();
    return false;
    //Prueft ob ueberhaupt Dateien angeben wurden.
  } else {
    var zaehl = 0;
    var arenofiles = true;
    var fullfields = new Array();
    var screenshotfieldname = new Array();
    var screenshotfieldvalue = new Array();
    for(i=0;i<jg_inputcounter;i++) {
      screenshotfieldname[i] = 'arrscreenshot['+i+']';
      screenshotfieldvalue[i] = document.getElementsByName(screenshotfieldname[i])[0].value;
      document.getElementsByName(screenshotfieldname[i])[0].style.backgroundColor='';
      if(screenshotfieldvalue[i] != "") {
        arenofiles = false;
        fullfields[zaehl] = i;
        zaehl++;
      }
    }
  }
  if(arenofiles) {
    alert(JText._('JGS_COMMON_ALERT_YOU_MUST_SELECT_ONE_IMAGE'));
    document.getElementsByName(screenshotfieldname[0])[0].focus();
    document.getElementsByName(screenshotfieldname[0])[0].style.backgroundColor = jg_ffwrong;
    return false;
    //Prueft ob die Dateitypen auch .jpg,.gif und .png sind
  } else {
    var extensionsnotok = false;
    var searchextensiontest = new Array();
    var searchextension = new Array();
    //However you have to define this RegExp for each item.
    for (i=0;i<fullfields.length;i++) {
      searchextension[i] = new RegExp('\.jpg$|\.jpe$|\.jpeg$|\.gif$|\.png$','ig');
    }
    for(i=0;i<fullfields.length;i++) {
      searchextensiontest = searchextension[i].test(screenshotfieldvalue[fullfields[i]]);
      if(searchextensiontest!=true) {
        extensionsnotok = true;
        document.getElementsByName(screenshotfieldname[fullfields[i]])[0].style.backgroundColor = jg_ffwrong;
      }
    }
  }
  if(extensionsnotok) {
    alert(JText._('JG_COMMON_ALERT_WRONG_EXTENSION'));
    document.getElementsByName(screenshotfieldname[0])[0].focus();
    return false;
    //Wenn eine Javascriptueberpruefung in den Configurations gewuenscht wurde wird der Dateinamen auf Sonderzeichen ueberprueft
  } else {
    var filenamesnotok = false;
    if(jg_filenamewithjs!=0) {
      var searchwrongchars = /[^ a-zA-Z0-9_-]/;
      var lastbackslash = new Array();
      var endoffilename = new Array();
      var filename = new Array();
      for(i=0;i<fullfields.length;i++) {
        lastbackslash[i] = screenshotfieldvalue[fullfields[i]].lastIndexOf('\\');
        endoffilename[i] = screenshotfieldvalue[fullfields[i]].lastIndexOf('\.')-screenshotfieldvalue[fullfields[i]].length;
        if(lastbackslash[i]<1) {
         lastbackslash[i] = screenshotfieldvalue[fullfields[i]].lastIndexOf('/');
        }
        filename[i] = screenshotfieldvalue[fullfields[i]].slice(lastbackslash[i]+1,endoffilename[i]);
        if(searchwrongchars.test(filename[i])) {
          filenamesnotok = true;
          document.getElementsByName(screenshotfieldname[fullfields[i]])[0].style.backgroundColor = jg_ffwrong;
        }
      }
    }
  }
  if(filenamesnotok) {
    alert(JText._('JG_COMMON_ALERT_WRONG_FILENAME'));
    document.getElementsByName(screenshotfieldname[0])[0].focus();
    return false;
  } else if(fullfields.length>1) {
    var feld1 = new Number();
    var feld2 = new Number();
    for(i=0;i<fullfields.length;i++) {
      for(j=fullfields.length-1;j>i;j--) {
        if(screenshotfieldvalue[fullfields[i]].indexOf(screenshotfieldvalue[fullfields[j]])==0) {
          doublefiles = true;
          document.getElementsByName(screenshotfieldname[fullfields[i]])[0].style.backgroundColor = jg_ffwrong;
          document.getElementsByName(screenshotfieldname[fullfields[j]])[0].style.backgroundColor = jg_ffwrong;
          feld1 = i+1;
          feld2 = j+1
          alert(JText._('JGS_COMMON_ALERT_FILENAME_DOUBLE_ONE') + ' ' + feld1 + ' ' + JText._('JGS_COMMON_ALERT_FILENAME_DOUBLE_TWO') + ' ' + feld2 + '.');
        }
      }
    }
  }
  if(doublefiles) {
    document.getElementsByName(screenshotfieldname[0])[0].focus();
    return false;
  } else {
    form.submit();
    return true;
  }
}

function joom_batchuploadcheck() {
  var form = document.BatchUploadForm;
  form.zippack.style.backgroundColor = '';
  form.catid.style.backgroundColor = '';
  if(!jg_useorigfilename)
  {
    form.imgtitle.style.backgroundColor = '';
  }
  if (form.zippack.value == '' || form.zippack.value == null) {
    alert(JText._('JG_COMMON_ALERT_YOU_MUST_SELECT_ONE_FILE'));
    form.zippack.style.backgroundColor = jg_ffwrong;
    form.zippack.focus();
    return false;
  }else if (!jg_useorigfilename && (form.imgtitle.value == '' || form.imgtitle.value == null)) {
    alert(JText._('JGS_COMMON_ALERT_IMAGE_MUST_HAVE_TITLE'));
    form.imgtitle.style.backgroundColor = jg_ffwrong;
    form.imgtitle.focus();
    return false;
  }/*";
}
$script .= "*/
  var filecounterok = true;/*";
if(!$this->_config->get('jg_useorigfilename') && $this->_config->get('jg_filenamenumber'))
{
  $script .= "*/
  if (typeof(form.filecounter) != 'undefined')
  {
    form.filecounter.style.backgroundColor = '';
    if (form.filecounter.value != '') {
      var searchwrongchars1 = /[^0-9]/;
      if(searchwrongchars1.test(form.filecounter.value)) {
        filecounterok = false;
        alert(JText._('JG_COMMON_ALERT_WRONG_VALUE'));
        form.filecounter.style.backgroundColor = jg_ffwrong;
        form.filecounter.focus();
        return false;
      }
    }
  }
  /*";
}
$script .= "*/
  if (form.catid.value == '0' && filecounterok) {
    alert(JText._('JGS_COMMON_ALERT_YOU_MUST_SELECT_CATEGORY'));
    form.catid.style.backgroundColor = jg_ffwrong;
    form.catid.focus();
    return false;
  } else {
    var filenamesnotok = false;/*";
if($this->_config->get('jg_filenamewithjs') != 0  && $this->_config->get('jg_useorigfilename') == 0)
{
  $script .= "*/
     var searchwrongchars = /[^ a-zA-Z0-9_-]/;
     if(!jg_useorigfilename && searchwrongchars.test(form.imgtitle.value)) {
       filenamesnotok = true;
     }/*";
}
$script .= "*/
  }
  if(filenamesnotok) {
    alert(JText._('JG_COMMON_ALERT_WRONG_FILENAME'));
    form.imgtitle.style.backgroundColor = jg_ffwrong;
    form.imgtitle.focus();
    return false;
  } else {
    form.submit();
    return true;
  }
}

function joom_checkme2() {
  var form = document.adminForm;
  if(!jg_useorigfilename)
  {
    form.imgtitle.style.backgroundColor = '';
  }
  form.catid.style.backgroundColor = '';
  // do field validation
  if(!jg_useorigfilename && (form.imgtitle.value == '' || form.imgtitle.value == null)) {
    alert(JText._('JGS_COMMON_ALERT_IMAGE_MUST_HAVE_TITLE'));
    form.imgtitle.style.backgroundColor = jg_ffwrong;
    form.imgtitle.focus();
    return false;
  } else if (form.catid.value == '0') {
    alert(JText._('JGS_COMMON_ALERT_YOU_MUST_SELECT_CATEGORY'));
    form.catid.style.backgroundColor = jg_ffwrong;
    form.catid.focus();
    return false;
  } else {
    form.submit();
    return true;
  }
}

function submit_button() {
  var form = document.usercatForm;
  // do field validation
  form.name.style.backgroundColor = '';
  try {
    document.usercatForm.onsubmit();
  }
  catch(e){}
  if (form.name.value == '' || form.name.value == null) {
    alert(JText._('JGS_COMMON_ALERT_CATEGORY_MUST_HAVE_TITLE'));
    form.name.style.backgroundColor = jg_ffwrong;
    form.name.focus();
  } else {
    form.button[0].disabled=true;//save
    form.button[1].disabled=true;//cancel
    form.submit();
  }
}

function joom_changeDynaList( listname, source, key, orig_key, orig_val ) {
  var list = eval( 'document.usercatForm.' + listname );

  // empty the list
  for (i in list.options.length) {
    list.options[i] = null;
  }
  i = 0;
  for (x in source) {
    if (source[x][0] == key) {
      opt = new Option();
      opt.value = source[x][1];
      opt.text = source[x][2];

      if ((orig_key == key && orig_val == opt.value) || i == 0) {
        opt.selected = true;
      }
      list.options[i++] = opt;
    }
  }
  list.length = i;
}

T1KUS90T
  root-grov@210.1.60.28:~$