1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <html>
<head>
<script type="text/javascript" src="modules/Tinymce/jscripts/tiny_mce/tiny_mce.js">
</script>
<script type="text/javascript">
tinyMCE.init({
mode : "exact",
elements : "contenu",
theme : "advanced",
language : "fr",
plugins : "directionality,table,advimage,fullscreen,preview,emotions,insertdatetime,save,directionality,xhtmlxtras",
theme_advanced_buttons1 :"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,sub,sup,charmap,|,undo,redo,|,outdent,indent,|,link,unlink,|,insertdate",
theme_advanced_buttons2 :"forecolor,backcolor,|,fontsizeselect,fontselect,formatselect,|,image,emotions,|,cleanup,removeformat,|,fullscreen,preview,|,code",
theme_advanced_buttons3 :"ltr,rtl,hr,|,tablecontrols",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "right",
theme_advanced_statusbar_location : "bottom",
content_css : "../templates/TinyMCE.css",
plugin_insertdate_dateFormat : "%d/%m/%Y",
plugin_insertdate_timeFormat : "%H:%M:%S",
extended_valid_elements : "hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style],a[href|name]",
theme_advanced_resize_horizontal : true,
theme_advanced_resizing : true
});
</script>
</head>
<body>
<textarea id="contenu" name="contenu" ></textarea>
</body>
</html> |