Modified: xmlbeans/site/src/documentation/content/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/index.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/index.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/index.xml Sat Jul  7 18:22:12 
2018
@@ -1,107 +1,123 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"document-v12.dtd">
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
-  <header>
-       <title>Welcome to XMLBeans</title>
-  </header>
-  <body>
-  <section>
-       <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/3.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>Release: Apache XMLBeans 3.0.0 (June 29, 2018)</title>
-    <p>
-       Latest release files <link 
href="https://www.apache.org/dyn/closer.cgi/poi/xmlbeans/release/bin";>are 
available</link>.
-    </p>
-    <p>The Apache POI project has unretired the XMLBeans project and taken 
over the ownership.</p>
-    <p>
-       Few of the improvements in this release (for a more complete list of 
changes see 
-       <link 
href="http://svn.apache.org/viewvc/xmlbeans/trunk/CHANGES.txt?revision=1833767&amp;view=markup";>CHANGES.txt</link>
 or
-               <link 
href="https://issues.apache.org/jira/browse/XMLBEANS-517?jql=project%20%3D%20XMLBEANS%20AND%20fixVersion%20%3D%20%22Version%203.0.0%22";>XMLBEANS-517</link>).
-    </p>
-    <ul>
-       <li>XMLBEANS-517: use safe XML parsers</li>
-       <li>XMLBEANS-515: remove piccolo support</li>
-       <li>XMLBEANS-514: make Java 6 the lowest supported runtime</li>
-       <li>Fix for XMLBEANS-332: XMLBeans changes surrogate pair bytes to 
question marks</li>
-    </ul>
-  </section>
-
-
-  <section>
-    <title></title>
-    <p><link href="site:news">More News</link></p>
-  </section>
-
-
-  <section>
-      <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/3.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>
+    <header>
+        <title>Welcome to XMLBeans</title>
+    </header>
+    <body>
+        <section>
+            <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 <a 
href="site:overview">XMLBeans
+                Overview</a> or <a 
href="docs/3.0.0/guide/conGettingStartedwithXMLBeans.html">Getting
+                Started With XMLBeans</a>.</p>
+            <p>For more details on XMLBeans see the <a 
href="ext:wiki">XMLBeans Wiki pages</a>
+                or the XMLBeans documentation (the Documentation tab on this 
website).</p>
+        </section>
+
+        <section>
+            <title>Release: Apache XMLBeans 3.0.0 (June 29, 2018)</title>
+            <p>
+                Latest release files <a 
href="https://www.apache.org/dyn/closer.cgi/poi/xmlbeans/release/bin";>are 
available</a>.
+            </p>
+            <p>The Apache POI project has unretired the XMLBeans project and 
taken over the ownership.</p>
+            <p>
+                Few of the improvements in this release (for a more complete 
list of changes see
+                <a 
href="http://svn.apache.org/viewvc/xmlbeans/trunk/CHANGES.txt?revision=1833767&amp;view=markup";>CHANGES.txt</a>
 or
+                <a 
href="https://issues.apache.org/jira/browse/XMLBEANS-517?jql=project%20%3D%20XMLBEANS%20AND%20fixVersion%20%3D%20%22Version%203.0.0%22";>XMLBEANS-517</a>).
+            </p>
+            <ul>
+                <li>XMLBEANS-517: use safe XML parsers</li>
+                <li>XMLBEANS-515: remove piccolo support</li>
+                <li>XMLBEANS-514: make Java 6 the lowest supported runtime</li>
+                <li>Fix for XMLBEANS-332: XMLBeans changes surrogate pair 
bytes to question marks</li>
+            </ul>
+        </section>
+
+
+        <section>
+            <title></title>
+            <p><a href="site:news">More News</a></p>
+        </section>
+
+
+        <section>
+            <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>
+                        <a href="site:install">Install XMLBeans.</a>
+                    </li>
+                    <li>Compile your schema. Use <a 
href="docs/3.0.0/guide/tools.html#scomp"><code>scomp</code></a> 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 <a href="site:tutorial">tutorial</a> to get a 
sense of XMLBeans
+                    basics.</p>
+            </section>
+            <section>
+                <title>Read documentation and other information.</title>
+                <p>On our <a href="site:userdoc">documentation</a> 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 <a href="site:faq">FAQ</a>, 
which is updated
+                    with new answers as they're needed.</p>
+                <p>Don't forget the <a href="ext:wiki">XMLBeans Wiki</a>, 
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 <a 
href="site:samples/index">samples</a>.</p>
+            </section>
+        </section>
+    </body>
 </document>

Modified: xmlbeans/site/src/documentation/content/xdocs/news.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/news.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/news.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/news.xml Sat Jul  7 18:22:12 
2018
@@ -60,7 +60,7 @@ content that has facets defined in the b
        <link 
href="http://svn.apache.org/viewvc/xmlbeans/trunk/CHANGES.txt?revision=884294&amp;view=markup";>CHANGES.txt</link>).
     </p>
     <ul>
-       <li><link href="http://wiki.apache.org/xmlbeans/UserTypes";>"User 
types"</link> feature - allows mapping of Schema simple types to custom user 
Java classes</li>
+       <li><link href="ext:wiki/UserTypes">"User types"</link> feature - 
allows mapping of Schema simple types to custom user Java classes</li>
        <li>Option to perform additional, stricter Schema validation checks: 
XMLBEANS-350</li>
        <li>Updated pattern for dayTimeDuration </li>
        <li>Extended year min/max value limitations</li>
@@ -325,7 +325,7 @@ Conferences.  Cliff Schmidt and Kevin Kr
 
 <p><link href="http://xmlbeans.apache.org/";>Apache XMLBeans Team</link> has 
released XMLBeans Version
 1.0.3.  Download version 1.0.3 from the <link
-href="http://xmlbeans.apache.org/sourceAndBinaries/index.html";>Source and 
Binaries section</link>.
+href="download/index.html">Source and Binaries section</link>.
 </p>
 
 <p>Version 1.0.3 is <link href="http://xmlbeans.apache.org/";>Apache 
