From: <one...@us...> - 2003-02-15 01:01:22
|
Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate In directory sc8-pr-cvs1:/tmp/cvs-serv32602/sf/hibernate Modified Files: hibernate-mapping-2.0.dtd Log Message: fixed a bug wrapping sorted collections don't ever update mutable=false objects added where attribute to collection mappings Index: hibernate-mapping-2.0.dtd =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/hibernate-mapping-2.0.dtd,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** hibernate-mapping-2.0.dtd 9 Feb 2003 06:28:14 -0000 1.14 --- hibernate-mapping-2.0.dtd 15 Feb 2003 01:00:49 -0000 1.15 *************** *** 209,212 **** --- 209,213 ---- <!ATTLIST map cascade (none|all|save-update|delete) #IMPLIED> <!-- default: none --> <!ATTLIST map order-by CDATA #IMPLIED> <!-- default: none --> + <!ATTLIST map where CDATA #IMPLIED> <!-- default: none --> <!ELEMENT set ( *************** *** 224,227 **** --- 225,229 ---- <!ATTLIST set cascade (none|all|save-update|delete) #IMPLIED> <!-- default: none --> <!ATTLIST set order-by CDATA #IMPLIED> <!-- default: none --> + <!ATTLIST set where CDATA #IMPLIED> <!-- default: none --> <!ELEMENT bag ( *************** *** 238,241 **** --- 240,244 ---- <!ATTLIST bag cascade (none|all|save-update|delete) #IMPLIED> <!-- default: none --> <!ATTLIST bag order-by CDATA #IMPLIED> <!-- default: none --> + <!ATTLIST bag where CDATA #IMPLIED> <!-- default: none --> <!ELEMENT list ( *************** *** 252,255 **** --- 255,259 ---- <!ATTLIST list inverse (true|false) "false"> <!ATTLIST list cascade (none|all|save-update|delete) #IMPLIED> <!-- default: none --> + <!ATTLIST list where CDATA #IMPLIED> <!-- default: none --> <!ELEMENT array ( *************** *** 265,268 **** --- 269,273 ---- <!ATTLIST array element-class CDATA #IMPLIED> <!ATTLIST array cascade (none|all|save-update|delete) #IMPLIED> <!-- default: none --> + <!ATTLIST array where CDATA #IMPLIED> <!-- default: none --> <!ELEMENT primitive-array (meta*, jcs-cache?, key, index, element)> *************** *** 270,273 **** --- 275,279 ---- <!ATTLIST primitive-array table CDATA #IMPLIED> <!-- default: name --> <!ATTLIST primitive-array schema CDATA #IMPLIED> <!-- default: none --> + <!ATTLIST primitive-array where CDATA #IMPLIED> <!-- default: none --> <!-- Declares the element type of a collection of basic type --> |