From: <one...@us...> - 2003-04-05 09:14:50
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate In directory sc8-pr-cvs1:/tmp/cvs-serv25027 Modified Files: hibernate-configuration-2.0.dtd hibernate-mapping-2.0.dtd Log Message: adjust dtd to support nonstrict cache Index: hibernate-configuration-2.0.dtd =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/hibernate-configuration-2.0.dtd,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** hibernate-configuration-2.0.dtd 17 Mar 2003 07:24:19 -0000 1.5 --- hibernate-configuration-2.0.dtd 5 Apr 2003 09:14:47 -0000 1.6 *************** *** 24,33 **** <!ATTLIST jcs-class-cache class CDATA #REQUIRED> <!ATTLIST jcs-class-cache region CDATA #IMPLIED> ! <!ATTLIST jcs-class-cache usage CDATA #REQUIRED> <!ELEMENT jcs-collection-cache EMPTY> <!ATTLIST jcs-collection-cache collection CDATA #REQUIRED> <!ATTLIST jcs-collection-cache region CDATA #IMPLIED> ! <!ATTLIST jcs-collection-cache usage CDATA #REQUIRED> <!ELEMENT session-factory (property*, mapping+, (jcs-class-cache|jcs-collection-cache)*)> --- 24,33 ---- <!ATTLIST jcs-class-cache class CDATA #REQUIRED> <!ATTLIST jcs-class-cache region CDATA #IMPLIED> ! <!ATTLIST jcs-class-cache usage (read-only|read-write|nonstrict-read-write) #REQUIRED> <!ELEMENT jcs-collection-cache EMPTY> <!ATTLIST jcs-collection-cache collection CDATA #REQUIRED> <!ATTLIST jcs-collection-cache region CDATA #IMPLIED> ! <!ATTLIST jcs-collection-cache usage (read-only|read-write|nonstrict-read-write) #REQUIRED> <!ELEMENT session-factory (property*, mapping+, (jcs-class-cache|jcs-collection-cache)*)> Index: hibernate-mapping-2.0.dtd =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/hibernate-mapping-2.0.dtd,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** hibernate-mapping-2.0.dtd 5 Apr 2003 07:13:37 -0000 1.19 --- hibernate-mapping-2.0.dtd 5 Apr 2003 09:14:47 -0000 1.20 *************** *** 402,406 **** <!-- The jcs-cache element enables caching of an entity class. --> <!ELEMENT jcs-cache EMPTY> ! <!ATTLIST jcs-cache usage (read-only|read-write) #REQUIRED> <!-- The query element declares a named Hibernate query string --> --- 402,406 ---- <!-- The jcs-cache element enables caching of an entity class. --> <!ELEMENT jcs-cache EMPTY> ! <!ATTLIST jcs-cache usage (read-only|read-write|nonstrict-read-write) #REQUIRED> <!-- The query element declares a named Hibernate query string --> |