XMLBeans</link> first release after
@@ -352,7 +352,7 @@ Schmidt is the Chair of the new Apache X
 
 <p><link href="http://xmlbeans.apache.org/";>Apache XMLBeans Team</link> has 
released XMLBeans Version
 1.0.2.  Download version 1.0.2 from the
-<link href="http://xmlbeans.apache.org/sourceAndBinaries/index.html";>Source 
and Binaries
+<link href="download/index.html">Source and Binaries
 section</link>.</p>
 
 <p><link href="http://xmlbeans.apache.org/";>Apache XMLBeans</link> is an 
effort undergoing <link

Modified: xmlbeans/site/src/documentation/content/xdocs/overview.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/overview.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/overview.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/overview.xml Sat Jul  7 
18:22:12 2018
@@ -15,7 +15,7 @@
                        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 
+                       <p>For more details on XMLBeans see the <link 
href="ext:wiki">XMLBeans Wiki pages</link> or
                        the XMLBeans documentation (the Documentation tab on 
this website).</p>
                        <section>
                                <title>What Makes XMLBeans Different</title>

Modified: xmlbeans/site/src/documentation/content/xdocs/resources/index.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/resources/index.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/resources/index.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/resources/index.xml Sat Jul  
7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://apache.org/forrest/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
   <header>
     <title>XMLBeans Resources</title>
@@ -8,21 +24,21 @@
        <section>
                <title>XMLBeans Tools</title>
                <!--p>
-                       <link 
href="http://xmlbeans.webappshosting.com/schemaToolsV103";>XMLBeans Schema Tools 
(XMLBeans Version 1.0.3)</link>
+                       <a 
href="http://xmlbeans.webappshosting.com/schemaToolsV103";>XMLBeans Schema Tools 
(XMLBeans Version 1.0.3)</a>
                        &nbsp;This site allows XML Schema validation and 
compilation tools.  You can submit an XML Schema (via file upload or
                        cut and paste) or a set of XML Schemas (zip file) and 
you can download the resulting XMLBeans JAR file.
                </p>
                        <ul>
-                               <li><link 
href="http://xmlbeans.webappshosting.com/schemaToolsV103/validate.do"; >XMLBeans 
V1.0.3 Schema Validation</link></li>
-                               <li><link 
href="http://xmlbeans.webappshosting.com/schemaToolsV103/compile.do"; >XMLBeans 
V1.0.3 Schema Compilation</link></li>
+                               <li><a 
href="http://xmlbeans.webappshosting.com/schemaToolsV103/validate.do"; >XMLBeans 
V1.0.3 Schema Validation</a></li>
+                               <li><a 
href="http://xmlbeans.webappshosting.com/schemaToolsV103/compile.do"; >XMLBeans 
V1.0.3 Schema Compilation</a></li>
                        </ul>
                <p>
-                       <link 
href="http://xmlbeans.webappshosting.com/schemaToolsV2";>XMLBeans Schema Tools 
(XMLBeans Version 2.0)</link>
+                       <a 
href="http://xmlbeans.webappshosting.com/schemaToolsV2";>XMLBeans Schema Tools 
(XMLBeans Version 2.0)</a>
                        &nbsp;Same as above but for XMLBeans V2.0
                </p>
                        <ul>
-                               <li><link 
href="http://xmlbeans.webappshosting.com/schemaToolsV2/validate.do"; >XMLBeans 
V2.0 Schema Validation</link></li>
-                               <li><link 
href="http://xmlbeans.webappshosting.com/schemaToolsV2/compile.do"; >XMLBeans 
V2.0 Schema Compilation</link></li>
+                               <li><a 
href="http://xmlbeans.webappshosting.com/schemaToolsV2/validate.do"; >XMLBeans 
V2.0 Schema Validation</a></li>
+                               <li><a 
href="http://xmlbeans.webappshosting.com/schemaToolsV2/compile.do"; >XMLBeans 
V2.0 Schema Compilation</a></li>
                        </ul-->
                
                <p>
@@ -30,7 +46,7 @@
                </p>
                
                <p>
-                       <link 
href="http://xmlbeansplug.sourceforge.net/";>Eclipse - XMLBeans plug-in</link>. 
<link 
href="http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/x/project/xm/xmlbeansplug/EclipseXMLBeansPlugin.pdf";>Documentation</link>.
+                       <a href="http://xmlbeansplug.sourceforge.net/";>Eclipse 
- XMLBeans plug-in</a>. <a 
href="http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/x/project/xm/xmlbeansplug/EclipseXMLBeansPlugin.pdf";>Documentation</a>.
                </p>
 
                <p>Do you have or know of a tool that works with XMLBeans?  Let 
us know and we will list it here.</p>
@@ -38,38 +54,38 @@
        <section>
                <title>XMLBeans Articles</title>
                <p>
-                               <link 
href="http://www.ibm.com/developerworks/webservices/library/ws-soa-clientxmlbeans.html";>Use
 XMLBeans to create a Web service client</link>, IBM developerWorks, Jul 18 
2006<br />
-                       <link 
href="http://www-128.ibm.com/developerworks/webservices/library/os-ag-soa/index.html?ca=dnx-610";>Deploy
 SOA applications in Apache Geronimo using XMLBeans</link>, IBM developerWorks, 
May 09 2006<br />
-                       Configuring XMLBeans, BEA dev2dev, Nov 30 2004 <link 
href="http://web.archive.org/web/20060101225745/dev2dev.bea.com/pub/a/2004/11/Configuring_XMLBeans.html";>archive.org
 link</link><br />
-                       <link 
href="http://www.apache.org/~kkrouse/apachecon/ac2004_XmlBeans_v2.ppt";>Apache 
XMLBeans 2: Accessing the Full Power of XML in Java</link> (ppt), 
www.apache.com/~kkrouse, Nov 2004<br />
-                       <link 
href="http://www.onjava.com/pub/a/onjava/2004/07/28/XMLBeans.html";>XML-Java 
Data Binding Using XMLBeans</link>, onJava.com, Jul 2004<br />
-                       Using XMLBeans in Web Service Clients and User 
Interfaces, BEA Dev2Dev, May 2004 <link 
href="http://web.archive.org/web/20060617035331/dev2dev.bea.com/pub/a/2004/05/hanson_xmlbeans_ws.html";>archive.org
 link</link><br />
