Recent demand for loosely coupling (no monkey-patching) RTE and Zope made me search for the easiest thing that could possibly work. I decided to use TinyMCE, a self-contained Rich-Text-Editor written in Javascript and - as you will see in a few seconds - easy to integrate with Zope (any version).
You need to download the TinyMCE […]
Archive for November, 2006
Just a tiny patch to make LocalFS run with Zope2.10+.
In file ‘LocalFS/LocalFS.py’ replace
from OFS.content_types import find_binary
with
from zope.contenttype import find_binary
I prefer using elementtree over the xml.dom modules. While it is included with Python2.5 it needs to be installed and configured for current Zope releases.
There is zope.etree by Michael Kerrin for Zope3 (and Five).
For older Zope releases you need to resort to ExternalMethods or - even better - you could enable the module […]

