You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
klintersrv/editor/dialog/dialog.js

183 lines
4.2 KiB

/*
*######################################
* eWebEditor v4.00 - Advanced online web based WYSIWYG HTML editor.
* Copyright (c) 2003-2007 eWebSoft.com
*
* For further information go to http://www.ewebsoft.com/
* This copyright notice MUST stay intact for use.
*######################################
*/
var URLParams = new Object() ;
var aParams = document.location.search.substr(1).split('&') ;
for (i=0 ; i < aParams.length ; i++) {
var aParam = aParams[i].split('=') ;
URLParams[aParam[0]] = aParam[1] ;
}
var config;
try{config = dialogArguments.config;}catch(e){try{config = opener.config;}catch(e){}}
function BaseTrim(str){
lIdx=0;rIdx=str.length;
if (BaseTrim.arguments.length==2)
act=BaseTrim.arguments[1].toLowerCase()
else
act="all"
for(var i=0;i<str.length;i++){
thelStr=str.substring(lIdx,lIdx+1)
therStr=str.substring(rIdx,rIdx-1)
if ((act=="all" || act=="left") && thelStr==" "){
lIdx++
}
if ((act=="all" || act=="right") && therStr==" "){
rIdx--
}
}
str=str.slice(lIdx,rIdx)
return str
}
function BaseAlert(theText,notice){
alert(notice);
theText.focus();
theText.select();
return false;
}
function IsColor(color){
var temp=color;
if (temp=="") return true;
if (temp.length!=7) return false;
return (temp.search(/\#[a-fA-F0-9]{6}/) != -1);
}
function IsDigit(){
return ((event.keyCode >= 48) && (event.keyCode <= 57));
}
function SelectColor(what){
var dEL = document.all("d_"+what);
var sEL = document.all("s_"+what);
var url = "selcolor.htm?color="+encodeURIComponent(dEL.value);
var arr = showModalDialog(url,window,"dialogWidth:0px;dialogHeight:0px;help:no;scroll:no;status:no");
if (arr) {
dEL.value=arr;
sEL.style.backgroundColor=arr;
}
}
function SelectImage(){
showModalDialog("backimage.htm?action=other",window,"dialogWidth:0px;dialogHeight:0px;help:no;scroll:no;status:no");
}
function SelectBrowse(type, what){
var el = document.all("d_"+what);
var arr = showModalDialog('browse.htm?type='+type, window, "dialogWidth:0px;dialogHeight:0px;help:no;scroll:no;status:no");
if (arr){
el.value = arr;
}
}
function SearchSelectValue(o_Select, s_Value){
for (var i=0;i<o_Select.length;i++){
if (o_Select.options[i].value == s_Value){
o_Select.selectedIndex = i;
return true;
}
}
return false;
}
function ToInt(str){
str=BaseTrim(str);
if (str!=""){
var sTemp=parseFloat(str);
if (isNaN(sTemp)){
str="";
}else{
str=sTemp;
}
}
return str;
}
function IsURL(url){
var sTemp;
var b=true;
sTemp=url.substring(0,7);
sTemp=sTemp.toUpperCase();
if ((sTemp!="HTTP://")||(url.length<10)){
b=false;
}
return b;
}
function IsExt(url, opt){
var sTemp;
var b=false;
var s=opt.toUpperCase().split("|");
for (var i=0;i<s.length ;i++ ){
sTemp=url.substr(url.length-s[i].length-1);
sTemp=sTemp.toUpperCase();
s[i]="."+s[i];
if (s[i]==sTemp){
b=true;
break;
}
}
return b;
}
function relativePath2rootPath(url){
if(url.substring(0,1)=="/") {return url;}
if(url.indexOf("://")>=0) {return url;}
var sWebEditorPath = getWebEditorRootPath();
while(url.substr(0,3)=="../"){
url = url.substr(3);
sWebEditorPath = sWebEditorPath.substring(0,sWebEditorPath.lastIndexOf("/"));
}
return sWebEditorPath + "/" + url;
}
function relativePath2setPath(url){
return relativePath2rootPath(url);
}
function getWebEditorRootPath(){
var url = "/" + document.location.pathname;
return url.substring(0,url.lastIndexOf("/dialog/"));
}
function adjustDialog(){
var w = tabDialogSize.offsetWidth + 6;
var h = tabDialogSize.offsetHeight + 25;
if(config.IsSP2){
h += 20;
}
window.dialogWidth = w + "px";
window.dialogHeight = h + "px";
window.dialogLeft = (screen.availWidth - w) / 2;
window.dialogTop = (screen.availHeight - h) / 2;
}
function imgButtonOver(el){
if(!el["imageinitliazed"]){
el["oncontextmenu"]= new Function("event.returnValue=false") ;
el["onmouseout"]= new Function("imgButtonOut(this)") ;
el["onmousedown"]= new Function("imgButtonDown(this)") ;
el["unselectable"]="on" ;
el["imageinitliazed"]=true ;
} ;
el.className = "imgButtonOver";
} ;
function imgButtonOut(el){
el.className = "imgButtonOut";
} ;
function imgButtonDown(el){
el.className = "imgButtonDown";
} ;