flvPreview.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <!--
  3. * Chamilo LMS
  4. *
  5. * Copyright (c) 2009-2010 Ivan Tcholakov <ivantcholakov@gmail.com>
  6. * Copyright (c) 2009 Dokeos SPRL
  7. *
  8. * For a full list of contributors, see "credits.txt".
  9. * The full license can be read in "license.txt".
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License
  13. * as published by the Free Software Foundation; either version 2
  14. * of the License, or (at your option) any later version.
  15. *
  16. * See the GNU General Public License for more details.
  17. *
  18. * This plugin uses as a template some original source code of the
  19. * FCKeditor 2.6.4, see for example the flash dialog or the image
  20. * properties dialog.
  21. -->
  22. <html xmlns="http://www.w3.org/1999/xhtml">
  23. <head>
  24. <title></title>
  25. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  26. <meta name="robots" content="noindex, nofollow" />
  27. <script src="../../dialog/common/fck_dialog_common.js" type="text/javascript"></script>
  28. <script type="text/javascript">
  29. var FCKTools = window.parent.FCKTools ;
  30. var FCKConfig = window.parent.FCKConfig ;
  31. // Sets the Skin CSS
  32. document.write( FCKTools.GetStyleHtml( FCKConfig.SkinDialogCSS ) ) ;
  33. document.write( FCKTools.GetStyleHtml( GetCommonDialogCss( '../' ) ) ) ;
  34. if ( window.parent.FCKConfig.BaseHref.length > 0 )
  35. document.write( '<base href="' + window.parent.FCKConfig.BaseHref + '">' ) ;
  36. window.onload = function()
  37. {
  38. window.parent.SetPreviewElement( document.getElementById( 'flv_preview' ) ) ;
  39. }
  40. </script>
  41. </head>
  42. <body style="color: #000000; background-color: #ffffff;"><div id="flv_preview"></div></body>
  43. </html>