Author: ted
Date: 2004-11-27 09:46:20 -0600 (Sat, 27 Nov 2004)
New Revision: 359

Added:
   site/
   site/trunk/
   site/trunk/forrest-targets.ent
   site/trunk/forrest.properties
   site/trunk/src/
   site/trunk/src/documentation/
   site/trunk/src/documentation/README.txt
   site/trunk/src/documentation/classes/
   site/trunk/src/documentation/classes/CatalogManager.properties
   site/trunk/src/documentation/content/
   site/trunk/src/documentation/content/xdocs/
   site/trunk/src/documentation/content/xdocs/contributors.xml
   site/trunk/src/documentation/content/xdocs/downloads.xml
   site/trunk/src/documentation/content/xdocs/faq.xml
   site/trunk/src/documentation/content/xdocs/index.xml
   site/trunk/src/documentation/content/xdocs/license.xml
   site/trunk/src/documentation/content/xdocs/mailinglists.xml
   site/trunk/src/documentation/content/xdocs/news.xml
   site/trunk/src/documentation/content/xdocs/project/
   site/trunk/src/documentation/content/xdocs/project/builds.xml
   site/trunk/src/documentation/content/xdocs/project/cvs.xml
   site/trunk/src/documentation/content/xdocs/project/license.xml
   site/trunk/src/documentation/content/xdocs/resources.xml
   site/trunk/src/documentation/content/xdocs/site.xml
   site/trunk/src/documentation/content/xdocs/tabs.xml
   site/trunk/src/documentation/resources/
   site/trunk/src/documentation/resources/images/
   site/trunk/src/documentation/resources/images/Logo_25wht.gif
   site/trunk/src/documentation/resources/images/Thumbs.db
   site/trunk/src/documentation/resources/images/apache-incubator-logo.png
   site/trunk/src/documentation/resources/images/apache-logo.gif
   site/trunk/src/documentation/resources/images/ibatis-icon.gif
   site/trunk/src/documentation/resources/images/ibatis-logo.gif
   site/trunk/src/documentation/resources/images/icon.png
   site/trunk/src/documentation/resources/images/incubator-logo.gif
   site/trunk/src/documentation/resources/images/logo.jpg
   site/trunk/src/documentation/resources/images/maven-button-1.png
   site/trunk/src/documentation/skinconf.xml
Log:
Import initial website for incubator.apache.org.

