Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16211/phpslash-skins/include/templates/en/ShankZen
Added Files:
slashHead-tinymce.tpl
Log Message:
Submission form uses tinyMCE textarea editor.
--- NEW FILE: slashHead-tinymce.tpl ---
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- START slashHead-tinymce.tpl -->
<html>
<head>
<title>{SITE_NAME} :: {SITETITLE}</title> <!-- {SECTION} :: -->
<!-- theme design: Peter Cruickshank < in...@cr... > -->
<!-- Enter Your Desired META Tags Below Here -->
<!-- This Meta Tag is Defined In Each Page By Setting The Variable
$xsiteobject = "HomePage"; to the page type HomePage, Glossary,
Info, etc.. -->
<meta name="object" content="{XSITEOBJECT}" />
<!-- Enter Your META Tags Above Here -->
<!-- BEGIN each_metatag -->
<meta name="{METANAME}" content="{METADESCRIPTION}" />
<!-- END each_metatag -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" />
<link rel="alternate" type="application/atom+xml" title="RSS" href="{ROOTDIR}/backend.php?view=atom" />
<link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}/{CSS}.css" />
<style type="text/css" media="screen">@import "{ROOTDIR}/styles/{SKIN}/{CSS}_ext.css";</style>
<link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}/{CSS}_print.css" media="print"/>
<!-- BEGIN tinymce Javascript -->
<script type="text/javascript" src="{ROOTDIR}/scripts/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
<script type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "advanced",
plugins : "advimage,advlink,emotions,iespell,insertdatetime,preview,zoom",
theme_advanced_buttons1_add : "",
theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom",
theme_advanced_buttons3_add : "",
plugin_insertdate_dateFormat : "%Y-%m-%d",
plugin_insertdate_timeFormat : "%H:%M:%S",
content_css : "{ROOTDIR}/styles/{SKIN}/{CSS}.css",
extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout],font[face|size|color]"
});
// this function will get called at body.onload
function initEditor() {
//---------------------------------------------------------------------
};
function PSL_chooseEditor(onLoad) {
// IE 5.5 - Eliminating reload() because it pulled down new form data
if (document.editNew && document.designMode) {
if (document.all) {
// HTML or htmlArea
if (document.editNew.content_type[0].checked) {
initEditor();
}
// W3C/Moz 1.3+ - reload() without adjusting form data
} else {
// HTML or htmlArea
if (document.editNew.content_type[0].checked) {
initEditor();
}
}
}
}
</script>
<!-- END tinymce Javascript -->
</head>
<body onload="PSL_chooseEditor()">
<a name="top"> </a>
<table id="header" width=80%>
<tr><td>
<div style="vertical-align:bottom">
<div class="psl-logo">
<a href="{ROOTDIR}/"><img src="{IMAGEDIR}/topics/topicphpslash.gif" alt="{SITE_NAME}" border="0" width="100" height="40"/></a>
</div>
<div class="psl-title">
{SITETITLE}
</div>
</div>
<!-- Search box
<div class="psl-search">
<form method="get" action="{SEARCH_ACTION_URL}">
<input type="text" name="query" value="" size="15" class="psl-text" />
<input type="submit" value="Search" class="psl-button" />
<input type="hidden" name="topic_id" value="" />
<input type="hidden" name="section_id" value="" />
<input type="hidden" name="author_id" value="" />
</form>
</div> end: search -->
<!-- TOPICBAR -->
</td></tr>
<tr><td>
{NAVBAR}
</td></tr>
</table> <!-- end: header -->
<!-- END slashHead-tinymce.tpl -->
|