Вход Регистрация
Файл: public/fck/editor/fckdialog.html
Строк: 338
<?php
<!--
 * 
FCKeditor The text editor for internet
 
Copyright (C2003-2004 Frederico Caldeira Knabben
 

 * 
Licensed under the terms of the GNU Lesser General Public License:
 *         
http://www.opensource.org/licenses/lgpl-license.php
 

 * For 
further information visit:
 *         
http://www.fckeditor.net/
 

 * 
File Namefckdialog.html
 
*     This page is used by all dialog box as the container.
 * 
 * 
Version:  2.0 RC3
 
Modified2005-02-19 14:49:02
 

 * 
File Authors:
 *         
Frederico Caldeira Knabben (fredck@fckeditor.net)
-->
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<
html>
    <
head>
        <
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <
meta name="robots" content="noindex, nofollow" />
        <
script type="text/javascript">
<!--

// On some Gecko browsers (probably over slow connections) the 
// "dialogArguments" are not set so we must get it from the opener window.
if ( !dialogArguments )
    
dialogArguments window.opener.FCKLastDialogInfo ;

// Sets the Skin CSS
document.write'<link href="' dialogArguments.Editor.FCKConfig.SkinPath 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ;

// Sets the language direction.
window.document.dir dialogArguments.Editor.FCKLang.Dir ;

var 
sTitle dialogArguments.Title ;
document.write'<title>' sTitle '</title>' ) ;

function 
LoadInnerDialog()
{
    if ( 
window.onresize )
        
window.onresize() ;
    
    
// First of all, translate the dialog box contents.
    
dialogArguments.Editor.FCKLanguageManager.TranslatePagedocument ) ;

    
window.frames["frmMain"].document.location.href dialogArguments.Page ;
}

function 
InnerDialogLoaded()
{
    var 
oInnerDoc document.getElementById('frmMain').contentWindow.document ;

    
// Set the language direction.
    
oInnerDoc.dir dialogArguments.Editor.FCKLang.Dir ;
    
    
// Sets the Skin CSS.
    
oInnerDoc.write'<link href="' dialogArguments.Editor.FCKConfig.SkinPath 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ;
    
    
SetOnKeyDownoInnerDoc ) ;
    
DisableContextMenuoInnerDoc ) ;
    
    return 
dialogArguments.Editor ;
}

function 
SetOkButtonshowIt )
{
    
document.getElementById('btnOk').style.visibility = ( showIt '' 'hidden' ) ;
}

var 
bAutoSize false ;

function 
SetAutoSizeautoSize )
{
    
bAutoSize autoSize ;
    
RefreshSize() ;
}

function 
RefreshSize()
{
    if ( 
bAutoSize )
    {
        var 
oInnerDoc document.getElementById('frmMain').contentWindow.document ;
        
        if ( 
document.all )
            var 
iFrameHeight    oInnerDoc.body.offsetHeight ;
        else
            var 
iFrameHeight    document.getElementById('frmMain').contentWindow.innerHeight ;
            
        var 
iInnerHeight    oInnerDoc.body.scrollHeight ;
        
        var 
iDiff iInnerHeight iFrameHeight ;
        
        if ( 
iDiff )
        {
            if ( 
document.all )
                
window.dialogHeight = ( parseIntwindow.dialogHeight ) + iDiff ) + 'px' ;
            else
                
window.resizeBy0iDiff ) ;
        }
    }
}

function 
Ok()
{
    if ( 
window.frames["frmMain"].Ok && window.frames["frmMain"].Ok() )
        
Cancel() ;
}

function 
Cancel()
{
    
window.close() ;
}

// Object that holds all available tabs.
var oTabs = new Object() ;

function 
AddTabtabCodetabTextstartHidden )
{
    if ( 
typeofoTabstabCode ] ) != 'undefined' )
        return ;

    var 
eTabsRow document.getElementById'Tabs' ) ;

    var 
oCell eTabsRow.insertCell(  eTabsRow.cells.length ) ;
    
oCell.noWrap true ;

    var 
oDiv document.createElement'DIV' ) ;
    
oDiv.className 'PopupTab' ;
    
oDiv.innerHTML tabText ;
    
oDiv.TabCode tabCode ;
    
oDiv.onclick = function()
    {
        
SetSelectedTabthis.TabCode ) ;
    }
    
    if ( 
startHidden )
        
oDiv.style.display 'none' ;
    
    var 
eTabsRow document.getElementById'TabsRow' ) ;
    
    
oCell.appendChildoDiv ) ;
    
    if ( 
eTabsRow.style.display == 'none' )
    {
        var 
eTitleArea document.getElementById'TitleArea' ) ;
        
eTitleArea.className 'PopupTitle' ;
        
        
oDiv.className 'PopupTabSelected' ;
        
