108 lines
3.7 KiB
HTML
108 lines
3.7 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<!--
|
|
* WYMeditor : what you see is What You Mean web-based editor
|
|
* Copyright (c) 2005 - 2009 Jean-Francois Hovinne, http://www.wymeditor.org/
|
|
* Dual licensed under the MIT (MIT-license.txt)
|
|
* and GPL (GPL-license.txt) licenses.
|
|
*
|
|
* For further information visit:
|
|
* http://www.wymeditor.org/
|
|
*
|
|
* File Name:
|
|
* 12-custom-layout.html
|
|
* Basic editor integration example with customisation of the default layout.
|
|
* See the documentation for more info.
|
|
*
|
|
* File Authors:
|
|
* Jean-Francois Hovinne (jf.hovinne a-t wymeditor dotorg)
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>WYMeditor</title>
|
|
<script type="text/javascript" src="../jquery/jquery.js"></script>
|
|
<script type="text/javascript" src="../wymeditor/jquery.wymeditor.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
jQuery(function() {
|
|
|
|
jQuery('.wymeditor').wymeditor({
|
|
|
|
stylesheet: 'styles.css',
|
|
|
|
//classes panel
|
|
classesItems: [
|
|
{'name': 'date', 'title': 'PARA: Date', 'expr': 'p'},
|
|
{'name': 'hidden-note', 'title': 'PARA: Hidden note',
|
|
'expr': 'p[@class!="important"]'},
|
|
{'name': 'important', 'title': 'PARA: Important',
|
|
'expr': 'p[@class!="hidden-note"]'},
|
|
{'name': 'border', 'title': 'IMG: Border', 'expr': 'img'},
|
|
{'name': 'special', 'title': 'LIST: Special', 'expr': 'ul, ol'}
|
|
],
|
|
|
|
//we customize the XHTML structure of WYMeditor by overwriting
|
|
//the value of boxHtml. In this example, "CONTAINERS" and
|
|
//"CLASSES" have been moved from "wym_area_right" to "wym_area_top":
|
|
boxHtml: "<div class='wym_box'>"
|
|
+ "<div class='wym_area_top'>"
|
|
+ WYMeditor.TOOLS
|
|
+ WYMeditor.CONTAINERS
|
|
+ WYMeditor.CLASSES
|
|
+ "</div>"
|
|
+ "<div class='wym_area_left'></div>"
|
|
+ "<div class='wym_area_right'>"
|
|
+ "</div>"
|
|
+ "<div class='wym_area_main'>"
|
|
+ WYMeditor.HTML
|
|
+ WYMeditor.IFRAME
|
|
+ WYMeditor.STATUS
|
|
+ "</div>"
|
|
+ "<div class='wym_area_bottom'>"
|
|
+ "</div>"
|
|
+ "</div>",
|
|
|
|
//postInit is a function called when WYMeditor instance is ready
|
|
//wym is the WYMeditor instance
|
|
postInit: function(wym) {
|
|
|
|
//we make all sections in area_top render as dropdown menus:
|
|
jQuery(wym._box)
|
|
//first we have to select them:
|
|
.find(".wym_area_top .wym_section")
|
|
//then we remove the existing class which make some of them render as a panels:
|
|
.removeClass("wym_panel")
|
|
//then we add the class which will make them render as a dropdown menu:
|
|
.addClass("wym_dropdown")
|
|
//finally we add some css to make the dropdown menus look better:
|
|
.css("width", "160px")
|
|
.css("float", "left")
|
|
.css("margin-right", "5px")
|
|
.find("ul")
|
|
.css("width", "140px");
|
|
|
|
//add a ">" character to the title of the new dropdown menus (visual cue)
|
|
jQuery(wym._box).find(".wym_tools, .wym_classes ")
|
|
.find(WYMeditor.H2)
|
|
.append("<span> ></span>");
|
|
}
|
|
});
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<h1>WYMeditor basic integration example with simple skin customisation</h1>
|
|
<p><a href="http://www.wymeditor.org/">WYMeditor</a> is a web-based XHTML WYSIWYM editor.</p>
|
|
<form method="post" action="">
|
|
<textarea class="wymeditor"></textarea>
|
|
<input type="submit" class="wymupdate" />
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|