Ignore:
Timestamp:
2005-05-09T15:07:41+12:00 (19 years ago)
Author:
kjdon
Message:

in the handler.parse call replaced file.toString() with file.toURI().toString() cos the former didn't work on windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ant-install-branch/gsdl3/src/java/org/greenstone/gsdl3/gs3build/util/HTMLTidy.java

    r8710 r9845  
    9393        handler.setContentHandler(this);
    9494        handler.setProperty("http://xml.org/sax/properties/lexical-handler", commentHandler);
    95         handler.parse(file.toString());
     95        handler.parse(file.toURI().toString());
    9696    }
    9797    catch (java.io.IOException io)
    9898        {
     99        System.out.println(io);
    99100        }
    100101    catch (org.xml.sax.SAXException saxEx)
Note: See TracChangeset for help on using the changeset viewer.