You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2008/11/28 13:57:08 UTC

svn commit: r721465 - /jackrabbit/site/dtd/repository-1.5.dtd

Author: jukka
Date: Fri Nov 28 04:57:07 2008
New Revision: 721465

URL: http://svn.apache.org/viewvc?rev=721465&view=rev
Log:
JCR-1718: repository-1.5.dtd: change order of main elements

Sync the published version of the 1.5 DTD with the one that is going to be in the release.

Modified:
    jackrabbit/site/dtd/repository-1.5.dtd

Modified: jackrabbit/site/dtd/repository-1.5.dtd
URL: http://svn.apache.org/viewvc/jackrabbit/site/dtd/repository-1.5.dtd?rev=721465&r1=721464&r2=721465&view=diff
==============================================================================
--- jackrabbit/site/dtd/repository-1.5.dtd (original)
+++ jackrabbit/site/dtd/repository-1.5.dtd Fri Nov 28 04:57:07 2008
@@ -22,9 +22,15 @@
 
     it consists of
 
+      - an optional Cluster element that is used for configuring a
+        clustering node that synchronizes changes made in a cluster
+       
       - a FileSystem element (the virtual file system
         used by the repository to persist global state such as
-        registered namespaces, custom node types, etc..
+        registered namespaces, custom node types, etc.
+        
+      - an optional DataStore element to configure the component
+        to use for storing large binary objects
 
       - a Security element that specifies the name of the app-entry
         in the JAAS config and the access manager
@@ -38,19 +44,16 @@
       - a Workspace element that is used as a workspace configuration
         template; it is used to create the initial workspace if there's
         no workspace yet and for creating additional workspaces through
-        the api
+        the API
 
       - a Versioning element that is used for configuring
         versioning-related settings
 
-      - a SearchIndex element that is used for configuring Indexing-related
+      - an optional SearchIndex element that is used for configuring Indexing-related
         settings on the /jcr:system tree.
 
-      - a Cluster element that is used for configuring an optional
-        clustering node that synchronizes changes made in a cluster
-       
 -->
-<!ELEMENT Repository (FileSystem,Security,Workspaces,Workspace,Versioning,SearchIndex?,Cluster?,DataStore?)>
+<!ELEMENT Repository (Cluster|FileSystem|DataStore|Security|Workspaces|Workspace|Versioning|SearchIndex)*> 
 
 <!--
     a virtual file system
@@ -64,7 +67,7 @@
 
     it also specifies various security related managers to be used.
 -->
-<!ELEMENT Security (SecurityManager, AccessManager, LoginModule?)>
+<!ELEMENT Security (SecurityManager?, AccessManager?, LoginModule?)>
 <!ATTLIST Security appName CDATA #REQUIRED>
 
 <!--