Multiple namespace definitions in CND prevent definition of node type without
child nodes
-----------------------------------------------------------------------------------------
Key: JCR-637
URL: http://issues.apache.org/jira/browse/JCR-637
Project: Jackrabbit
Issue Type: Bug
Components: nodetype
Reporter: David Moss
Priority: Minor
The BNF in
http://jackrabbit.apache.org/api-1/org/apache/jackrabbit/core/nodetype/compact/CompactNodeTypeDefReader.html
defines:
[...]
cnd ::= {ns_mapping | node_type_def}
[...]
so multiple namespace definitions should not affect the node type definitions.
However, the following CND definition will fail:
<namespace= 'http://www.mynamespace.co.uk/namespace'>
<nt = 'http://www.jcp.org/jcr/nt/1.0'>
[namespace:document] > nt:file
- namespace:name (string) mandatory
<namespace= 'http://www.mynamespace.co.uk/namespace'>
<nt = 'http://www.jcp.org/jcr/nt/1.0'>
[namespace:document2] > nt:file
- namespace:name (string) mandatory
Remove the second set of namespace definitions, and all's well:
<namespace= 'http://www.mynamespace.co.uk/namespace'>
<nt = 'http://www.jcp.org/jcr/nt/1.0'>
[namespace:document] > nt:file
- namespace:name (string) mandatory
[namespace:document2] > nt:file
- namespace:name (string) mandatory
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira