Changeset 6291


Ignore:
Timestamp:
2003-12-17T13:26:10+13:00 (20 years ago)
Author:
cs025
Message:

Removed Tidy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/gs3build/xpointer/XPointer.java

    r6290 r6291  
    99import org.w3c.dom.*;
    1010import org.apache.xpath.*;
    11 import org.w3c.tidy.Tidy;
    1211
    1312import org.xml.sax.SAXException;
     
    201200      Document document;
    202201      if (args[0].endsWith(".html") || args[0].endsWith(".htm")) {
    203     Tidy tidy = new Tidy();
    204     tidy.setMakeClean(true);
    205     tidy.setXmlTags(true);
    206     document = tidy.parseDOM(new java.io.FileInputStream(file), null);
    207 
    208202    HTMLTidy tidier = new HTMLTidy(file);
    209203    document = tidier.getDocument();
Note: See TracChangeset for help on using the changeset viewer.