summaryrefslogtreecommitdiffstats
path: root/extensions/tinymce/examples/simple.html
diff options
context:
space:
mode:
authorBret McMillan <bretm@redhat.com>2008-11-10 16:45:56 -0500
committerBret McMillan <bretm@redhat.com>2008-11-10 16:45:56 -0500
commit48e497b2b009e5b9d2137e2df8dab1639af1bb30 (patch)
treed054b3999f379b3881a9ab89b03723b44d86adc1 /extensions/tinymce/examples/simple.html
parentd2feb8c22a91df6bf306320f0bc14034c39c2789 (diff)
downloadmediawiki-stuff-48e497b2b009e5b9d2137e2df8dab1639af1bb30.tar.gz
mediawiki-stuff-48e497b2b009e5b9d2137e2df8dab1639af1bb30.tar.xz
mediawiki-stuff-48e497b2b009e5b9d2137e2df8dab1639af1bb30.zip
initial tinymce support for mediawiki
Diffstat (limited to 'extensions/tinymce/examples/simple.html')
-rw-r--r--extensions/tinymce/examples/simple.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/extensions/tinymce/examples/simple.html b/extensions/tinymce/examples/simple.html
new file mode 100644
index 0000000..7bc1ec8
--- /dev/null
+++ b/extensions/tinymce/examples/simple.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Simple theme example</title>
+
+<!-- TinyMCE -->
+<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
+<script type="text/javascript">
+ tinyMCE.init({
+ mode : "textareas",
+ theme : "simple"
+ });
+</script>
+<!-- /TinyMCE -->
+
+</head>
+<body>
+
+<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
+ <h3>Simple theme example</h3>
+
+ <p>
+ This page shows you the simple theme and it's core functionality you can extend it by changing the code use the advanced theme if you need to configure/add more buttons etc.
+ There are more examples on how to use TinyMCE in the <a href="http://wiki.moxiecode.com/examples/tinymce/">Wiki</a>.
+ </p>
+
+ <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
+ <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
+ &lt;p&gt;
+ &lt;img src="media/logo.jpg" alt=" " hspace="5" vspace="5" width="250" height="48" align="right" /&gt; TinyMCE is a platform independent web based Javascript HTML &lt;strong&gt;WYSIWYG&lt;/strong&gt; editor control released as Open Source under LGPL by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances. TinyMCE is very easy to integrate into other Content Management Systems.
+ &lt;/p&gt;
+ &lt;p&gt;
+ We recommend &lt;a href="http://www.getfirefox.com" target="_blank"&gt;Firefox&lt;/a&gt; and &lt;a href="http://www.google.com" target="_blank"&gt;Google&lt;/a&gt; &lt;br /&gt;
+ &lt;/p&gt;
+ </textarea>
+
+ <br />
+ <input type="submit" name="save" value="Submit" />
+ <input type="reset" name="reset" value="Reset" />
+</form>
+
+</body>
+</html>