phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/js/fckeditor/_samples/html sample11.ht...


From: Dave Hall
Subject: [Phpgroupware-cvs] phpgwapi/js/fckeditor/_samples/html sample11.ht...
Date: Mon, 25 Sep 2006 09:06:11 +0000

CVSROOT:        /cvsroot/phpgwapi
Module name:    phpgwapi
Changes by:     Dave Hall <skwashd>     06/09/25 09:06:11

Added files:
        js/fckeditor/_samples/html: sample11.html sample11_frame.html 

Log message:
        missing files

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/js/fckeditor/_samples/html/sample11.html?cvsroot=phpgwapi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/js/fckeditor/_samples/html/sample11_frame.html?cvsroot=phpgwapi&rev=1.1

Patches:
Index: sample11.html
===================================================================
RCS file: sample11.html
diff -N sample11.html
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ sample11.html       25 Sep 2006 09:06:11 -0000      1.1
@@ -0,0 +1,39 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<!--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2006 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sample11.html
+ *     Sample page.
+ * 
+ * File Authors:
+ *             Frederico Caldeira Knabben (address@hidden)
+-->
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<head>
+       <title>FCKeditor - Sample</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" />
+</head>
+<body>
+       <h1>
+               FCKeditor - JavaScript - Sample 11</h1>
+       <div>
+               This sample shows a form with two FCKeditor instance loaded 
inside an IFRAME. Both instances share the same
+               toolbar, available in the main page (top).
+       </div>
+       <hr />
+       <div id="xToolbar"></div>
+       <hr />
+       <iframe src="sample11_frame.html" width="100%" height="300"></iframe>
+</body>
+</html>

Index: sample11_frame.html
===================================================================
RCS file: sample11_frame.html
diff -N sample11_frame.html
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ sample11_frame.html 25 Sep 2006 09:06:11 -0000      1.1
@@ -0,0 +1,65 @@
+<!--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2006 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sample11_frame.html
+ *     Sample page.
+ * 
+ * File Authors:
+ *             Frederico Caldeira Knabben (address@hidden)
+-->
+<html xmlns="http://www.w3.org/1999/xhtml";>
+<head>
+       <title>FCKeditor - Sample</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 type="text/javascript" src="../../fckeditor.js"></script>
+</head>
+<body>
+       <form action="sampleposteddata.asp" method="post" target="_blank">
+               Normal text field:<br />
+               <input name="NormaText" value="Plain Text" />
+               <br />
+               <br />
+               FCKeditor 1:
+               <script type="text/javascript">
+<!--
+// Automatically calculates the editor base path based on the _samples 
directory.
+// This is usefull only for these samples. A real application should use 
something like this:
+// oFCKeditor.BasePath = '/fckeditor/' ;       // '/fckeditor/' is the default 
value.
+var sBasePath = 
document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples'))
 ;
+
+var oFCKeditor = new FCKeditor( 'FCKeditor_1' ) ;
+oFCKeditor.BasePath    = sBasePath ;
+oFCKeditor.Height = 100 ;
+oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
+oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using 
<a href="http://www.fckeditor.net/";>FCKeditor</a>.' ;
+oFCKeditor.Create() ;
+//-->
+               </script>
+               <br />
+               FCKeditor 2:
+               <script type="text/javascript">
+<!--
+oFCKeditor = new FCKeditor( 'FCKeditor_2' ) ;
+oFCKeditor.BasePath    = sBasePath ;
+oFCKeditor.Height = 100 ;
+oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;
+oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using 
<a href="http://www.fckeditor.net/";>FCKeditor</a>.' ;
+oFCKeditor.Create() ;
+//-->
+               </script>
+               <br />
+               <input type="submit" value="Submit" />
+       </form>
+</body>
+</html>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]