Quellcode durchsuchen

Stops automatic switching of Xalan to the XercesLiaison class and the Xerces DOM

[Kelly Campbell]


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193825 13f79535-47bb-0310-9956-ffa450edef68
pull/32/head
fotis vor 23 Jahren
Ursprung
Commit
c25dbb25d3
3 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. BIN
      lib/Xslt$StylesheetCache.class
  2. BIN
      lib/Xslt.class
  3. 3
    3
      lib/Xslt.java

BIN
lib/Xslt$StylesheetCache.class Datei anzeigen


BIN
lib/Xslt.class Datei anzeigen


+ 3
- 3
lib/Xslt.java Datei anzeigen

@@ -61,8 +61,7 @@ import java.util.*;
import org.apache.xalan.xslt.*;
import org.w3c.dom.*;
import org.xml.sax.SAXException;
import org.w3c.dom.*;
import org.xml.sax.SAXException;


/**
* Task to call the XSLT processor Xalan (part of xml.apache.org), which converts xml files
@@ -213,7 +212,8 @@ public class Xslt extends Task {
xsltfile + "\nout: " + outfile);
System.out.println("============================");

stylesheet.process(xmlSource, xmlResult);
stylesheet.process(XSLTProcessorFactory.getProcessor(new org.apache.xalan.xpath.xdom.XercesLiaison()),
xmlSource, xmlResult);

} //end transform


Laden…
Abbrechen
Speichern