Added: site/trunk/forrest-targets.ent
===================================================================
--- site/trunk/forrest-targets.ent        2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/forrest-targets.ent        2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,174 @@
+<!--
+This build.xml snippet contains Forrest targets for Ant 1.5+.  It checks that
+the user has set ${forrest.home}, either in one of:
+  build.properties
+  project.properties
+  ant.properties
+  .ant.properties
+or with the FORREST_HOME environment variable, and prints an informative error
+message if not found.
+
+Usage:
+1) Copy this file to somewhere in your project.
+2) Add the following to the top of your project's Ant build.xml script
+(adjusting the path):
+
+  <!DOCTYPE project [
+    <!ENTITY forrest-targets SYSTEM "file:./forrest-targets.ent">
+  ]>
+
+3) Before the closing '</project>' in your build.xml, add this:
+
+  &forrest-targets;
+
+This is like expanding a macro: it pulls in the contents of this file.
+
+A minimal build.xml would thus be:
+
+<!DOCTYPE project [
+<!ENTITY forrest-targets SYSTEM "file:./forrest-targets.ent">
+]>
+
+<project default="site">
+    &forrest-targets;
+</project>
+-->
+
+  <target name="site" depends="forrest.init" description="Generates static 
HTML documentation">
+    <ant antfile="${forrest.home}/forrest.antproxy.xml" target="site"/>
+  </target>
+
+  <target name="webapp" depends="forrest.init" description="Generates an 
unpackaged webapp of the website">
+    <ant antfile="${forrest.home}/forrest.antproxy.xml" target="webapp"/>
+  </target>
+
+  <target name="war" depends="forrest.init" description="Generates a .war file 
containing the website">
+    <ant antfile="${forrest.home}/forrest.antproxy.xml" target="war"/>
+  </target>
+
+  <target name="validate" depends="forrest.init" description="Validates XML 
documentation files">
+    <ant antfile="${forrest.home}/forrest.antproxy.xml" target="validate"/>
+  </target>
+
+  <target name="forrest.init" depends="forrest.sethome, forrest.home.defined"/>
+
+  <target name="forrest.sethome" depends="forrest.loadenv,
+  forrest.checkenv, forrest.checkhome, forrest.check-build.properties,
+  forrest.check-project.properties, forrest.check-ant.properties,
+  forrest.check-.ant.properties"/>
+
+  <target name="forrest.loadenv" unless="forrest.home.present">
+    <property environment="env"/>
+    <echo level="verbose">Forrest: Got ${env.FORREST_HOME}</echo>
+  </target>
+
+  <target name="forrest.checkenv" if="env.FORREST_HOME">
+    <echo level="verbose">Found $FORREST_HOME..</echo>
+    <property name="forrest.home" location="${env.FORREST_HOME}"/>
+    <echo level="verbose">forrest.home set to ${forrest.home}</echo>
+    <available file="${forrest.home}" type="dir" 
property="forrest.home.present"/>
+  </target>
+
+
+  <target name="forrest.checkhome">
+    <available file="${forrest.home}" type="dir" 
property="forrest.home.present"/>
+    <available file="build.properties" type="file" 
property="build.properties.present"/>
+    <available file="project.properties" type="file" 
property="project.properties.present"/>
+    <available file="ant.properties" type="file" 
property="ant.properties.present"/>
+    <available file=".ant.properties" type="file" 
property=".ant.properties.present"/>
+  </target>
+
+  <!-- No we can't extract the commonalities below into an antcall'ed target,
+  because it wouldn't be able to set forrest.home -->
+  <target name="forrest.check-build.properties" unless="forrest.home.present"
+  if="build.properties.present">
+    <echo level="verbose">Forrest: Checking build.properties..</echo>
+    <loadproperties srcfile="build.properties">
+      <filterchain>
+        <linecontains>
+          <contains value="forrest.home"/>
+        </linecontains>
+      </filterchain>
+    </loadproperties>
+    <available file="${forrest.home}" type="dir" 
property="forrest.home.present"/>
+
+  </target>
+
+  <target name="forrest.check-project.properties" unless="forrest.home.present"
+  if="project.properties.present">
+    <echo level="verbose">Forrest: Checking project.properties..</echo>
+    <loadproperties srcfile="project.properties">
+      <filterchain>
+        <linecontains>
+          <contains value="forrest.home"/>
+        </linecontains>
+      </filterchain>
+    </loadproperties>
+    <available file="${forrest.home}" type="dir" 
property="forrest.home.present"/>
+  </target>
+
+  <target name="forrest.check-ant.properties" unless="forrest.home.present"
+  if="ant.properties.present">
+    <echo level="verbose">Forrest: Checking ant.properties..</echo>
+    <loadproperties srcfile="ant.properties">
+      <filterchain>
+        <linecontains>
+          <contains value="forrest.home"/>
+        </linecontains>
+      </filterchain>
+    </loadproperties>
+    <available file="${forrest.home}" type="dir" 
property="forrest.home.present"/>
+  </target>
+
+  <target name="forrest.check-.ant.properties" unless="forrest.home.present"
+  if=".ant.properties.present">
+    <echo level="verbose">Forrest: Checking .ant.properties..</echo>
+    <loadproperties srcfile=".ant.properties">
+      <filterchain>
+        <linecontains>
+          <contains value="forrest.home"/>
+        </linecontains>
+      </filterchain>
+    </loadproperties>
+    <available file="${forrest.home}" type="dir" 
property="forrest.home.present"/>
+  </target>
+
+  <target name="forrest.home.defined" depends="forrest.sethome" 
unless="forrest.home.present">
+    <property name="path" value="${user.home}/xml-forrest/build/dist/shbat"/>
+    <pathconvert targetos="windows" property="winpath">
+      <path>
+        <pathelement location="${path}"/>
+      </path>
+    </pathconvert>
+    <pathconvert targetos="unix" property="unixpath">
+      <path>
+        <pathelement
+          location="${path}"/>
+      </path>
+    </pathconvert>
+
+    <echo>
+      ----------------------------------------------
+      To run this target, you need Forrest installed.
+      Please do the following:
+
+      export CVSROOT=:pserver:[EMAIL PROTECTED]:/home/cvspublic
+      cvs checkout xml-forrest
+      cd xml-forrest
+      build      (Windows)
+      ./build.sh (Unix)
+
+      Then either:
+
+      - Set FORREST_HOME as the Forrest build instructions describe
+      - Create a build.properties, with the forrest.home property pointing to
+        the forrest shbat directory, eg:
+
+        forrest.home=${winpath}  (Windows)
+        forrest.home=${unixpath}  (Unix)
+
+        (adjusting the path according to where your xml-forrest is)
+      ----------------------------------------------
+    </echo>
+    <fail message="Need to define $${forrest.home}"/>
+  </target>

