Hi, I've just packed up a new release of Epoz - the cross-browser-wysiwyg-editor for Zope & Plone (and of cource all other Zope-based applications). Epoz requires IE >= 5.5, Mozilla >= 1.3.1 or Netscape >= 7.1. Where can I download Epoz? http://www.zope.org/Members/mjablonski/Epoz Can I see a demo (sorry, not updated yet)? http://mjablonski.freezope.org/epoz/test.html/edit And now the changes in no special order... - Added strikethrough-button. Now you can use Epoz to correct websites online if you are a teacher...;) - Added nice workaround for all people who want cleaner html-code from Epoz: switching the views (wysiwyg, source) automatically before submitting the form will give you browser-cleaned-up-code (Mozilla does a nice job, IE is crap anyway). - Added hungarian-translation. Thanks to Tamas Decsi and Gabor Suveg! - Fixed bug in epoz_toolbox. The default_charset was broken. Thanks to Marian Saeger for the patch! - Fixed a minor bug in the Plone-Toolbox: Images with single quotes in the title weren't opened in the popup. Thanks to Tony Addyman. - Added a dummy blank page. IE breaks over SSL if no source is given in the inline frame. Thanks to Brian Brinegar for his patches! - Sanitized the Epoz-init-string in __init__.py with dictionary. Thanks to Philipp von Weitershausen for his patch! - Improved i18n-layer. Untranslated strings will now fall back to default-english. Thanks to Sergey Volobuev for his help and patches! - fixed typo in the example in the README.txt. Thanks to Luiz Fernando. Hope you like it... Cheers, Maik
Hello Maik, Congratulations for this nice product! Can you explain this DTML line from the edit Method? <dtml-if html><dtml-call "manage_edit(_.str(html),title)"></dtml-if> Thanks, Fernando
-----Original Message----- From: zope-bounces@zope.org [mailto:zope-bounces@zope.org]On Behalf Of Maik Jablonski Sent: quarta-feira, 8 de Outubro de 2003 21:22 To: zope@zope.org Cc: plone-users@lists.sourceforge.net Subject: [Zope] FYI: Epoz 0.5.2 released
Hi,
I've just packed up a new release of Epoz - the cross-browser-wysiwyg-editor for Zope & Plone (and of cource all other Zope-based applications). Epoz requires IE >= 5.5, Mozilla >= 1.3.1 or Netscape >= 7.1.
Where can I download Epoz?
http://www.zope.org/Members/mjablonski/Epoz
Can I see a demo (sorry, not updated yet)?
http://mjablonski.freezope.org/epoz/test.html/edit
And now the changes in no special order...
- Added strikethrough-button. Now you can use Epoz to correct websites online if you are a teacher...;)
- Added nice workaround for all people who want cleaner html-code from Epoz: switching the views (wysiwyg, source) automatically before submitting the form will give you browser-cleaned-up-code (Mozilla does a nice job, IE is crap anyway).
- Added hungarian-translation. Thanks to Tamas Decsi and Gabor Suveg!
- Fixed bug in epoz_toolbox. The default_charset was broken. Thanks to Marian Saeger for the patch!
- Fixed a minor bug in the Plone-Toolbox: Images with single quotes in the title weren't opened in the popup. Thanks to Tony Addyman.
- Added a dummy blank page. IE breaks over SSL if no source is given in the inline frame. Thanks to Brian Brinegar for his patches!
- Sanitized the Epoz-init-string in __init__.py with dictionary. Thanks to Philipp von Weitershausen for his patch!
- Improved i18n-layer. Untranslated strings will now fall back to default-english. Thanks to Sergey Volobuev for his help and patches!
- fixed typo in the example in the README.txt. Thanks to Luiz Fernando.
Hope you like it...
Cheers, Maik
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
Fernando Martins wrote:
Can you explain this DTML line from the edit Method?
<dtml-if html><dtml-call "manage_edit(_.str(html),title)"></dtml-if>
Yes... <dtml-if html> # Just test, that the html-paramter is submitted in the request... <dtml-call ...> # Replace the old content with the new content from parameter html. Maybe _.str(html) isn't really needed, but I've encountered some problems with Zope marshalling the html to a wrong type, so it is just a safety-belt... </dtml-if> # That's it Cheers, Maik
Maik Jablonski wrote:
Fernando Martins wrote:
Can you explain this DTML line from the edit Method?
<dtml-if html><dtml-call "manage_edit(_.str(html),title)"></dtml-if>
That's code crying out to be in a python script if I ever saw it ;-) Chris
Chris Withers wrote:
Can you explain this DTML line from the edit Method?
<dtml-if html><dtml-call "manage_edit(_.str(html),title)"></dtml-if>
That's code crying out to be in a python script if I ever saw it ;-)
Chris, you're right, but that's only part of an example in the README.txt. Noone has to use it this way, but it demonstrates (at least it should) how you can get things working on your own. Cheers, Maik
Chris Withers:
Maik Jablonski wrote:
Fernando Martins wrote:
Can you explain this DTML line from the edit Method?
<dtml-if html><dtml-call "manage_edit(_.str(html),title)"></dtml-if>
That's code crying out to be in a python script if I ever saw it ;-)
Yeah, it was part of the reason for not understanding it (I'm used to a dual zpt pythonscript). In addition, all the names (html, etc.) seemed to be falling from the sky. Ok, it was also late in the night when I read it. ;-) Cheers, Fernando
Fernando Martins wrote:
Yeah, it was part of the reason for not understanding it (I'm used to a dual zpt pythonscript). In addition, all the names (html, etc.) seemed to be falling from the sky.
Welcome to DTMHell ;-) Chris
participants (3)
-
Chris Withers -
Fernando Martins -
Maik Jablonski