[$] Pr1v473 xHeEl B4ckD00RzZ [$]

Current Path : D:/InetPub/vhosts/kuccs.com.kw/httpdocs/PortalCMS/scripts/editor/scripts/
Upload File
Current File : D:/InetPub/vhosts/kuccs.com.kw/httpdocs/PortalCMS/scripts/editor/scripts/hyperlink.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="style/editor.css" rel="stylesheet" type="text/css">
<script>
  var sLangDir=parent.oUtil.langDir;
  document.write("<scr"+"ipt src='language/"+sLangDir+"/hyperlink.js'></scr"+"ipt>");
</script>
<script>writeTitle()</script>
<script>

function GetElement(oElement,sMatchTag)
  {
  while (oElement!=null&&oElement.tagName!=sMatchTag)
    {
    if(oElement.tagName=="BODY")return null;
    oElement=oElement.parentElement;
    }
  return oElement;
  }

function doWindowFocus()
  {
  parent.oUtil.onSelectionChanged=new Function("realTime()");
  }

function bodyOnLoad()
  {
  loadTxt();

  window.onfocus=doWindowFocus;
  parent.oUtil.onSelectionChanged=new Function("realTime()");

  if(parent.oUtil.obj.cmdAssetManager!="")btnAsset.style.display="block";
  if(parent.oUtil.obj.cmdFileManager!="")btnAsset.style.display="block";

  realTime();

  }

function bodyOnUnload() {
  parent.oUtil.onSelectionChanged=null;
}

function openAsset()
  {
  if(parent.oUtil.obj.cmdAssetManager!="")
    eval(parent.oUtil.obj.cmdAssetManager);
  if(parent.oUtil.obj.cmdFileManager!="")
    eval(parent.oUtil.obj.cmdFileManager);
  }
function setAssetValue(v)
  {
  document.getElementById("inpURL").value = v;
  }

function modalDialogShow(url,width,height) {
  parent.modalDialogShow(url,width,height, window);
}

function updateList()
  {
  var oEditor=parent.oUtil.oEditor;

  while(inpBookmark.options.length!=0)
    {
    inpBookmark.options.remove(inpBookmark.options(0))
    }
  for(var i=0;i<oEditor.document.anchors.length;i++)
    {
    var op = document.createElement("OPTION");
    op.text=oEditor.document.anchors[i].name;
    op.value="#"+oEditor.document.anchors[i].name;
    inpBookmark.options.add(op);
    }
  }