Added: site/trunk/forrest.properties
===================================================================
--- site/trunk/forrest.properties        2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/forrest.properties        2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,14 @@
+##############
+# Properties used by forrest.build.xml for building the website
+##############
+
+# Prints out a summary of Forrest settings for this project
+#forrest.echo=true
+
+# Project name (used to name .war file)
+#project.name=apache-ibatis-site
+
+# Specifies name of Forrest skin to use
+#project.skin=forrest-site
+#project.skin=forrest-css
+project.skin=tigris

Added: site/trunk/src/documentation/README.txt
===================================================================
--- site/trunk/src/documentation/README.txt        2004-11-21 19:10:30 UTC (rev 
358)
+++ site/trunk/src/documentation/README.txt        2004-11-27 15:46:20 UTC (rev 
359)
@@ -0,0 +1,10 @@
+This is the base documentation directory. It usually contains two files:
+
+skinconf.xml     # This file customizes Forrest for your project. In it, you
+                 # tell forrest the project name, logo, copyright info, etc
+
+sitemap.xmap     # Optional. This sitemap overrides the default one bundled
+                 # with Forrest. Typically, one would copy a sitemap from
+                 # xml-forrest/src/resources/conf/sitemap.xmap, and customize
+                 # it.
+

Added: site/trunk/src/documentation/classes/CatalogManager.properties
===================================================================
--- site/trunk/src/documentation/classes/CatalogManager.properties        
2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/classes/CatalogManager.properties        
2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,37 @@
+# Copyright 2002-2004 The Apache Software Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+#=======================================================================
+# CatalogManager.properties
+#
+# This is the default properties file for Apache Forrest.
+# This facilitates local configuration of application-specific catalogs.
+#
+# See the Apache Forrest documentation:
+# http://forrest.apache.org/docs/your-project.html
+# http://forrest.apache.org/docs/validation.html
+
+# verbosity ... level of messages for status/debug
+# See forrest/src/core/context/WEB-INF/cocoon.xconf
+
+# catalogs ... list of additional catalogs to load
+#  (Note that Apache Forrest will automatically load its own default catalog
+#  from src/core/context/resources/schema/catalog.xcat)
+# use full pathnames
+# pathname separator is always semi-colon (;) regardless of operating system
+# directory separator is always slash (/) regardless of operating system
+#
+#catalogs=/home/me/forrest/my-site/src/documentation/resources/schema/catalog.xcat
+catalogs=
+

Added: site/trunk/src/documentation/content/xdocs/contributors.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/contributors.xml        
2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/contributors.xml        
2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"document-v12.dtd">
+
+<document>
+
+<header>
+    <title>Apache iBATIS Contributors</title>
+</header>
+
+<body>
+    <section>
+      <title>ASF Committers</title>
+      <table>
+        
<tr><td><strong>Username</strong></td><td><strong>Committers</strong></td></tr>
+              <tr><td>cbegin</td><td>Clinton Begin</td></tr>
+              <tr><td>gbayon</td><td>Gilles Bayon</td></tr>
+              <tr><td>husted</td><td>Ted Husted</td></tr>
+              <tr><td>bgoodin</td><td>Brandon Goodin</td></tr>
+              <tr><td>lmeadows</td><td>Larry Meadors</td></tr>
+       </table>
+    </section>
+
+    </body>
+
+    <footer>
+            <legal>Java, J2EE, and JCP are trademarks or registered trademarks 
of Sun Microsystems, Inc. in the United States and other countries.<br />
+        &copy; 2004, Apache Software Foundation
+        </legal>
+    </footer>
+
+</document>

