PluginProbe
Wp-Insert / 1.2
Wp-Insert v1.2
trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.3.0 1.3.1 1.3.3 1.4 1.5.0 1.5.1 1.5.2 1.5.3 1.6.0 1.6.1 1.6.2 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 2.0 All 63 releases
wp-insert / fckeditor / _samples / html / assets / sample11_frame.html

sample11_frame.html in Wp-Insert 1.2, at fckeditor/_samples/html/assets/sample11_frame.html

139 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <!--
2
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
5 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
6
7 *
8
9 * == BEGIN LICENSE ==
10
11 *
12
13 * Licensed under the terms of any of the following licenses at your
14
15 * choice:
16
17 *
18
19 * - GNU General Public License Version 2 or later (the "GPL")
20
21 * http://www.gnu.org/licenses/gpl.html
22
23 *
24
25 * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
26
27 * http://www.gnu.org/licenses/lgpl.html
28
29 *
30
31 * - Mozilla Public License Version 1.1 or later (the "MPL")
32
33 * http://www.mozilla.org/MPL/MPL-1.1.html
34
35 *
36
37 * == END LICENSE ==
38
39 *
40
41 * Sample page.
42
43 -->
44
45 <html xmlns="http://www.w3.org/1999/xhtml">
46
47 <head>
48
49 <title>FCKeditor - Sample</title>
50
51 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
52
53 <meta name="robots" content="noindex, nofollow" />
54
55 <link href="../sample.css" rel="stylesheet" type="text/css" />
56
57 <script type="text/javascript" src="../../../fckeditor.js"></script>
58
59 </head>
60
61 <body>
62
63 <form action="../../php/sampleposteddata.php" method="post" target="_blank">
64
65 Normal text field:<br />
66
67 <input name="NormaText" value="Plain Text" />
68
69 <br />
70
71 <br />
72
73 FCKeditor 1:
74
75 <script type="text/javascript">
76
77 <!--
78
79 // Automatically calculates the editor base path based on the _samples directory.
80
81 // This is usefull only for these samples. A real application should use something like this:
82
83 // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
84
85 var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
86
87
88
89 var oFCKeditor = new FCKeditor( 'FCKeditor_1' ) ;
90
91 oFCKeditor.BasePath = sBasePath ;
92
93 oFCKeditor.Height = 100 ;
94
95 oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
96
97 oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
98
99 oFCKeditor.Create() ;
100
101 //-->
102
103 </script>
104
105 <br />
106
107 FCKeditor 2:
108
109 <script type="text/javascript">
110
111 <!--
112
113 oFCKeditor = new FCKeditor( 'FCKeditor_2' ) ;
114
115 oFCKeditor.BasePath = sBasePath ;
116
117 oFCKeditor.Height = 100 ;
118
119 oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
120
121 oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
122
123 oFCKeditor.Create() ;
124
125 //-->
126
127 </script>
128
129 <br />
130
131 <input type="submit" value="Submit" />
132
133 </form>
134
135 </body>
136
137 </html>
138
139