| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <!-- |
|---|
| 3 | * FCKeditor - The text editor for internet |
|---|
| 4 | * Copyright (C) 2003-2006 Frederico Caldeira Knabben |
|---|
| 5 | * |
|---|
| 6 | * Licensed under the terms of the GNU Lesser General Public License: |
|---|
| 7 | * http://www.opensource.org/licenses/lgpl-license.php |
|---|
| 8 | * |
|---|
| 9 | * For further information visit: |
|---|
| 10 | * http://www.fckeditor.net/ |
|---|
| 11 | * |
|---|
| 12 | * "Support Open Source software. What about a donation today?" |
|---|
| 13 | * |
|---|
| 14 | * File Name: sample01.html |
|---|
| 15 | * Sample page. |
|---|
| 16 | * |
|---|
| 17 | * File Authors: |
|---|
| 18 | * Frederico Caldeira Knabben (fredck@fckeditor.net) |
|---|
| 19 | --> |
|---|
| 20 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 21 | <head> |
|---|
| 22 | <title>FCKeditor - Sample</title> |
|---|
| 23 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 24 | <meta name="robots" content="noindex, nofollow" /> |
|---|
| 25 | <link href="../sample.css" rel="stylesheet" type="text/css" /> |
|---|
| 26 | <script type="text/javascript" src="../../fckeditor.js"></script> |
|---|
| 27 | </head> |
|---|
| 28 | <body> |
|---|
| 29 | <h1> |
|---|
| 30 | FCKeditor - JavaScript - Sample 1 |
|---|
| 31 | </h1> |
|---|
| 32 | This sample displays a normal HTML form with an FCKeditor with full features enabled. |
|---|
| 33 | </div> |
|---|
| 34 | <div> |
|---|
| 35 | <a href="sample01.html" >Click here to see editor improperly get focus.</a> |
|---|
| 36 | </div> |
|---|
| 37 | <hr /> |
|---|
| 38 | <form action="sampleposteddata.asp" method="post" target="_blank"> |
|---|
| 39 | <script type="text/javascript"> |
|---|
| 40 | <!-- |
|---|
| 41 | // Automatically calculates the editor base path based on the _samples directory. |
|---|
| 42 | // This is usefull only for these samples. A real application should use something like this: |
|---|
| 43 | // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. |
|---|
| 44 | var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ; |
|---|
| 45 | |
|---|
| 46 | var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; |
|---|
| 47 | oFCKeditor.BasePath = sBasePath ; |
|---|
| 48 | oFCKeditor.Height = 300 ; |
|---|
| 49 | oFCKeditor.Value = 'This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.' ; |
|---|
| 50 | oFCKeditor.Create() ; |
|---|
| 51 | //--> |
|---|
| 52 | </script> |
|---|
| 53 | <br /> |
|---|
| 54 | <input type="submit" value="Submit" /> |
|---|
| 55 | </form> |
|---|
| 56 | </body> |
|---|
| 57 | </html> |
|---|