Added: site/trunk/src/documentation/content/xdocs/downloads.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/downloads.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/downloads.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"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.</p>
+</section>
+
+<section>
+<title>iBATIS for Java</title>
+      <ul>
+        <li><link 
href="http://prdownloads.sourceforge.net/ibatisdb/iBATIS_DBL-2.0.7.459.zip?download";>Current
 release</link> (Oct 2004, v2.0.7)</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>JavaDocs</li>
+      </ul>
+</section>
+
+<section>
+<title>iBATIS for .NET</title>
+      <ul>
+        <li><link 
href="http://prdownloads.sourceforge.net/ibatisnet/iBatisNet-bin-release-1.0.1.321.zip";>Current
 Release</link> (Oct 2004, v1.0.1)</li>
+        <li><link 
href="http://prdownloads.sourceforge.net/ibatisnet/iBatisNet-source-1.0.1.321.zip?download";>Current
 Source Release</link> (Oct 2004, v1.0.1)</li>
+        <li><link 
href="http://prdownloads.sourceforge.net/ibatisnet/NPetshop-1.0.0.RC1.zip?download";>NPetstore
 Example Application</link> (Oct 2004)</li>
+        <li><link 
href="http://prdownloads.sourceforge.net/ibatisnet/DevGuide.pdf?download";>Tutorial</link> (Oct
 2004, v1.0.0)</li>
+        <li><link 
href="http://prdownloads.sourceforge.net/ibatisnet/DevGuide.pdf?download";>Documentation</link> (Oct
 2004, v1.0.0)</li>
+      </ul>
+</section>
+
+</body>
+
+<footer>
+            <legal>Java, J2EE, and JCP are trademarks or registered trademarks 
of Sun Microsystems, Inc. in the United States and other countries.<br />
+        &copy; 2004, Apache Software Foundation
+        </legal>
+</footer>
+
+</document>
\ No newline at end of file

Added: site/trunk/src/documentation/content/xdocs/faq.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/faq.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/faq.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"document-v12.dtd">
+
+<document>
+
+<header>
+    <title>Apache iBATIS FAQ</title>
+</header>
+
+<body>
+
+<section>
+    <title>Frequently_Asked_Questions</title>
+    <p><strong>General</strong></p>
+      <ol>
+        <li><link href="#what-is">What is IBATIS?</link></li>
+      </ol>
+</section>
+
+<section>
+    <title>General</title>
+      <dl>
+        <dt>What is iBATIS?</dt>
+        <dd><anchor id="what-is" /> The iBATIS Data Mapper framework makes it 
easier to use a database with Java and .NET applications. iBATIS couples 
objects with stored procedures or SQL statements using a XML descriptor.</dd>
+      </dl>
+ </section>
+
+     </body>
+
+    <footer>
+            <legal>Java, J2EE, and JCP are trademarks or registered trademarks 
of Sun Microsystems, Inc. in the United States and other countries.<br />
+        &copy; 2004, Apache Software Foundation
+        </legal>
+    </footer>
+
+</document>
\ No newline at end of file

Added: site/trunk/src/documentation/content/xdocs/index.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/index.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/index.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://apache.org/forrest/dtd/document-v12.dtd";>
+<document>
+  <header>
+    <title>Apache iBATIS</title>
+  </header>
+  <body>
+    <section>
+      <title>Welcome to Apache iBATIS</title>
+      <p>The iBATIS Data Mapper framework makes it easier to use a database 
with Java and .NET applications. iBATIS couples objects with stored procedures 
or SQL statements using a XML descriptor. </p>
+      <p>Simplicity is the biggest advantage of the iBATIS Data Mapper over 
object relational mapping tools. To use iBATIS Data Mapper you rely on your own 
objects, XML, and SQL. There is little to learn that you don't already know.</p>
+      <p>With iBATIS Data Mapper you have the full power of both SQL and 
stored procedures at your fingertips.</p>
+    </section>
+  </body>
+</document>

