aboutsummaryrefslogtreecommitdiff
path: root/ixslt.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ixslt.cc')
-rw-r--r--ixslt.cc27
1 files changed, 22 insertions, 5 deletions
diff --git a/ixslt.cc b/ixslt.cc
index 86b883e..2200485 100644
--- a/ixslt.cc
+++ b/ixslt.cc
@@ -43,6 +43,11 @@ boost::optional<boost::program_options::variables_map> input(
"transformation file"
)
(
+ "input",
+ boost::program_options::value<std::string>(),
+ "input file"
+ )
+ (
"target",
boost::program_options::value<std::string>(),
"target file"
@@ -90,12 +95,24 @@ bool process(const boost::program_options::variables_map& variables) {
};
InputXSLT::PlattformGuard plattform(includePath);
+ InputXSLT::TransformationFacade::ptr transformation{};
+
+ if ( variables.count("input") ) {
+ transformation = InputXSLT::TransformationFacade::try_create(
+ handleErrors,
+ variables["input"].as<std::string>(),
+ variables["transformation"].as<std::string>(),
+ plattform.getEntityResolver()
+ );
+ } else {
+ transformation = InputXSLT::TransformationFacade::try_create(
+ handleErrors,
+ variables["transformation"].as<std::string>(),
+ plattform.getEntityResolver()
+ );
+ }
- if ( auto transformation = InputXSLT::TransformationFacade::try_create(
- variables["transformation"].as<std::string>(),
- plattform.getEntityResolver(),
- handleErrors
- ) ) {
+ if ( transformation ) {
WarningGuard guard(transformation.get());
try {