blob: f5d831456fe39f3548a438d6db4c61fda104cb6c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.internal.index;
import org.eclipse.help.internal.dynamic.DocumentReader;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class IndexDocumentReader extends DocumentReader {
@Override
protected void prepareDocument(Document document) {
prune(document.getDocumentElement());
}
private void prune(Node element) {
NodeList nodes = element.getChildNodes();
Node node = nodes.item(0);
while (node != null) {
short nodeType = node.getNodeType();
if (nodeType == Node.TEXT_NODE || nodeType == Node.COMMENT_NODE) {
Node nodeToDelete = node;
node = node.getNextSibling();
element.removeChild(nodeToDelete);
} else if (nodeType == Node.ELEMENT_NODE) {
String kind = node.getNodeName();
if ("topic".equalsIgnoreCase(kind)) { //$NON-NLS-1$
fixTopicAttributes((Element)node);
}
prune(node);
node = node.getNextSibling();
} else {
node = node.getNextSibling();
}
}
}
private void fixTopicAttributes(Element topic) {
String title = topic.getAttribute("name"); //$NON-NLS-1$
if (title != null && title.length() > 0) {
topic.setAttribute("label", title); //$NON-NLS-1$
topic.removeAttribute("name"); //$NON-NLS-1$
}
}
}