-                       Leveraging Complex Schema Features in Java the XMLBeans 
Way, BEA Dev2Dev, May 2004 <link 
href="http://web.archive.org/web/20060617035457/dev2dev.bea.com/pub/a/2004/05/XMLBeans_raj.html";>archive.org
 link</link><br />
-                       Strongly Typed XML in Java with XMLBeans,Cezar Cristian 
Andrei, May 2004, <link 
href="http://web.archive.org/web/20060101222246/dev2dev.bea.com/pub/a/2004/05/xmlbeans_andrei.html";>archive.org
 link</link><br />
-                       XML Processing with Java Object Technology, May 2004 
<link 
href="http://web.archive.org/web/20060617035533/dev2dev.bea.com/pub/a/2004/05/ryan_xml.html";>archive.org
 link</link><br />
-                       Using XMLBeans to Implement Dynamic Configuration 
Files, BEA Dev2Dev, April 2004 <link 
href="http://web.archive.org/web/20060906063051/dev2dev.bea.com/pub/a/2004/04/xmlbeans_dynamic_config.html";>archive.org
 link</link><br />
-                       XMLBeans as First-Class Data Objects, BEA Dev2Dev, May 
2004 <link href="">archive.org link</link><br />
-                       Handling Mixed Content in a Strongly-Typed World, BEA 
Dev2Dev, Nov 2003 <link 
href="http://web.archive.org/web/20060617035319/dev2dev.bea.com/pub/a/2003/11/traut.html";>archive.org
 link</link><br />
-                       <link 
href="http://javaboutique.internet.com/reviews/xml_javabeans/";>Converting XML 
to JavaBeans with XMLBeans</link>, JavaBoutique<br />
-                       <link 
href="http://davidbau.com/archives/2003/11/14/the_design_of_xmlbeans_part_1.html";>The
 Design of XMLBeans (Part 1)</link>, davidbau.com, Nov 2003<br />
-                       <link 
href="http://davidbau.com/archives/2003/11/19/the_design_of_xmlbeans_part_2.html";>The
 Design of XMLBeans (Part 2)</link>, davidbau.com, Nov 2003<br />
-                       <link 
href="http://davidbau.com/archives/2003/12/18/the_design_of_xmlbeans_part_3.html";>The
 Design of XMLBeans (Part 3)</link>, davidbau.com, Dec 2003<br />
-                       <link href="http://www.devx.com/xml/Article/17495";>XML 
Made Easy with XMLBeans</link>, DevX.com, Oct 2003<br />
-                       <link 
href="http://www.sys-con.com/xml/article.cfm?id=614";>XML Beans: The Best of 
Both Worlds</link>, XML Journal, June 2003<br />
-                       XML Beans (by David Bau), BEA Dev2Dev, Mar 2003 <link 
href="http://web.archive.org/web/20060617035510/dev2dev.bea.com/pub/a/2003/03/Bau.html";>archive.org
 link</link><br />
