| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 3 |
<head> |
|---|
| 4 |
<title>Installation Example 02</title> |
|---|
| 5 |
<link href="css/screen.css" rel="stylesheet" type="text/css" /> |
|---|
| 6 |
<script language="javascript" type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script> |
|---|
| 7 |
<script language="javascript" type="text/javascript"> |
|---|
| 8 |
tinyMCE.init({ |
|---|
| 9 |
mode : "textareas", |
|---|
| 10 |
theme : "advanced", |
|---|
| 11 |
theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright, justifyfull,bullist,numlist,undo,redo,link,unlink", |
|---|
| 12 |
theme_advanced_buttons2 : "", |
|---|
| 13 |
theme_advanced_buttons3 : "", |
|---|
| 14 |
theme_advanced_toolbar_location : "top", |
|---|
| 15 |
theme_advanced_toolbar_align : "left", |
|---|
| 16 |
theme_advanced_path_location : "bottom", |
|---|
| 17 |
extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]" |
|---|
| 18 |
}); |
|---|
| 19 |
</script> |
|---|
| 20 |
</head> |
|---|
| 21 |
<body> |
|---|
| 22 |
|
|---|
| 23 |
<div class="header"> |
|---|
| 24 |
<h1>Installation example 02</h1> |
|---|
| 25 |
</div> |
|---|
| 26 |
|
|---|
| 27 |
<div class="content"> |
|---|
| 28 |
<h3>Example</h3> |
|---|
| 29 |
<p>Open this page with "View source" or similar to see how the configuration is made.</p> |
|---|
| 30 |
<form method="post"> |
|---|
| 31 |
<textarea name="content" cols="85" rows="15">This is some content that will be editable with TinyMCE.</textarea> |
|---|
| 32 |
</form> |
|---|
| 33 |
</div> |
|---|
| 34 |
</div> |
|---|
| 35 |
|
|---|
| 36 |
<div class="footer"> |
|---|
| 37 |
<div class="helpindexlink"><a href="index.html">Index</a></div> |
|---|
| 38 |
<div class="copyright">Copyright © 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div> |
|---|
| 39 |
<br style="clear: both" /> |
|---|
| 40 |
</div> |
|---|
| 41 |
|
|---|
| 42 |
</body> |
|---|
| 43 |
</html> |
|---|