protected void parseArchive(
ArchiveInputStream archive, ContentHandler handler,
Metadata metadata, ParseContext context)
throws IOException, SAXException {
XHTMLContentHandler xhtml = new XHTMLContentHandler(handler, metadata);
xhtml.startDocument();
ArchiveEntry entry = archive.getNextEntry();
while (entry != null) {
if (!entry.isDirectory()) {
xhtml.startElement("div", "class", "package-entry");