Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
 *
 * == BEGIN LICENSE ==
 *
 * Licensed under the terms of any of the following licenses at your
 * choice:
 *
 *  - GNU General Public License Version 2 or later (the "GPL")
 *    http://www.gnu.org/licenses/gpl.html
 *
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
 *    http://www.gnu.org/licenses/lgpl.html
 *
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
 *    http://www.mozilla.org/MPL/MPL-1.1.html
 *
 * == END LICENSE ==
 *
 * Dialog windows operations.
 */
 
var FCKDialog = ( function()
{
    var topDialog ;
    var baseZIndex ;
    var cover ;
 
    // The document that holds the dialog.
    var topWindow = window.parent ;
 
    while ( topWindow.parent && topWindow.parent != topWindow )
    {
        try
        {
            if ( topWindow.parent.document.domain != document.domain )
                break ;
            if ( topWindow.parent.document.getElementsByTagName( 'frameset' ).length > 0 )
                break ;
        }
        catch ( e )
        {
            break ;
        }
        topWindow = topWindow.parent ;
    }
 
    var topDocument = topWindow.document ;
 
    var getZIndex = function()
    {
        if ( !baseZIndex )
            baseZIndex = FCKConfig.FloatingPanelsZIndex + 999 ;
        return ++baseZIndex ;
    }
 
    // TODO : This logic is not actually working when reducing the window, only
    // when enlarging it.
    var resizeHandler = function()
    {
        if ( !cover )
            return ;
 
        var relElement = FCKTools.IsStrictMode( topDocument ) ? topDocument.documentElement : topDocument.body ;
 
        FCKDomTools.SetElementStyles( cover,
            {
                'width' : Math.max( relElement.scrollWidth,
                    relElement.clientWidth,
                    topDocument.scrollWidth || 0 ) - 1 + 'px',
                'height' : Math.max( relElement.scrollHeight,
                    relElement.clientHeight,
                    topDocument.scrollHeight || 0 ) - 1 + 'px'
            } ) ;
    }
 
    return {
        /**
         * Opens a dialog window using the standard dialog template.
         */
        OpenDialog : function( dialogName, dialogTitle, dialogPage, width, height, customValue, parentWindow, resizable )
        {
            if ( !topDialog )
                this.DisplayMainCover() ;
 
            // Setup the dialog info to be passed to the dialog.
            var dialogInfo =
            {
                Title : dialogTitle,
                Page : dialogPage,
                Editor : window,
                CustomValue : customValue,        // Optional
                TopWindow : topWindow
            }
 
            FCK.ToolbarSet.CurrentInstance.Selection.Save( true ) ;
 
            // Calculate the dialog position, centering it on the screen.
            var viewSize = FCKTools.GetViewPaneSize( topWindow ) ;
            var scrollPosition = { 'X' : 0, 'Y' : 0 } ;
            var useAbsolutePosition = FCKBrowserInfo.IsIE && ( !FCKBrowserInfo.IsIE7 || !FCKTools.IsStrictMode( topWindow.document ) ) ;
            if ( useAbsolutePosition )
                scrollPosition = FCKTools.GetScrollPosition( topWindow ) ;
            var iTop  = Math.max( scrollPosition.Y + ( viewSize.Height - height - 20 ) / 2, 0 ) ;
            var iLeft = Math.max( scrollPosition.X + ( viewSize.Width - width - 20 )  / 2, 0 ) ;
 
            // Setup the IFRAME that will hold the dialog.
            var dialog = topDocument.createElement( 'iframe' ) ;
            FCKTools.ResetStyles( dialog ) ;
            dialog.src = FCKConfig.BasePath + 'fckdialog.html' ;
 
            // Dummy URL for testing whether the code in fckdialog.js alone leaks memory.
            // dialog.src = 'about:blank';
 
            dialog.frameBorder = 0 ;
            dialog.allowTransparency = true ;
            FCKDomTools.SetElementStyles( dialog,
                    {
                        'position'    : ( useAbsolutePosition ) ? 'absolute' : 'fixed',
                        'top'        : iTop + 'px',
                        'left'        : iLeft + 'px',
                        'width'        : width + 'px',
                        'height'    : height + 'px',
                        'zIndex'    : getZIndex()
                    } ) ;
 
            // Save the dialog info to be used by the dialog page once loaded.
            dialog._DialogArguments = dialogInfo ;
 
            // Append the IFRAME to the target document.
            topDocument.body.appendChild( dialog ) ;
 
            // Keep record of the dialog's parent/child relationships.
            dialog._ParentDialog = topDialog ;
            topDialog = dialog ;
        },
 
        /**
         * (For internal use)
         * Called when the top dialog is closed.
         */
        OnDialogClose : function( dialogWindow )
        {
            var dialog = dialogWindow.frameElement ;
            FCKDomTools.RemoveNode( dialog ) ;
 
            if ( dialog._ParentDialog )        // Nested Dialog.
            {
                topDialog = dialog._ParentDialog ;
                dialog._ParentDialog.contentWindow.SetEnabled( true ) ;
            }
            else                            // First Dialog.
            {
                // Set the Focus in the browser, so the "OnBlur" event is not
                // fired. In IE, there is no need to do that because the dialog
                // already moved the selection to the editing area before
                // closing (EnsureSelection). Also, the Focus() call here
                // causes memory leak on IE7 (weird).
                if ( !FCKBrowserInfo.IsIE )
                    FCK.Focus() ;
 
                this.HideMainCover() ;
                // Bug #1918: Assigning topDialog = null directly causes IE6 to crash.
                setTimeout( function(){ topDialog = null ; }, 0 ) ;
 
                // Release the previously saved selection.
                FCK.ToolbarSet.CurrentInstance.Selection.Release() ;
            }
        },
 
        DisplayMainCover : function()
        {
            // Setup the DIV that will be used to cover.
            cover = topDocument.createElement( 'div' ) ;
            FCKTools.ResetStyles( cover ) ;
            FCKDomTools.SetElementStyles( cover,
                {
                    'position' : 'absolute',
                    'zIndex' : getZIndex(),
                    'top' : '0px',
                    'left' : '0px',
                    'backgroundColor' : FCKConfig.BackgroundBlockerColor
                } ) ;
            FCKDomTools.SetOpacity( cover, FCKConfig.BackgroundBlockerOpacity ) ;
 
            // For IE6-, we need to fill the cover with a transparent IFRAME,
            // to properly block <select> fields.
            if ( FCKBrowserInfo.IsIE && !FCKBrowserInfo.IsIE7 )
            {
                var iframe = topDocument.createElement( 'iframe' ) ;
                FCKTools.ResetStyles( iframe ) ;
                iframe.hideFocus = true ;
                iframe.frameBorder = 0 ;
                iframe.src = FCKTools.GetVoidUrl() ;
                FCKDomTools.SetElementStyles( iframe,
                    {
                        'width' : '100%',
                        'height' : '100%',
                        'position' : 'absolute',
                        'left' : '0px',
                        'top' : '0px',
                        'filter' : 'progid:DXImageTransform.Microsoft.Alpha(opacity=0)'
                    } ) ;
                cover.appendChild( iframe ) ;
            }
 
            // We need to manually adjust the cover size on resize.
            FCKTools.AddEventListener( topWindow, 'resize', resizeHandler ) ;
            resizeHandler() ;
 
            topDocument.body.appendChild( cover ) ;
 
            FCKFocusManager.Lock() ;
 
            // Prevent the user from refocusing the disabled
            // editing window by pressing Tab. (Bug #2065)
            var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ;
            el._fck_originalTabIndex = el.tabIndex ;
            el.tabIndex = -1 ;
        },
 
        HideMainCover : function()
        {
            FCKDomTools.RemoveNode( cover ) ;
            FCKFocusManager.Unlock() ;
 
            // Revert the tab index hack. (Bug #2065)
            var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ;
            el.tabIndex = el._fck_originalTabIndex ;
            FCKDomTools.ClearElementJSProperty( el, '_fck_originalTabIndex' ) ;
        },
 
        GetCover : function()
        {
            return cover ;
        }
    } ;
} )() ;