function realTime()
  {
  if(!parent.oUtil.obj.checkFocus()){return;}//Focus stuff
  var oEditor=parent.oUtil.oEditor;
  var oSel=oEditor.document.selection.createRange();
  var sType=oEditor.document.selection.type;

  updateList();

  //If text or control is selected, Get A element if any
  if (oSel.parentElement) oEl=GetElement(oSel.parentElement(),"A");
  else oEl=GetElement(oSel.item(0),"A");

  //Is there an A element ?
  if (oEl)
    {
    btnInsert.style.display="none";
    btnApply.style.display="block";
    btnOk.style.display="block";


    //~~~~~~~~~~~~~~~~~~~~~~~~
    sTmp=oEl.outerHTML;
    if(sTmp.indexOf("href")!=-1) //1.5.1
      {
      sTmp=sTmp.substring(sTmp.indexOf("href")+6);
      sTmp=sTmp.substring(0,sTmp.indexOf('"'));
      var arrTmp = sTmp.split("&amp;");
      if (arrTmp.length > 1) sTmp = arrTmp.join("&");
      sURL=sTmp
      //sURL=oEl.href;
      }
    else
      {
      sURL=""
      }

    if(sType!="Control")
      {
      try
        {
        var oSelRange = oEditor.document.body.createTextRange()
        oSelRange.moveToElementText(oEl)
        oSel.setEndPoint("StartToStart",oSelRange);
        oSel.setEndPoint("EndToEnd",oSelRange);
        oSel.select();
        }
      catch(e){return;}
      }

    inpTarget.value="";
    inpTargetCustom.value="";
    if(oEl.target=="_self" || oEl.target=="_blank" || oEl.target=="_parent")
      inpTarget.value=oEl.target;//inpTarget
    else
      inpTargetCustom.value=oEl.target;

    inpTitle.value="";
    if(oEl.title!=null) inpTitle.value=oEl.title;//inpTitle //1.5.1

	inpRel.value="";
    if(oEl.rel!=null) inpRel.value=oEl.rel;

    if(sURL.substr(0,7)=="http://")
      {
      inpType.value="http://";//inpType
      inpURL.value=sURL.substr(7);//idLinkURL

      inpBookmark.disabled=true;
      inpURL.disabled=false;
      inpType.disabled=false;
      rdoLinkTo[0].checked=true;
      rdoLinkTo[1].checked=false;
      }
    else if(sURL.substr(0,8)=="https://")
      {
      inpType.value="https://";
      inpURL.value=sURL.substr(8);

      inpBookmark.disabled=true;
      inpURL.disabled=false;
      inpType.disabled=false;
      rdoLinkTo[0].checked=true;
      rdoLinkTo[1].checked=false;
      }
    else if(sURL.substr(0,7)=="mailto:")
      {
      inpType.value="mailto:";
      inpURL.value=sURL.split(":")[1];

      inpBookmark.disabled=true;
      inpURL.disabled=false;
      inpType.disabled=false;
      rdoLinkTo[0].checked=true;
      rdoLinkTo[1].checked=false;
      }
    else if(sURL.substr(0,6)=="ftp://")
      {
      inpType.value="ftp://";
      inpURL.value=sURL.substr(6);

      inpBookmark.disabled=true;
      inpURL.disabled=false;
      inpType.disabled=false;
      rdoLinkTo[0].checked=true;
      rdoLinkTo[1].checked=false;
      }
    else if(sURL.substr(0,5)=="news:")
      {
      inpType.value="news:";
      inpURL.value=sURL.split(":")[1];

      inpBookmark.disabled=true;
      inpURL.disabled=false;
      inpType.disabled=false;
      rdoLinkTo[0].checked=true;
      rdoLinkTo[1].checked=false;
      }
    else if(sURL.substr(0,11).toLowerCase()=="javascript:")
      {
      inpType.value="javascript:";
      //inpURL.value=sURL.split(":")[1];
      inpURL.value=sURL.substr(sURL.indexOf(":")+1);

      inpBookmark.disabled=true;
      inpURL.disabled=false;
      inpType.disabled=false;
      rdoLinkTo[0].checked=true;
      rdoLinkTo[1].checked=false;
      }
    else
      {
      inpType.value="";

      if(sURL.substring(0,1)=="#")
        {
        inpBookmark.value=sURL;
        inpURL.value="";
        inpBookmark.disabled=false;
        inpURL.disabled=true;
        inpType.disabled=true;
        rdoLinkTo[0].checked=false;
        rdoLinkTo[1].checked=true;
        }
      else
        {
        inpBookmark.value=""
        inpURL.value=sURL;
        inpBookmark.disabled=true;
        inpURL.disabled=false;
        inpType.disabled=false;
        rdoLinkTo[0].checked=true;
        rdoLinkTo[1].checked=false;
        }
      }
    }
  else
    {
    btnInsert.style.display="block";
    btnApply.style.display="none";
    btnOk.style.display="none";

    inpTarget.value="";
    inpTargetCustom.value="";
    inpTitle.value="";
    inpRel.value="";

    inpType.value="";
    inpURL.value="";
    inpBookmark.value="";

    inpBookmark.disabled=true;
    inpURL.disabled=false;
    inpType.disabled=false;
    rdoLinkTo[0].checked=true;
    rdoLinkTo[1].checked=false;
    }
  }

function applyHyperlink()
  {
  parent.oUtil.obj.setFocus();
  if(!parent.oUtil.obj.checkFocus()){return;}//Focus stuff
  var oEditor=parent.oUtil.oEditor;
  var oSel=oEditor.document.selection.createRange();

  parent.oUtil.obj.saveForUndo();

  var sURL;
  if(rdoLinkTo[0].checked)
    sURL=inpType.value + inpURL.value;
  else
    sURL=inpBookmark.value;

  if((inpURL.value!="" && rdoLinkTo[0].checked) ||
    (inpBookmark!="" && rdoLinkTo[1].checked))
    {
    if (oSel.parentElement)
      {
      if(btnInsert.style.display=="block")
        {
        if(oSel.text=="")//If no (text) selection, then build selection using the typed URL
          {
          var oSelTmp=oSel.duplicate();
          oSel.text=sURL;
          oSel.setEndPoint("StartToStart",oSelTmp);
          oSel.select();
          }
        }
      }

    oSel.execCommand("CreateLink",false,sURL);

    //get A element
    if (oSel.parentElement) oEl=GetElement(oSel.parentElement(),"A");
    else oEl=GetElement(oSel.item(0),"A");
    if(oEl)
      {
      if(inpTarget.value=="" && inpTargetCustom.value=="") oEl.removeAttribute("target",0);//target
      else
        {
        if(inpTargetCustom.value!="")
          oEl.target=inpTargetCustom.value;
        else
          oEl.target=inpTarget.value;
        }

      if(inpTitle.value=="") oEl.removeAttribute("title",0);//1.5.1
      else oEl.title=inpTitle.value;

      if(inpRel.value=="") oEl.removeAttribute("rel",0);
      else oEl.rel=inpRel.value;

      }

    parent.realTime(parent.oUtil.oName);
    parent.oUtil.obj.selectElement(0);
    }
  else
    {
    oSel.execCommand("unlink");//unlink

    parent.realTime(parent.oUtil.oName);
    parent.oUtil.activeElement=null;
    }
  realTime();
  }