Added: site/trunk/src/documentation/content/xdocs/license.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/license.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/license.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"document-v12.dtd">
+
+<document>
+
+<header>
+    <title>The Apache License</title>
+</header>
+
+<body>
+    <p> See the <fork 
href="http://www.apache.org/licenses/LICENSE-2.0";>License</fork> for license 
infomation.</p>
+</body>
+
+<footer>
+    <legal>Java, J2EE, and JCP are trademarks or registered trademarks of Sun 
Microsystems, Inc. in the United States and other countries.<br />
+        &copy; 2004, Apache Software Foundation
+    </legal>
+</footer>
+
+</document>

Added: site/trunk/src/documentation/content/xdocs/mailinglists.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/mailinglists.xml        
2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/mailinglists.xml        
2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"document-v12.dtd">
+
+<document>
+
+<header>
+    <title>Apache iBATIS Mailing Lists</title>
+</header>
+
+<body>
+
+    <section>
+      <title>Mailing Lists</title>
+      <p>Use the links below to send mail to, subscribe, unsubscribe or check 
the archives of the iBATIS mailing lists.
+      Subcribing and unsubscribing is performed by simply sending a blank 
email to applicable address (as linked below).
+      </p>
+      <table>
+        <tr>
+          <td><link 
href="mailto:[EMAIL PROTECTED]";> iBATIS Java Users 
List</link></td>
+          <td><link href="mailto:[EMAIL PROTECTED]"> Subscribe</link></td>
+          <td><link href="mailto:[EMAIL PROTECTED]"> Unsubscribe</link></td>
+          <td><fork href="http://nagoya.apache.org/eyebrowse/[EMAIL 
PROTECTED]"> Archives</fork></td>
+        </tr>
+        <tr>
+          <td><link href="mailto:[EMAIL PROTECTED]";> iBATIS 
Java Users List</link></td>
+          <td><link href="mailto:[EMAIL PROTECTED]"> Subscribe</link></td>
+          <td><link href="mailto:[EMAIL PROTECTED]"> Unsubscribe</link></td>
+          <td><fork href="http://nagoya.apache.org/eyebrowse/[EMAIL 
PROTECTED]"> Archives</fork></td>
+        </tr>
+        <tr>
+          <td><link href="mailto:[EMAIL PROTECTED]";> iBATIS 
Developer List</link></td>
+          <td><link href="mailto:[EMAIL PROTECTED]"> Subscribe</link></td>
+          <td><link href="mailto:[EMAIL PROTECTED]"> Unsubscribe</link></td>
+          <td><fork href="http://nagoya.apache.org/eyebrowse/[EMAIL 
PROTECTED]"> Archives</fork></td>
+        </tr>
+      </table>
+    </section>
+
+</body>
+
+<footer>
+    <legal>Java, J2EE, and JCP are trademarks or registered trademarks of Sun 
Microsystems, Inc. in the United States and other countries.<br />
+        &copy; 2004, Apache Software Foundation
+    </legal>
+</footer>
+
+</document>
\ No newline at end of file

