You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by ce...@apache.org on 2005/10/04 23:06:45 UTC

svn commit: r294917 [4/4] - in /xmlbeans/site: build/site/ build/site/community/ build/site/documentation/ build/site/resources/ build/site/samples/ build/site/skin/images/ build/site/sourceAndBinaries/ src/documentation/content/ src/documentation/cont...

Modified: xmlbeans/site/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/xmlbeans/site/src/documentation/content/xdocs/index.xml?rev=294917&r1=294916&r2=294917&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/index.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/index.xml Tue Oct  4 14:05:53 2005
@@ -6,93 +6,118 @@
 	</header>
 	<body>
 		<section>
-			<title>Latest News</title>
-                        <p><strong>XMLBeans V2 released!</strong></p>
-			<p>Read the latest <link href="site:news">XMLBeans news</link>!</p>
+			<title>What is XMLBeans?</title>
+			<p>XMLBeans is a technology for accessing XML by binding it to Java types. XMLBeans
+				provides several ways to get at the XML, including: </p>
+			<ul>
+				<li>Through XML schema that has been compiled to generate Java types that represent
+					schema types. In this way, you can access instances of the schema through
+					JavaBeans-style accessors after the fashion of "getFoo" and "setFoo".
+					<p>The XMLBeans API also allows you to reflect into the XML schema itself
+						through an XML Schema Object model.</p></li>
+				<li>A cursor model through which you can traverse the full XML infoset.</li>
+				<li>Support for XML DOM.</li>
+			</ul>
+			<p>For a more complete introduction, see the <link href="site:overview">XMLBeans
+				Overview</link> or <link href="../docs/2.0.0/guide/conGettingStartedwithXmlBeans.html">Getting
+					Started With XMLBeans</link>.</p>
+			<p>For more details on XMLBeans see the <link href="http://wiki.apache.org/xmlbeans"
+					>XMLBeans Wiki pages</link> or the XMLBeans documentation (the Documentation tab
+				on this website).</p>
 		</section>
 		<section>
-			<title>Introduction to XMLBeans</title>
-			<p>XMLBeans is a tool that allows you to access the <em>full</em> power of XML in a Java friendly way. The idea is that you can 
-			take advantage of the richness and features of XML and XML Schema and have these features mapped as naturally as possible to the equivalent Java language and typing 
-			constructs.  XMLBeans uses XML Schema to <em>compile</em> Java interfaces and classes that you can then use to access and modify XML instance data.  
-			Using XMLBeans is similar to using any other Java interface/class, you will see things like <code>getFoo</code> or <code>setFoo</code> just as 
-			you would
-			expect when working with Java.  While a major use of XMLBeans is to access your XML instance data with strongly typed Java classes there are also
-			API's that allow you access to the full XML infoset (XMLBeans keeps XML Infoset fidelity) as well as to allow you to <em>reflect</em> into the XML schema
-			itself through an XML Schema Object model.</p>
-			<p>For more details on XMLBeans see the <link href="http://wiki.apache.org/xmlbeans">XMLBeans Wiki pages</link> or 
-			the XMLBeans documentation (the Documentation tab on this website).</p>
+			<title>Latest News</title>
+			<p>Here's the latest. For more news, see also the <link href="site:news">News</link> page</p>
 			<section>
