patbef-ServiceInside/Publisher/tinymce/tinymce.htm

68 lines
2.1 KiB
HTML
Raw Normal View History

2024-01-29 16:26:54 +01:00
<!DOCTYPE html>
<html>
<head>
<script src='js/tinymce/tinymce.min.js'></script>
<script type="text/javascript">
function GetContent() {
return tinyMCE.get('editorcontent').getContent();
}
function SetContent(htmlContent) {
tinyMCE.get('editorcontent').setContent(htmlContent);
}
</script>
<script>
tinyMCE.init({
selector: '#editorcontent',
plugins: [
'autolink link lists charmap hr anchor',
'searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime nonbreaking',
'table contextmenu directionality template paste textcolor'
],
menubar: "edit insert view format table tools",
//language: 'cs_CZ',
setup : function(ed) {
ed.on('init',function(e) {
ed.execCommand('mceFullScreen');
});
}
});
</script>
</head>
<body>
<form method="post">
<textarea id="editorcontent">
<h3>[RELEASE]</h3>
<table style="width:100%;" width="100%">
<thead>
<tr>
<th style="text-align:center">Name</th>
<th style="text-align:center">Version</th>
<th style="text-align:center">Ver<EFBFBD>ffentlicht am</th>
<th style="text-align:center">Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>[SERVICE_INSIDE]</td>
<td>[SERVICE_INSIDE_VERSION]</td>
<td>[SERVICE_INSIDE_PUBLISHED_ON]</td>
<td>[SERVICE_INSIDE_LINK]</td>
</tr>
<tr>
<td>[SERVICE_OUTSIDE]</td>
<td>[SERVICE_OUTSIDE_VERSION]</td>
<td>[SERVICE_OUTSIDE_PUBLISHED_ON]</td>
<td>[SERVICE_OUTSIDE_LINK]</td>
</tr>
</tbody>
</table>
<br />
<hr />
<h3>Change Logs</h3>
</textarea>
</form>
</body>
</html>