-                       Dear John (Column #3) - An XMLBeans Example: Address 
Book, BEA Dev2Dev, Feb 2003 <link 
href="http://web.archive.org/web/20060617035444/dev2dev.bea.com/pub/a/2003/02/DJ_003.html";>archive.org
 link</link><br /> 
+                               <a 
href="http://www.ibm.com/developerworks/webservices/library/ws-soa-clientxmlbeans.html";>Use
 XMLBeans to create a Web service client</a>, IBM developerWorks, Jul 18 
2006<br />
+                       <a 
href="http://www-128.ibm.com/developerworks/webservices/library/os-ag-soa/index.html?ca=dnx-610";>Deploy
 SOA applications in Apache Geronimo using XMLBeans</a>, IBM developerWorks, 
May 09 2006<br />
+                       Configuring XMLBeans, BEA dev2dev, Nov 30 2004 <a 
href="http://web.archive.org/web/20060101225745/dev2dev.bea.com/pub/a/2004/11/Configuring_XMLBeans.html";>archive.org
 a</a><br />
+                       <a 
href="http://www.apache.org/~kkrouse/apachecon/ac2004_XmlBeans_v2.ppt";>Apache 
XMLBeans 2: Accessing the Full Power of XML in Java</a> (ppt), 
www.apache.com/~kkrouse, Nov 2004<br />
+                       <a 
href="http://www.onjava.com/pub/a/onjava/2004/07/28/XMLBeans.html";>XML-Java 
Data Binding Using XMLBeans</a>, onJava.com, Jul 2004<br />
+                       Using XMLBeans in Web Service Clients and User 
Interfaces, BEA Dev2Dev, May 2004 <a 
href="http://web.archive.org/web/20060617035331/dev2dev.bea.com/pub/a/2004/05/hanson_xmlbeans_ws.html";>archive.org
 a</a><br />
+                       Leveraging Complex Schema Features in Java the XMLBeans 
Way, BEA Dev2Dev, May 2004 <a 
href="http://web.archive.org/web/20060617035457/dev2dev.bea.com/pub/a/2004/05/XMLBeans_raj.html";>archive.org
 a</a><br />
+                       Strongly Typed XML in Java with XMLBeans,Cezar Cristian 
Andrei, May 2004, <a 
href="http://web.archive.org/web/20060101222246/dev2dev.bea.com/pub/a/2004/05/xmlbeans_andrei.html";>archive.org
 a</a><br />
+                       XML Processing with Java Object Technology, May 2004 <a 
href="http://web.archive.org/web/20060617035533/dev2dev.bea.com/pub/a/2004/05/ryan_xml.html";>archive.org
 a</a><br />
+                       Using XMLBeans to Implement Dynamic Configuration 
Files, BEA Dev2Dev, April 2004 <a 
href="http://web.archive.org/web/20060906063051/dev2dev.bea.com/pub/a/2004/04/xmlbeans_dynamic_config.html";>archive.org
 a</a><br />
+                       XMLBeans as First-Class Data Objects, BEA Dev2Dev, May 
2004 <a href="">archive.org a</a><br />
+                       Handling Mixed Content in a Strongly-Typed World, BEA 
Dev2Dev, Nov 2003 <a 
href="http://web.archive.org/web/20060617035319/dev2dev.bea.com/pub/a/2003/11/traut.html";>archive.org
 a</a><br />
+                       <a 
href="http://javaboutique.internet.com/reviews/xml_javabeans/";>Converting XML 
to JavaBeans with XMLBeans</a>, JavaBoutique<br />
+                       <a 
href="http://davidbau.com/archives/2003/11/14/the_design_of_xmlbeans_part_1.html";>The
 Design of XMLBeans (Part 1)</a>, davidbau.com, Nov 2003<br />
+                       <a 
href="http://davidbau.com/archives/2003/11/19/the_design_of_xmlbeans_part_2.html";>The
 Design of XMLBeans (Part 2)</a>, davidbau.com, Nov 2003<br />
+                       <a 
href="http://davidbau.com/archives/2003/12/18/the_design_of_xmlbeans_part_3.html";>The
 Design of XMLBeans (Part 3)</a>, davidbau.com, Dec 2003<br />
+                       <a href="http://www.devx.com/xml/Article/17495";>XML 
Made Easy with XMLBeans</a>, DevX.com, Oct 2003<br />
+                       <a 
href="http://www.sys-con.com/xml/article.cfm?id=614";>XML Beans: The Best of 
Both Worlds</a>, XML Journal, June 2003<br />
+                       XML Beans (by David Bau), BEA Dev2Dev, Mar 2003 <a 
href="http://web.archive.org/web/20060617035510/dev2dev.bea.com/pub/a/2003/03/Bau.html";>archive.org
 a</a><br />
+                       Dear John (Column #3) - An XMLBeans Example: Address 
Book, BEA Dev2Dev, Feb 2003 <a 
href="http://web.archive.org/web/20060617035444/dev2dev.bea.com/pub/a/2003/02/DJ_003.html";>archive.org
 a</a><br /> 
                </p>
                <p>
                        For spanish speaking developers:<br />
-                       <link 
href="http://www.ateneatech.com/blog/desenredando-xmlbeans";>Desenredando 
XmlBeans 1</link>, Feb 2008<br />
-                       <link 
href="http://www.ateneatech.com/blog/desenredando-xmlbeans-ii";>Desenredando 
XmlBeans 2</link>, Feb 2008<br />
+                       <a 
href="http://www.ateneatech.com/blog/desenredando-xmlbeans";>Desenredando 
XmlBeans 1</a>, Feb 2008<br />
+                       <a 
href="http://www.ateneatech.com/blog/desenredando-xmlbeans-ii";>Desenredando 
XmlBeans 2</a>, Feb 2008<br />
                </p>
                <p>Do you know of an XMLBeans article that is not listed here?  
Let us know and we will list it here.</p>
        </section>
        <section>
                <title>XMLBeans Books</title>
                <p>
-               There is a chapter on XMLBeans, in the upcoming book <link 
href="http://www.amazon.com/exec/obidos/ASIN/1590595157/variouofmysit-20";>Pro 
Apache Beehive</link>, by Kunal Mittal.
+               There is a chapter on XMLBeans, in the upcoming book <a 
href="http://www.amazon.com/exec/obidos/ASIN/1590595157/variouofmysit-20";>Pro 
Apache Beehive</a>, by Kunal Mittal.
                </p>
                <p>Are you writing a book on XMLBeans?  If so let us know and 
we will list it here</p>
        </section>

Modified: 
xmlbeans/site/src/documentation/content/xdocs/samples/AbstractTypes.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/AbstractTypes.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/AbstractTypes.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/AbstractTypes.xml Sat 
Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>AbstractTypes Sample</title>
@@ -32,15 +48,15 @@
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="AbstractTypes.zip">Zip of all files 
(AbstractTypes.zip)</link></li>
-              <li><link href="AbstractTypes.tgz">Tar gzip of all files 
(AbstractTypes.tgz)</link></li>
+              <li><a href="AbstractTypes.zip">Zip of all files 
(AbstractTypes.zip)</a></li>
+              <li><a href="AbstractTypes.tgz">Tar gzip of all files 
(AbstractTypes.tgz)</a></li>
             </ul>
             <ul>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/README.txt";>Readme
 file</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/src/org/apache/xmlbeans/samples/abstracttypes/AbstractTypes.java";>AbstractTypes.java</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/schemas/abstractBase.xsd";>abstractBase.xsd</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/schemas/myfigures.xsd";>myfigures.xsd</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/build.xml";>build.xml</link></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/README.txt";>Readme
 file</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/src/org/apache/xmlbeans/samples/abstracttypes/AbstractTypes.java";>AbstractTypes.java</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/schemas/abstractBase.xsd";>abstractBase.xsd</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/schemas/myfigures.xsd";>myfigures.xsd</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/AbstractTypes/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/Any.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/Any.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/Any.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/Any.xml Sat Jul  7 
18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>Any Sample</title>
@@ -19,16 +35,16 @@ and create these parts of the XML.</p>
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="Any.zip">Zip of all files (Any.zip)</link></li>
-              <li><link href="Any.tgz">Tar gzip of all files 
(Any.tgz)</link></li>
+              <li><a href="Any.zip">Zip of all files (Any.zip)</a></li>
+              <li><a href="Any.tgz">Tar gzip of all files (Any.tgz)</a></li>
             </ul>
             <ul>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/README.txt";>Readme
 file</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/src/org/apache/xmlbeans/samples/anytype/Any.java";>Any.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/src/org/apache/xmlbeans/samples/anytype/AnyTest.java";>AnyTest.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/schemas/any.xsd";>any.xsd</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/xml/any.xml";>any.xml</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/build.xml";>build.xml</link></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/README.txt";>Readme
 file</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/src/org/apache/xmlbeans/samples/anytype/Any.java";>Any.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/src/org/apache/xmlbeans/samples/anytype/AnyTest.java";>AnyTest.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/schemas/any.xsd";>any.xsd</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/xml/any.xml";>any.xml</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Any/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/DateTime.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/DateTime.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/DateTime.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/DateTime.xml Sat Jul  
7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>DateTime Sample</title>
@@ -63,15 +79,15 @@ dealing with XML dates.
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="DateTime.zip">Zip of all files 
(DateTime.zip)</link></li>
-              <li><link href="DateTime.tgz">Tar gzip of all files 
(DateTime.tgz)</link></li>
+              <li><a href="DateTime.zip">Zip of all files 
(DateTime.zip)</a></li>
+              <li><a href="DateTime.tgz">Tar gzip of all files 
(DateTime.tgz)</a></li>
             </ul>
             <ul>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/README.txt";>Readme
 file</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/src/org/apache/xmlbeans/samples/datetime/DateTime.java";>DateTime.java</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/schemas/datetime.xsd";>datetime.xsd</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/xml/datetimesample.xml";>datetimesample.xml</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/build.xml";>build.xml</link></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/README.txt";>Readme
 file</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/src/org/apache/xmlbeans/samples/datetime/DateTime.java";>DateTime.java</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/schemas/datetime.xsd";>datetime.xsd</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/xml/datetimesample.xml";>datetimesample.xml</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/DateTime/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/MixedContent.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/MixedContent.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/MixedContent.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/MixedContent.xml Sat 
Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>MixedContent Sample</title>
@@ -20,15 +36,15 @@
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="MixedContent.zip">Zip of all files 
(MixedContent.zip)</link></li>
-              <li><link href="MixedContent.tgz">Tar gzip of all files 
(MixedContent.tgz)</link></li>
+              <li><a href="MixedContent.zip">Zip of all files 
(MixedContent.zip)</a></li>
+              <li><a href="MixedContent.tgz">Tar gzip of all files 
(MixedContent.tgz)</a></li>
             </ul>
             <ul>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/README.txt";>Readme
 file</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/src/org/apache/xmlbeans/samples/cursor/MixedContent.java";>MixedContent.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/schemas/inventory.xsd";>inventory.xsd</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/xml/inventoryitems.xml";>inventoryitems.xml</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/build.xml";>build.xml</link></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/README.txt";>Readme
 file</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/src/org/apache/xmlbeans/samples/cursor/MixedContent.java";>MixedContent.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/schemas/inventory.xsd";>inventory.xsd</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/xml/inventoryitems.xml";>inventoryitems.xml</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/MixedCursor/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/OrderMatters.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/OrderMatters.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/OrderMatters.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/OrderMatters.xml Sat 
Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>OrderMatters Sample</title>
@@ -25,15 +41,15 @@
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="OrderMatters.zip">Zip of all files 
(OrderMatters.zip)</link></li>
-              <li><link href="OrderMatters.tgz">Tar gzip of all files 
(OrderMatters.tgz)</link></li>
+              <li><a href="OrderMatters.zip">Zip of all files 
(OrderMatters.zip)</a></li>
+              <li><a href="OrderMatters.tgz">Tar gzip of all files 
(OrderMatters.tgz)</a></li>
             </ul>
             <ul>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/README.txt";>Readme
 file</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/src/org/apache/xmlbeans/samples/cursor/OrderMatters.java";>OrderMatters.java</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/schemas/stmt.xsd";>stmt.xsd</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/xml/stmt.xml";>stmt.xml</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/build.xml";>build.xml</link></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/README.txt";>Readme
 file</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/src/org/apache/xmlbeans/samples/cursor/OrderMatters.java";>OrderMatters.java</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/schemas/stmt.xsd";>stmt.xsd</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/xml/stmt.xml";>stmt.xml</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/OrderMatters/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: 
xmlbeans/site/src/documentation/content/xdocs/samples/SampleTemplate.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/SampleTemplate.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/SampleTemplate.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/SampleTemplate.xml 
Sat Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>Sample Template</title>
@@ -11,20 +27,20 @@
             <p>This sample template is the recommended way of writing a
               sample.  If you'd like to contribute, please do!
               Once you've written it, post a new
-              <link 
href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10436";>Jira</link>
+              <a 
href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10436";>Jira</a>
               bug with component=Samples. For ideas, see
-              <link
-                
href="http://wiki.apache.org/xmlbeans/XmlBeansSampleSuggestions";>XmlBeansSampleSuggestions</link>
+              <a
+                
href="ext:wiki/XmlBeansSampleSuggestions">XmlBeansSampleSuggestions</a>
               on the wiki.  Thanks for submitting!
             </p>
         </section>
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="SampleTemplate.zip">Zip of all files 
(SampleTemplate.zip)</link></li>
-              <li><link href="SampleTemplate.tgz">Tar gzip of all files
-                (SampleTemplate.tgz)</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SampleTemplate/README.txt";>Readme
 file</link></li>
+              <li><a href="SampleTemplate.zip">Zip of all files 
(SampleTemplate.zip)</a></li>
+              <li><a href="SampleTemplate.tgz">Tar gzip of all files
+                (SampleTemplate.tgz)</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SampleTemplate/README.txt";>Readme
 file</a></li>
             </ul>
         </section>
         <section>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/SchemaEnum.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/SchemaEnum.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/SchemaEnum.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/SchemaEnum.xml Sat 
Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>SchemaEnum Sample</title>
@@ -18,17 +34,17 @@
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="SchemaEnum.zip">Zip of all files 
(SchemaEnum.zip)</link></li>
-              <li><link href="SchemaEnum.tgz">Tar gzip of all files 
(SchemaEnum.tgz)</link></li>
+              <li><a href="SchemaEnum.zip">Zip of all files 
(SchemaEnum.zip)</a></li>
+              <li><a href="SchemaEnum.tgz">Tar gzip of all files 
(SchemaEnum.tgz)</a></li>
             </ul>
             <ul>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/README.txt";>Readme
 file</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/src/org/apache/xmlbeans/samples/enumeration/SchemaEnum.java";>SchemaEnum.java</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/schemas/EasyPO.xsd";>EasyPO.xsd</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/schemas/PriceSummary.xsd";>PriceSummary.xsd</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/xml/PriceSummary.xml";>PriceSummary.xml</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/xml/PurchaseOrder.xml";>PurchaseOrder.xml</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/build.xml";>build.xml</link></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/README.txt";>Readme
 file</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/src/org/apache/xmlbeans/samples/enumeration/SchemaEnum.java";>SchemaEnum.java</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/schemas/EasyPO.xsd";>EasyPO.xsd</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/schemas/PriceSummary.xsd";>PriceSummary.xsd</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/xml/PriceSummary.xml";>PriceSummary.xml</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/xml/PurchaseOrder.xml";>PurchaseOrder.xml</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SchemaEnum/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: 
xmlbeans/site/src/documentation/content/xdocs/samples/SubstitutionGroup.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/SubstitutionGroup.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/SubstitutionGroup.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/SubstitutionGroup.xml 
Sat Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>SubstitutionGroup Sample</title>
@@ -15,16 +31,16 @@
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="SubstitutionGroup.zip">Zip of all files 
(SubstitutionGroup.zip)</link></li>
-              <li><link href="SubstitutionGroup.tgz">Tar gzip of all files 
(SubstitutionGroup.tgz)</link></li>
+              <li><a href="SubstitutionGroup.zip">Zip of all files 
(SubstitutionGroup.zip)</a></li>
+              <li><a href="SubstitutionGroup.tgz">Tar gzip of all files 
(SubstitutionGroup.tgz)</a></li>
             </ul>
             <ul>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/README.txt";>Readme
 file</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/src/org/apache/xmlbeans/samples/substitutiongroup/SubstitutionGroup.java";>SchemaEnum.java</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/schemas/EasyPo.xsd";>EasyPo.xsd</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/xml/Purchase-Order.xml";>Purchase-Order.xml</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/xml/newPurchase-Order.xml";>newPurchase-Order.xml</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/build.xml";>build.xml</link></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/README.txt";>Readme
 file</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/src/org/apache/xmlbeans/samples/substitutiongroup/SubstitutionGroup.java";>SchemaEnum.java</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/schemas/EasyPo.xsd";>EasyPo.xsd</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/xml/Purchase-Order.xml";>Purchase-Order.xml</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/xml/newPurchase-Order.xml";>newPurchase-Order.xml</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/SubstitutionGroup/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/Validation.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/Validation.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/Validation.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/Validation.xml Sat 
Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>Validation Sample</title>
@@ -25,16 +41,16 @@ invalid.</li>
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="Validation.zip">Zip of all files 
(Validation.zip)</link></li>
-              <li><link href="Validation.tgz">Tar gzip of all files 
(Validation.tgz)</link></li>
+              <li><a href="Validation.zip">Zip of all files 
(Validation.zip)</a></li>
+              <li><a href="Validation.tgz">Tar gzip of all files 
(Validation.tgz)</a></li>
             </ul>
             <ul>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/README.txt";>Readme
 file</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/src/org/apache/xmlbeans/samples/validation/Validation.java";>Validation.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/src/org/apache/xmlbeans/samples/validation/ValidationTest.java";>ValidationTest.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/schemas/todolist.xsd";>todolist.xsd</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/xml/todolist.xml";>todolist.xml</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/build.xml";>build.xml</link></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/README.txt";>Readme
 file</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/src/org/apache/xmlbeans/samples/validation/Validation.java";>Validation.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/src/org/apache/xmlbeans/samples/validation/ValidationTest.java";>ValidationTest.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/schemas/todolist.xsd";>todolist.xsd</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/xml/todolist.xml";>todolist.xml</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/Validation/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/XQueryXPath.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/XQueryXPath.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/XQueryXPath.xml 
(original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/XQueryXPath.xml Sat 
Jul  7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>XQueryXPath Sample</title>
@@ -32,18 +48,18 @@ class for more information.</li>
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="XQueryXPath.zip">Zip of all files 
(XQueryXPath.zip)</link></li>
-              <li><link href="XQueryXPath.tgz">Tar gzip of all files 
(XQueryXPath.tgz)</link></li>
+              <li><a href="XQueryXPath.zip">Zip of all files 
(XQueryXPath.zip)</a></li>
+              <li><a href="XQueryXPath.tgz">Tar gzip of all files 
(XQueryXPath.tgz)</a></li>
             </ul>
             <ul>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/README.txt";>Readme
 file</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/ExecQuery.java";>ExecQuery.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/SelectPath.java";>SelectPath.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/XQueryXPath.java";>XQueryXPath.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/XQueryXPathTest.java";>XQueryXPathTest.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/schemas/employeeschema.xsd";>employeeschema.xsd</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/xml/employees.xml";>employees.xml</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/build.xml";>build.xml</link></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/README.txt";>Readme
 file</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/ExecQuery.java";>ExecQuery.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/SelectPath.java";>SelectPath.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/XQueryXPath.java";>XQueryXPath.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/src/org/apache/xmlbeans/samples/xquery/XQueryXPathTest.java";>XQueryXPathTest.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/schemas/employeeschema.xsd";>employeeschema.xsd</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/xml/employees.xml";>employees.xml</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XQueryXPath/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/XmlTree.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/XmlTree.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/XmlTree.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/XmlTree.xml Sat Jul  
7 18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>XmlTree Sample</title>
@@ -23,18 +39,18 @@ the data through XmlEntry instances.</p>
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="XmlTree.zip">Zip of all files 
(XmlTree.zip)</link></li>
-              <li><link href="XmlTree.tgz">Tar gzip of all files 
(XmlTree.tgz)</link></li>
+              <li><a href="XmlTree.zip">Zip of all files (XmlTree.zip)</a></li>
+              <li><a href="XmlTree.tgz">Tar gzip of all files 
(XmlTree.tgz)</a></li>
             </ul>
             <ul>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/README.txt";>Readme
 file</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlEntry.java";>XmlEntry.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlModel.java";>XmlModel.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlTree.java";>XmlTree.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlTreeFrame.java";>XmlTreeFrame.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlTreeTest.java";>XmlTreeTest.java</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/xml/PurchaseOrder.xml";>PurchaseOrder.xml</link></li>
-                <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/build.xml";>build.xml</link></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/README.txt";>Readme
 file</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlEntry.java";>XmlEntry.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlModel.java";>XmlModel.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlTree.java";>XmlTree.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlTreeFrame.java";>XmlTreeFrame.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/src/org/apache/xmlbeans/samples/xmltree/XmlTreeTest.java";>XmlTreeTest.java</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/xml/PurchaseOrder.xml";>PurchaseOrder.xml</a></li>
+                <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/XmlTree/build.xml";>build.xml</a></li>
             </ul>
         </section>
     </body>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/index.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/index.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/index.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/index.xml Sat Jul  7 
18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>XMLBeans Samples</title>
@@ -15,17 +31,17 @@
           </p>
           <p>
             To get started with the samples, follow the instructions on the
-            <link href="../documentation/conInstallGuide.html">Installing 
XMLBeans</link>
+            <a href="site:documentation/install">Installing XMLBeans</a>
             page first.  Then get the sample code in one of the following ways:
           </p>
           <ul>
-            <li>download all samples (<link href="samples.zip">zip</link> 
<link href="samples.tgz">tgz</link>)</li>
-            <li>download individual samples <link 
href="#Samples+List">below</link></li>
-            <li>all sample source is available in <link 
href="../sourceAndBinaries/index.html#Source+via+SVN+checkout">SVN</link></li>
+            <li>download all samples (<a href="samples.zip">zip</a> <a 
href="samples.tgz">tgz</a>)</li>
+            <li>download individual samples <a 
href="#Samples+List">below</a></li>
+            <li>all sample source is available in <a 
href="../download/index.html#Source+via+SVN+checkout">SVN</a></li>
           </ul>
           <p>
             If you have a sample that you'd like to share, grab the
-            <link href="SampleTemplate.html">sample template</link>
+            <a href="SampleTemplate.html">sample template</a>
             and donate it to us.  We'd be happy to post it!
           </p>
         </section>
@@ -44,75 +60,75 @@
                         Get 'em all at once.
                     </td>
                     <td>
-                      <link href="samples.zip">zip</link>
-                      <link href="samples.tgz">tgz</link>
+                      <a href="samples.zip">zip</a>
+                      <a href="samples.tgz">tgz</a>
                     </td>
                     <td>2004-10-28</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="AbstractTypes.html">
+                        <a href="AbstractTypes.html">
                             <strong>AbstractTypes</strong>
-                        </link>
+                        </a>
                         <br/>
                       This sample illustrates the building and use of abstract 
XmlSchema types in XmlBeans.
                     </td>
                     <td>
-                      <link href="AbstractTypes.zip">zip</link>
-                      <link href="AbstractTypes.tgz">tgz</link>
+                      <a href="AbstractTypes.zip">zip</a>
+                      <a href="AbstractTypes.tgz">tgz</a>
                     </td>
                     <td>2005-02-07</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="Any.html">
+                        <a href="Any.html">
                             <strong>Any</strong>
-                        </link>
+                        </a>
                         <br/>
                       Illustrates how you can use the XMLBeans API to work 
with XML based on schema that features xs:any particles
                     </td>
                     <td>
-                      <link href="Any.zip">zip</link>
-                      <link href="Any.tgz">tgz</link>
+                      <a href="Any.zip">zip</a>
+                      <a href="Any.tgz">tgz</a>
                     </td>
                     <td>2005-07-08</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="DateTime.html">
+                        <a href="DateTime.html">
                             <strong>DateTime</strong>
-                        </link>
+                        </a>
                         <br/>
                         This sample demonstrates how you can work with XML
                         Schema primitive types date,
                         dateTime, time, duration, gDay.
                     </td>
                     <td>
-                      <link href="DateTime.zip">zip</link>
-                      <link href="DateTime.tgz">tgz</link>
+                      <a href="DateTime.zip">zip</a>
+                      <a href="DateTime.tgz">tgz</a>
                     </td>
                     <td>2004-10-28</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="MixedContent.html">
+                        <a href="MixedContent.html">
                             <strong>MixedContent</strong>
-                        </link>
+                        </a>
                         <br/>
                         Work with mixed content XML by combining strong types 
generated from
                         schema with an <code>XmlCursor</code> instance.
                     </td>
                     <td>
-                      <link href="MixedContent.zip">zip</link>
-                      <link href="MixedContent.tgz">tgz</link>
+                      <a href="MixedContent.zip">zip</a>
+                      <a href="MixedContent.tgz">tgz</a>
                     </td>
                     <td>2004-09-15</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="OrderMatters.html">
+                        <a href="OrderMatters.html">
                             <strong>OrderMatters</strong>
-                        </link>
+                        </a>
                         <br/>
                         This samples gives an quick overview of how to use
                         XmlBeans with both the strongly typed XmlObjects
@@ -120,108 +136,108 @@
                         XmlCursor.
                     </td>
                     <td>
-                      <link href="OrderMatters.zip">zip</link>
-                      <link href="OrderMatters.tgz">tgz</link>
+                      <a href="OrderMatters.zip">zip</a>
+                      <a href="OrderMatters.tgz">tgz</a>
                     </td>
                     <td>2004-10-28</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="SchemaEnum.html">
+                        <a href="SchemaEnum.html">
                             <strong>SchemaEnum</strong>
-                        </link>
+                        </a>
                         <br/>
                         Access XML values that are defined in schema as 
enumerations.
                     </td>
                     <td>
-                      <link href="SchemaEnum.zip">zip</link>
-                      <link href="SchemaEnum.tgz">tgz</link>
+                      <a href="SchemaEnum.zip">zip</a>
+                      <a href="SchemaEnum.tgz">tgz</a>
                     </td>
                     <td>2004-09-15</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="SubstitutionGroup.html">
+                        <a href="SubstitutionGroup.html">
                             <strong>SubstitutionGroup</strong>
-                        </link>
+                        </a>
                         <br/>
                         This sample illustrates substitution group elements in 
an XML document.
                     </td>
                     <td>
-                      <link href="SubstitutionGroup.zip">zip</link>
-                      <link href="SubstitutionGroup.tgz">tgz</link>
+                      <a href="SubstitutionGroup.zip">zip</a>
+                      <a href="SubstitutionGroup.tgz">tgz</a>
                     </td>
                     <td>2004-10-28</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="Validation.html">
+                        <a href="Validation.html">
                             <strong>Validation</strong>
-                        </link>
+                        </a>
                         <br/>
                         Illustrates how you can use the XMLBeans API to 
validate XML instances against schema.
                     </td>
                     <td>
-                      <link href="Validation.zip">zip</link>
-                      <link href="Validation.tgz">tgz</link>
+                      <a href="Validation.zip">zip</a>
+                      <a href="Validation.tgz">tgz</a>
                     </td>
                     <td>2005-07-08</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="vxsdb.html">
+                        <a href="vxsdb.html">
                             <strong>Velocity XmlBeans</strong>
-                        </link>
+                        </a>
                         <br/>
                       Vxsdb is a XmlBeans sample application which derives a 
Jakarta Commons SQL data 
                       model from an xml schema.
                     </td>
                     <td>
-                      <link href="AbstractTypes.zip">zip</link>
-                      <link href="AbstractTypes.tgz">tgz</link>
+                      <a href="AbstractTypes.zip">zip</a>
+                      <a href="AbstractTypes.tgz">tgz</a>
                     </td>
                     <td>2005-02-07</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="XmlTree.html">
+                        <a href="XmlTree.html">
                             <strong>XmlTree</strong>
-                        </link>
+                        </a>
                         <br/>
                         Illustrates how you can use the XMLBeans API to create 
a Java tree view of an XML document.
                     </td>
                     <td>
-                      <link href="XmlTree.zip">zip</link>
-                      <link href="XmlTree.tgz">tgz</link>
+                      <a href="XmlTree.zip">zip</a>
+                      <a href="XmlTree.tgz">tgz</a>
                     </td>
                     <td>2005-07-08</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="XQueryXPath.html">
+                        <a href="XQueryXPath.html">
                             <strong>XQueryXPath</strong>
-                        </link>
+                        </a>
                         <br/>
                         Illustrates how you can use the XMLBeans API to 
execute XPath and XQuery expressions.
                     </td>
                     <td>
-                      <link href="XQueryXPath.zip">zip</link>
-                      <link href="XQueryXPath.tgz">tgz</link>
+                      <a href="XQueryXPath.zip">zip</a>
+                      <a href="XQueryXPath.tgz">tgz</a>
                     </td>
                     <td>2005-07-08</td>
                 </tr>
                 <tr>
                     <td>
-                        <link href="SampleTemplate.html">
+                        <a href="SampleTemplate.html">
                             <strong>SampleTemplate</strong>
-                        </link>
+                        </a>
                         <br/>
                         A template for sample authors to get started.  Please
                         follow these conventions.
                     </td>
                     <td>
-                      <link href="SampleTemplate.zip">zip</link>
-                      <link href="SampleTemplate.tgz">tgz</link>
+                      <a href="SampleTemplate.zip">zip</a>
+                      <a href="SampleTemplate.tgz">tgz</a>
                     </td>
                     <td>2004-09-15</td>
                 </tr>

Modified: xmlbeans/site/src/documentation/content/xdocs/samples/vxsdb.xml
URL: 
http://svn.apache.org/viewvc/xmlbeans/site/src/documentation/content/xdocs/samples/vxsdb.xml?rev=1835325&r1=1835324&r2=1835325&view=diff
==============================================================================
--- xmlbeans/site/src/documentation/content/xdocs/samples/vxsdb.xml (original)
+++ xmlbeans/site/src/documentation/content/xdocs/samples/vxsdb.xml Sat Jul  7 
18:22:12 2018
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" 
"http://forrest.apache.org/dtd/document-v12.dtd";>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" 
"http://forrest.apache.org/dtd/document-v20.dtd";>
 <document>
     <header>
         <title>Velocity XmlBeans Sample</title>
@@ -16,18 +32,18 @@
             XmlBeans and talking to people at the ASF conference. Vxsdb uses 
Jakarta 
             Velocity as its templating engine.
             <br/>
-            More documentation can be found in <link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/vxsdb/doc/vxsdb.html";>doc/vxsdb.html</link>
 from the sample archive.
+            More documentation can be found in <a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/vxsdb/doc/vxsdb.html";>doc/vxsdb.html</a>
 from the sample archive.
             </p>
         </section>
         <section>
             <title>Files</title>
             <ul>
-              <li><link href="vxsdb.zip">Zip of all files 
(vxsdb.zip)</link></li>
-              <li><link href="vxsdb.tgz">Tar gzip of all files 
(vxsdb.tgz)</link></li>
+              <li><a href="vxsdb.zip">Zip of all files (vxsdb.zip)</a></li>
+              <li><a href="vxsdb.tgz">Tar gzip of all files 
(vxsdb.tgz)</a></li>
             </ul>
             <ul>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/vxsdb/README.txt";>Readme
 file</link></li>
-              <li><link 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/vxsdb/doc/vxsdb.html";>vxsdb.html</link></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/vxsdb/README.txt";>Readme
 file</a></li>
+              <li><a 
href="http://svn.apache.org/viewcvs.cgi/*checkout*/xmlbeans/trunk/samples/vxsdb/doc/vxsdb.html";>vxsdb.html</a></li>
             </ul>
         </section>
     </body>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to