function changeLinkTo()
  {
  if(rdoLinkTo[0].checked)
    {
    inpBookmark.disabled=true;
    inpURL.disabled=false;
    inpType.disabled=false;
    }
  else
    {
    inpBookmark.disabled=false;
    inpURL.disabled=true;
    inpType.disabled=true;
    }
  }

function windowClose() {
  parent.oUtil.onSelectionChanged=null;
  self.closeWin();
};

</script>
</head>
<body style="overflow:hidden;">

<table width="100%" height="190px" align=center cellpadding=0 cellspacing=0 style="border-collapse:separate">
<tr>
<td valign=top style="padding:5px;">
  <table width=100% style="border-collapse:separate">
  <tr>
    <td nowrap>
      <input type="radio" value="url" name="rdoLinkTo" class="inpRdo" checked onclick="changeLinkTo()">
      <span id="txtLang" name="txtLang">Source</span>:
    </td>
    <td width="100%">
      <table cellpadding="0" cellspacing="0" width="100%">
      <tr>
      <td nowrap>
      <select ID="inpType" NAME="inpType" class="inpSel">
        <option value=""></option>
        <option value="http://">http://</option>
        <option value="https://">https://</option>
        <option value="mailto:">mailto:</option>
        <option value="ftp://">ftp://</option>
        <option value="news:">news:</option>
        <option value="javascript:">javascript:</option>
      </select>
      </td>
      <td width="100%"><INPUT type="text" id="inpURL" name="inpURL" style="width:100%" class="inpTxt"></td>
      <td><input type="button" value="" onclick="openAsset()" id="btnAsset" name="btnAsset" style="display:none;background:url('openAsset.gif') no-repeat center center;width:23px;height:18px;border:#a5acb2 1px solid;margin-left:1px;"></td>
      </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td nowrap>
      <input type="radio" value="bookmark" name="rdoLinkTo" class="inpRdo" onclick="changeLinkTo()">
      <span id="txtLang" name="txtLang">Bookmark</span>:
    </td>
    <td>
    <select name="inpBookmark" class="inpSel" disabled style="width:160px">
    </select></td>
  </tr>
  <tr>
    <td nowrap>&nbsp;<span id="txtLang" name="txtLang">Target</span>:</td>
    <td><INPUT type="text" ID="inpTargetCustom" NAME="inpTargetCustom" size=15 class="inpTxt">
    <select ID="inpTarget" NAME="inpTarget" class="inpSel">
      <option value=""></option>
      <option value="_self" id="optLang" name="optLang">Self</option>
      <option value="_blank" id="optLang" name="optLang">Blank</option>
      <option value="_parent" id="optLang" name="optLang">Parent</option>
    </select></td>
  </tr>
  <tr>
    <td nowrap>&nbsp;<span id="txtLang" name="txtLang">Title</span>:</td>
    <td><INPUT type="text" ID="inpTitle" NAME="inpTitle" style="width:160px" class="inpTxt"></td>
  </tr>
  <tr>
    <td nowrap>&nbsp;<span id="txtLang" name="txtLang">Rel</span>:</td>
    <td><INPUT type="text" ID="inpRel" NAME="inpRel" style="width:160px" class="inpTxt"></td>
  </tr>
  </table>
</td>
</tr>
<tr>
<td class="dialogFooter" align="right">
  <table cellpadding=0 cellspacing=0>
  <td>
  <input type=button name=btnCancel id=btnCancel value="cancel" onclick="windowClose()" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'">
  </td>
  <td>
  <input type=button name=btnInsert id=btnInsert value="insert" onclick="applyHyperlink();" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'">
  </td>
  <td>
  <input type=button name=btnApply id=btnApply value="apply" style="display:none" onclick="applyHyperlink()" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'">
  </td>
  <td>
  <input type=button name=btnOk id=btnOk value=" ok " style="display:none;" onclick="applyHyperlink();windowClose()" class="inpBtn" onmouseover="this.className='inpBtnOver';" onmouseout="this.className='inpBtnOut'">
  </td>
  </table>
</td>
</tr>
</table>

</body>
</html>