Renamed XSLT to XslTransformer.
[utils] / trunk / crawler / basic / src / org / wamblee / crawler / AbstractPageRequest.java
index 66627ca523faa4c56a112811e7ccdf9381107825..7a3755febaa6fbe8d86259500317079358567b63 100644 (file)
@@ -41,7 +41,7 @@ import org.w3c.dom.Document;
 import org.w3c.tidy.Tidy;
 import org.wamblee.xml.ClasspathUriResolver;
 import org.wamblee.xml.DOMUtility;
-import org.wamblee.xml.XSLT;
+import org.wamblee.xml.XslTransformer;
 
 /**
  * General support claas for all kinds of requests.
@@ -154,7 +154,7 @@ public abstract class AbstractPageRequest implements PageRequest {
             aMethod = executeWithRedirects(aClient, aMethod);
             byte[] xhtmlData = getXhtml(aMethod);
 
-            XSLT xsltProcessor = new XSLT(new ClasspathUriResolver());
+            XslTransformer xsltProcessor = new XslTransformer(new ClasspathUriResolver());
             Document transformed = xsltProcessor.transform(xhtmlData,
                     xsltProcessor.resolve(_xslt));
             ByteArrayOutputStream os = new ByteArrayOutputStream();