~ubuntu-branches/ubuntu/precise/moin/precise-updates

« back to all changes in this revision

Viewing changes to wiki/htdocs/applets/FCKeditor/editor/dialog/fck_image/fck_image_preview.html

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-11-13 16:45:52 UTC
  • mfrom: (0.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20081113164552-49t6zf2t2o5bqigh
Tags: 1.8.0-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop recommendation of python-xml, the packages isn't anymore in
    sys.path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!--
2
 
 * FCKeditor - The text editor for internet
3
 
 * Copyright (C) 2003-2005 Frederico Caldeira Knabben
4
 
 * 
5
 
 * Licensed under the terms of the GNU Lesser General Public License:
6
 
 *              http://www.opensource.org/licenses/lgpl-license.php
7
 
 * 
8
 
 * For further information visit:
9
 
 *              http://www.fckeditor.net/
10
 
 * 
11
 
 * "Support Open Source software. What about a donation today?"
12
 
 * 
13
 
 * File Name: fck_image_preview.html
14
 
 *      Preview page for the Image dialog window.
15
 
 *      Curiosity: http://www.lipsum.com/
16
 
 * 
17
 
 * File Authors:
18
 
 *              Frederico Caldeira Knabben (fredck@fckeditor.net)
19
 
-->
20
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
21
 
<html>
22
 
        <head>
23
 
                <title></title>
24
 
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
25
 
                <meta name="robots" content="noindex, nofollow">
26
 
                <link href="../common/fck_dialog_common.css" rel="stylesheet" type="text/css" />
27
 
                <script language="javascript">
28
 
 
29
 
// Sets the Skin CSS
30
 
document.write( '<link href="' + window.parent.FCKConfig.SkinPath + 'fck_dialog.css" type="text/css" rel="stylesheet">' ) ;
31
 
 
32
 
if ( window.parent.FCKConfig.BaseHref.length > 0 )
33
 
        document.write( '<base href="' + window.parent.FCKConfig.BaseHref + '">' ) ;
34
 
 
35
 
window.onload = function()
36
 
{
37
 
        window.parent.SetPreviewElements( 
38
 
                document.getElementById( 'imgPreview' ),
39
 
                document.getElementById( 'lnkPreview' ) ) ;
40
 
}
41
 
 
42
 
                </script>
43
 
        </head>
44
 
        <body style="COLOR: #000000; BACKGROUND-COLOR: #ffffff">
45
 
                <a id="lnkPreview" onclick="return false;" style="CURSOR: default"><img id="imgPreview" onload="window.parent.UpdateOriginal();" style="DISPLAY: none"></a>Lorem 
46
 
                ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat 
47
 
                diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis 
48
 
                vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis 
49
 
                aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla 
50
 
                pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, 
51
 
                enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, 
52
 
                ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, 
53
 
                augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis 
54
 
                ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus 
55
 
                nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, 
56
 
                gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis 
57
 
                fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam 
58
 
                turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. 
59
 
                Nunc imperdiet gravida mauris.
60
 
        </body>
61
 
</html>
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
2
<!--
 
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
 
4
 * Copyright (C) 2003-2008 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
 * Preview page for the Image dialog window.
 
23
 *
 
24
 * Curiosity: http://en.wikipedia.org/wiki/Lorem_ipsum
 
25
-->
 
26
<html xmlns="http://www.w3.org/1999/xhtml">
 
27
<head>
 
28
        <title></title>
 
29
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
30
        <meta name="robots" content="noindex, nofollow" />
 
31
        <script src="../common/fck_dialog_common.js" type="text/javascript"></script>
 
32
        <script type="text/javascript">
 
33
 
 
34
var FCKTools    = window.parent.FCKTools ;
 
35
var FCKConfig   = window.parent.FCKConfig ;
 
36
 
 
37
// Set the preview CSS
 
38
document.write( FCKTools.GetStyleHtml( FCKConfig.EditorAreaCSS ) ) ;
 
39
document.write( FCKTools.GetStyleHtml( FCKConfig.EditorAreaStyles ) ) ;
 
40
 
 
41
if ( window.parent.FCKConfig.BaseHref.length > 0 )
 
42
        document.write( '<base href="' + window.parent.FCKConfig.BaseHref + '">' ) ;
 
43
 
 
44
window.onload = function()
 
45
{
 
46
        window.parent.SetPreviewElements(
 
47
                document.getElementById( 'imgPreview' ),
 
48
                document.getElementById( 'lnkPreview' ) ) ;
 
49
}
 
50
 
 
51
        </script>
 
52
</head>
 
53
<body>
 
54
        <div>
 
55
                <a id="lnkPreview" onclick="return false;" style="cursor: default">
 
56
                        <img id="imgPreview" onload="window.parent.UpdateOriginal();"
 
57
                                style="display: none" alt="" /></a>Lorem ipsum dolor sit amet, consectetuer adipiscing
 
58
                elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus
 
59
                a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis,
 
60
                nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed
 
61
                velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper
 
62
                nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices
 
63
                a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus
 
64
                faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget
 
65
                tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit,
 
66
                tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis
 
67
                id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus,
 
68
                eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur
 
69
                ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.
 
70
        </div>
 
71
</body>
 
72
</html>