You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by gb...@apache.org on 2005/05/29 15:39:38 UTC

svn commit: r178949 - in /incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper: ChangeLog.txt SqlMapConfig.xsd

Author: gbayon
Date: Sun May 29 06:39:37 2005
New Revision: 178949

URL: http://svn.apache.org/viewcvs?rev=178949&view=rev
Log:
- Updated schema + changelog

Modified:
    incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt
    incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/SqlMapConfig.xsd

Modified: incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt?rev=178949&r1=178948&r2=178949&view=diff
==============================================================================
--- incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt (original)
+++ incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt Sun May 29 06:39:37 2005
@@ -15,6 +15,13 @@
 - Added <discriminator> and <subMap> tags for class inheritance support
 - Added nunit category 'NHibernate'
 - Fixed Oracle issues (JIRA-27, JIRA-54, JIRA-56, JIRA-57)
+- Improvement JIRA-75/63
+<properties> 
+     <propertie resource="sqlmap-config.xml"/> 
+     <propertie resource="${root}Resources/Query/database.xml"/> 
+     <propertie key="Hello" value="World" /> ( To resolve IBATISNET-63 ) 
+ <properties> 
+ 
 - Fixed JIRA-70 Passed inner exception when re-throwing when init provider
 - Fixed JIRA-69 Added support for global setting in ressource and url attribute
 - Fixed JIRA-68 Improved logging message fpr TypeHandler Configuration

Modified: incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/SqlMapConfig.xsd
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/SqlMapConfig.xsd?rev=178949&r1=178948&r2=178949&view=diff
==============================================================================
--- incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/SqlMapConfig.xsd (original)
+++ incubator/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/SqlMapConfig.xsd Sun May 29 06:39:37 2005
@@ -30,9 +30,21 @@
 	</xs:element>
 	<xs:element name="properties">
 		<xs:complexType>
+			<xs:sequence>
+				<xs:element ref="propertie" minOccurs="0" maxOccurs="unbounded"/>
+			</xs:sequence>			
 			<xs:attribute name="resource" type="xs:string"/>
 			<xs:attribute name="url" type="xs:string"/>
 			<xs:attribute name="embedded" type="xs:string"/>
+		</xs:complexType>
+	</xs:element>
+	<xs:element name="propertie">
+		<xs:complexType>
+			<xs:attribute name="resource" type="xs:string"/>
+			<xs:attribute name="url" type="xs:string"/>
+			<xs:attribute name="embedded" type="xs:string"/>
+			<xs:attribute name="key" type="xs:string"/>
+			<xs:attribute name="value" type="xs:string"/>
 		</xs:complexType>
 	</xs:element>
 	<xs:element name="provider">