resolve codelists
This commit is contained in:
@@ -210,6 +210,11 @@ Change to the project directory and run
|
|||||||
|
|
||||||
Afterwards you can access the release page and update the documentation, e.g. upload the jar, the jar javadoc and ZugferdDev. You can also enter a changelog and a better title.
|
Afterwards you can access the release page and update the documentation, e.g. upload the jar, the jar javadoc and ZugferdDev. You can also enter a changelog and a better title.
|
||||||
|
|
||||||
|
## Regular updates
|
||||||
|
|
||||||
|
XRechnung from https://github.com/itplr-kosit/xrechnung-schematron,
|
||||||
|
put in schematro, have xslt generated, potentially manually include
|
||||||
|
the included file
|
||||||
|
|
||||||
## Release process
|
## Release process
|
||||||
|
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ public class ZUGFeRDVisualizer {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Source resolve(String href, String base) throws TransformerException {
|
public Source resolve(String href, String base) throws TransformerException {
|
||||||
return new StreamSource(CLASS_LOADER.getResourceAsStream(RESOURCE_PATH + href));
|
return new StreamSource(CLASS_LOADER.getResourceAsStream(RESOURCE_PATH +"stylesheets/"+ href));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -64,6 +64,6 @@ public class VisualizationTest extends ResourceCase {
|
|||||||
|
|
||||||
assertNotNull(result);
|
assertNotNull(result);
|
||||||
// Reading ZUGFeRD
|
// Reading ZUGFeRD
|
||||||
// assertEquals(expected, result);
|
//assertEquals(expected, result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,7 +72,8 @@ public class SchematronPipeline {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Source resolve(String href, String base) throws TransformerException {
|
public Source resolve(String href, String base) throws TransformerException {
|
||||||
return new StreamSource(cl.getResourceAsStream(resourcePath + href));
|
return new StreamSource(cl.getResourceAsStream(resourcePath +"xslt/"+ href));
|
||||||
|
// return new StreamSource(cl.getResourceAsStream(resourcePath + href));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user