Ignore:
Timestamp:
2015-02-19T16:46:29+13:00 (9 years ago)
Author:
ak19
Message:

Related to commits 29687, 29729, 29730. The changes to incorporating the new servlets.xml in web.xml when GLI launches requires additional processing for windows too, similar to the change for launching the GS3 server, which was part of the previous commit 29752.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/GSEntityResolver.java

    r29752 r29753  
    7777        String newpath = this.baseFilepath + File.separator + temp_id;     
    7878        if(Misc.isWindows()) {         
    79             newpath = "file:///" + newpath.replace("\\", "/");
    80             System.err.println("### entity resolver for "+"file:///" + newpath);           
     79            newpath = "file:///" + newpath.replace("\\", "/");         
    8180        } else { // linux version, file protocol starts with file:// and slashes are already URL-style
    8281            newpath = "file://" + newpath;
Note: See TracChangeset for help on using the changeset viewer.