source: companies/celepar/news_admin/templates/celepar/fckeditor/to_delete/_samples/html/sample11_frame.html @ 763

Revision 763, 2.2 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1<!--
2 * FCKeditor - The text editor for internet
3 * Copyright (C) 2003-2006 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: sample11_frame.html
14 *      Sample page.
15 *
16 * File Authors:
17 *              Frederico Caldeira Knabben (fredck@fckeditor.net)
18-->
19<html xmlns="http://www.w3.org/1999/xhtml">
20<head>
21        <title>FCKeditor - Sample</title>
22        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
23        <meta name="robots" content="noindex, nofollow" />
24        <link href="../sample.css" rel="stylesheet" type="text/css" />
25        <script type="text/javascript" src="../../fckeditor.js"></script>
26</head>
27<body>
28        <form action="sampleposteddata.asp" method="post" target="_blank">
29                Normal text field:<br />
30                <input name="NormaText" value="Plain Text" />
31                <br />
32                <br />
33                FCKeditor 1:
34                <script type="text/javascript">
35<!--
36// Automatically calculates the editor base path based on the _samples directory.
37// This is usefull only for these samples. A real application should use something like this:
38// oFCKeditor.BasePath = '/fckeditor/' ;        // '/fckeditor/' is the default value.
39var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;
40
41var oFCKeditor = new FCKeditor( 'FCKeditor_1' ) ;
42oFCKeditor.BasePath     = sBasePath ;
43oFCKeditor.Height = 100 ;
44oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
45oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
46oFCKeditor.Create() ;
47//-->
48                </script>
49                <br />
50                FCKeditor 2:
51                <script type="text/javascript">
52<!--
53oFCKeditor = new FCKeditor( 'FCKeditor_2' ) ;
54oFCKeditor.BasePath     = sBasePath ;
55oFCKeditor.Height = 100 ;
56oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
57oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
58oFCKeditor.Create() ;
59//-->
60                </script>
61                <br />
62                <input type="submit" value="Submit" />
63        </form>
64</body>
65</html>
Note: See TracBrowser for help on using the repository browser.