Ignore:
Timestamp:
2016-04-20T22:50:52+12:00 (8 years ago)
Author:
davidb
Message:

Changes in the Java code to support the new approach taken to client-side XSLT (using Saxon-CE JS library in the browser -- see next commit). Also some better error reporting when processing XSLT files

File:
1 edited

Legend:

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

    r30360 r30477  
    345345    }
    346346
     347
     348        public static String getInterfaceTextSubstituteArgs(String value, String args_str)
     349    {
     350        String[] args = null;
     351        if (args_str != null && !args_str.equals("")) {
     352        args = StringUtils.split(args_str, ";");
     353        }
     354
     355        return Dictionary.processArgs(value,args);
     356    }
     357       
    347358    public static Node getCollectionText(String collection, String site_name, String lang, String key)
    348359    {
Note: See TracChangeset for help on using the changeset viewer.