Added: site/trunk/src/documentation/content/xdocs/news.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/news.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/news.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://apache.org/forrest/dtd/document-v12.dtd";>
+<document>
+  <header>
+    <title>Apache iBATIS News</title>
+  </header>
+  <body>
+
+    <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>
+    </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: site/trunk/src/documentation/content/xdocs/project/builds.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/project/builds.xml        
2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/project/builds.xml        
2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://apache.org/forrest/dtd/document-v12.dtd";>
+<document>
+  <header>
+    <title>Release Builds</title>
+  </header>
+  <body>
+
+          <section>
+                <title>File extension/Browser issue!</title>
+                  <p>When downloading from some mirrors with some browsers 
(IE?) the archives get a .gz extension instead of .tgz. Please make sure the 
files are named myfaces-1.0.5.tgz and myfaces-1.0.5-examples.tgz on your local 
disk. Otherwise there could be problems on unpacking them.
+Current release 1.0.5 beta
+</p>
+<ul>
+        <li>Binaries and documentation (API Doc) / myfaces-1.0.5.tgz --> <link 
href="http://sourceforge.net/project/showfiles.php?group_id=69709&amp;package_id=68729";>sourceforge.net</link></li>
+        <li>Examples web application / myfaces-1.0.5-examples.tgz --> <link 
href="http://sourceforge.net/project/showfiles.php?group_id=69709&amp;package_id=68729";>sourceforge.net</link></li>
+        <li>Source code / myfaces-1.0.5-src.tgz --> <link 
href="http://sourceforge.net/project/showfiles.php?group_id=69709&amp;package_id=68729";>sourceforge.net</link></li>
+</ul>
+
+<p>
+Do you want to get informed on new MyFaces releases?
+--> <link 
href="http://sourceforge.net/project/filemodule_monitor.php?filemodule_id=68729";>Monitor</link>
+  </p>
+          </section>
+
+</body>
+</document>
\ No newline at end of file

Added: site/trunk/src/documentation/content/xdocs/project/cvs.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/project/cvs.xml        
2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/project/cvs.xml        
2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://apache.org/forrest/dtd/document-v12.dtd";>
+<document>
+  <header>
+    <title>CVS</title>
+  </header>
+  <body>
+<ul>
+        <li><link href="http://cvs.sourceforge.net/viewcvs.py/myfaces/";>Browse 
the CVS Repository</link></li>
+        <li><link href="http://sourceforge.net/cvs/?group_id=69709";>Anonymous 
CVS Access</link></li>
+</ul>
+</body>
+</document>
\ No newline at end of file

Added: site/trunk/src/documentation/content/xdocs/project/license.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/project/license.xml        
2004-11-21 19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/project/license.xml        
2004-11-27 15:46:20 UTC (rev 359)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://apache.org/forrest/dtd/document-v12.dtd";>
+<document>
+  <header>
+    <title>License</title>
+  </header>
+  <body>
+          <p>MyFaces is shipped under an OpenSource License.
+           The Apache 2.0 License can be read <link 
href="http://www.apache.org/licenses/LICENSE-2.0.txt";>here</link>.</p>
+</body>
+</document>
\ No newline at end of file

Added: site/trunk/src/documentation/content/xdocs/resources.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/resources.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/resources.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"document-v12.dtd">
+
+<document>
+
+<header>
+    <title>Apache iBATIS</title>
+</header>
+
+<body>
+
+<p><strong><link href="http://www.ibatis.com";>Original iBATIS 
Website</link></strong>
+
+</p>
+</body>
+
+<footer>
+            <legal>Java, J2EE, and JCP are trademarks or registered trademarks 
of Sun Microsystems, Inc. in the United States and other countries.<br />
+        &copy; 2004, Apache Software Foundation
+        </legal>
+</footer>
+
+</document>
\ No newline at end of file

Added: site/trunk/src/documentation/content/xdocs/site.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/site.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/site.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<site label="iBATIS" href="" xmlns="http://apache.org/forrest/linkmap/1.0";>
+
+  <about label="iBATIS">
+    <index label="Welcome" href="index.html" />
+    <news label="News" href="news.html" />
+    <downloads label="Downloads" href="downloads.html" />
+    <license label="License" href="license.html" />
+  </about>
+
+  <documentation label="Documentation">
+    <faq label="FAQ" href="faq.html" />
+    <resources label="Resources" href="resources.html" />
+  </documentation>
+
+  <community label="Community">
+    <mailinglists label="Mailing Lists" href="mailinglists.html" />
+    <contributors label="Contributors" href="contributors.html" />
+  </community>
+
+  <external-refs>
+    <xml.apache.org href="http://xml.apache.org/"; />
+  </external-refs>
+</site>

