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/03/17 21:20:53 UTC

svn commit: r638054 - /jackrabbit/site/dtd/repository-1.4.dtd

Author: jukka
Date: Mon Mar 17 13:20:50 2008
New Revision: 638054

URL: http://svn.apache.org/viewvc?rev=638054&view=rev
Log:
JCR-1330: repository.xml DTD doesn not allow <DataStore> element

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

Modified: jackrabbit/site/dtd/repository-1.4.dtd
URL: http://svn.apache.org/viewvc/jackrabbit/site/dtd/repository-1.4.dtd?rev=638054&r1=638053&r2=638054&view=diff
==============================================================================
--- jackrabbit/site/dtd/repository-1.4.dtd (original)
+++ jackrabbit/site/dtd/repository-1.4.dtd Mon Mar 17 13:20:50 2008
@@ -50,7 +50,7 @@
         clustering node that synchronizes changes made in a cluster
        
 -->
-<!ELEMENT Repository (FileSystem,Security,Workspaces,Workspace,Versioning,SearchIndex?,Cluster?)>
+<!ELEMENT Repository (FileSystem,Security,Workspaces,Workspace,Versioning,SearchIndex?,Cluster?,DataStore?)>
 
 <!--
     a virtual file system
@@ -172,3 +172,11 @@
 -->
 <!ELEMENT ISMLocking (param*)>
 <!ATTLIST ISMLocking class CDATA #REQUIRED>
+
+<!--
+    the DataStore element configures the data store
+    to be used for the workspace; the class attribute specifies the
+    FQN of the class implementing the DataStore interface
+-->
+<!ELEMENT DataStore (param*)>
+<!ATTLIST DataStore class CDATA #REQUIRED>