-				<title>What makes XMLBeans Different</title>
-				<p>There are at least two major things that make XMLBeans unique from other XML-Java binding options.</p>
-				<ol>
-					<li>
-						<strong>Full XML Schema support.</strong> XMLBeans fully supports XML Schema and the corresponding java classes provide constructs
-      					for all of the major functionality of XML Schema.  This is critical since often times you do not have control over the features of XML Schema
-      					that you need to work with in Java.  Also, XML Schema oriented applications can take full advantage of the power of XML Schema and not
-      					have to restrict themselvs to a subset.</li>
-					<li>
-						<strong>Full XML Infoset fidelity.</strong>When unmarshalling an XML instance the full XML infoset is kept and is available to the developer.  This is
-      					critical because because of the subset of XML that is not easily represented in java.   For example, order of the elements or comments might
-      					be needed in a particular application.</li>
-				</ol>
-				<p>A major objective of XMLBeans has been to be applicable in <em>all</em> non-streaming (in memory) XML programming situations.  You should be
-      				able to compile your XML Schema into a set of java classes and know that 1) you will be able to use XMLBeans for all of the schemas you encounter
-      				(even the warped ones) and 2) that you will be able to get to the XML at whatever level is necessary - and not have to resort to multple
-      				tools to do this.</p>
-				<p>To accomplish this XMLBeans provides three major APIs:</p>
+				<title>Release: Apache XMLBeans 2.0.0 released! (30 June 2005)</title>
+				<p> The XMLBeans team is happy to announce the availability of XMLBeans V2. <link
+						href="http://www.apache.org/dyn/closer.cgi/xmlbeans">Download it</link> from
+					you favorite mirrror and check it out!</p>
+				<p> Here's a short list of improvements in this release:</p>
 				<ul>
-					<li>
-						<strong>XmlObject</strong>  The java classes that are generated from an XML Schema are all derived from XmlObject.  These provide strongly
-      					typed getters and setters for each of the elements within the defined XML.  Complex types are in turn XmlObjects.  For example getCustomer
-      					might return a CustomerType (which is an XmlObject).  Simple types turn into simple getters and setters with the correct java type.  For
-      					example getName might return a String.</li>
-					<li>
-						<strong>XmlCursor</strong> From any XmlObject you can get an XmlCursor.  This provides efficient, low level access to the XML Infoset.  A cursor 
-      					represents a position in the XML instance.  You can move the cursor around the XML instance at any level of granularity you need
-      					from individual characters to Tokens.</li>
-					<li>
-						<strong>SchemaType</strong>  XMLBeans provides a full XML Schema object model that you can use to reflect on the underlying schema meta information.
-      					For example, you might want to generate a sample XML instance for an XML schema or perhaps find the enumerations for an element
-      					so that you can display them.</li>
+					<li>Improved XQuery/XPath integration - Both XQuery and XPath on XMLBeans are
+						now fully integrated. XPath and XQuery expressions can return other
+						XMLObjects, or they can be executed using an XmlCursor instance, in which
+						case you manipulate the results using a cursor.</li>
+					<li>DOM Level II Support - DOM Level II support is now implemented natively so
+						that you can handle the underlying XML in the DOM style. You can switch
+						between DOM, XmlCursor, and XmlObject (either untyped or typed). This
+						improves performance and reduces the memory footprint over Version 1.</li>
+					<li>Extensions - You can now add custom functionality to generated XMLBeans. You
+						can pass to the Schema Compiler 1) an interface that defines the set of
+						methods to implement and 2) a static handler that implements this
+						functionality. The generated classes will implement the interface and, for
+						each method, call out to the static handler.</li>
+					<li>Improved Error Handling - This version adds error codes and ensures message
+						consistency. In addition, fail-fast behavior is provided for simple types,
+						while access to the post schema validation infoset is made available during
+						validation.</li>
+					<li>Performance - Performance has been improved across the board. Native DOM
+						support improves performance and memory footprint; XML parsing is now by
+						default performed by Piccolo, a high performance parser; incremental
+						compilation of only modified artifacts has been added; and the performance
+						of the XmlCursor implementation has been greatly improved.</li>
+					<li>JDK 1.5 Generics - Generated classes now optionally take advantage of JDK
+						1.5 Generics. Note that JDK 1.4 continues to be supported.</li>
+					<li>XML Instance/XSD Generation - You can generate a sample XML instance from
+						schema using the xsd2inst tool (which uses the SchemaInstanceGenerator
+						class). You can also generate a schema from an instance using the inst2xsd
+						tool (which uses the Inst2Xsd class).</li>
 				</ul>
-				<p>All of this was built with performance in mind.   Informal benchmarks and user feedback indicate that XMLBeans is extremely fast.</p>
 			</section>
 		</section>
 		<section>