Added: site/trunk/src/documentation/content/xdocs/tabs.xml
===================================================================
--- site/trunk/src/documentation/content/xdocs/tabs.xml        2004-11-21 
19:10:30 UTC (rev 358)
+++ site/trunk/src/documentation/content/xdocs/tabs.xml        2004-11-27 
15:46:20 UTC (rev 359)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE tabs PUBLIC "-//APACHE//DTD Cocoon Documentation Tab V1.0//EN" 
"tab-cocoon-v10.dtd">
+
+<tabs software="Apache iBATIS"
+  title="Apache iBATIS"
+  copyright="Apache Software Foundation"
+  xmlns:xlink="http://www.w3.org/1999/xlink";>
+
+  <tab label="Home" dir=""/>
+</tabs>

Added: site/trunk/src/documentation/resources/images/Logo_25wht.gif
===================================================================
(Binary files differ)


Property changes on: 
site/trunk/src/documentation/resources/images/Logo_25wht.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/Thumbs.db
===================================================================
(Binary files differ)


Property changes on: site/trunk/src/documentation/resources/images/Thumbs.db
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/apache-incubator-logo.png
===================================================================
(Binary files differ)


Property changes on: 
site/trunk/src/documentation/resources/images/apache-incubator-logo.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/apache-logo.gif
===================================================================
(Binary files differ)


Property changes on: 
site/trunk/src/documentation/resources/images/apache-logo.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/ibatis-icon.gif
===================================================================
(Binary files differ)


Property changes on: 
site/trunk/src/documentation/resources/images/ibatis-icon.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/ibatis-logo.gif
===================================================================
(Binary files differ)


Property changes on: 
site/trunk/src/documentation/resources/images/ibatis-logo.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/icon.png
===================================================================
(Binary files differ)


Property changes on: site/trunk/src/documentation/resources/images/icon.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/incubator-logo.gif
===================================================================
(Binary files differ)


Property changes on: 
site/trunk/src/documentation/resources/images/incubator-logo.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/logo.jpg
===================================================================
(Binary files differ)


Property changes on: site/trunk/src/documentation/resources/images/logo.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/resources/images/maven-button-1.png
===================================================================
(Binary files differ)


