Added: rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/sameNameSiblings.xml URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/sameNameSiblings.xml?rev=1382036&view=auto ============================================================================== --- rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/sameNameSiblings.xml (added) +++ rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/sameNameSiblings.xml Fri Sep 7 14:16:16 2012 @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> +<configuration name="default"> + <page-definition name="top" description="Page that is being extended by other pages" + controller="org.apache.rave.unittest.NonExistingController"> + <page-fragment name="sub" /> + <page-fragment name="sub" /> + <page-fragment name="sub" /> + </page-definition> + + <page-definition name="top" description="Page that is being extended by other pages" + controller="org.apache.rave.unittest.NonExistingController"> + <page-fragment name="sub" /> + <page-fragment name="sub" /> + <page-fragment name="sub" /> + </page-definition> + + <page-fragment name="fragment" /> + <page-fragment name="fragment" /> + +</configuration> \ No newline at end of file
Added: rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageDefinition.xml URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageDefinition.xml?rev=1382036&view=auto ============================================================================== --- rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageDefinition.xml (added) +++ rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageDefinition.xml Fri Sep 7 14:16:16 2012 @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> +<configuration name="default"> + <!-- + STANDARD PAGE (HAS NO PARENT) + --> + <page-definition name="top" description="Page that is being extended by other pages" + controller="org.apache.rave.unittest.NonExistingController"> + <page-fragment name="sub1-nocontroller"/> + <page-fragment name="sub2-emptycontrollor" controller=""> + <page-fragment name="sub2sub1-withcontroller" controller="org.apache.rave.unittest.NonExistingController"/> + </page-fragment> + <page-fragment name="sub3-withcontroller-withview" view="hmvc/test" controller="org.apache.rave.unittest.NonExistingController"> + <page-fragment name="sub3sub1-withextend" extend="some/fragment" controller="org.apache.rave.unittest.NonExistingController"/> + </page-fragment> + </page-definition> + +</configuration> \ No newline at end of file Added: rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageFragment.xml URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageFragment.xml?rev=1382036&view=auto ============================================================================== --- rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageFragment.xml (added) +++ rave/sandbox/content-services/rave-jcr-integration/page-configuration/src/test/resources/jaxbmappings/singlePageFragment.xml Fri Sep 7 14:16:16 2012 @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> +<configuration name="default"> + <page-fragment name="fragment-emptycontrollor" controller=""> + <page-fragment name="fragmentsub-withcontroller" controller="org.apache.rave.unittest.NonExistingController"/> + </page-fragment> +</configuration> \ No newline at end of file
