creating static html by export out of ZOPE
Hi, I'm using ZOPE for our intranet content, but now I'd like to publish some information on our website. On this URL we haven't support for ZOPE or PYTHON. Therefore I'm looking for a possiblity to export our static content into static HTML. Is there a possiblity to create something like that? Thanks in advance, Oliver
Maybe by using wget? --On Freitag, 18. Oktober 2002 11:23 +0200 Oliver Rothland <zope@dve-consulting.com> wrote:
I'm using ZOPE for our intranet content, but now I'd like to publish some information on our website.
On this URL we haven't support for
--------------------------------------------------------------------- - Andreas Jung http://www.andreas-jung.com - - EMail: andreas at andreas-jung.com - - "Life is too short to (re)write parsers" - ---------------------------------------------------------------------
Create an python script that writes content C to file name N. In Zope, create an External Method with parameters C and N that points to this script and passes those values. Then create a DTML Method that iterates over objectValues and passes the output (C) and id (N) of each DTML Method / Document to the External Method. Call your DTML Method on the folder you wish to export and voila! Might take some testing to get it just right, but the basic approach should work. If you have a site that consists of a lot of folders, you may also wish to have your DTML Method traverse inward from the site root and pass along path info to your external script. HTH, Dylan At 11:23 AM 10/18/2002 +0200, you wrote:
Hi,
I'm using ZOPE for our intranet content, but now I'd like to publish some information on our website.
On this URL we haven't support for ZOPE or PYTHON. Therefore I'm looking for a possiblity to export our static content into static HTML.
Is there a possiblity to create something like that?
Thanks in advance, Oliver
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (3)
-
Andreas Jung -
Dylan Reinhardt -
Oliver Rothland