Author: gbayon
Date: Mon Sep  5 11:59:11 2005
New Revision: 278813

URL: http://svn.apache.org/viewcvs?rev=278813&view=rev
Log:
- Updated ChangeLog

Modified:
    ibatis/trunk/cs/mapper/IBatisNet.DataAccess/ChangeLog.txt
    ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataAccess/ChangeLog.txt
URL: 
http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.DataAccess/ChangeLog.txt?rev=278813&r1=278812&r2=278813&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataAccess/ChangeLog.txt (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataAccess/ChangeLog.txt Mon Sep  5 
11:59:11 2005
@@ -3,12 +3,33 @@
 ------------------------------
 1.7 - XX/XX/XXXX
 ------------------------------
+- Updated to log4net V1.2.9
 - Updated to Castle.DynamicProxy V1.1.5.0
 - Re-add signing on assembly 
-- Added custom logger support
+- Added custom logger support, IBATIS now need a custom section in your 
application config file
+    Exemple (for log4NET) :
+       <configSections>
+               <sectionGroup name="iBATIS">
+                       <section name="logging" 
type="IBatisNet.Common.Logging.ConfigurationSectionHandler, IBatisNet.Common" />
+               </sectionGroup> 
+               <section name="log4net" 
type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
+       </configSections>
+       
+       <iBATIS>
+               <logging>               
+                       <logFactoryAdapter 
type="IBatisNet.Common.Logging.Impl.Log4NetLoggerFA, IBatisNet.Common">
+                               <arg key="configType" value="inline" />
+                       </logFactoryAdapter>
+               </logging>
+       </iBATIS>
 - Removes use of Xml serilization for loading config, boost init
 - IBATISNET-102 Calling DaoManager in different threads causes an Exception
-
+- Allow Intellisense in Visual Studio 2003 for Dao.config file
+- Updated schemas header
+  dao.config
+  <daoConfig  xmlns="http://ibatis.apache.org/dataAccess"; 
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+     
 ------------------------------
 1.6.1 - 10-June-2005
 ------------------------------

Modified: ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt
URL: 
http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt?rev=278813&r1=278812&r2=278813&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.DataMapper/ChangeLog.txt Mon Sep  5 
11:59:11 2005
@@ -3,9 +3,26 @@
 ------------------------------
 1.3 - XX/XX/XXXX
 ------------------------------
+- Updated to log4net V1.2.9
 - Updated to Castle.DynamicProxy V1.1.5.0
 - Re-add signing on assembly 
-- Added custom logger support
+- Added custom logger support, IBATIS now need a custom section in your 
application config file
+    Exemple (for log4NET) :
+       <configSections>
+               <sectionGroup name="iBATIS">
+                       <section name="logging" 
type="IBatisNet.Common.Logging.ConfigurationSectionHandler, IBatisNet.Common" />
+               </sectionGroup> 
+               <section name="log4net" 
type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
+       </configSections>
+       
+       <iBATIS>
+               <logging>               
+                       <logFactoryAdapter 
type="IBatisNet.Common.Logging.Impl.Log4NetLoggerFA, IBatisNet.Common">
+                               <arg key="configType" value="inline" />
+                       </logFactoryAdapter>
+               </logging>
+       </iBATIS>
+       
 - Removes use of Xml serilization for loading config, boost init
 - Improved caching process & performance
 - Fixed IBATISNET-58 Allow all attributes in SqlMap.config file to be aware of 
${xyz} properties
@@ -15,7 +32,14 @@
 - Fixed IBATISNET-92 Check selectKey's property attribute for writeability 
during mapper initialization
 - Fixed IBATISNET-91 Added Cach flush on ExecuteQueryForObject
 - Fixed IBATISNET-82 Added DomDaoManagerBuilder.Configure(XmlDocument 
document) 
-- Fixed IBATISNET-77 Allow Intellisense in Visual Studio 2003 for 
SqlMap/Dao.config/SqlMap.config files 
+- Fixed IBATISNET-77 Allow Intellisense in Visual Studio 2003 for 
SqlMap/SqlMap.config files 
+- Updated schemas header
+  SqlMap.config
+  <sqlMapConfig xmlns=”http://ibatis.apache.org/dataMapper” 
+     xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”>
+  Mapping files
+  <sqlMap namespace=”Product” xmlns=”http://ibatis.apache.org/mapping” 
+  xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”>
 
 ------------------------------
 1.2.1 - 10/07/2005


Reply via email to