eTabsRow.style.display '' ;
        
        if ( ! 
dialogArguments.Editor.FCKBrowserInfo.IsIE )
            
window.onresize() ;
    }
    
    
oTabstabCode ] = oDiv ;
    
oTabstabCode ].Index oTabs.length ;
}

function 
SetSelectedTabtabCode )
{
    for ( var 
sCode in oTabs )
    {
        if ( 
sCode == tabCode )
            
oTabs[sCode].className 'PopupTabSelected' ;
        else
            
oTabs[sCode].className 'PopupTab' ;
    }
    
    if ( 
typeofwindow.frames["frmMain"].OnDialogTabChange ) == 'function' )
        
window.frames["frmMain"].OnDialogTabChangetabCode ) ;
}

function 
SetTabVisibilitytabCodeisVisible )
{
    var 
oTab oTabstabCode ] ;
    
oTab.style.display isVisible '' 'none' ;
    
    if ( ! 
isVisible && oTab.className == 'PopupTabSelected' )
    {
        for ( var 
sCode in oTabs )
        {
            if ( 
oTabs[sCode].style.display != 'none' )
            {
                
SetSelectedTabsCode ) ;
                break ;
            }
        }
    }
}

function 
SetOnKeyDowntargetDocument )
{
    
targetDocument.onkeydown = function ( )
    {
        var 
|| event || this.parentWindow.event ;
        switch ( 
e.keyCode )
        {
            case 
13 :        // ENTER
                
var oTarget e.srcElement || e.target ;
                if ( 
oTarget.tagName == 'TEXTAREA' ) return ;
                
Ok() ;
                return 
false ;
            case 
27 :        // ESC
                
Cancel() ;
                return 
false ;
                break ;
        }
    }
}
SetOnKeyDowndocument ) ;

function 
DisableContextMenutargetDocument )
{
    if ( 
dialogArguments.Editor.FCKBrowserInfo.IsIE ) return ;
    
    
// Disable Right-Click
    
var oOnContextMenu = function( )
    {
        var 
sTagName e.target.tagName ;
        if ( ! ( ( 
sTagName == "INPUT" && e.target.type == "text" ) || sTagName == "TEXTAREA" ) )
            
e.preventDefault() ;
    }
    
targetDocument.addEventListener'contextmenu'oOnContextMenutrue ) ;
}
DisableContextMenudocument ) ;

if ( ! 
dialogArguments.Editor.FCKBrowserInfo.IsIE )
{
    
window.onresize = function()
    {
        var 
oFrame document.getElementById("frmMain") ;
        
        if ( ! 
oFrame )
        return ;
        
        
oFrame.height ;

        var 
oCell document.getElementById("FrameCell") ;    
        var 
iHeight oCell.offsetHeight ;
        
        
oFrame.height iHeight ;
    }
}

window.onfocus = function()
{
    
document.getElementById('frmMain').contentWindow.focus() ;
}

//-->
        
</script>
    </
head>
    <
body onload="LoadInnerDialog();" class="PopupBody">
        <
table height="100%" cellspacing="0" cellpadding="0" width="100%" border="0">
            <
tr>
                <
td id="TitleArea" class="PopupTitle PopupTitleBorder">
                    <
script type="text/javascript">
<!--
document.writesTitle ) ;
//-->
                    
</script>
                </
td>
            </
tr>
            <
tr id="TabsRow" style="DISPLAY: none">
                <
td class="PopupTabArea">
                    <
table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <
tr id="Tabs" onselectstart="return false;">
                            <
td class="PopupTabEmptyArea">&nbsp;</td>
                            <
td class="PopupTabEmptyArea" width="100%">&nbsp;</td>
                        </
tr>
                    </
table>
                </
td>
            </
tr>
            <
tr>
                <
td id="FrameCell" height="100%" valign="top">
                    <
iframe id="frmMain" src="fckblank.html" name="frmMain" frameborder="0" height="100%" width="100%" scrolling="auto">
                    </
iframe>
                </
td>
            </
tr>
            <
tr>
                <
td class="PopupButtons">
                    <
table border="0" cellpadding="0" cellspacing="0">
                        <
tr>
                            <
td width="100%">&nbsp;</td>
                            <
td nowrap="nowrap">
                                <
input id="btnOk" style="VISIBILITY: hidden; WIDTH: 100px" type="button" value="Ok" class="Button"
                                    
onclick="Ok();" fckLang="DlgBtnOK" />&nbsp; <input type="button" value="Cancel" class="Button" onclick="Cancel();" fckLang="DlgBtnCancel" />
                            </
td>
                        </
tr>
                    </
table>
                </
td>
            </
tr>
        </
table>
    </
body>
</
html>
?>
Онлайн: 0
Реклама