You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by ro...@apache.org on 2005/05/30 18:02:27 UTC

svn commit: r179119 - /incubator/ibatis/trunk/cs/docs/dataAccessGuide/src/en/configuration.xml /incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml /incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml

Author: roberto
Date: Mon May 30 09:02:25 2005
New Revision: 179119

URL: http://svn.apache.org/viewcvs?rev=179119&view=rev
Log:
~Updated C# docs

Modified:
    incubator/ibatis/trunk/cs/docs/dataAccessGuide/src/en/configuration.xml
    incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml
    incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml

Modified: incubator/ibatis/trunk/cs/docs/dataAccessGuide/src/en/configuration.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/docs/dataAccessGuide/src/en/configuration.xml?rev=179119&r1=179118&r2=179119&view=diff
==============================================================================
--- incubator/ibatis/trunk/cs/docs/dataAccessGuide/src/en/configuration.xml (original)
+++ incubator/ibatis/trunk/cs/docs/dataAccessGuide/src/en/configuration.xml Mon May 30 09:02:25 2005
@@ -136,7 +136,7 @@
 
       <tip>
         <para>If you will not be using NHibernate and have a problem building
-        the solution due that dependency, simply remove the
+        the solution due to that dependency, simply remove the
         IBatisNet.DataAccess.Extensions and IBatisNet.DataAccess.Test projects
         from the solution before building.</para>
       </tip>
@@ -151,7 +151,7 @@
       application. It may be a library project that your application project
       references. You need to add two references to your project: <orderedlist>
           <listitem>
-            IBatisNet.DataAccess.dll 
+             IBatisNet.DataAccess.dll 
           </listitem>
 
           <listitem>

Modified: incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml?rev=179119&r1=179118&r2=179119&view=diff
==============================================================================
--- incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml (original)
+++ incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/dotnet.xml Mon May 30 09:02:25 2005
@@ -1159,7 +1159,7 @@
     <sect2>
       <title>Building a SqlMapper Instance</title>
 
-      <note>
+      <important>
         <para>In prior versions of the DataMapper, the
         <classname>SqlMapper</classname> class was responsible for
         configuration. This has been superceded by a new configuration API
@@ -1170,7 +1170,7 @@
         <classname>Stream</classname>, <classname>Uri</classname>,
         <classname>FileInfo</classname>, or <classname>XmlDocument</classname>
         instance.</para>
-      </note>
+      </important>
 
       <para>An XML document is a wonderful tool for describing a database
       configuration (Section 5.2) or defining a set of data mappings (Section
@@ -1265,11 +1265,11 @@
       it can allow you to make changes to the definitions without reloading
       the rest of the application.</para>
 
-      <note>
+      <tip>
         <para>If you are using NUnit to test your mappings, you can run a test
         suite, make changes to the XML mapping document, and run the test
         again. NUnit will reload the configuration automatically.</para>
-      </note>
+      </tip>
 
       <note>
         <para>The ConfigureAndWatch method requires that your SqlMap.config

Modified: incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml?rev=179119&r1=179118&r2=179119&view=diff
==============================================================================
--- incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml (original)
+++ incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml Mon May 30 09:02:25 2005
@@ -1194,8 +1194,7 @@
       </sect3>
 
       <sect3>
-        <title >typeHandler <!-- <emphasis role="new">New !</emphasis> --><!-- <inlinegraphic fileref="images/new.gif" format="GIF"/> -->
-<!-- <mediaobject> <imageobject><imagedata fileref="images/new.gif" format="GIF" /></imageobject></mediaobject> --></title>
+        <title>typeHandler <!-- <emphasis role="new">New !</emphasis> --><!-- <inlinegraphic fileref="images/new.gif" format="GIF"/> --><!-- <mediaobject> <imageobject><imagedata fileref="images/new.gif" format="GIF" /></imageobject></mediaobject> --></title>
 
         <para>The <parameter>typeHandler</parameter> attribute allows the use
         of a Custom Type Handler (see the Custom Type Handler section) to
@@ -1476,16 +1475,16 @@
     <sect2>
       <title>&lt;result&gt; Elements</title>
 
-      <para>This section describe the &lt;resultMap&gt; attributes.</para>
+      <para>The &lt;resultMap&gt; element holds one or more &lt;result&gt;
+      child elements that map SQL resultsets to object properties.</para>
 
       <sect3>
         <title>property</title>
 
-        <para>The <parameter>property</parameter> attribute of the Result Map
-        property is the name of a property of the result object that will be
-        returned by the Mapped Statement. The name can be used more than once
-        depending on the number of times it is needed to populate the
-        results.</para>
+        <para>The <parameter>property</parameter> attribute is the name of a
+        property of the result object that will be returned by the Mapped
+        Statement. The name can be used more than once depending on the number
+        of times it is needed to populate the results.</para>
       </sect3>
 
       <sect3>