tmpFrameset.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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-2010 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. function doLoadScript( url )
  28. {
  29. if ( !url )
  30. return false ;
  31. var s = document.createElement( "script" ) ;
  32. s.type = "text/javascript" ;
  33. s.src = url ;
  34. document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
  35. return true ;
  36. }
  37. function tryLoad ()
  38. {
  39. if ( typeof( opener ) == 'undefined' || !opener )
  40. opener = parent ;
  41. // get access to global parameters
  42. oParams = opener.oldFramesetPageParams ;
  43. // make frameset rows string prepare
  44. sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
  45. document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
  46. // dynamic including init frames and crossdomain transport code
  47. // from config sproxy_js_frameset url
  48. var addScriptUrl = oParams.sproxy_js_frameset ;
  49. doLoadScript( addScriptUrl ) ;
  50. }
  51. </script>
  52. </head>
  53. <frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
  54. <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
  55. <frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
  56. <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
  57. <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
  58. </frameset>
  59. </html>