Changeset 33046


Ignore:
Timestamp:
2019-05-03T22:11:43+12:00 (5 years ago)
Author:
ak19
Message:

After previous commit of URL encoding params in QUERY_STRING sent from Java to Perl, Linux works (again, after strange issues) when it comes to online doc editing Title meta containing non-basic (ASCII) unicode. Function calls in commented out code need to be using renamed function names.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/build/GS2PerlConstructor.java

    r33045 r33046  
    489489    // USEFUL DEBUGGING WHEN USING DOC EDITOR TO MODIFY ex.Title META THAT CONTAINS NON-BASIC ASCII CHARS
    490490    logger.error("### Running logged command = " + command_str);
    491     logger.error("### DEBUG Running logged command = " + Misc.stringToHex(command_str));
     491    logger.error("### DEBUG Running logged command = " + Misc.debugUnicodeString(command_str));
    492492    if(envvars != null) {
    493493        for(int i = 0; i < envvars.length; i++) {
    494494            logger.error("### envvar = " + envvars[i]);
    495             logger.error("### DEBUG envvar = " + Misc.stringToHex(envvars[i]));
     495            logger.error("### DEBUG envvar = " + Misc.debugUnicodeString(envvars[i]));
    496496        }
    497497    }
Note: See TracChangeset for help on using the changeset viewer.