Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/_samples
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16237/phpslash-dev/public_html/scripts/fckeditor/_samples
Added Files:
default.html sample.css sampleslist.html
Log Message:
added fckeditor to comment submittal.
--- NEW FILE: default.html ---
<!--
* FCKeditor - The text editor for internet
* Copyright (C) 2003-2004 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
*
* For further information visit:
* http://www.fckeditor.net/
*
* File Name: default.html
* Samples Frameset page.
*
* Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:46
*
* File Authors:
* Frederico Caldeira Knabben (fr...@fc...)
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
<head>
<title>FCKeditor - Samples</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
</head>
<frameset rows="60,*">
<frame src="sampleslist.html" noresize scrolling="no">
<frame name="Sample" src="html/sample01.html" noresize>
</frameset>
</html>
--- NEW FILE: sample.css ---
/*
* FCKeditor - The text editor for internet
* Copyright (C) 2003-2004 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
*
* For further information visit:
* http://www.fckeditor.net/
*
* File Name: sample.css
* Styles used in the samples pages.
*
* Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:47
*
* File Authors:
* Frederico Caldeira Knabben (fr...@fc...)
*/
body, td, input, select, textarea
{
font-size: 12px;
font-family: Arial, Verdana, Sans-Serif;
}
h1
{
font-weight: bold;
font-size: 180%;
margin-bottom: 10px;
}
form
{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
--- NEW FILE: sampleslist.html ---
<!--
* FCKeditor - The text editor for internet
* Copyright (C) 2003-2004 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
*
* For further information visit:
* http://www.fckeditor.net/
*
* File Name: sampleslist.html
* Page used to select the sample to view.
*
* Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:47
*
* File Authors:
* Frederico Caldeira Knabben (fr...@fc...)
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>FCKeditor - Sample Selection</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="sample.css" rel="stylesheet" type="text/css" />
<script language="javascript">
<!--
if ( window.top == window )
document.location = 'default.html' ;
function OpenSample( sample )
{
if ( sample.length > 0 )
window.open( sample, 'Sample' ) ;
}
//-->
</script>
</head>
<body bottommargin="0" topmargin="0">
<table height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
Please select the sample you want to view:
<br>
<select onchange="OpenSample(this.value);">
<option value="html/sample01.html" selected>Javascript : Sample 01 : Editor with all features</option>
<option value="html/sample02.html">Javascript : Sample 02 : Replacement of a TEXTAREA</option>
<option value="html/sample03.html">Javascript : Sample 03 : Multi-language support</option>
<option value="html/sample04.html">Javascript : Sample 04 : Toolbar selection</option>
<option value="html/sample05.html">Javascript : Sample 05 : Skins support</option>
<option value=""> </option>
<option value="aspx/sample01.aspx">ASP.Net : Sample 01 : Editor with all features</option>
<option value=""> </option>
<option value="cfm/sample01.cfm">ColdFusion : Sample 01 : Editor with all features</option>
<option value="cfm/sample02_mx.cfm">ColdFusion : Sample 02 : Advanced version for ColdFusion MX</option>
<option value=""> </option>
<option value="jsp/sample01.jsp">JSP : Sample 01 : Editor with all features</option>
<option value="jsp/sample02_tag.jsp">JSP : Sample 02 : Editor with all features - TagLib version</option>
</select>
</td>
</tr>
</table>
</body>
</html>
|