This blog post is
12 years old! Most likely, its content is outdated.
Especially if it's technical.
This is my first release of ZTinyMCE. ZTinyMCE makes it easy to use TinyMCE, the best Open Source WYSIWYG editor in my opinion.
We at Fry-IT use this a lot for our websites as shown in the screenshots. The ZTinyMCE product works only with Zope2. Once you have it installed and you have created a ZTinyMCE instance in your root plus a ZTinyMCE Configuration object called "tinymce.conf" all you have to do to convert a plain page of HTML with textareas to a plain page of HTML with WYSIWYG textareas is this:
<script tal:replace="structure here/tinymce.conf">
</script>
- Previous:
- Weird spam? Or just a weird girl?
31 May 2006
- Next:
- Animator vs. Animation
08 June 2006
- Related by Keyword:
- Best Atom packages of 2015
22 January 2016
- A user-friendly TinyMCE config
08 October 2009
- EditArea vs. CodePress
03 January 2008
- IssueTrackerProduct 0.7.2 released
22 May 2006
- WYSIWYG inline HTML editors
25 July 2004
- Related by Text:
- Be very careful with your add_header in Nginx! You might make your site insecure
11 February 2018
- jQuery and Highslide JS
08 January 2008
- I'm back! Peterbe.com has been renewed
05 June 2005
- Anti-McCain propaganda videos
12 August 2008
- I'm Prolog
01 May 2007
Thanks a lot Peter! (and/or Fry-IT)
Your product creates the follwing:
<script type="text/javascript" src="http://foobar.com/TinyMCE/tinymce/jscripts/tiny_mce/tiny_mce.js">
</script><script type="text/javascript">
tinyMCE.init({
mode:"textareas",
theme:"advanced",
editor_selector:"abstract_title",
[snip]
});
</script>
<script type="text/javascript" src="http://foobar.com/TinyMCE/tinymce/jscripts/tiny_mce/tiny_mce.js">
</script><script type="text/javascript">
tinyMCE.init({
mode:"textareas",
theme:"advanced",
editor_selector:"abstract_text",
[snip]
});
</script>
But it should be (at least I got it working properly like this):
<script type="text/javascript" src="http://foobar.com/TinyMCE/tinymce/jscripts/tiny_mce/tiny_mce.js">
</script><script type="text/javascript">
tinyMCE.init({
mode:"textareas",
theme:"advanced",
editor_selector:"abstract_title",
[snip]
});
tinyMCE.init({
mode:"textareas",
theme:"advanced",
editor_selector:"abstract_text",
[snip]
});
</script>
Two tinyMCE.init() within one single script. How can I achieve this with ZTinyMCE? Or am I completely wrong?
Regards,
Marc