-			<title>History</title>
-			<p>XMLBeans was submitted to the Apache Incubator and Apache XML projects by BEA Systems in September 2003.  Thanks to the support and guidance of Steven Noels (project sponsor) 
-			and Ted Leung (project mentor), XMLBeans successfully graduated from incubation in June 2004 to become a top level project and part of the Apache XML federation.     
-			XMLBeans was originally created because of the need seen by developers, in particular David Bau 
-			(<link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=xmlbeans-dev@xml.apache.org&amp;msgNo=93">David's about me post</link>),  
-			need for a more XML centric Java binding model that nothing on the market offered.   XMLBeans 1.0 has been successfully used as an underlying technology for several
-			products as well as by a growing number of large users including some of the largest companies in the world.</p>
-		</section>
-		<section>
-			<title>Future</title>
-			<p>The future of XMLBeans is exciting and you are invited to contribute.  XMLBeans Version 1 is a great, stable technology that will continue to 
-			improve going forward.  Its emphasis on full support for XML Schema and the XML Infoset along with it's performance
-			charactaristics make it a great choice for in-memory XML-Java programming. </p>
-			<p>A lot of work has been put into XMLBeans 2.0, which has been released on 06-30-2005 (see the news section).  XMLBeans is actively looking for contributors and committers so, if you are interested, please join in.</p>
-		</section>
-		<!-- 
-		<section>
-			<title>News and events</title>
-			<ul>
-				<li>
-					<link href="http://apachecon.com/2003/US/index.html">
-						<img src="http://jakarta.apache.org/images/logos/ac2003-150.gif" alt="apachecon 2003 logo" width="150" height="86"/>
-					</link>
-					<link href="http://apachecon.com/2003/US/index.html">ApacheCon US 2003</link>
-			          (16-19 November 2003) is now open for registration. ApacheCon is
-			          the conference for all things Apache. Come along and learn about
-			          a range of new technologies, meet some Apache folks and share
-			          the knowledge. David Bau is scheduled to speak about XMLBeans 
-			          on Monday, Nov 17 from 2:30 to 3:30 
-			          (<link href="http://apachecon.com/2003/US/html/sessions.html">ApacheCon Schedule</link>).
-			        </li>
-			</ul>
+			<title>Getting Started</title>
+			<section>
+				<title>Start off with your own stuff.</title>
+				<p>If you want to get right to it with your own XML schema and instance, follow these basic steps:</p>
+				<ol>
+					<li>
+						<link href="site:install">Install XMLBeans.</link>
+					</li>
+					<li>Compile your schema. Use <link href="docs/2.0.0/guide/tools.html#scomp"
+						><code>scomp</code></link> to compile the schema, generating and jarring Java types. For example, to create a
+						employeeschema.jar from an employeesschema.xsd file:
+							<source>scomp -out employeeschema.jar employeeschema.xsd</source>
+						</li>
+					<li>Write code. With the generated JAR on your classpath, write code to bind an XML instance
+						to the Java types representing your schema. Here's an example that would use
+						types generated from an employees schema:
+							<source>File xmlFile = new File("c:\employees.xml"); 
+
+// Bind the instance to the generated XMLBeans types.
+EmployeesDocument empDoc = 
+	EmployeesDocument.Factory.parse(xmlFile); 
+
+// Get and print pieces of the XML instance.
+Employees emps = empDoc.getEmployees(); 
+Employee[] empArray = emps.getEmployeeArray(); 
+for (int i = 0; i &lt; empArray.length; i++) 
+{ 
+	System.out.println(empArray[i]); 
+}</source>
+					</li>
+				</ol>
+			</section>
+			<section>
+				<title>Read a tutorial.</title>
+				<p>Read our <link href="site:tutorial">tutorial</link> to get a sense of XMLBeans
+					basics.</p>
+			</section>
+			<section>
+				<title>Read documentation and other information.</title>
+				<p>On our <link href="site:userdoc">documentation</link> page, you'll find links to
+					several topics that describe XMLBeans features and how to use them. You'll also
+					find links to Javadoc reference on the XMLBeans API.</p>
+				<p>You can also check out the <link href="site:faq">FAQ</link>, which is updated
+					with new answers as they're needed.</p>
+				<p>Don't forget the <jump href="http://wiki.apache.org/xmlbeans/">XMLBeans Wiki</jump>, which collects
+					lots of valuable information.</p>
+			</section>
+			<section>
+				<title>Check out the samples.</title>
+				<p>Many of the XMLBeans features are illustrated in our <link href="site:samples-tab/index">samples</link>.</p>
+			</section>
 		</section>
-		-->
 	</body>
 </document>

Added: xmlbeans/site/src/documentation/content/xdocs/overview.xml
URL: http://svn.apache.org/viewcvs/xmlbeans/site/src/documentation/content/xdocs/overview.xml?rev=294917&view=auto
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/overview.xml (added)
+++ xmlbeans/site/src/documentation/content/xdocs/overview.xml Tue Oct  4 14:05:53 2005
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "document-v12.dtd">
+<document>
+	<header>
+		<title>XMLBeans Overview</title>
+	</header>
+	<body>
+		<section>
+			<title>Introduction</title>
+			<p>XMLBeans is a tool that allows you to access the <em>full</em> power of XML in a Java friendly way. The idea is that you can 
+			take advantage of the richness and features of XML and XML Schema and have these features mapped as naturally as possible to the equivalent Java language and typing 
+			constructs.  XMLBeans uses XML Schema to <em>compile</em> Java interfaces and classes that you can then use to access and modify XML instance data.  
+			Using XMLBeans is similar to using any other Java interface/class, you will see things like <code>getFoo</code> or <code>setFoo</code> just as 
+			you would
+			expect when working with Java.  While a major use of XMLBeans is to access your XML instance data with strongly typed Java classes there are also
+			API's that allow you access to the full XML infoset (XMLBeans keeps XML Infoset fidelity) as well as to allow you to <em>reflect</em> into the XML schema
+			itself through an XML Schema Object model.</p>
+			<p>For more details on XMLBeans see the <link href="http://wiki.apache.org/xmlbeans">XMLBeans Wiki pages</link> or 
+			the XMLBeans documentation (the Documentation tab on this website).</p>
+			<section>
+				<title>What Makes XMLBeans Different</title>
+				<p>There are at least two major things that make XMLBeans unique from other XML-Java binding options.</p>
+				<ol>
+					<li>
+						<strong>Full XML Schema support.</strong> XMLBeans fully supports XML Schema and the corresponding java classes provide constructs
+      					for all of the major functionality of XML Schema.  This is critical since often times you do not have control over the features of XML Schema
+      					that you need to work with in Java.  Also, XML Schema oriented applications can take full advantage of the power of XML Schema and not
+      					have to restrict themselvs to a subset.</li>
+					<li>
+						<strong>Full XML Infoset fidelity.</strong>When unmarshalling an XML instance the full XML infoset is kept and is available to the developer.  This is
+      					critical because because of the subset of XML that is not easily represented in java.   For example, order of the elements or comments might
+      					be needed in a particular application.</li>
+				</ol>
+				<p>A major objective of XMLBeans has been to be applicable in <em>all</em> non-streaming (in memory) XML programming situations.  You should be
+      				able to compile your XML Schema into a set of java classes and know that 1) you will be able to use XMLBeans for all of the schemas you encounter
+      				(even the warped ones) and 2) that you will be able to get to the XML at whatever level is necessary - and not have to resort to multple
+      				tools to do this.</p>
+				<p>To accomplish this XMLBeans provides three major APIs:</p>
+				<ul>
+					<li>
+						<strong>XmlObject</strong>  The java classes that are generated from an XML Schema are all derived from XmlObject.  These provide strongly
+      					typed getters and setters for each of the elements within the defined XML.  Complex types are in turn XmlObjects.  For example getCustomer
+      					might return a CustomerType (which is an XmlObject).  Simple types turn into simple getters and setters with the correct java type.  For
+      					example getName might return a String.</li>
+					<li>
+						<strong>XmlCursor</strong> From any XmlObject you can get an XmlCursor.  This provides efficient, low level access to the XML Infoset.  A cursor 
+      					represents a position in the XML instance.  You can move the cursor around the XML instance at any level of granularity you need
+      					from individual characters to Tokens.</li>
+					<li>
+						<strong>SchemaType</strong>  XMLBeans provides a full XML Schema object model that you can use to reflect on the underlying schema meta information.
+      					For example, you might want to generate a sample XML instance for an XML schema or perhaps find the enumerations for an element
+      					so that you can display them.</li>
+				</ul>
+				<p>All of this was built with performance in mind.   Informal benchmarks and user feedback indicate that XMLBeans is extremely fast.</p>
+			</section>
+		</section>
+		<section>
+			<title>History</title>
+			<p>XMLBeans was submitted to the Apache Incubator and Apache XML projects by BEA Systems in September 2003.  Thanks to the support and guidance of Steven Noels (project sponsor) 
+			and Ted Leung (project mentor), XMLBeans successfully graduated from incubation in June 2004 to become a top level project and part of the Apache XML federation.     
+			XMLBeans was originally created because of the need seen by developers, in particular David Bau 
+			(<link href="http://nagoya.apache.org/eyebrowse/ReadMsg?listName=xmlbeans-dev@xml.apache.org&amp;msgNo=93">David's about me post</link>),  
+			need for a more XML centric Java binding model that nothing on the market offered.   XMLBeans 1.0 has been successfully used as an underlying technology for several
+			products as well as by a growing number of large users including some of the largest companies in the world.</p>
+		</section>
+		<section>
+			<title>Future</title>
+			<p>The future of XMLBeans is exciting and you are invited to contribute.  XMLBeans Version 1 is a great, stable technology that will continue to 
+			improve going forward.  Its emphasis on full support for XML Schema and the XML Infoset along with it's performance
+			charactaristics make it a great choice for in-memory XML-Java programming. </p>
+			<p>A lot of work has been put into XMLBeans 2.0, which was released on 06-30-2005 (see the
+				<link href="site:news">news</link> page).  XMLBeans is actively looking for contributors and committers so, if you are interested, please join in.</p>
+		</section>
+	</body>
+</document>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/index.xml
URL: http://svn.apache.org/viewcvs/xmlbeans/site/src/documentation/content/xdocs/samples/index.xml?rev=294917&r1=294916&r2=294917&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/index.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/index.xml Tue Oct  4 14:05:53 2005
@@ -6,7 +6,7 @@
     </header>
     <body>
         <section>
-          <title/>
+          <title>Getting the Samples</title>
           <p>
             Click the name of a sample listed below to go to a page that
             describes the sample in more detail. From there, you can view the
@@ -228,7 +228,7 @@
             </table>
         </section>
         <section>
-            <title/>
+            <title>Examples in XMLBeans Source</title>
               <p>
               Also, some of the code in the XmlBeans tools is a very good example
               of how to use XmlBeans. In paricular, see:

Modified: xmlbeans/site/src/documentation/content/xdocs/site.xml
URL: http://svn.apache.org/viewcvs/xmlbeans/site/src/documentation/content/xdocs/site.xml?rev=294917&r1=294916&r2=294917&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/site.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/site.xml Tue Oct  4 14:05:53 2005
@@ -17,25 +17,51 @@
         <index href="index.html"/>
     </main_index_file>
     <download-tab label="Download" href="sourceAndBinaries/" tab="download">
-        <index href="index.html"/>
+        <index label="Current Release" href="index.html#Current+Release"
+            description="Find out what's out now."/>
+        <binaryOrSource label="Which is right for you?" href="index.html#Binary+or+source%3F"
+            description="Which is right for you?"/>
         <releases label="Releases"
             href="index.html#XMLBeans+Binary+and+Development+Kit"
             description="Download an XMLBeans release." tab="download"/>
         <source label="Source Code" href="index.html#XMLBeans+Source"
-            description="Get the source code." tab="download"/>
+            description="Get the scode." tab="download"/>
         <install label="Installing XMLBeans" href="../documentation/conInstallGuide.html" description="Install XMLBeans"/>
     </download-tab>
     <documentation-tab label="Documentation" href="documentation/" tab="documentation">
         <index href="index.html"/>
         <tutorial label="Tutorial: First Steps" href="tutorial_getstarted.html" description="Write some XMLBeans code."/>
-        <samples label="Sample Code" href="../samples/index.html" description="Download sample code."/>
+        <samples label="Sample Code" href="site:samples-tab/index" description="Download sample
+        code."/>
         <faq label="FAQ" href="http://wiki.apache.org/xmlbeans/XmlBeansV1Faq" description="View Frequently Asked Questions"/>
         <userdoc label="User Guide" href="index.html#XMLBeans+Version+1+User+Documentation" description="Check out the user guide."/>
-        <userdoc label="v1.0.4 Javadoc" href="../docs/1.0.4/reference/index.html" description="Look over references."/>
-        <userdoc label="v2.0.0 Javadoc" href="../docs/2.0.0/reference/index.html" description="Look over references."/>
+        <bintools label="Installed Tools" href="../docs/2.0.0/guide/tools.html" description="Get
+            reference on tools in the bin directory."/>
+        <javadoc104 label="v1.0.4 Javadoc" href="../docs/1.0.4/reference/index.html" description="Look over references."/>
+        <javadoc200 label="v2.0.0 Javadoc" href="../docs/2.0.0/reference/index.html" description="Look over references."/>
         <install label="Installing XMLBeans" href="conInstallGuide.html" description="Install XMLBeans"/>
         <wiki label="Wiki Pages" href="http://wiki.apache.org/xmlbeans/" description="XmlBeans Wiki pages"/>
     </documentation-tab>
+    <samples-tab label="Samples" href="samples/" tab="samples">
+        <index label="Getting the Samples" href="index.html#Getting+the+Samples"
+            description="Getting the Samples"/>
+        <samplesList label="Samples List" description="View the list of available samples.">
+            <sample label="AbstractTypes" href="AbstractTypes.html" tab="samples"/>
+            <sample label="Any" href="Any.html" tab="samples"/>
+            <sample label="DateTime" href="DateTime.html" tab="samples"/>
+            <sample label="MixedContent" href="MixedContent.html" tab="samples"/>
+            <sample label="OrderMatters" href="OrderMatters.html" tab="samples"/>
+            <sample label="SchemaEnum" href="SchemaEnum.html" tab="samples"/>
+            <sample label="SubstitutionGroup" href="SubstitutionGroup.html" tab="samples"/>
+            <sample label="Validation" href="Validation.html" tab="samples"/>
+            <sample label="Velocity XmlBeans" href="vxsdb.html" tab="samples"/>
+            <sample label="XmlTree" href="XmlTree.html" tab="samples"/>
+            <sample label="XQueryXPath" href="XQueryXPath.html" tab="samples"/>
+            <sample label="SampleTemplate" href="SampleTemplate.html" tab="samples"/>
+        </samplesList>
+        <examplesInSource label="Examples in XMLBeans Source" href="index.html#Examples+in+XMLBeans+Source"/>
+    </samples-tab>
+    <!--
     <samples-tab label="Samples" tab="samples">
         <index href="samples/index.html"/>
         <samplesList label="Samples List" description="View the list of available samples.">
@@ -51,26 +77,19 @@
             <sample label="XmlTree" href="samples/XmlTree.html" tab="samples"/>
             <sample label="XQueryXPath" href="samples/XQueryXPath.html" tab="samples"/>
             <sample label="SampleTemplate" href="samples/SampleTemplate.html" tab="samples"/>
-        </samplesList>  
+        </samplesList>
     </samples-tab>
+    -->
     <community-tab label="Community" href="community/" tab="community">
-        <index href="index.html"/>
-        <whoWeAre label="Who We Are" href="index.html#Who+we+are" description="See the list of committers"/>
+        <index label="Current Release" href="index.html#Current+Release"/>
+        <bugs label="Bug Tracking" href="index.html#Bug+Tracking" description="Find or log XMLBeans bugs"/>
+        <sourceCode label="Source Code Changes" href="index.html#Source+Code+Changes"
+            description="View the latest changes to the source"/>
         <mailingLists label="Mailing Lists" href="index.html#Mailing+Lists" description="Get mailing list information"/>
+        <whoWeAre label="Who We Are" href="index.html#Who+We+Are" description="See the list of committers"/>
+        <relatedProjects label="Related Projects" href="index.html#Related+Projects"
+            description="You might be interested in these, too."/>
     </community-tab>
-    <project-tab label="Project" href="projectManagement/" tab="project">
-        <index href="index.html"/>
-        <version1 label="About Version 1" href="index.html#XMLBeans+Version+1+Project+Management" description="Read a note on the progress of XMLBeans Version 1"/>
-        <version2 label="About Version 2 Plans"
-            href="index.html#XMLBeans+Version+2+Project+Management" description="Read information on the progress of XMLBeans Version 2"/>
-        <bugs label="Bug Tracking" href="index.html#XMLBeans+Bug+Lists" description="Find or log XMLBeans bugs"/>
-        <!--
-        <proposal label="Initial Proposal"
-            href="http://nagoya.apache.org/wiki/apachewiki.cgi?XmlBeansProposal" description="Read the original XMLBeans project proposal"/>
-        <roadmap label="XMLBeans Road Map"
-            href="http://nagoya.apache.org/wiki/apachewiki.cgi?XmlBeansRoadMap" description="Read ideas for future evolution"/>
-        -->
-    </project-tab>
     <resources-tab label="Resources" href="resources/" tab="resources">
         <index href="index.html"/>
         <tools label="Tools" href="index.html#XMLBeans+Tools" description="Tools for working with XMLBeans."/>
@@ -78,39 +97,33 @@
         <books label="Books" href="index.html#XMLBeans+Books" description="Books about XMLBeans"/>
     </resources-tab>
     <home label="Home" href="" tab="home">
-        <index href="index.html"/>
         <learn label="Learn About XMLBeans">
-            <index label="Overview" href="index.html" description="Welcome to XMLBeans"/>
+            <index label="Welcome" href="index.html" description="Welcome to XMLBeans"/>
+            <whatIsXMLBeans label="What is XMLBeans?" href="index.html#What+is+XMLBeans%3F" description="Get the nutshell view."/>
             <news label="News" href="news.html" description="News about XMLBeans"/>
+            <overview label="Overview" href="overview.html" description="XMLBeans Overview"/>
+            <getStarted label="Getting Started" href="index.html#Getting+Started" description="Jump in here."/>
             <faq label="FAQ" href="http://wiki.apache.org/xmlbeans/XmlBeansV1Faq" description="View Frequently Asked Questions"/>
-            <userdoc label="Tutorial: First Steps"
+            <tutorial label="Tutorial: First Steps"
                 href="documentation/tutorial_getstarted.html" description="Write some XMLBeans code."/>
             <sample label="Samples" href="samples/index.html" description="See a list of samples for download."/>
-            <userdoc label="v1.0.4 Javadoc" href="docs/1.0.4/reference/index.html" description="Look over references."/>
-            <userdoc label="v2.0.0 Javadoc" href="docs/2.0.0/reference/index.html" description="Look over references."/>
+            <javadoc104 label="v1.0.4 Javadoc" href="docs/1.0.4/reference/index.html" description="Look over references."/>
+            <javadoc200 label="v2.0.0 Javadoc" href="docs/2.0.0/reference/index.html" description="Look over references."/>
         </learn>
         <download label="Get XMLBeans">
-            <releases label="Releases"
+            <currentRelease label="Current Release" href="sourceAndBinaries/index.html#Current+Release"
+                description="Find out what's out now."/>
+            <binaryOrSource label="Binary or Source?" href="sourceAndBinaries/index.html#Binary+or+source%3F"
+                description="Which is right for you?"/>
+            <releases label="Release Downloads"
                 href="sourceAndBinaries/index.html#XMLBeans+Binary+and+Development+Kit" description="Download an XMLBeans release."/>
             <source label="Source Code" href="sourceAndBinaries/index.html#XMLBeans+Source" description="Get the source code."/>
             <install label="Installing XMLBeans" href="documentation/conInstallGuide.html" description="Install XMLBeans"/>
         </download>
         <projectinfo label="Get Project Information">
-            <whoWeAre label="Who We Are" href="community/index.html#Who+we+are" description="See the list of committers"/>
+            <whoWeAre label="Who We Are" href="community/index.html#Who+We+Are" description="See the list of committers"/>
             <mailingLists label="Mailing Lists" href="community/index.html#Mailing+Lists" description="Get mailing list information"/>
-            <!--            <proposal label="Initial Proposal"
-                href="http://nagoya.apache.org/wiki/apachewiki.cgi?XmlBeansProposal" description="Read the original XMLBeans Project Proposal"/>
--->
-            <bugs label="Bug Tracking" href="projectManagement/index.html#XMLBeans+Bug+Lists" description="Find or log XMLBeans bugs"/>
-            <!--
-            <version1 label="About Version 1"
-                href="projectManagement/index.html#XMLBeans+Version+1+Project+Management" description="Read a note on the progress of XMLBeans Version 1"/>
--->
-            <version2 label="Version 2 Plans"
-                href="projectManagement/index.html#XMLBeans+Version+2+Project+Management" description="Read about the progress of XMLBeans Version 2"/>
-            <!--
-            <todo label="To Do" href="http://nagoya.apache.org/wiki/apachewiki.cgi?XMLBeansToDo" description="Read action items, mostly regarding incubation exit criteria"/>
--->
+            <bugs label="Bug Tracking" href="community/index.html#XMLBeans+Bug+Lists" description="Find or log XMLBeans bugs"/>
         </projectinfo>
     </home>
     <all>

Modified: xmlbeans/site/src/documentation/content/xdocs/sourceAndBinaries/index.xml
URL: http://svn.apache.org/viewcvs/xmlbeans/site/src/documentation/content/xdocs/sourceAndBinaries/index.xml?rev=294917&r1=294916&r2=294917&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/sourceAndBinaries/index.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/sourceAndBinaries/index.xml Tue Oct  4 14:05:53 2005
@@ -7,10 +7,9 @@
 	<body>
     <section>
       <title>Current Release</title>
-      <note>
-        <strong>Current release:</strong> 2.0.0 released on Jun. 30th, 2005<br/>
-        <strong>Latest 1.x maintenance release:</strong> 1.0.4 released on Feb. 24th, 2005
-      </note>
+        <p><strong>Current release:</strong> 2.0.0 released on Jun. 30th, 2005</p>
+        <p><strong>Latest 1.x maintenance release:</strong> 1.0.4 released on Feb. 24th, 2005</p>
+      <note>XMLBeans 2.0.0 is source compatible with version 1. When upgrading, you should recompile XML schemas used in your application.</note>
     </section>
     <section>
       <title>Binary or source?</title>

Modified: xmlbeans/site/src/documentation/content/xdocs/tabs.xml
URL: http://svn.apache.org/viewcvs/xmlbeans/site/src/documentation/content/xdocs/tabs.xml?rev=294917&r1=294916&r2=294917&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/tabs.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/tabs.xml Tue Oct  4 14:05:53 2005
@@ -13,6 +13,5 @@
     <tab id="documentation" label="Documentation" dir="documentation" indexfile="index.html"/>
     <tab id="samples" label="Samples" dir="samples" indexfile="index.html"/>
     <tab id="community" label="Community" dir="community" indexfile="index.html"/>
-    <tab id="project" label="Project" dir="projectManagement" indexfile="index.html"/>
     <tab id="resources" label="Resources" dir="resources" indexfile="index.html" />
 </tabs>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: commits-help@xmlbeans.apache.org