Property changes on: 
site/trunk/src/documentation/resources/images/maven-button-1.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: site/trunk/src/documentation/skinconf.xml
===================================================================
--- site/trunk/src/documentation/skinconf.xml        2004-11-21 19:10:30 UTC 
(rev 358)
+++ site/trunk/src/documentation/skinconf.xml        2004-11-27 15:46:20 UTC 
(rev 359)
@@ -0,0 +1,111 @@
+<?xml version="1.0"?>
+
+<!--
+Skin configuration file. This file contains details of your project, which will
+be used to configure the chosen Forrest skin.
+-->
+
+<!DOCTYPE skinconfig [
+
+  <!ENTITY % links.att 'name CDATA #REQUIRED'>
+  <!ENTITY % link.att 'name CDATA #REQUIRED href CDATA #REQUIRED'>
+  <!ELEMENT skinconfig (disable-search?, disable-print-link?, 
disable-pdf-link?,
+  disable-xml-link?, disable-compliance-links?, searchsite-domain?, 
searchsite-name?,
+  project-name, project-url, project-logo, group-name?, group-url?, 
group-logo?,
+  host-url?, host-logo?, year?, vendor?, trail?, credits?)*>
+  <!ELEMENT credits (credit*)>
+  <!ELEMENT credit (name, url, image?, width?, height?)>
+  <!-- id uniquely identifies the tool, and role indicates its function -->
+  <!ATTLIST credit id   CDATA #IMPLIED
+                   role CDATA #IMPLIED>
+  <!ELEMENT disable-search (#PCDATA)>
+  <!ELEMENT disable-print-link (#PCDATA)>
+  <!ELEMENT disable-pdf-link (#PCDATA)>
+  <!ELEMENT disable-xml-link (#PCDATA)>
+  <!ELEMENT disable-compliance-links (#PCDATA)>
+  <!ELEMENT searchsite-domain (#PCDATA)>
+  <!ELEMENT searchsite-name (#PCDATA)>
+  <!ELEMENT project-name (#PCDATA)>
+  <!ELEMENT project-url (#PCDATA)>
+  <!ELEMENT project-logo (#PCDATA)>
+  <!ELEMENT group-name (#PCDATA)>
+  <!ELEMENT group-url (#PCDATA)>
+  <!ELEMENT group-logo (#PCDATA)>
+  <!ELEMENT host-url (#PCDATA)>
+  <!ELEMENT host-logo (#PCDATA)>
+  <!ELEMENT year (#PCDATA)>
+  <!ELEMENT vendor (#PCDATA)>
+  <!ELEMENT trail (link1, link2, link3)>
+  <!ELEMENT link1 EMPTY>
+  <!-- Seems we can't use param entity refs until this is DTDified -->
+  <!ATTLIST link1 name CDATA #REQUIRED href CDATA #IMPLIED>
+  <!ELEMENT link2 EMPTY>
+  <!ATTLIST link2 name CDATA #REQUIRED href CDATA #IMPLIED>
+  <!ELEMENT link3 EMPTY>
+  <!ATTLIST link3 name CDATA #REQUIRED href CDATA #IMPLIED>
+  <!ELEMENT name (#PCDATA)>
+  <!ELEMENT url (#PCDATA)>
+  <!ELEMENT image (#PCDATA)>
+  <!ELEMENT width (#PCDATA)>
+  <!ELEMENT height (#PCDATA)>
+  ]>
+
+<skinconfig>
+  <!-- Do we want to disable the Google search box? -->
+  <disable-search>false</disable-search>
+  <!-- Do we want to disable the print link? -->
+  <disable-print-link>true</disable-print-link>
+  <!-- Do we want to disable the PDF link? -->
+  <disable-pdf-link>true</disable-pdf-link>
+  <!-- Do we want to disable the xml source link? -->
+  <disable-xml-link>true</disable-xml-link>
+  <!-- Do we want to disable w3c compliance links? -->
+  <disable-compliance-links>true</disable-compliance-links>
+
+  <searchsite-domain>incubator.apache.org</searchsite-domain>
+  <searchsite-name>Apache iBATIS</searchsite-name>
+
+  <!-- mandatory project logo
+       skin: forrest-site renders it at the top -->
+  <project-name>Apache iBATIS</project-name>
+  <project-url>http://incubator.apache.org/ibatis</project-url>
+  <project-logo>images/ibatis-logo.gif</project-logo>
+
+  <!-- optional group logo
+       skin: forrest-site renders it at the top-left corner -->
+  <group-name>Apache Incubator</group-name>
+  <group-url>http://incubator.apache.org/</group-url>
+  <group-logo>images/incubator-logo.gif</group-logo>
+
+  <!-- optional host logo (e.g. apache logo)
+       skin: forrest-site renders it at the bottom-left corner -->
+  <host-url>http://www.apache.org/</host-url>
+  <host-logo>images/icon.png</host-logo>
+
+  <!-- The following are used to construct a copyright statement -->
+  <year>2004</year>
+  <vendor>The Apache Software Foundation.</vendor>
+
+  <!-- Some skins use this to form a 'breadcrumb trail' of links. If you don't
+  want these, set the attributes to blank. The DTD purposefully requires them.
+  -->
+  <trail>
+    <link1 name="apache" href="http://www.apache.org/"/>
+    <link2 name="ibatis" href="http://incubator.apache.org/ibatis"/>
+    <link3 name="" href=""/>
+  </trail>
+
+  <!-- Credits are typically rendered as a set of small clickable images in the
+  page footer -->
+  <credits>
+    <!-- credit>
+      <name>Built with Apache Forrest</name>
+      <url>http://xml.apache.org/forrest/</url>
+      <image>images/built-with-forrest-button.png</image>
+      <width>88</width>
+      <height>31</height>
+    </credit -->
+    <!-- A credit with @role='pdf' will have its name and url displayed in the
+    PDF page's footer. -->
+  </credits>
+</skinconfig>
\ No newline at end of file




Reply via email to