Zip archive Serializer
http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Main
User Documentation

Serializers
Overview

Default
HTML Serializer

Core
XHTML Serializer
XML Serializer
Text Serializer
WAP/WML Serializer
SVG Serializer
SVG/XML Serializer
SVG/JPEG Serializer
SVG/PNG Serializer
SVG/TIFF Serializer
VRML Serializer
Link Serializer
Zip archive Serializer

Optional
PDF Serializer
PS Serializer
PCL Serializer
HSSF (XLS) Serializer

Zip archive Serializer

The Zip archive serializer generates a zip archive by aggregating several sources.

The input document should describe entries of the archive by means of their name (which can be a path) and their content either as URLs or inline data :

  • URLs, given by the "src" attribute, are Cocoon sources and as such can use any of the protocols handled by Cocoon, including "cocoon:" to include dynamically generated content in the archive.
  • inline data is represented by an XML document that is serialized to the zip entry using the serializer identified by the "serializer" attribute.

Example :

<zip:archive xmlns:zip="http://apache.org/cocoon/zip-archive/1.0">
  <zip:entry name="foo.html" src="cocoon://dynFoo.html"/>
  <zip:entry name="images/bar.jpeg" src="bar.jpeg"/>
  <zip:entry name="index.html" serializer="html">
    <html>
      <head>
        <title>Index page</title>
      </head>
      <body>
        Please go <a href="foo.html">there</a>
      </body>
    </html>
  </zip:entry>
</zip:archive>
  • Name: zip
  • Class: org.apache.cocoon.serialization.ZipArchiveSerializer
  • Cacheable: no
Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.