You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
Right now, the detection whether a transformer is suitable for a given document is based on XPath only. This severly limits transformers to only support XML input documents. Example:
A new property should be added to the transformationDescription called applicabilityRegex, which contains a regex to be compiled in Java (http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html) to match the input document. This would also allow simple string comparison, and also a "matches everything" configuration:
Right now, the detection whether a transformer is suitable for a given document is based on XPath only. This severly limits transformers to only support XML input documents. Example:
A new property should be added to the transformationDescription called
applicabilityRegex
, which contains a regex to be compiled in Java (http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html) to match the input document. This would also allow simple string comparison, and also a "matches everything" configuration:Implementation steps:
TransformationDescription.isApplicable()
updateGeoLabel()
The text was updated successfully, but these errors were encountered: