Author: gbayon
Date: Mon Sep 5 11:49:29 2005
New Revision: 278811
URL: http://svn.apache.org/viewcvs?rev=278811&view=rev
Log:
- Updated doc to lastest schema header
Modified:
ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml
ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml
Modified: ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml
URL:
http://svn.apache.org/viewcvs/ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml?rev=278811&r1=278810&r2=278811&view=diff
==============================================================================
--- ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml (original)
+++ ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml Mon Sep 5 11:49:29
2005
@@ -134,12 +134,30 @@
are seven projects in the solution, and all should succeed. The
assemblies we need will be created under
<filename>\source\IBatisNet.DataMapper\bin\Debug</filename>. The created
- assemblies are : <filename>IBatisNet.Common.dll</filename> and
- <filename>iBatisNet.DataMapper.dll</filename>. The DataMapper has
- external dependencies on <filename>Castle.DynamicProxy.dll</filename>
- (creating proxies) and <filename>log4net.dll</filename> (logging). Both
- of these dependencies are found in the External-Bin folder and can also
- be found in the bin\Debug folder after building the solution.</para>
+ assemblies are :
+ <orderedlist>
+ <listitem>
+ <filename>IBatisNet.Common.dll</filename>
+ </listitem>
+
+ <listitem>
+ <filename>iBatisNet.DataMapper.dll</filename>
+ </listitem>
+
+ </orderedlist>
+ The DataMapper has
+ external dependencies on :
+ <orderedlist>
+ <listitem>
+ <filename>Castle.DynamicProxy.dll</filename> (creating proxies)
+ </listitem>
+
+ <listitem>
+ <filename>log4net.dll</filename> (logging)
+ </listitem>
+
+ </orderedlist>
+ Both of these dependencies are found in the External-Bin folder and
can also be found in the bin\Debug folder after building the solution.</para>
<tip>
<para>If you will not be using the DataAccess framework and NHibernate
@@ -328,9 +346,8 @@
same directory as web.config)</title>
<programlisting><?xml version="1.0" encoding="utf-8"?>
-<sqlMapConfig
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd">
+<sqlMapConfig xmlns="http://ibatis.apache.org/dataMapper"
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
<!-- Optional -->
<properties resource="properties.config"/>
Modified: ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml
URL:
http://svn.apache.org/viewcvs/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml?rev=278811&r1=278810&r2=278811&view=diff
==============================================================================
--- ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml (original)
+++ ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml Mon Sep 5 11:49:29
2005
@@ -34,8 +34,9 @@
<title>A simple Data Map (.NET)</title>
<programlisting><?xml version="1.0" encoding="UTF-8" ?>
- <sqlMap namespace="LineItem"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="SqlMap.xsd">
+ <sqlMap namespace="LineItem"
+xmlns="http://ibatis.apache.org/mapping"
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
<emphasis role="comment"><!--Type aliases allow you to use a shorter name
for long fully qualified class names.--></emphasis>
<alias>
@@ -103,8 +104,9 @@
<title>A Data Map definition file with some bells and whistles</title>
<programlisting><?xml version="1.0" encoding="UTF-8" ?>
-<sqlMap namespace="Product"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="SqlMap.xsd">
+ <sqlMap namespace="Product"
+xmlns="http://ibatis.apache.org/mapping"
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
<emphasis role="alias"> <alias>
<typeAlias alias="Product" type="Example.Domain.Product,
Example.Domain" />