| 1 | <html> |
|---|
| 2 | <head> |
|---|
| 3 | |
|---|
| 4 | <!--------------------------------------:noTabs=true:tabSize=2:indentSize=2:-- |
|---|
| 5 | -- Xinha example menu. This file is used by full_example.html within a |
|---|
| 6 | -- frame to provide a menu for generating example editors using |
|---|
| 7 | -- full_example-body.html, and full_example.js. |
|---|
| 8 | -- |
|---|
| 9 | -- $HeadURL$ |
|---|
| 10 | -- $LastChangedDate$ |
|---|
| 11 | -- $LastChangedRevision$ |
|---|
| 12 | -- $LastChangedBy$ |
|---|
| 13 | ---------------------------------------------------------------------------> |
|---|
| 14 | |
|---|
| 15 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 16 | <title>Example of Xinha</title> |
|---|
| 17 | <link rel="stylesheet" href="full_example.css" /> |
|---|
| 18 | <style type="text/css"> |
|---|
| 19 | label { display:block; } |
|---|
| 20 | </style> |
|---|
| 21 | </head> |
|---|
| 22 | |
|---|
| 23 | <body onload="xinha_init()"> |
|---|
| 24 | <h1>Xinha Examples</h1> |
|---|
| 25 | |
|---|
| 26 | <p> |
|---|
| 27 | Select from the options below and click the Show Example button to show working examples |
|---|
| 28 | on the right. |
|---|
| 29 | </p> |
|---|
| 30 | |
|---|
| 31 | <form action="full_example-body.html" target="body"> |
|---|
| 32 | <fieldset> |
|---|
| 33 | <legend>Plugins</legend> |
|---|
| 34 | <label> |
|---|
| 35 | <input type="checkbox" name="plugins" value="CSS" /> CSS |
|---|
| 36 | </label> |
|---|
| 37 | <label> |
|---|
| 38 | <input type="checkbox" name="plugins" value="DynamicCSS" /> DynamicCSS |
|---|
| 39 | </label> |
|---|
| 40 | <label> |
|---|
| 41 | <input type="checkbox" name="plugins" value="FullPage" /> FullPage |
|---|
| 42 | </label> |
|---|
| 43 | <label> |
|---|
| 44 | <input type="checkbox" name="plugins" value="FullScreen" checked /> FullScreen |
|---|
| 45 | </label> |
|---|
| 46 | <label> |
|---|
| 47 | <input type="checkbox" name="plugins" value="CharacterMap" checked /> CharacterMap |
|---|
| 48 | </label> |
|---|
| 49 | <label> |
|---|
| 50 | <input type="checkbox" name="plugins" value="ContextMenu" checked /> ContextMenu |
|---|
| 51 | </label> |
|---|
| 52 | <label> |
|---|
| 53 | <input type="checkbox" name="plugins" value="ListType" checked /> ListType |
|---|
| 54 | </label> |
|---|
| 55 | |
|---|
| 56 | <label> |
|---|
| 57 | <input type="checkbox" name="plugins" value="Stylist" checked /> Stylist |
|---|
| 58 | </label> |
|---|
| 59 | |
|---|
| 60 | <label> |
|---|
| 61 | <input type="checkbox" name="plugins" value="TableOperations" checked /> TableOperations |
|---|
| 62 | </label> |
|---|
| 63 | </fieldset> |
|---|
| 64 | |
|---|
| 65 | <fieldset> |
|---|
| 66 | <legend>PHP Plugins</legend> |
|---|
| 67 | <p> |
|---|
| 68 | These plugins require PHP in order to run. Some may have versions in other languages. |
|---|
| 69 | </p> |
|---|
| 70 | <label> |
|---|
| 71 | <input type="checkbox" name="plugins" value="SuperClean" /> SuperClean <small>(PHP)</small> |
|---|
| 72 | </label> |
|---|
| 73 | <label> |
|---|
| 74 | <input type="checkbox" name="plugins" value="SpellChecker" /> SpellChecker <small>(PHP)</small> |
|---|
| 75 | </label> |
|---|
| 76 | <label> |
|---|
| 77 | <input type="checkbox" name="plugins" value="HtmlTidy" /> HtmlTidy <small>(PHP)</small> |
|---|
| 78 | </label> |
|---|
| 79 | <label> |
|---|
| 80 | <input type="checkbox" name="plugins" value="Linker" /> Linker <small>(PHP)</small> |
|---|
| 81 | </label> |
|---|
| 82 | </fieldset> |
|---|
| 83 | |
|---|
| 84 | <label>Number of Editors: <input type="text" name="num" value="1" /></label> |
|---|
| 85 | |
|---|
| 86 | <input type="submit" value="Show Example" /> |
|---|
| 87 | </form> |
|---|
| 88 | |
|---|
| 89 | </body> |
|---|
| 90 | </html> |
|---|