From b9609bdf60ebb38d158f9b03a102e0337ceb8a5b Mon Sep 17 00:00:00 2001 From: Claude Mamo Date: Thu, 25 Jun 2020 10:08:47 +0200 Subject: [PATCH] Removed legacy code (#9) --- .../META-INF/xsd/smooks/freemarker-1.1.xsd | 151 ------------------ .../xsd/smooks/freemarker-1.1.xsd-smooks.xml | 121 -------------- .../resources/META-INF/xsd/smooks/xsl-1.1.xsd | 151 ------------------ .../xsd/smooks/xsl-1.1.xsd-smooks.xml | 121 -------------- .../FreeMarkerProgramaticConfigTest.java | 8 +- .../freemarker/route-to-stream-01.cdrl | 4 +- .../freemarker/route-to-stream-02.cdrl | 4 +- .../freemarker/test-configs-01-NS.cdrl | 2 +- .../freemarker/test-configs-01-SAX.cdrl | 2 +- .../freemarker/test-configs-01.cdrl | 2 +- .../freemarker/test-configs-02.cdrl | 2 +- .../freemarker/test-configs-03.cdrl | 4 +- .../freemarker/test-configs-04-SAX.cdrl | 2 +- .../freemarker/test-configs-04.cdrl | 2 +- .../freemarker/test-configs-05.cdrl | 6 +- .../freemarker/test-configs-06.cdrl | 2 +- .../freemarker/test-configs-07.cdrl | 6 +- .../freemarker/test-configs-addto.cdrl | 2 +- .../freemarker/test-configs-ext-03.cdrl | 2 +- .../freemarker/test-configs-ext-05.cdrl | 4 +- .../freemarker/test-configs-ext-07.cdrl | 4 +- .../test-configs-ext-outputToOutStream.cdrl | 4 +- .../freemarker/test-configs-include.cdrl | 2 +- .../freemarker/test-configs-insert-after.cdrl | 2 +- .../test-configs-insert-before.cdrl | 2 +- .../test-configs-no-default-ser.cdrl | 2 +- .../freemarker/test-configs-replace.cdrl | 2 +- .../soapshipping/ftl/trans-response.cdrl | 2 +- .../soapshipping/st/trans-request.cdrl | 2 +- .../soapshipping/st/trans-response.cdrl | 2 +- .../soapshipping/st/v4/trans-request.cdrl | 2 +- .../soapshipping/st/v4/trans-response.cdrl | 2 +- .../soapshipping/xslt/trans-request.cdrl | 2 +- .../soapshipping/xslt/trans-response.cdrl | 2 +- .../acmesecsample/acme-creds.cdrl | 2 +- .../stringtemplate/route-to-stream-01.cdrl | 4 +- .../stringtemplate/route-to-stream-02.cdrl | 4 +- .../stringtemplate/test-configs-02.cdrl | 2 +- .../stringtemplate/test-configs.cdrl | 2 +- .../v4/acmesecsample/acme-creds.cdrl | 2 +- .../stringtemplate/v4/route-to-stream-01.cdrl | 4 +- .../stringtemplate/v4/route-to-stream-02.cdrl | 4 +- .../stringtemplate/v4/test-configs-02.cdrl | 2 +- .../stringtemplate/v4/test-configs.cdrl | 2 +- .../templating/xslt/MILYN-140-01.xml | 4 +- .../templating/xslt/MILYN-140-02.xml | 4 +- .../templating/xslt/bad-xsl-config.xml | 4 +- .../cartridges/templating/xslt/inline-01.xml | 4 +- .../cartridges/templating/xslt/inline-02.xml | 4 +- .../cartridges/templating/xslt/inline-03.xml | 2 +- .../cartridges/templating/xslt/inline-xsl.xml | 4 +- .../templating/xslt/route-to-stream-01.cdrl | 4 +- .../templating/xslt/route-to-stream-02.cdrl | 4 +- .../templating/xslt/test-configs-bind.cdrl | 2 +- 54 files changed, 75 insertions(+), 619 deletions(-) delete mode 100644 src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd delete mode 100644 src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd-smooks.xml delete mode 100644 src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd delete mode 100644 src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd-smooks.xml diff --git a/src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd b/src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd deleted file mode 100644 index e17006a..0000000 --- a/src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - FreeMarker Templating Configuration - - - - - - FreeMarker Templating Configuration. - - - - - - - - FreeMarker Templating Configuration Type. - - - - - - - - - - - - - The name of the element on which the template is to be applied. - - - - - - - The namespace of the element on which the template is to be applied. - - - - - - - Apply the template before visiting the elements child content.

Default is 'false'. - - - - - - - - - - - The FreeMarker Template. -

- This can be an inline template, or a reference (URI) to an externally defined template (filesystem, classpath, www). - - - - - - - - Template character encodng. - - - - - - - - - - - The <use> element allows you to define how the templating result is to be used. - - - - - - - - - - - - - Inline the templating result into the Smooks.filter Result message. - - - - - - How the templating result is to be used (relative to the element on which it - is applied). - - - - - - - - - Bind the templating result into the bean context under the specified "id". This makes the - templating result available for routing or other operations. - - - - - - The bean context ID under which the templating result is to be bound if the "bindTo" action is chosen. - - - - - - - - - Output the templating result to a named OutputStreamResource. - - - - - - The name of the "outputStreamResource" to which the templating result is to be written. By default, - the templating result is written to the Smooks.filter result if (if a StreamResult is provided). - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd-smooks.xml b/src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd-smooks.xml deleted file mode 100644 index 2bef6f7..0000000 --- a/src/main/resources/META-INF/xsd/smooks/freemarker-1.1.xsd-smooks.xml +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - org.smooks.cdr.extension.NewResourceConfig - - - - org.smooks.cdr.extension.SetOnResourceConfig - resourceType - ftl - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - applyOnElement - selector - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - applyOnElementNS - selector-namespace - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - applyBefore - applyTemplateBefore - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - targetProfile - targetProfile - - - - org.smooks.cdr.extension.MapToResourceConfigFromText - resource - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - encoding - encoding - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - directive - action - - - - org.smooks.cdr.extension.SetOnResourceConfig - action - bindto - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - id - bindId - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - outputStreamResource - outputStreamResource - - - - org.smooks.cdr.extension.MapToResourceConfigFromText - name - - - diff --git a/src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd b/src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd deleted file mode 100644 index 0d2be8a..0000000 --- a/src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - XSL Templating Configuration - - - - - - XSL Templating Configuration. - - - - - - - - XSL Templating Configuration Type. - - - - - - - - - - - - - The name of the element on which the template is to be applied. - - - - - - - The namespace of the element on which the template is to be applied. - - - - - - - Apply the template before visiting the elements child content.

Default is 'false'. - - - - - - - - - - - The XSL Template. -

- This can be an inline template, or a reference (URI) to an externally defined template (filesystem, classpath, www). - - - - - - - - Template character encodng. - - - - - - - - - - - The <use> element allows you to define how the templating result is to be used. - - - - - - - - - - - - - Inline the templating result into the Smooks.filter Result message. - - - - - - How the templating result is to be used (relative to the element on which it - is applied). - - - - - - - - - Bind the templating result into the bean context under the specified "id". This makes the - templating result available for routing or other operations. - - - - - - The bean context ID under which the templating result is to be bound if the "bindTo" action is chosen. - - - - - - - - - Output the templating result to a named OutputStreamResource. - - - - - - The name of the "outputStreamResource" to which the templating result is to be written. By default, - the templating result is written to the Smooks.filter result if (if a StreamResult is provided). - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd-smooks.xml b/src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd-smooks.xml deleted file mode 100644 index 2ef4080..0000000 --- a/src/main/resources/META-INF/xsd/smooks/xsl-1.1.xsd-smooks.xml +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - org.smooks.cdr.extension.NewResourceConfig - - - - org.smooks.cdr.extension.SetOnResourceConfig - resourceType - xsl - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - applyOnElement - selector - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - applyOnElementNS - selector-namespace - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - applyBefore - applyTemplateBefore - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - targetProfile - targetProfile - - - - org.smooks.cdr.extension.MapToResourceConfigFromText - resource - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - encoding - encoding - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - directive - action - - - - org.smooks.cdr.extension.SetOnResourceConfig - action - bindto - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - id - bindId - - - - org.smooks.cdr.extension.MapToResourceConfigFromAttribute - outputStreamResource - outputStreamResource - - - - org.smooks.cdr.extension.MapToResourceConfigFromText - name - - - diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/FreeMarkerProgramaticConfigTest.java b/src/test/java/org/smooks/cartridges/templating/freemarker/FreeMarkerProgramaticConfigTest.java index b371f77..3de4c6d 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/FreeMarkerProgramaticConfigTest.java +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/FreeMarkerProgramaticConfigTest.java @@ -91,10 +91,10 @@ public void test_nodeModel_1() throws IOException, SAXException, ParserConfigura public void test_nodeModel_1(StreamFilterType filterType) throws IOException, SAXException, ParserConfigurationException { Smooks smooks = new Smooks(); - smooks.addVisitor(new DomModelCreator(), "$document"); + smooks.addVisitor(new DomModelCreator(), "#document"); smooks.addVisitor( new FreeMarkerTemplateProcessor(new TemplatingConfiguration("<#foreach c in a.b.c>'${c}'")), - "$document" + "#document" ); smooks.setFilterSettings(new FilterSettings(filterType)); @@ -247,12 +247,12 @@ public void testAddTo() throws SAXException, IOException { public void test_outputTo_Stream() throws IOException, SAXException { Smooks smooks = new Smooks(); - smooks.addVisitor(new MockOutStreamResource("outRes"), "$document"); + smooks.addVisitor(new MockOutStreamResource("outRes"), "#document"); smooks.addVisitor( new FreeMarkerTemplateProcessor( new TemplatingConfiguration("data to outstream").setUsage(OutputTo.stream("outRes")) ), - "$document" + "#document" ); ExecutionContext context = smooks.createExecutionContext(); diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-01.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-01.cdrl index 62c6a1c..73141d6 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-01.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-01.cdrl @@ -1,7 +1,7 @@ - + - + org.smooks.cartridges.templating.MockOutStreamResource mockOutStream diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-02.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-02.cdrl index 88b40ca..47bd5bc 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-02.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/route-to-stream-02.cdrl @@ -1,7 +1,7 @@ - + - + org.smooks.cartridges.templating.MockOutStreamResource mockOutStream diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-NS.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-NS.cdrl index 4d92c56..ec16601 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-NS.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-NS.cdrl @@ -1,5 +1,5 @@ - + /org/smooks/cartridges/templating/freemarker/test-template.ftl diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-SAX.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-SAX.cdrl index fddb3df..345707e 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-SAX.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01-SAX.cdrl @@ -1,5 +1,5 @@ - + SAX diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01.cdrl index c6250b0..da9cda9 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-01.cdrl @@ -1,5 +1,5 @@ - + /org/smooks/cartridges/templating/freemarker/test-template.ftl diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-02.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-02.cdrl index 6c793fd..b22f995 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-02.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-02.cdrl @@ -1,5 +1,5 @@ - + diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-03.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-03.cdrl index 346b3a5..9545b2a 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-03.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-03.cdrl @@ -1,7 +1,7 @@ - + - + diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04-SAX.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04-SAX.cdrl index 724a1e4..e324e68 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04-SAX.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04-SAX.cdrl @@ -1,5 +1,5 @@ - + SAX diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04.cdrl index 791ea5e..3ff75bb 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-04.cdrl @@ -1,5 +1,5 @@ - + diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-05.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-05.cdrl index 9b30441..5f75331 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-05.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-05.cdrl @@ -1,12 +1,12 @@ - + - + - + org.smooks.delivery.DomModelCreator diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-06.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-06.cdrl index ac41426..53e6d56 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-06.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-06.cdrl @@ -1,6 +1,6 @@ - + org.smooks.delivery.DomModelCreator diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-07.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-07.cdrl index 98c8487..ef8f1e0 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-07.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-07.cdrl @@ -1,11 +1,11 @@ - + - + org.smooks.delivery.DomModelCreator - + diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-addto.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-addto.cdrl index ea29229..ff7767c 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-addto.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-addto.cdrl @@ -1,5 +1,5 @@ - + /org/smooks/cartridges/templating/freemarker/test-template.ftl diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-03.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-03.cdrl index d97345a..a6b2836 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-03.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-03.cdrl @@ -3,7 +3,7 @@ xmlns:ftl="https://www.smooks.org/xsd/smooks/freemarker-1.2.xsd" xmlns:jb="https://www.smooks.org/xsd/smooks/javabean-1.6.xsd"> - + diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-05.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-05.cdrl index d3aea01..3ad6e8c 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-05.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-05.cdrl @@ -3,11 +3,11 @@ xmlns:ftl="https://www.smooks.org/xsd/smooks/freemarker-1.2.xsd" xmlns:jb="https://www.smooks.org/xsd/smooks/javabean-1.6.xsd"> - + - + org.smooks.delivery.DomModelCreator diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-07.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-07.cdrl index 8a342f5..fa0abd9 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-07.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-07.cdrl @@ -3,11 +3,11 @@ xmlns:ftl="https://www.smooks.org/xsd/smooks/freemarker-1.2.xsd" xmlns:jb="https://www.smooks.org/xsd/smooks/javabean-1.6.xsd"> - + org.smooks.delivery.DomModelCreator - + diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-outputToOutStream.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-outputToOutStream.cdrl index d014c34..7df2c49 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-outputToOutStream.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-ext-outputToOutStream.cdrl @@ -2,14 +2,14 @@ - + data to outstream - + org.smooks.cartridges.templating.MockOutStreamResource outRes diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-include.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-include.cdrl index 961b7c8..0d528d8 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-include.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-include.cdrl @@ -1,5 +1,5 @@ - + /org/smooks/cartridges/templating/freemarker/test-template-include.ftl diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-after.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-after.cdrl index 993e3a0..5973219 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-after.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-after.cdrl @@ -1,5 +1,5 @@ - + /org/smooks/cartridges/templating/freemarker/test-template.ftl diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-before.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-before.cdrl index 82a5ddf..e58da51 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-before.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-insert-before.cdrl @@ -1,5 +1,5 @@ - + /org/smooks/cartridges/templating/freemarker/test-template.ftl diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-no-default-ser.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-no-default-ser.cdrl index 16efa1b..a4b4a87 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-no-default-ser.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-no-default-ser.cdrl @@ -1,5 +1,5 @@ - + false diff --git a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-replace.cdrl b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-replace.cdrl index c585f4c..96675b8 100644 --- a/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-replace.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/freemarker/test-configs-replace.cdrl @@ -1,5 +1,5 @@ - + /org/smooks/cartridges/templating/freemarker/test-template.ftl diff --git a/src/test/java/org/smooks/cartridges/templating/soapshipping/ftl/trans-response.cdrl b/src/test/java/org/smooks/cartridges/templating/soapshipping/ftl/trans-response.cdrl index 73f62e6..29021f6 100644 --- a/src/test/java/org/smooks/cartridges/templating/soapshipping/ftl/trans-response.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/soapshipping/ftl/trans-response.cdrl @@ -1,5 +1,5 @@ - + - + - + /org/smooks/cartridges/templating/xslt/MILYN-140.xsl diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/MILYN-140-02.xml b/src/test/java/org/smooks/cartridges/templating/xslt/MILYN-140-02.xml index 3d1e3dd..1fd9a05 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/MILYN-140-02.xml +++ b/src/test/java/org/smooks/cartridges/templating/xslt/MILYN-140-02.xml @@ -43,9 +43,9 @@ --> - + - + true diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/bad-xsl-config.xml b/src/test/java/org/smooks/cartridges/templating/xslt/bad-xsl-config.xml index fcd05c9..34b8c5e 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/bad-xsl-config.xml +++ b/src/test/java/org/smooks/cartridges/templating/xslt/bad-xsl-config.xml @@ -42,9 +42,9 @@ =========================LICENSE_END================================== --> - + - + /org/smooks/cartridges/templating/xslt/bad-stylesheet.xsl diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/inline-01.xml b/src/test/java/org/smooks/cartridges/templating/xslt/inline-01.xml index 752a7c6..af6c456 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/inline-01.xml +++ b/src/test/java/org/smooks/cartridges/templating/xslt/inline-01.xml @@ -43,9 +43,9 @@ --> - + - + diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/inline-02.xml b/src/test/java/org/smooks/cartridges/templating/xslt/inline-02.xml index c7268d7..5d8194f 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/inline-02.xml +++ b/src/test/java/org/smooks/cartridges/templating/xslt/inline-02.xml @@ -43,9 +43,9 @@ --> - + - + diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/inline-xsl.xml b/src/test/java/org/smooks/cartridges/templating/xslt/inline-xsl.xml index f62547d..50eaf2c 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/inline-xsl.xml +++ b/src/test/java/org/smooks/cartridges/templating/xslt/inline-xsl.xml @@ -43,9 +43,9 @@ --> - + - + diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-01.cdrl b/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-01.cdrl index 17fe1dd..40a79f0 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-01.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-01.cdrl @@ -1,7 +1,7 @@ - + - + org.smooks.cartridges.templating.MockOutStreamResource mockOutStream diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-02.cdrl b/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-02.cdrl index 3230b0f..11a0fea 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-02.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/xslt/route-to-stream-02.cdrl @@ -1,7 +1,7 @@ - + - + org.smooks.cartridges.templating.MockOutStreamResource mockOutStream diff --git a/src/test/java/org/smooks/cartridges/templating/xslt/test-configs-bind.cdrl b/src/test/java/org/smooks/cartridges/templating/xslt/test-configs-bind.cdrl index 961f9fa..0206e5f 100644 --- a/src/test/java/org/smooks/cartridges/templating/xslt/test-configs-bind.cdrl +++ b/src/test/java/org/smooks/cartridges/templating/xslt/test-configs-bind.cdrl @@ -1,6 +1,6 @@ - +