Bug 5917 / Bug 6085 : Fixing not being able to change language
[koha.git] / koha-tt / intranet-tmpl / prog / en / js / tinymce / examples / example_simple.htm
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <html xmlns="http://www.w3.org/1999/xhtml">\r
3 <head>\r
4 <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />\r
5 <title>Simple example</title>\r
6 <!-- tinyMCE -->\r
7 <script language="javascript" type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>\r
8 <script language="javascript" type="text/javascript">\r
9         // Notice: The simple theme does not use all options some of them are limited to the advanced theme\r
10         tinyMCE.init({\r
11                 mode : "textareas",\r
12                 theme : "simple"\r
13         });\r
14 </script>\r
15 <!-- /tinyMCE -->\r
16 \r
17 </head>\r
18 <body>\r
19 \r
20 <a href="example_full.htm">[Full featured example]</a> <a href="example_advanced.htm">[Advanced example]</a> [Simple example] <a href="example_word.htm">[Word example]</a>\r
21 \r
22 <form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">\r
23 <h3>Simple example</h3>\r
24 This page shows how to use TinyMCE on a HTML page in the most common and simple way. On this page each TEXTAREA\r
25 element gets converted to a editor instance on page load. Notice how TinyMCE tries to match the width and height of the old text area elements. Read more about the features and settings of TinyMCE in the <a href="../docs/index.html">manual</a>.<br /><br />\r
26 \r
27 <textarea id="elm1" name="elm1" rows="10" cols="40">\r
28         Some &lt;b&gt;element&lt;/b&gt;, this is to be editor 1.\r
29         &lt;p&gt;Some paragraph. &lt;a href=&quot;http://www.sourceforge.net&quot;&gt;Some link&lt;/a&gt;&lt;/p&gt;\r
30         &lt;img src=&quot;logo.jpg&quot;&gt;\r
31 </textarea>\r
32 \r
33 <br />\r
34 \r
35 <textarea id="elm2" name="elm2" rows="15" cols="32">\r
36         Some &lt;b&gt;element&lt;/b&gt;, this is to be editor 2.\r
37         &lt;p&gt;Some paragraph. &lt;a href=&quot;http://www.sourceforge.net&quot;&gt;Some link&lt;/a&gt;&lt;/p&gt;\r
38         &lt;img src=&quot;logo.jpg&quot;&gt;\r
39 </textarea>\r
40 <br />\r
41         <input type="submit" name="save" value="Submit" />\r
42         <input type="reset" name="reset" value="Reset" />\r
43 </form>\r
44 \r
45 </body>\r
46 </html>\r