Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16439/phpslash-dev/include/templates/en/basic
Added Files:
slashHead-tinymce.tpl
Log Message:
Submission form uses tinyMCE textarea editor.
--- NEW FILE: slashHead-tinymce.tpl ---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<!-- START slashHead.tpl -->
<html>
<head>
<title>{SITE_NAME} - {SITETITLE}</title>
<!-- 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/{CSS}.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{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/{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]"
});
</script>
<!-- END tinymce Javascript -->
</head>
<body>
<a name="top"></a>
<div id="header">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!-- START: Title and Search -->
<tr>
<td><a href="{ROOTDIR}/"><img src="{IMAGEDIR}/new-logo.gif" border="0" alt="" /></a></td>
<td width="50%" align="center">
<form method="get" action="{SEARCH_ACTION_URL}">
<input type="text" name=query value="" size="15" />
<input type="submit" value="Search" />
<input type="hidden" name="topic_id" value="" />
<input type="hidden" name="section_id" value="" />
<input type="hidden" name="author_id" value="" />
</form>
</td>
</tr>
</table>
<!-- END: Title and Search -->
{TOPICBAR}
{NAVBAR}
</div> <!-- id="header" -->
<!-- END slashHead.tpl -->
|