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
Currently a violation in a DocView XML leads to the following message:
[WARNING] ValidationViolation: "netcentric-aem-classification: Element with name "{}test" inherits from resource '...' which is marked as 'granite:InternalArea (derived from parent content classification)'. It therefore violates the content classification!", filePath=... nodePath=.., line=5, column=82
The element name has currently the JCR Expanded Form which is not really common for XML. Therefore it should be emitted in a more human readable format.
Unfortunately the prefix used for the namespace URI is unknown to the validator, so it should just
emit the local name only in case the namespace is empty
emit the local name followed by the namespace URI in brackets in case the namespace is not empty
The text was updated successfully, but these errors were encountered:
Currently a violation in a DocView XML leads to the following message:
The element name has currently the JCR Expanded Form which is not really common for XML. Therefore it should be emitted in a more human readable format.
Unfortunately the prefix used for the namespace URI is unknown to the validator, so it should just
The text was updated successfully, but these errors were encountered: