You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by cb...@apache.org on 2005/05/01 08:42:57 UTC

svn commit: r165463 - in /incubator/ibatis/trunk/site/src/documentation: ./ content/xdocs/ resources/images/

Author: cbegin
Date: Sat Apr 30 23:42:57 2005
New Revision: 165463

URL: http://svn.apache.org/viewcvs?rev=165463&view=rev
Log:
updated site to prepare for full use

Added:
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/archive.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/community.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/documentation.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/download.xml
    incubator/ibatis/trunk/site/src/documentation/resources/images/favicon.ico   (with props)
    incubator/ibatis/trunk/site/src/documentation/resources/images/ibatis.gif   (with props)
    incubator/ibatis/trunk/site/src/documentation/resources/images/logo.gif   (with props)
Removed:
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/downloads.xml
Modified:
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/contributors.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/index.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/issuetracking.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/mailinglists.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/site.xml
    incubator/ibatis/trunk/site/src/documentation/content/xdocs/tabs.xml
    incubator/ibatis/trunk/site/src/documentation/skinconf.xml

Added: incubator/ibatis/trunk/site/src/documentation/content/xdocs/archive.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/archive.xml?rev=165463&view=auto
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/archive.xml (added)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/archive.xml Sat Apr 30 23:42:57 2005
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://forrest.apache.org/dtd/document-v12.dtd">
+
+<document>
+  <header>
+    <title>Apache iBATIS - News Archive</title>
+  </header> 
+  <body>  
+
+	  <section>
+		  <title>iBATIS.NET DataAccess 1.5.0 and DataMapper 1.1.0 are Available</title>
+		  <p>
+		  (12 Jan 2005) Alpha distributions of iBATIS.NET DataMapper 1.1 and DataAccess 1.5 are available at the <link href="http://sourceforge.net/project/showfiles.php?group_id=109704">SourceForge site</link>.
+		  This is not an ASF release, but it is under the Apache License.
+		  For more, see the <link href="http://sourceforge.net/forum/forum.php?forum_id=437027">release notes</link>.
+		  </p>
+		</section>
+
+
+		<section>
+			<title>iBATIS/Java 2.0.9 is Available -- Happy New Year!</title>
+
+					<p>(05 Jan 2005) Distributions of iBATIS 2.0.9 are available at the 
+					<link href="http://sourceforge.net/project/showfiles.php?group_id=61326">SourceForge site</link>.
+		      This is not an ASF release, but it is under the Apache License.
+					</p>
+					
+					<p>					
+              Well, it's been a long time since we've released any major 
+              features. We've been working on stabalizing the platform, organizing 
+              the team and supporting the community. We like to consider this 
+              progress, but sometimes we want is features. So here we go! Check 
+              out the new feature list:
+          </p>
+
+            <ul>
+              <li><strong>Solution for N+1 selects for 1:M and 
+                M:N.</strong> Version 2.0 was always designed for this, I just 
+                didn't have a chance to implement it, until now. It's made possible 
+                by two small additions to the mappings 
+                <ul>
+                  <li>&lt;resultMap...groupBy=&quot;prop1,prop2&quot;&gt; </li>
+                  <li>&lt;result...resultMap=&quot;subResultMapForCollectionItems&quot;&gt;</li>
+                </ul>
+              </li>
+
+              <li><strong>Remappable result sets!</strong> So, 
+                you're one of those people who wants to use a dynamic SELECT clause 
+                in your SQL Maps? Now you can. One simple addition to your select 
+                statements. 
+                <ul>
+                  <li>&lt;select...remapResults=&quot;true&quot;&gt;</li>
+                </ul>
+              </li>
+              
+              <li><strong>Isolation Level Support. </strong>Now 
+                you can specify the transaction isolation level when starting 
+                a transaction. Simply specify it as a parameter of SqlMapClient.startTransaction 
+                (int isolationLevel).</li>
+
+              <li><strong>SQL Fragment Includes.</strong> No more 
+                repeated where clauses. If you have a need to repeat (such as 
+                a count * and a column list version of a query), now you can include 
+                the common part of the statement. Simply declare an &lt;sql&gt; 
+                element with an id, then &lt;include&gt; it with a refid. You 
+                can also use dynamic SQL, inline parameters and anything else 
+                you can put in any other statement. Two new elements: 
+                <ul>
+                  <li>&lt;sql id=&quot;someSqlToInclude&quot;&gt; ... WHERE BLAH 
+                    = BLAH ...&lt;/sql&gt;</li>
+
+                  <li>&lt;include refid=&quot;someSqlToInclude&quot;/&gt;</li>
+                </ul>
+              </li>
+
+              <li><strong>Default CLOB/BLOB Handlers.</strong> 
+                Why punish everyone with a good database driver? We've now included 
+                default LOB handlers for byte[] and large strings. Any mapping 
+                to byte[] with BLOB or LONGVARGBINARY will use the BLOB handler; 
+                and any mapping to String with CLOB or LONGVARCHAR will use CLOB. 
+                Only poor database drivers are not supported, and may still require 
+                a custom tag handler. In those cases, you can use the default 
+                ones as an example (they're implemented as CTH).</li>
+
+              <li><strong>Other features include: </strong>TopLink 
+                DAO template and TX manager, support for directly implementing 
+                TagHandler interface (in place of CTH), a completely refactored 
+                XML parser and a few minor bug fixes.</li>
+
+              <li><strong>Documentation coming soon.</strong> 
+                &quot;Yeah right!&quot;, you say! Well, admittedly we have been 
+                slow to document lately. Now we have a solution for keeping up 
+                with ourselves. Our<strong> Wiki </strong>will serve as a documentation 
+                launch pad where everyone (including us) can contribute to the 
+                documentation of the new features. Good documentation will be 
+                promoted to the developer guide. </li>
+            </ul>
+		</section>
+
+		<section>
+			<title>iBATIS/Java 2.0.8 available</title>
+			<p>
+				(26 Nov 2004) Under the new release plan, Team Java will be alternating between bug fix releases and feature releases. Version 2.0.8 is a bug fix release, and therefore the next release will be a feature release. This approach will keep the product stable while offering power users access to new features earlier and on a more consistent release schedule.
+			</p>
+			<ul>
+				<li>Probes now always return true for hasReadable/hasWriteable property checks.</li>
+				<li>Fixed OUT/INOUT parameters to proc not retrieved properly (ibatis-12)</li>
+				<li>Verified missing columns throw an exception (ibatis-16)</li>
+				<li>Completely $supplied$ SQL statements are not supported (ibatis-17)</li>
+				<li>Verified parameter type handlers are applied (ibatis-ll)</li>
+				<li>Fixed cache model size of 1 disables caching (ibatis-7)</li>
+				<li>Fixed LRU cache memory leak (ibatis-1)</li>
+				<li>Added commitRequired attribute to transactionManager to force commit even on query (ibatis-10,3)</li>
+			</ul>
+			<p><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS_DBL-2.0.8.470.zip?download">Download 2.0.8</link></p>
+		</section>
+	
+		<section>
+			<title>New version of sql2ibatis available</title>
+			<p>
+				(26 Nov 2004) Alex Egorov has released a new version of his iBATIS configuration and SQL generation tool. It generates configuration files and SQL based on an input DDL file. Check it out. 
+			</p>
+			<p>
+				<fork href="http://alxeg.narod.ru/ibatis/index.html">Download sql2ibatis</fork>
+			</p>
+		</section>
+
+	 	<section>
+     <title>Updated Chinese Document</title>
+     <p>(16 Nov 2004) Huge thanks to Liutao for completely translating the entire Java SQL Maps documentation and tutorial to Chinese!</p>
+     <p><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS-SqlMaps-2_cn.pdf?download">SQL Maps Guide</link> | <link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS-SqlMaps-2-Tutorial_cn.pdf?download">SQL Maps Tutorial</link></p>
+	  </section>
+	
+		<section>
+     <title>Happy Halloween from iBATIS and The Apache Software Foundation</title>
+     <p>(31 Oct 2004) iBATIS has been voted into the Apache Incubator, and a number of resources have been set up. Over the next few weeks, we'll be switching over our current SourceForge resources over to Apache. </p>
+    </section>
+  
+	</body>
+</document>
\ No newline at end of file

Added: incubator/ibatis/trunk/site/src/documentation/content/xdocs/community.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/community.xml?rev=165463&view=auto
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/community.xml (added)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/community.xml Sat Apr 30 23:42:57 2005
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://forrest.apache.org/dtd/document-v12.dtd">
+
+<document>
+
+<header>
+    <title>Apache iBATIS - Community</title>
+</header>
+
+<body>
+
+  <section>
+      <title>Mailing Lists</title>
+      <p>the mailing list</p>
+    </section>
+    <section>
+      <title>Issue Tracking</title>
+      <p>the issue tracker</p>
+    </section>
+    <section>
+      <title>Source Code</title>
+      <p>the source code</p>
+    </section>
+    <section>
+      <title>Contributors</title>
+      <p>the contributors</p>
+    </section>
+</body>
+    
+</document>
\ No newline at end of file

Modified: incubator/ibatis/trunk/site/src/documentation/content/xdocs/contributors.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/contributors.xml?rev=165463&r1=165462&r2=165463&view=diff
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/contributors.xml (original)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/contributors.xml Sat Apr 30 23:42:57 2005
@@ -18,16 +18,28 @@
       	<tr><td>husted</td><td>Ted Husted</td></tr>
       	<tr><td>bgoodin</td><td>Brandon Goodin</td></tr>
       	<tr><td>lmeadors</td><td>Larry Meadors</td></tr>
+      	<tr><td>roberto</td><td>Roberto Rabe</td></tr>
        </table>       
     </section>
     <section>
-      <title>Major Contributors</title>
+      <title>Major Contributors (code, documentation, emails, FAQs, articles and much more...) </title>
       <table>
-	<tr><td><strong>Username</strong></td><td><strong>Developers</strong></td></tr>
-      	<tr><td>roberto</td><td>Roberto Rabe</td></tr>
-      	<tr><td>&nbsp;</td><td>Kris Jenkins</td></tr>
+      	<tr><td>Kris Jenkins</td></tr>
+      	<tr><td>Nathan Maves</td></tr>
+      	<tr><td>Fabrizio Gianneschi</td></tr>
+      	<tr><td>Ron Grabowski</td></tr>
+       </table>       
+    </section>
+    <section>
+      <title>Thanks to...</title>
+      <table>
+      	<tr><td>The Spring Team - For integration, improvements and kudos over the years. - www.spring.org </td></tr>
+      	<tr><td>The Hibernate Team - For being good neighbors. - www.hibernate.org </td></tr>
+      	<tr><td>All of the authors of the articles, feedback and shared experiences that appear on our <link href="http://opensource.atlassian.com/confluence/oss/display/IBATIS/Home">wiki</link></td></tr>
+      	<tr><td>Vic Cekvenich - For relentless promotion of iBATIS.  ;-)</td></tr>
        </table>       
     </section>
+
 
     </body>
 

Added: incubator/ibatis/trunk/site/src/documentation/content/xdocs/documentation.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/documentation.xml?rev=165463&view=auto
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/documentation.xml (added)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/documentation.xml Sat Apr 30 23:42:57 2005
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://forrest.apache.org/dtd/document-v12.dtd">
+
+<document>
+<header>
+    <title>Apache iBATIS - Documentation</title>
+</header>
+<body>
+    <section>
+      <title>FAQ</title>       
+      <p>The FAQ...</p>
+    </section>
+    <section>
+      <title>Wiki</title>       
+      <p>The Wiki...</p>
+    </section>
+    <section>
+      <title>Developer Guide</title>       
+      <p>The developer guide...</p>
+    </section>
+</body>   
+</document>
\ No newline at end of file

Added: incubator/ibatis/trunk/site/src/documentation/content/xdocs/download.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/download.xml?rev=165463&view=auto
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/download.xml (added)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/download.xml Sat Apr 30 23:42:57 2005
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://forrest.apache.org/dtd/document-v12.dtd">
+
+<document>
+
+<header>
+    <title>Apache iBATIS - Downloads</title>
+</header>
+
+<body>
+
+<section>
+<title>Pardon our dust!</title>
+      <p>While we complete our migration to the Apache Software Foundation, the latest iBATIS releases are available through SourceForge.
+      These are <strong>not</strong> formal ASF releases, but they are under the Apache License.</p>
+</section>
+
+<section>
+<title>iBATIS for Java</title>
+      <ul>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS_DBL-2.0.9b.550.zip?download">iBATIS/Java</link> (Jan 2005, v2.09)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisjpetstore/iBATIS_JPetStore-4.0.5.zip?download">JPetstore</link> (Jun 2004, v4.0.5)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS-SqlMaps-2.pdf?download">SQL Maps Manual</link> (Jun 2004)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS-SqlMaps-2-Tutorial.pdf?download">SQL Maps Tutorial</link> (Jun 2004)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS-DAO-2.pdf?download">DAO Manual</link> (Jun 2004)</li>
+        <li><link href="http://ibatis.com/common/javadocs/">JavaDocs</link></li>
+      </ul>
+</section>
+
+<section>
+<title>iBATIS for .NET</title>
+      <p>Best Available Releases</p>
+      <ul>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisnet/iBatisNet-bin-release-1.0.1.321.zip?download">iBATIS.NET- binary</link> (Nov 2004, v1.0.1)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisnet/iBatisNet-source-1.0.1.321.zip?download">iBATIS.NET - source</link> (Nov 2004, v1.0.1)</li>
+      </ul>
+      <p>Development Releases</p>
+      <ul>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisnet/DataMapper-bin-1.1.0.458.zip?download">Data Mapper</link> Alpha (Jan 2005, v1.1.0)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisnet/DataAccess-bin-1.5.0.458.zip?download">Data Access</link> Alpha (Jan 2005, v1.5.0)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisnet/tutorial-1.1.zip?download">Tutorial</link> Alpha (Jan 2005, v1.5.0)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisnet/DevGuide.pdf?download">Documentation</link> Alpha (Oct 2004, v1.0.0)</li>
+        <li><link href="http://prdownloads.sourceforge.net/ibatisnet/NPetshop-1.0.0.RC1.zip?download">NPetstore Example Application</link> Alpha (Oct 2004, v1.0.0)</li>
+      </ul>      
+			<p>Sourcecode Snapshots</p>      
+			<ul>			
+			  <li><link href="http://prdownloads.sourceforge.net/ibatisnet/iBatisNet-src.458.zip?download">12 Jan 2005, Revision 458</link></li>
+			</ul>		
+</section>
+
+</body>
+    
+</document>
\ No newline at end of file

