From: <die...@us...> - 2010-05-14 14:52:06
|
Revision: 2451 http://openutils.svn.sourceforge.net/openutils/?rev=2451&view=rev Author: diego_schivo Date: 2010-05-14 14:52:00 +0000 (Fri, 14 May 2010) Log Message: ----------- CRIT-12 AclTest Modified Paths: -------------- trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/advanced/AclTest.java trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/CriteriaTest.java trunk/openutils-mgnlcriteria/src/test/resources/crit-bootstrap/website.pets.xml Removed Paths: ------------- trunk/openutils-mgnlcriteria/src/test/resources/crit-bootstrap/acl/ Modified: trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/advanced/AclTest.java =================================================================== --- trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/advanced/AclTest.java 2010-05-14 14:29:55 UTC (rev 2450) +++ trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/advanced/AclTest.java 2010-05-14 14:52:00 UTC (rev 2451) @@ -66,7 +66,28 @@ super.setUp(); - bootstrapSingleResource("/crit-bootstrap/acl/website.pets.xml"); + // Nodes in this workspace: + // - pets (title=Pets) + // --- cats (title=Cats) + // ----- 1 (title=Leo, petType=cat, birthDate=2000-09-07) + // ----- 7 (title=Samantha, petType=cat, birthDate=1995-09-04) + // ----- 8 (title=Max, petType=cat, birthDate=1995-09-04) + // ----- 13 (title=Sly, petType=cat, birthDate=2002-06-08) + // --- dogs (title=Dogs) + // ----- 3 (title=Rosy, petType=dog, birthDate=2001-04-17) + // ----- 4 (title=Jewel, petType=dog, birthDate=2000-03-07) + // ----- 10 (title=Mulligan, petType=dog, birthDate=1997-02-24) + // ----- 12 (title=Lucky, petType=dog, birthDate=2000-06-24) + // --- lizards (title=Lizards) + // ----- 5 (title=Iggy, petType=lizard, birthDate=2000-11-30) + // --- snakes (title=Snakes) + // ----- 6 (title=George, petType=snake, birthDate=2000-01-20) + // --- birds (title=Birds) + // ----- 9 (title=Lucky, petType=bird, birthDate=1999-08-06) + // ----- 11 (title=Freddy, petType=bird, birthDate=2000-03-09) + // --- hamsters (title=Hamsters) + // ----- 2 (title=Basil, petType=hamster, birthDate=2002-08-06) + bootstrapSingleResource("/crit-bootstrap/website.pets.xml"); HierarchyManager hm = MgnlContext.getHierarchyManager(ContentRepository.WEBSITE); hm.save(); Modified: trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/CriteriaTest.java =================================================================== --- trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/CriteriaTest.java 2010-05-14 14:29:55 UTC (rev 2450) +++ trunk/openutils-mgnlcriteria/src/test/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/CriteriaTest.java 2010-05-14 14:52:00 UTC (rev 2451) @@ -55,19 +55,25 @@ // Nodes in this workspace: // - pets (title=Pets) - // --- 1 (title=Leo, petType=cat, birthDate=2000-09-07) - // --- 2 (title=Basil, petType=hamster, birthDate=2002-08-06) - // --- 3 (title=Rosy, petType=dog, birthDate=2001-04-17) - // --- 4 (title=Jewel, petType=dog, birthDate=2000-03-07) - // --- 5 (title=Iggy, petType=lizard, birthDate=2000-11-30) - // --- 6 (title=George, petType=snake, birthDate=2000-01-20) - // --- 7 (title=Samantha, petType=cat, birthDate=1995-09-04) - // --- 8 (title=Max, petType=cat, birthDate=1995-09-04) - // --- 9 (title=Lucky, petType=bird, birthDate=1999-08-06) - // --- 10 (title=Mulligan, petType=dog, birthDate=1997-02-24) - // --- 11 (title=Freddy, petType=bird, birthDate=2000-03-09) - // --- 12 (title=Lucky, petType=dog, birthDate=2000-06-24) - // --- 13 (title=Sly, petType=cat, birthDate=2002-06-08) + // --- cats (title=Cats) + // ----- 1 (title=Leo, petType=cat, birthDate=2000-09-07) + // ----- 7 (title=Samantha, petType=cat, birthDate=1995-09-04) + // ----- 8 (title=Max, petType=cat, birthDate=1995-09-04) + // ----- 13 (title=Sly, petType=cat, birthDate=2002-06-08) + // --- dogs (title=Dogs) + // ----- 3 (title=Rosy, petType=dog, birthDate=2001-04-17) + // ----- 4 (title=Jewel, petType=dog, birthDate=2000-03-07) + // ----- 10 (title=Mulligan, petType=dog, birthDate=1997-02-24) + // ----- 12 (title=Lucky, petType=dog, birthDate=2000-06-24) + // --- lizards (title=Lizards) + // ----- 5 (title=Iggy, petType=lizard, birthDate=2000-11-30) + // --- snakes (title=Snakes) + // ----- 6 (title=George, petType=snake, birthDate=2000-01-20) + // --- birds (title=Birds) + // ----- 9 (title=Lucky, petType=bird, birthDate=1999-08-06) + // ----- 11 (title=Freddy, petType=bird, birthDate=2000-03-09) + // --- hamsters (title=Hamsters) + // ----- 2 (title=Basil, petType=hamster, birthDate=2002-08-06) bootstrapSingleResource("/crit-bootstrap/website.pets.xml"); MgnlContext.getHierarchyManager(ContentRepository.WEBSITE).save(); } Modified: trunk/openutils-mgnlcriteria/src/test/resources/crit-bootstrap/website.pets.xml =================================================================== --- trunk/openutils-mgnlcriteria/src/test/resources/crit-bootstrap/website.pets.xml 2010-05-14 14:29:55 UTC (rev 2450) +++ trunk/openutils-mgnlcriteria/src/test/resources/crit-bootstrap/website.pets.xml 2010-05-14 14:52:00 UTC (rev 2451) @@ -35,7 +35,7 @@ <sv:value>plaintext</sv:value> </sv:property> </sv:node> - <sv:node sv:name="1"> + <sv:node sv:name="cats"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:content</sv:value> </sv:property> @@ -43,128 +43,202 @@ <sv:value>mix:lockable</sv:value> </sv:property> <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>0c915103-28a5-4002-b9a2-8b5fdbc0c7e4</sv:value> + <sv:value>ceda8658-6df8-4b67-be4d-f8ea831e46ab</sv:value> </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2000-09-07T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>cat</sv:value> - </sv:property> <sv:property sv:name="title" sv:type="String"> - <sv:value>Leo</sv:value> + <sv:value>Cats</sv:value> </sv:property> <sv:node sv:name="MetaData"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:metaData</sv:value> </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> <sv:property sv:name="mgnl:authorid" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:05:09.609+02:00</sv:value> + <sv:value>2010-05-14T10:51:11.734+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:10:52.031+02:00</sv:value> + <sv:value>2010-05-14T10:54:29.578+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:template" sv:type="String"> <sv:value>plaintext</sv:value> </sv:property> </sv:node> - </sv:node> - <sv:node sv:name="2"> - <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:content</sv:value> - </sv:property> - <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> - <sv:value>mix:lockable</sv:value> - </sv:property> - <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>355b0eb3-a393-48b1-9fb7-6319f49a0fcb</sv:value> - </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2002-08-06T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>hamster</sv:value> - </sv:property> - <sv:property sv:name="title" sv:type="String"> - <sv:value>Basil</sv:value> - </sv:property> - <sv:node sv:name="MetaData"> + <sv:node sv:name="1"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:metaData</sv:value> + <sv:value>mgnl:content</sv:value> </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>0c915103-28a5-4002-b9a2-8b5fdbc0c7e4</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2000-09-07T00:00:00.000Z</sv:value> + </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> - <sv:property sv:name="mgnl:authorid" sv:type="String"> - <sv:value>superuser</sv:value> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>cat</sv:value> </sv:property> - <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:05:32.390+02:00</sv:value> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Leo</sv:value> </sv:property> - <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:11:10.218+02:00</sv:value> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:05:09.609+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:52:18.593+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> + </sv:node> + <sv:node sv:name="7"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:content</sv:value> </sv:property> - <sv:property sv:name="mgnl:template" sv:type="String"> - <sv:value>plaintext</sv:value> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>9635dc78-b4b0-49d1-ae65-c937b34f2430</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>1995-09-04T00:00:00.000Z</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>cat</sv:value> + </sv:property> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Samantha</sv:value> + </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:06:18.515+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:12.187+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> </sv:node> - </sv:node> - <sv:node sv:name="3"> - <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:content</sv:value> - </sv:property> - <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> - <sv:value>mix:lockable</sv:value> - </sv:property> - <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>55aaaba2-7835-42e1-8369-ef26e7c33914</sv:value> - </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2001-04-17T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>dog</sv:value> - </sv:property> - <sv:property sv:name="title" sv:type="String"> - <sv:value>Rosy</sv:value> - </sv:property> - <sv:node sv:name="MetaData"> + <sv:node sv:name="8"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:metaData</sv:value> + <sv:value>mgnl:content</sv:value> </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>a7d2bf68-7a72-4843-9bd0-b851d92d250e</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>1995-09-04T00:00:00.000Z</sv:value> + </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> - <sv:property sv:name="mgnl:authorid" sv:type="String"> - <sv:value>superuser</sv:value> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>cat</sv:value> </sv:property> - <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:05:40.234+02:00</sv:value> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Max</sv:value> </sv:property> - <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:11:26.234+02:00</sv:value> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:06:27.000+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:16.890+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> + </sv:node> + <sv:node sv:name="13"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:content</sv:value> </sv:property> - <sv:property sv:name="mgnl:template" sv:type="String"> - <sv:value>plaintext</sv:value> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>d45699bc-f4c9-4b36-98dc-513eb28c82b8</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2002-06-08T00:00:00.000Z</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>cat</sv:value> + </sv:property> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Sly</sv:value> + </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:07:21.421+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:49.562+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> </sv:node> </sv:node> - <sv:node sv:name="4"> + <sv:node sv:name="dogs"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:content</sv:value> </sv:property> @@ -172,128 +246,202 @@ <sv:value>mix:lockable</sv:value> </sv:property> <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>a7614d0b-51d8-47c4-99ef-7d52444c74de</sv:value> + <sv:value>99cadf04-97ae-4def-85f8-c27a1eed4106</sv:value> </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2000-03-07T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>dog</sv:value> - </sv:property> <sv:property sv:name="title" sv:type="String"> - <sv:value>Jewel</sv:value> + <sv:value>Dogs</sv:value> </sv:property> <sv:node sv:name="MetaData"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:metaData</sv:value> </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> <sv:property sv:name="mgnl:authorid" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:05:50.156+02:00</sv:value> + <sv:value>2010-05-14T10:51:21.953+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:11:39.921+02:00</sv:value> + <sv:value>2010-05-14T10:54:33.906+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:template" sv:type="String"> <sv:value>plaintext</sv:value> </sv:property> </sv:node> - </sv:node> - <sv:node sv:name="5"> - <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:content</sv:value> - </sv:property> - <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> - <sv:value>mix:lockable</sv:value> - </sv:property> - <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>26da71db-352b-4e30-8032-d9f727511fdd</sv:value> - </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2000-11-30T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>lizard</sv:value> - </sv:property> - <sv:property sv:name="title" sv:type="String"> - <sv:value>Iggy</sv:value> - </sv:property> - <sv:node sv:name="MetaData"> + <sv:node sv:name="3"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:metaData</sv:value> + <sv:value>mgnl:content</sv:value> </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>55aaaba2-7835-42e1-8369-ef26e7c33914</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2001-04-17T00:00:00.000Z</sv:value> + </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> - <sv:property sv:name="mgnl:authorid" sv:type="String"> - <sv:value>superuser</sv:value> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>dog</sv:value> </sv:property> - <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:06:00.406+02:00</sv:value> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Rosy</sv:value> </sv:property> - <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:11:55.828+02:00</sv:value> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:05:40.234+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:52:47.093+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> + </sv:node> + <sv:node sv:name="4"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:content</sv:value> </sv:property> - <sv:property sv:name="mgnl:template" sv:type="String"> - <sv:value>plaintext</sv:value> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>a7614d0b-51d8-47c4-99ef-7d52444c74de</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2000-03-07T00:00:00.000Z</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>dog</sv:value> + </sv:property> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Jewel</sv:value> + </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:05:50.156+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:52:53.265+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> </sv:node> - </sv:node> - <sv:node sv:name="6"> - <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:content</sv:value> - </sv:property> - <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> - <sv:value>mix:lockable</sv:value> - </sv:property> - <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>f4066b54-df95-47b1-8fe2-40995c853934</sv:value> - </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2000-01-20T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>snake</sv:value> - </sv:property> - <sv:property sv:name="title" sv:type="String"> - <sv:value>George</sv:value> - </sv:property> - <sv:node sv:name="MetaData"> + <sv:node sv:name="10"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:metaData</sv:value> + <sv:value>mgnl:content</sv:value> </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>c3f7f93c-26e0-4207-a3ec-6c809c904406</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>1997-02-24T00:00:00.000Z</sv:value> + </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> - <sv:property sv:name="mgnl:authorid" sv:type="String"> - <sv:value>superuser</sv:value> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>dog</sv:value> </sv:property> - <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:06:09.531+02:00</sv:value> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Mulligan</sv:value> </sv:property> - <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:12:11.015+02:00</sv:value> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:06:46.156+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:30.546+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> + </sv:node> + <sv:node sv:name="12"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:content</sv:value> </sv:property> - <sv:property sv:name="mgnl:template" sv:type="String"> - <sv:value>plaintext</sv:value> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>e5507eef-bb85-46ee-a89e-c32daff74c8e</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2000-06-24T00:00:00.000Z</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>dog</sv:value> + </sv:property> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Lucky</sv:value> + </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:07:06.703+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:44.171+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> </sv:node> </sv:node> - <sv:node sv:name="7"> + <sv:node sv:name="lizards"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:content</sv:value> </sv:property> @@ -301,85 +449,73 @@ <sv:value>mix:lockable</sv:value> </sv:property> <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>9635dc78-b4b0-49d1-ae65-c937b34f2430</sv:value> + <sv:value>ae6de4b3-8c18-48fa-b24c-e0b81c2dde70</sv:value> </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>1995-09-04T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>cat</sv:value> - </sv:property> <sv:property sv:name="title" sv:type="String"> - <sv:value>Samantha</sv:value> + <sv:value>Lizards</sv:value> </sv:property> <sv:node sv:name="MetaData"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:metaData</sv:value> </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> <sv:property sv:name="mgnl:authorid" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:06:18.515+02:00</sv:value> + <sv:value>2010-05-14T10:51:29.796+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:12:35.937+02:00</sv:value> + <sv:value>2010-05-14T10:54:38.437+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:template" sv:type="String"> <sv:value>plaintext</sv:value> </sv:property> </sv:node> - </sv:node> - <sv:node sv:name="8"> - <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:content</sv:value> - </sv:property> - <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> - <sv:value>mix:lockable</sv:value> - </sv:property> - <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>a7d2bf68-7a72-4843-9bd0-b851d92d250e</sv:value> - </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>1995-09-04T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>cat</sv:value> - </sv:property> - <sv:property sv:name="title" sv:type="String"> - <sv:value>Max</sv:value> - </sv:property> - <sv:node sv:name="MetaData"> + <sv:node sv:name="5"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:metaData</sv:value> + <sv:value>mgnl:content</sv:value> </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>26da71db-352b-4e30-8032-d9f727511fdd</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2000-11-30T00:00:00.000Z</sv:value> + </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> - <sv:property sv:name="mgnl:authorid" sv:type="String"> - <sv:value>superuser</sv:value> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>lizard</sv:value> </sv:property> - <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:06:27.000+02:00</sv:value> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Iggy</sv:value> </sv:property> - <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:12:49.000+02:00</sv:value> - </sv:property> - <sv:property sv:name="mgnl:template" sv:type="String"> - <sv:value>plaintext</sv:value> - </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:06:00.406+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:52:59.312+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> </sv:node> </sv:node> - <sv:node sv:name="9"> + <sv:node sv:name="snakes"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:content</sv:value> </sv:property> @@ -387,85 +523,73 @@ <sv:value>mix:lockable</sv:value> </sv:property> <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>2cd9a5a2-3a82-484c-b361-e972b90e9c61</sv:value> + <sv:value>3a739d7e-8fa2-4f3c-bf62-d691ad6a8a6d</sv:value> </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>1999-08-06T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>bird</sv:value> - </sv:property> <sv:property sv:name="title" sv:type="String"> - <sv:value>Lucky</sv:value> + <sv:value>Snakes</sv:value> </sv:property> <sv:node sv:name="MetaData"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:metaData</sv:value> </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> <sv:property sv:name="mgnl:authorid" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:06:35.437+02:00</sv:value> + <sv:value>2010-05-14T10:51:39.031+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:13:03.250+02:00</sv:value> + <sv:value>2010-05-14T10:54:41.984+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:template" sv:type="String"> <sv:value>plaintext</sv:value> </sv:property> </sv:node> - </sv:node> - <sv:node sv:name="10"> - <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:content</sv:value> - </sv:property> - <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> - <sv:value>mix:lockable</sv:value> - </sv:property> - <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>c3f7f93c-26e0-4207-a3ec-6c809c904406</sv:value> - </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>1997-02-24T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>dog</sv:value> - </sv:property> - <sv:property sv:name="title" sv:type="String"> - <sv:value>Mulligan</sv:value> - </sv:property> - <sv:node sv:name="MetaData"> + <sv:node sv:name="6"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:metaData</sv:value> + <sv:value>mgnl:content</sv:value> </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>f4066b54-df95-47b1-8fe2-40995c853934</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2000-01-20T00:00:00.000Z</sv:value> + </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> - <sv:property sv:name="mgnl:authorid" sv:type="String"> - <sv:value>superuser</sv:value> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>snake</sv:value> </sv:property> - <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:06:46.156+02:00</sv:value> + <sv:property sv:name="title" sv:type="String"> + <sv:value>George</sv:value> </sv:property> - <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:13:16.859+02:00</sv:value> - </sv:property> - <sv:property sv:name="mgnl:template" sv:type="String"> - <sv:value>plaintext</sv:value> - </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:06:09.531+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:06.562+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> </sv:node> </sv:node> - <sv:node sv:name="11"> + <sv:node sv:name="birds"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:content</sv:value> </sv:property> @@ -473,85 +597,116 @@ <sv:value>mix:lockable</sv:value> </sv:property> <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>a8dfc666-08d1-4fa6-9325-ac26b45fd13a</sv:value> + <sv:value>98d0a08f-9e10-4870-a99d-add609853627</sv:value> </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2000-03-09T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>bird</sv:value> - </sv:property> <sv:property sv:name="title" sv:type="String"> - <sv:value>Freddy</sv:value> + <sv:value>Birds</sv:value> </sv:property> <sv:node sv:name="MetaData"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:metaData</sv:value> </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> <sv:property sv:name="mgnl:authorid" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:06:56.718+02:00</sv:value> + <sv:value>2010-05-14T10:51:46.859+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:13:32.812+02:00</sv:value> + <sv:value>2010-05-14T10:54:45.000+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:template" sv:type="String"> <sv:value>plaintext</sv:value> </sv:property> </sv:node> - </sv:node> - <sv:node sv:name="12"> - <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:content</sv:value> - </sv:property> - <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> - <sv:value>mix:lockable</sv:value> - </sv:property> - <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>e5507eef-bb85-46ee-a89e-c32daff74c8e</sv:value> - </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2000-06-24T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>dog</sv:value> - </sv:property> - <sv:property sv:name="title" sv:type="String"> - <sv:value>Lucky</sv:value> - </sv:property> - <sv:node sv:name="MetaData"> + <sv:node sv:name="9"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> - <sv:value>mgnl:metaData</sv:value> + <sv:value>mgnl:content</sv:value> </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>2cd9a5a2-3a82-484c-b361-e972b90e9c61</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>1999-08-06T00:00:00.000Z</sv:value> + </sv:property> <sv:property sv:name="jcr:createdBy" sv:type="String"> <sv:value>admin</sv:value> </sv:property> - <sv:property sv:name="mgnl:authorid" sv:type="String"> - <sv:value>superuser</sv:value> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>bird</sv:value> </sv:property> - <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:07:06.703+02:00</sv:value> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Lucky</sv:value> </sv:property> - <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:13:49.703+02:00</sv:value> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:06:35.437+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:23.687+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> + </sv:node> + <sv:node sv:name="11"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:content</sv:value> </sv:property> - <sv:property sv:name="mgnl:template" sv:type="String"> - <sv:value>plaintext</sv:value> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>a8dfc666-08d1-4fa6-9325-ac26b45fd13a</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2000-03-09T00:00:00.000Z</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>bird</sv:value> + </sv:property> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Freddy</sv:value> + </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:06:56.718+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:53:38.640+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> </sv:node> </sv:node> - <sv:node sv:name="13"> + <sv:node sv:name="hamsters"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:content</sv:value> </sv:property> @@ -559,39 +714,70 @@ <sv:value>mix:lockable</sv:value> </sv:property> <sv:property sv:name="jcr:uuid" sv:type="String"> - <sv:value>d45699bc-f4c9-4b36-98dc-513eb28c82b8</sv:value> + <sv:value>3cfe0fd7-c4b7-433e-9fe3-a0b790df1f2d</sv:value> </sv:property> - <sv:property sv:name="birthDate" sv:type="Date"> - <sv:value>2002-06-08T00:00:00.000+00:00</sv:value> - </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> - <sv:property sv:name="petType" sv:type="String"> - <sv:value>cat</sv:value> - </sv:property> <sv:property sv:name="title" sv:type="String"> - <sv:value>Sly</sv:value> + <sv:value>Hamsters</sv:value> </sv:property> <sv:node sv:name="MetaData"> <sv:property sv:name="jcr:primaryType" sv:type="Name"> <sv:value>mgnl:metaData</sv:value> </sv:property> - <sv:property sv:name="jcr:createdBy" sv:type="String"> - <sv:value>admin</sv:value> - </sv:property> <sv:property sv:name="mgnl:authorid" sv:type="String"> <sv:value>superuser</sv:value> </sv:property> <sv:property sv:name="mgnl:creationdate" sv:type="Date"> - <sv:value>2010-05-13T11:07:21.421+02:00</sv:value> + <sv:value>2010-05-14T10:51:57.515+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> - <sv:value>2010-05-13T11:14:13.578+02:00</sv:value> + <sv:value>2010-05-14T10:54:49.125+02:00</sv:value> </sv:property> <sv:property sv:name="mgnl:template" sv:type="String"> <sv:value>plaintext</sv:value> </sv:property> </sv:node> + <sv:node sv:name="2"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:content</sv:value> + </sv:property> + <sv:property sv:name="jcr:mixinTypes" sv:type="Name"> + <sv:value>mix:lockable</sv:value> + </sv:property> + <sv:property sv:name="jcr:uuid" sv:type="String"> + <sv:value>355b0eb3-a393-48b1-9fb7-6319f49a0fcb</sv:value> + </sv:property> + <sv:property sv:name="birthDate" sv:type="Date"> + <sv:value>2002-08-06T00:00:00.000Z</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="petType" sv:type="String"> + <sv:value>hamster</sv:value> + </sv:property> + <sv:property sv:name="title" sv:type="String"> + <sv:value>Basil</sv:value> + </sv:property> + <sv:node sv:name="MetaData"> + <sv:property sv:name="jcr:primaryType" sv:type="Name"> + <sv:value>mgnl:metaData</sv:value> + </sv:property> + <sv:property sv:name="jcr:createdBy" sv:type="String"> + <sv:value>admin</sv:value> + </sv:property> + <sv:property sv:name="mgnl:authorid" sv:type="String"> + <sv:value>superuser</sv:value> + </sv:property> + <sv:property sv:name="mgnl:creationdate" sv:type="Date"> + <sv:value>2010-05-13T11:05:32.390+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:lastmodified" sv:type="Date"> + <sv:value>2010-05-14T10:52:40.171+02:00</sv:value> + </sv:property> + <sv:property sv:name="mgnl:template" sv:type="String"> + <sv:value>plaintext</sv:value> + </sv:property> + </sv:node> + </sv:node> </sv:node> </sv:node> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |