File: editor-content.html

package info (click to toggle)
movabletype-opensource 5.1.4%2Bdfsg-4%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 32,996 kB
  • sloc: perl: 197,285; php: 62,405; sh: 166; xml: 117; makefile: 83; sql: 32
file content (35 lines) | stat: -rw-r--r-- 1,402 bytes parent folder | download | duplicates (2)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:mt="http://www.sixapart.com/ns/mt">
    <head>
        <script type="text/javascript">
            // <![CDATA[
            var loc = location.href;
            var params = loc.substring( loc.indexOf( "?" ) + 1 );
            var m = params.match( /cs=([^&]+)/ );
            var charset = '';
            if ( m && m[ 1 ] && m[ 1 ] != "" )
                charset = '; charset=' + m[ 1 ].replace( /'|"|<|>/g, '' );
            document.write( '<meta http-equiv="Content-Type" content="text/html' + charset + '" />' );
            // ]]>
        </script>
        <title>Editor Content</title>
        <link rel="stylesheet" type="text/css" href="../css/editor/base.css" />
        <link rel="stylesheet" type="text/css" href="../css/editor/editor-content.css" />
        <style type="text/css">
            /* <![CDATA[ */
            div {
                behavior: url(../htc/editor-content.htc);
            }
            /* ]]> */
        </style>
    </head>
    <body id="editor" hidefocus="true"></body>
    <script type="text/javascript">
        // <![CDATA[
        var w = window.parent.window;
        if( w && w.App )
            w.setTimeout( 'App.bootstrapIframe();', 1 );
        // ]]>
    </script>
</html>