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-2007 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 * Page used to select the sample to view.
23-->
24<html xmlns="http://www.w3.org/1999/xhtml">
25<head>
26	<title>FCKeditor - Sample Selection</title>
27	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
28	<meta name="robots" content="noindex, nofollow" />
29	<link href="sample.css" rel="stylesheet" type="text/css" />
30	<script type="text/javascript">
31
32if ( window.top == window )
33	document.location = 'default.html' ;
34
35function OpenSample( sample )
36{
37	if ( sample.length > 0 )
38		window.open( sample, 'Sample' ) ;
39}
40
41	</script>
42</head>
43<body style="margin-top: 0px; margin-bottom: 0px;">
44	<table border="0" cellpadding="0" cellspacing="0" style="height: 100%">
45		<tr>
46			<td>
47				Please select the sample you want to view:
48				<br />
49				<select onchange="OpenSample(this.value);">
50					<optgroup label="JavaScript">
51						<option value="html/sample01.html" selected="selected">JavaScript : Sample 01 : Editor
52							with all features</option>
53						<option value="html/sample02.html">JavaScript : Sample 02 : Replacement of a TEXTAREA</option>
54						<option value="html/sample03.html">JavaScript : Sample 03 : Multi-language support</option>
55						<option value="html/sample04.html">JavaScript : Sample 04 : Toolbar selection</option>
56						<option value="html/sample05.html">JavaScript : Sample 05 : Skins support</option>
57						<option value="html/sample06.html">JavaScript : Sample 06 : Plugins support</option>
58						<option value="html/sample07.html">JavaScript : Sample 07 : Full Page editing</option>
59						<option value="html/sample08.html">JavaScript : Sample 08 : Editor API usage</option>
60						<option value="html/sample09.html">JavaScript : Sample 09 : Complex form (multiple editors)</option>
61						<option value="html/sample10.html">JavaScript : Sample 10 : Shared toolbar on same page</option>
62						<option value="html/sample11.html">JavaScript : Sample 11 : Shared toolbar from IFRAME</option>
63						<option value="html/sample12.html">JavaScript : Sample 12 : Enter key behavior</option>
64						<option value="html/sample13.html">JavaScript : Sample 13 : Dinamically switching with a Textarea</option>
65					</optgroup>
66					<optgroup label="&nbsp;">
67					</optgroup>
68					<optgroup label="Active Fox Pro">
69						<option value="afp/sample01.afp">AFP : Sample 01 : Editor with all features</option>
70						<option value="afp/sample02.afp">AFP : Sample 02 : Multi-language support</option>
71						<option value="afp/sample03.afp">AFP : Sample 03 : Toolbar selection</option>
72						<option value="afp/sample04.afp">AFP : Sample 04 : Skins support</option>
73					</optgroup>
74					<optgroup label="&nbsp;">
75					</optgroup>
76					<optgroup label="ASP">
77						<option value="asp/sample01.asp">ASP : Sample 01 : Editor with all features</option>
78						<option value="asp/sample02.asp">ASP : Sample 02 : Multi-language support</option>
79						<option value="asp/sample03.asp">ASP : Sample 03 : Toolbar selection</option>
80						<option value="asp/sample04.asp">ASP : Sample 04 : Skins support</option>
81					</optgroup>
82					<optgroup label="&nbsp;">
83					</optgroup>
84					<optgroup label="ColdFusion">
85						<option value="cfm/sample01.cfm">ColdFusion : Sample 01 : Editor with all features</option>
86						<option value="cfm/sample02_mx.cfm">ColdFusion : Sample 02 : Advanced version for ColdFusion
87							MX</option>
88					</optgroup>
89					<optgroup label="&nbsp;">
90					</optgroup>
91					<optgroup label="Lasso">
92						<option value="lasso/sample01.lasso">Lasso : Sample 01 : Editor with all features</option>
93						<option value="lasso/sample02.lasso">Lasso : Sample 02 : Multi-language support</option>
94						<option value="lasso/sample03.lasso">Lasso : Sample 03 : Toolbar selection</option>
95						<option value="lasso/sample04.lasso">Lasso : Sample 04 : Skins support</option>
96					</optgroup>
97					<optgroup label="&nbsp;">
98					</optgroup>
99					<optgroup label="Perl">
100						<option value="perl/sample01.cgi">Perl : Sample 01 : Editor with all features</option>
101						<option value="perl/sample02.cgi">Perl : Sample 02 : Multi-language support</option>
102						<option value="perl/sample03.cgi">Perl : Sample 03 : Toolbar selection</option>
103						<option value="perl/sample04.cgi">Perl : Sample 04 : Skins support</option>
104					</optgroup>
105					<optgroup label="&nbsp;">
106					</optgroup>
107					<optgroup label="PHP">
108						<option value="php/sample01.php">PHP : Sample 01 : Editor with all features</option>
109						<option value="php/sample02.php">PHP : Sample 02 : Multi-language support</option>
110						<option value="php/sample03.php">PHP : Sample 03 : Toolbar selection</option>
111						<option value="php/sample04.php">PHP : Sample 04 : Skins support</option>
112					</optgroup>
113					<optgroup label="&nbsp;">
114					</optgroup>
115					<optgroup label="Python">
116						<option value="py/sample01.py">Python : Sample 01 : Editor with all features</option>
117					</optgroup>
118				</select>
119			</td>
120		</tr>
121	</table>
122</body>
123</html>
124