Modified: incubator/ibatis/trunk/site/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/index.xml?rev=165463&r1=165462&r2=165463&view=diff
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/index.xml (original)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/index.xml Sat Apr 30 23:42:57 2005
@@ -24,134 +24,5 @@
         </ul>
 		</section>
 
-	  <section>
-		  <title>iBATIS.NET DataAccess 1.5.0 and DataMapper 1.1.0 are Available</title>
-		  <p>
-		  (12 Jan 2005) Alpha distributions of iBATIS.NET DataMapper 1.1 and DataAccess 1.5 are available at the <link href="http://sourceforge.net/project/showfiles.php?group_id=109704">SourceForge site</link>.
-		  This is not an ASF release, but it is under the Apache License.
-		  For more, see the <link href="http://sourceforge.net/forum/forum.php?forum_id=437027">release notes</link>.
-		  </p>
-		</section>
-
-
-		<section>
-			<title>iBATIS/Java 2.0.9 is Available -- Happy New Year!</title>
-
-					<p>(05 Jan 2005) Distributions of iBATIS 2.0.9 are available at the 
-					<link href="http://sourceforge.net/project/showfiles.php?group_id=61326">SourceForge site</link>.
-		      This is not an ASF release, but it is under the Apache License.
-					</p>
-					
-					<p>					
-              Well, it's been a long time since we've released any major 
-              features. We've been working on stabalizing the platform, organizing 
-              the team and supporting the community. We like to consider this 
-              progress, but sometimes we want is features. So here we go! Check 
-              out the new feature list:
-          </p>
-
-            <ul>
-              <li><strong>Solution for N+1 selects for 1:M and 
-                M:N.</strong> Version 2.0 was always designed for this, I just 
-                didn't have a chance to implement it, until now. It's made possible 
-                by two small additions to the mappings 
-                <ul>
-                  <li>&lt;resultMap...groupBy=&quot;prop1,prop2&quot;&gt; </li>
-                  <li>&lt;result...resultMap=&quot;subResultMapForCollectionItems&quot;&gt;</li>
-                </ul>
-              </li>
-
-              <li><strong>Remappable result sets!</strong> So, 
-                you're one of those people who wants to use a dynamic SELECT clause 
-                in your SQL Maps? Now you can. One simple addition to your select 
-                statements. 
-                <ul>
-                  <li>&lt;select...remapResults=&quot;true&quot;&gt;</li>
-                </ul>
-              </li>
-              
-              <li><strong>Isolation Level Support. </strong>Now 
-                you can specify the transaction isolation level when starting 
-                a transaction. Simply specify it as a parameter of SqlMapClient.startTransaction 
-                (int isolationLevel).</li>
-
-              <li><strong>SQL Fragment Includes.</strong> No more 
-                repeated where clauses. If you have a need to repeat (such as 
-                a count * and a column list version of a query), now you can include 
-                the common part of the statement. Simply declare an &lt;sql&gt; 
-                element with an id, then &lt;include&gt; it with a refid. You 
-                can also use dynamic SQL, inline parameters and anything else 
-                you can put in any other statement. Two new elements: 
-                <ul>
-                  <li>&lt;sql id=&quot;someSqlToInclude&quot;&gt; ... WHERE BLAH 
-                    = BLAH ...&lt;/sql&gt;</li>
-
-                  <li>&lt;include refid=&quot;someSqlToInclude&quot;/&gt;</li>
-                </ul>
-              </li>
-
-              <li><strong>Default CLOB/BLOB Handlers.</strong> 
-                Why punish everyone with a good database driver? We've now included 
-                default LOB handlers for byte[] and large strings. Any mapping 
-                to byte[] with BLOB or LONGVARGBINARY will use the BLOB handler; 
-                and any mapping to String with CLOB or LONGVARCHAR will use CLOB. 
-                Only poor database drivers are not supported, and may still require 
-                a custom tag handler. In those cases, you can use the default 
-                ones as an example (they're implemented as CTH).</li>
-
-              <li><strong>Other features include: </strong>TopLink 
-                DAO template and TX manager, support for directly implementing 
-                TagHandler interface (in place of CTH), a completely refactored 
-                XML parser and a few minor bug fixes.</li>
-
-              <li><strong>Documentation coming soon.</strong> 
-                &quot;Yeah right!&quot;, you say! Well, admittedly we have been 
-                slow to document lately. Now we have a solution for keeping up 
-                with ourselves. Our<strong> Wiki </strong>will serve as a documentation 
-                launch pad where everyone (including us) can contribute to the 
-                documentation of the new features. Good documentation will be 
-                promoted to the developer guide. </li>
-            </ul>
-		</section>
-
-		<section>
-			<title>iBATIS/Java 2.0.8 available</title>
-			<p>
-				(26 Nov 2004) Under the new release plan, Team Java will be alternating between bug fix releases and feature releases. Version 2.0.8 is a bug fix release, and therefore the next release will be a feature release. This approach will keep the product stable while offering power users access to new features earlier and on a more consistent release schedule.
-			</p>
-			<ul>
-				<li>Probes now always return true for hasReadable/hasWriteable property checks.</li>
-				<li>Fixed OUT/INOUT parameters to proc not retrieved properly (ibatis-12)</li>
-				<li>Verified missing columns throw an exception (ibatis-16)</li>
-				<li>Completely $supplied$ SQL statements are not supported (ibatis-17)</li>
-				<li>Verified parameter type handlers are applied (ibatis-ll)</li>
-				<li>Fixed cache model size of 1 disables caching (ibatis-7)</li>
-				<li>Fixed LRU cache memory leak (ibatis-1)</li>
-				<li>Added commitRequired attribute to transactionManager to force commit even on query (ibatis-10,3)</li>
-			</ul>
-			<p><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS_DBL-2.0.8.470.zip?download">Download 2.0.8</link></p>
-		</section>
-	
-		<section>
-			<title>New version of sql2ibatis available</title>
-			<p>
-				(26 Nov 2004) Alex Egorov has released a new version of his iBATIS configuration and SQL generation tool. It generates configuration files and SQL based on an input DDL file. Check it out. 
-			</p>
-			<p>
-				<fork href="http://alxeg.narod.ru/ibatis/index.html">Download sql2ibatis</fork>
-			</p>
-		</section>
-
-	 	<section>
-     <title>Updated Chinese Document</title>
-     <p>(16 Nov 2004) Huge thanks to Liutao for completely translating the entire Java SQL Maps documentation and tutorial to Chinese!</p>
-     <p><link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS-SqlMaps-2_cn.pdf?download">SQL Maps Guide</link> | <link href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS-SqlMaps-2-Tutorial_cn.pdf?download">SQL Maps Tutorial</link></p>
-	  </section>
-	
-		<section>
-     <title>Happy Halloween from iBATIS and The Apache Software Foundation</title>
-     <p>(31 Oct 2004) iBATIS has been voted into the Apache Incubator, and a number of resources have been set up. Over the next few weeks, we'll be switching over our current SourceForge resources over to Apache. </p>
-    </section>
-  
 	</body>
 </document>

Modified: incubator/ibatis/trunk/site/src/documentation/content/xdocs/issuetracking.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/issuetracking.xml?rev=165463&r1=165462&r2=165463&view=diff
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/issuetracking.xml (original)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/issuetracking.xml Sat Apr 30 23:42:57 2005
@@ -22,31 +22,14 @@
       </p>
       <table>
         <tr>
-          <td><link href="http://nagoya.apache.org/jira/browse/IBATIS">iBATIS Java Issue Tracking</link></td>
+          <td><link href="http://issues.apache.org/jira/browse/IBATIS">iBATIS Java Issue Tracking</link></td>
         </tr>
         <tr>
-          <td><link href="http://nagoya.apache.org/jira/browse/IBATISNET"> iBATIS.NET Issue Tracking</link></td>
+          <td><link href="http://issues.apache.org/jira/browse/IBATISNET"> iBATIS.NET Issue Tracking</link></td>
         </tr>
       </table>
     </section>
 
-    <section>
-     <title>Legacy Issues</title>
-     <p>
-      Use the link below to review prior issues that were tracked at the iBATIS for Java SourceForge site, 
-      before iBATIS joined Apache. These links are provided for research purposes only. All new issues
-      must be registered in the ASF tracking system.
-     </p>
-     <table>
-        <tr>
-          <td><link href="http://sourceforge.net/tracker/?group_id=61326">iBATIS Java Legacy Issues</link> - Use for reference only!</td>
-        </tr>
-        <tr>
-          <td>iBATIS.NET Legacy Issues - All tickets were transferred</td>
-        </tr>
-      </table>
-     </section>
-    
-</body>
+    </body>
     
 </document>

Modified: incubator/ibatis/trunk/site/src/documentation/content/xdocs/mailinglists.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/mailinglists.xml?rev=165463&r1=165462&r2=165463&view=diff
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/mailinglists.xml (original)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/mailinglists.xml Sat Apr 30 23:42:57 2005
@@ -22,51 +22,35 @@
           <td><link href="mailto:ibatis-user-java@incubator.apache.org"> iBATIS Java Users List</link></td>
           <td><link href="mailto:ibatis-user-java-subscribe@incubator.apache.org"> Subscribe</link></td>
           <td><link href="mailto:ibatis-user-java-unsubscribe@incubator.apache.org"> Unsubscribe</link></td>
-          <td><fork href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=ibatis-user-java@incubator.apache.org"> Archives</fork></td>
+          <td><fork href="http://www.mail-archive.com/ibatis-user-java@incubator.apache.org/"> Archives</fork></td>
         </tr>
         <tr>
           <td><link href="mailto:ibatis-user-java@incubator.apache.org">iBATIS Java Users DIGEST</link></td>
           <td><link href="mailto:ibatis-user-java-digest-subscribe@incubator.apache.org"> Subscribe</link></td>
           <td><link href="mailto:ibatis-user-java-digest-unsubscribe@incubator.apache.org"> Unsubscribe</link></td>
-          <td><fork href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=ibatis-user-java@incubator.apache.org"> Archives</fork></td>
+          <td><fork href="http://www.mail-archive.com/ibatis-user-java@incubator.apache.org/"> Archives</fork></td>
         </tr>
         <tr>
           <td><link href="mailto:ibatis-user-cs@incubator.apache.org"> iBATIS.NET Users List</link></td>
           <td><link href="mailto:ibatis-user-cs-subscribe@incubator.apache.org"> Subscribe</link></td>
           <td><link href="mailto:ibatis-user-cs-unsubscribe@incubator.apache.org"> Unsubscribe</link></td>
-          <td><fork href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=ibatis-user-cs@incubator.apache.org"> Archives</fork></td>
+          <td><fork href="http://www.mail-archive.com/ibatis-user-cs@incubator.apache.org/"> Archives</fork></td>
         </tr>
         <tr>
           <td><link href="mailto:ibatis-dev@incubator.apache.org"> iBATIS Developer List</link></td>
           <td><link href="mailto:ibatis-dev-subscribe@incubator.apache.org"> Subscribe</link></td>
           <td><link href="mailto:ibatis-dev-unsubscribe@incubator.apache.org"> Unsubscribe</link></td>
-          <td><fork href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=ibatis-dev@incubator.apache.org"> Archives</fork></td>
+          <td><fork href="http://www.mail-archive.com/ibatis-dev@incubator.apache.org/"> Archives</fork></td>
         </tr>
         <tr>
           <td><link href="mailto:ibatis-commits@incubator.apache.org"> iBATIS Commits List</link></td>
           <td><link href="mailto:ibatis-commits-subscribe@incubator.apache.org"> Subscribe</link></td>
           <td><link href="mailto:ibatis-commits-unsubscribe@incubator.apache.org"> Unsubscribe</link></td>
-          <td><fork href="http://nagoya.apache.org/eyebrowse/SummarizeList?listName=ibatis-commits@incubator.apache.org"> Archives</fork></td>
+          <td><fork href="http://mail-archives.apache.org/mod_mbox/incubator-ibatis-commits/"> Archives</fork></td>
         </tr>
       </table>
     </section>
     
-    <section>
-      <title>Legacy Support Forums</title>
-      <p>
-      Use these links to review support threds that were opened at our SourceForge site. These links are provided for research purposes only. All new support threads must be opened on the ASF mailing lists. 
-      </p>
-
-      <table>
-        <tr>
-          <td>LEGACY <link href="http://sourceforge.net/tracker/?group_id=61326">iBATIS Java Support Forum</link> - Use for reference only!</td>
-        </tr>
-        <tr>
-          <td>LEGACY <link href="http://sourceforge.net/forum/?group_id=109704">iBATIS.NET Support Forum</link> - Use for reference only!</td>
-        </tr>
-      </table>
-</section>
-
-</body>
+ </body>
     
 </document>

Modified: incubator/ibatis/trunk/site/src/documentation/content/xdocs/site.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/site.xml?rev=165463&r1=165462&r2=165463&view=diff
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/site.xml (original)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/site.xml Sat Apr 30 23:42:57 2005
@@ -2,29 +2,34 @@
 
 <site label="iBATIS" href="" xmlns="http://apache.org/forrest/linkmap/1.0">
 
-  <about label="iBATIS">
-    <index label="News" href="index.html" />
-    <news label="About" href="about.html" />
-    <downloads label="Downloads" href="downloads.html" />
+  <home label="" tab="Home">
+    <news label="News" href="index.html"/>
+    <about label="About" href="about.html" />
     <license label="License" href="license.html" />
-  </about>
+    <bylaws label="ByLaws" href="bylaws.html" />
+    <status label="Status" href="status.html"/>
+    <archive label="News Archive" href="archive.html" />
+  </home>
 
-  <documentation label="Documentation">
-    <wiki label="Wiki" href="http://wiki.apache.org/ibatis" />
+  <documentation label="" tab="Documentation" >
+    <documentation label="Documentation" href="documentation.html"/>
+    <faq label="FAQ" href="http://opensource.atlassian.com/confluence/oss/display/IBATIS/Frequently%2BAsked%2BQuestions" />
+    <wiki label="Wiki" href="http://opensource.atlassian.com/confluence/oss/display/IBATIS/Home" />
     <devguide label="Dev Guide" href="http://ibatisnet.sourceforge.net/DevGuide/index.html" />
-    <devguide label="Dev Guide (PDF)" href="http://ibatisnet.sourceforge.net/DevGuide.pdf" />
-    
-    <resources label="Resources" href="resources.html" />
+    <devguide label="Dev Guide (PDF)" href="http://ibatisnet.sourceforge.net/DevGuide.pdf" />    
   </documentation>
 
-  <community label="Community">
+  <community label="" tab="Community" >
+    <community label="Community" href="community.html" />
     <mailinglists label="Mailing Lists" href="mailinglists.html" />
     <issuetracking label="Issue Tracking" href="issuetracking.html" />
     <sourcecode label="Source Code" href="sourcecode.html" />
     <contributors label="Contributors" href="contributors.html" />
-    <bylaws label="ByLaws" href="bylaws.html" />
-    <status label="Status" href="status.html"/>
   </community>
+
+  <download label="" tab="Download" >
+    <download label="Download" href="download.html" />
+  </download>
 
   <external-refs>
     <xml.apache.org href="http://xml.apache.org/" />

Modified: incubator/ibatis/trunk/site/src/documentation/content/xdocs/tabs.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/content/xdocs/tabs.xml?rev=165463&r1=165462&r2=165463&view=diff
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/content/xdocs/tabs.xml (original)
+++ incubator/ibatis/trunk/site/src/documentation/content/xdocs/tabs.xml Sat Apr 30 23:42:57 2005
@@ -7,5 +7,8 @@
   copyright="Apache Software Foundation"
   xmlns:xlink="http://www.w3.org/1999/xlink">
 
-  <tab label="Home" dir=""/>
+  <tab label="Home"          dir="" indexfile="index.html"/>
+  <tab label="Community"     dir="" indexfile="community.html"/>
+  <tab label="Documentation" dir="" indexfile="documentation.html"/>
+  <tab label="Download"      dir="" indexfile="download.html"/>
 </tabs>

Added: incubator/ibatis/trunk/site/src/documentation/resources/images/favicon.ico
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/resources/images/favicon.ico?rev=165463&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ibatis/trunk/site/src/documentation/resources/images/favicon.ico
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/ibatis/trunk/site/src/documentation/resources/images/ibatis.gif
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/resources/images/ibatis.gif?rev=165463&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ibatis/trunk/site/src/documentation/resources/images/ibatis.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/ibatis/trunk/site/src/documentation/resources/images/logo.gif
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/resources/images/logo.gif?rev=165463&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/ibatis/trunk/site/src/documentation/resources/images/logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/ibatis/trunk/site/src/documentation/skinconf.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/site/src/documentation/skinconf.xml?rev=165463&r1=165462&r2=165463&view=diff
==============================================================================
--- incubator/ibatis/trunk/site/src/documentation/skinconf.xml (original)
+++ incubator/ibatis/trunk/site/src/documentation/skinconf.xml Sat Apr 30 23:42:57 2005
@@ -29,7 +29,7 @@
     no search box. @domain will enable sitesearch for the specific domain with google.
     In other words google will search the @domain for the query string.
   -->
-  <search name="iBATIS" domain="incubator.apache.org" provider="google"/>
+  <search name="iBATIS" domain="apache.org" provider="google"/>
 
   <!-- Disable the print link? If enabled, invalid HTML 4.0.1 -->
   <disable-print-link>true</disable-print-link>  
@@ -57,7 +57,7 @@
   <disable-compliance-links>true</disable-compliance-links>
 
   <!-- Render mailto: links unrecognisable by spam harvesters? -->
-  <obfuscate-mail-links>true</obfuscate-mail-links>
+  <obfuscate-mail-links>false</obfuscate-mail-links>
   <obfuscate-mail-value>.at.</obfuscate-mail-value>
 
   <!-- Disable the javascript facility to change the font size -->
@@ -68,16 +68,16 @@
   <project-name>iBATIS</project-name>
   <project-description>iBATIS</project-description>
   <project-url>http://incubator.apache.org/ibatis/site/index.html</project-url>
-  <project-logo>resources/images/ibatis-banner.gif</project-logo>
+  <project-logo>resources/images/ibatis.gif</project-logo>
   
 
   <!-- optional group logo
        default skin: renders it at the top-left corner 
    -->
-  <group-name>Apache Incubator</group-name>
-  <group-description>Apache Incubator</group-description>
-  <group-url>http://incubator.apache.org/</group-url>
-  <group-logo>resources/images/incubator-logo.png</group-logo>
+  <group-name>iBATIS</group-name>
+  <group-description>iBATIS</group-description>
+  <group-url>http://incubator.apache.org/ibatis/site/index.html</group-url>
+  <group-logo>resources/images/logo.gif</group-logo>
 
   <!-- optional host logo (e.g. sourceforge logo)
        default skin: renders it at the bottom-left corner -->
@@ -85,7 +85,7 @@
   <host-logo></host-logo>
 
   <!-- relative url of a favicon file, normally favicon.ico -->
-  <favicon-url></favicon-url>
+  <favicon-url>resources/images/favicon.ico</favicon-url>
 
   <!-- The following are used to construct a copyright statement -->
   <year>2004</year>
@@ -104,8 +104,8 @@
   -->
   <trail>
     <link1 name="Apache" href="http://www.apache.org/"/>
-    <link2 name="Incubator" href="http://incubator.apache.org/"/>
-    <link3 name="iBATIS" href="http://incubator.apache.org/ibatis/site/index.html"/>
+    <link2 name="iBATIS" href="http://incubator.apache.org/ibatis/site/index.html"/>
+    <link3 name="" href=""/>
   </trail>
 
   <!-- Configure the TOC, i.e. the Table of Contents.