source: sandbox/filemanager/tp/fckeditor/editor/wsc/tmpFrameset.html @ 1575

Revision 1575, 2.4 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implentação, melhorias do modulo gerenciador de arquivos

  • Property svn:executable set to *
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
2<!--
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
5 *
6 * == BEGIN LICENSE ==
7 *
8 * Licensed under the terms of any of the following licenses at your
9 * choice:
10 *
11 *  - GNU General Public License Version 2 or later (the "GPL")
12 *    http://www.gnu.org/licenses/gpl.html
13 *
14 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15 *    http://www.gnu.org/licenses/lgpl.html
16 *
17 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18 *    http://www.mozilla.org/MPL/MPL-1.1.html
19 *
20 * == END LICENSE ==
21-->
22<html>
23<head>
24        <title></title>
25        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
26        <script type="text/javascript">
27
28function doLoadScript( url )
29{
30        if ( !url )
31                return false ;
32
33        var s = document.createElement( "script" ) ;
34        s.type = "text/javascript" ;
35        s.src = url ;
36        document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
37
38        return true ;
39}
40
41function tryLoad ()
42{
43    if ( typeof( opener ) == 'undefined' || !opener )
44        opener = parent ;
45
46    // get access to global parameters
47    oParams = opener.oldFramesetPageParams ;
48
49    // make frameset rows string prepare
50    sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
51    document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
52
53    // dynamic including init frames and crossdomain transport code
54    // from config sproxy_js_frameset url
55    var addScriptUrl = oParams.sproxy_js_frameset ;
56    doLoadScript( addScriptUrl ) ;
57}
58
59        </script>
60</head>
61<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
62    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
63    <frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
64    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
65    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
66</frameset>
67</html>
Note: See TracBrowser for help on using the repository browser.