You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by al...@apache.org on 2012/11/20 07:05:48 UTC

svn commit: r1411556 - in /openjpa/site/trunk: WhoIsWorkingOnWhat.txt content/apache-nexus-release-process-(1.2.x-2.1.x).mdtext content/css/type-settings.css content/documentation.mdtext content/downloads.mdtext

Author: allee8285
Date: Tue Nov 20 06:05:47 2012
New Revision: 1411556

URL: http://svn.apache.org/viewvc?rev=1411556&view=rev
Log:
CMS migration updates. Replace <pre><code> with CMS syntax. Add link attributes. Table not requires to use border attribute.

Modified:
    openjpa/site/trunk/WhoIsWorkingOnWhat.txt
    openjpa/site/trunk/content/apache-nexus-release-process-(1.2.x-2.1.x).mdtext
    openjpa/site/trunk/content/css/type-settings.css
    openjpa/site/trunk/content/documentation.mdtext
    openjpa/site/trunk/content/downloads.mdtext

Modified: openjpa/site/trunk/WhoIsWorkingOnWhat.txt
URL: http://svn.apache.org/viewvc/openjpa/site/trunk/WhoIsWorkingOnWhat.txt?rev=1411556&r1=1411555&r2=1411556&view=diff
==============================================================================
--- openjpa/site/trunk/WhoIsWorkingOnWhat.txt (original)
+++ openjpa/site/trunk/WhoIsWorkingOnWhat.txt Tue Nov 20 06:05:47 2012
@@ -24,7 +24,7 @@ done			coding-standards.mdtext
 done			documentation.mdtext
 kwsutter		documentation-top-link.mdtext
 			domain-model-browser.mdtext
-			downloads.mdtext
+leealber			downloads.mdtext
 			downloads-top-link.mdtext
 			embeddable-samples.mdtext
 			enhancement-with-ant.mdtext

Modified: openjpa/site/trunk/content/apache-nexus-release-process-(1.2.x-2.1.x).mdtext
URL: http://svn.apache.org/viewvc/openjpa/site/trunk/content/apache-nexus-release-process-%281.2.x-2.1.x%29.mdtext?rev=1411556&r1=1411555&r2=1411556&view=diff
==============================================================================
--- openjpa/site/trunk/content/apache-nexus-release-process-(1.2.x-2.1.x).mdtext (original)
+++ openjpa/site/trunk/content/apache-nexus-release-process-(1.2.x-2.1.x).mdtext Tue Nov 20 06:05:47 2012
@@ -1,14 +1,16 @@
 Title: Apache Nexus Release Process 1.2.x-2.1.x
 <a name="apache-nexus-release-process-(1.2.x-2.1.x)"></a>
 
-#Release Steps for OpenJPA 1.2.x - 2.1.x
+# Release Steps for OpenJPA 1.2.x - 2.1.x
 
 We're starting to move our builds over to using the Apache Nexus repository (repository.apache.org) for releasing SNAPSHOT and release artifacts.
 More details on releasing artifacts and using Nexus can be found on the Maven website at - <http://maven.apache.org/developers/release/apache-release.html>
 
 1. Environment setup for releasing artifacts (same for SNAPSHOTs and releases)
     1. Increase the default Java heap available to Maven (required for Java SE 6)
-            <pre><code>export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=512m"</code></pre>
+    
+            export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=512m" xx
+        
     2. Use the latest Sun 1.6.0 JDK (1.5.0 for 1.2.x and 1.3.x)
     3. Use Maven 2.2.1 or later (2.2.1 is required for release signing fixes)
     4. Make sure the [Release Setup](http://openjpa.apache.org/release-setup.html) steps have been performed.
@@ -22,18 +24,22 @@ More details on releasing artifacts and 
         2. Update the RELEASE-NOTES.html based on the HTML release reports from JIRA.
         3. Review and update README.txt and BUILDING.txt if needed.
         4. Commit any changes back to svn - 
-<pre><code>     $ svn commit -m "updating files for release"</code></pre>
+        
+                $ svn commit -m "updating files for release"
 
     1. Stage any Roadmap or Release landing pages on the wiki.
-    2. Verify the source has the required headers before trying to release.  
-    <pre><code>     $ mvn apache-rat:check</code></pre>
+    2. Verify the source has the required headers before trying to release.
+      
+            $ mvn apache-rat:check
 
     1. Perform a full build with tests
-    <pre><code>     $ mvn clean install -Papache-release,docbook-profile,test-derby,bval</code></pre>
+    
+            $ mvn clean install -Papache-release,docbook-profile,test-derby,bval
 
     1. Run the JPA 1.0 TCK (for 1.x) and JPA 2.0 TCK (for 2.x) to verify the latest code passes.
     1. Perform a full build and deploy the SNAPSHOT artifacts
-    <pre><code>     $ mvn clean deploy site site-deploy -Papache-release,docbook-profile,test-derby,bval -DskipTests</code></pre>
+    
+            $ mvn clean deploy site site-deploy -Papache-release,docbook-profile,test-derby,bval -DskipTests
 
     1. Inspect the files in your local target directories to ensure:
         * All jars and zips include:	LICENSE and NOTICE files
@@ -45,12 +51,15 @@ More details on releasing artifacts and 
     
 1. For new major releases (like 2.0.0 to 2.1.0)
     1. Create a sub-branch from which to make the release. Releasing from a branch will allow any cosmetic changes that need to be made for the release to be approved to be done without preventing other more disruptive advances in the trunk from potentially causing problems with the release. It also provides a future maintenance branch (like 2.0.x.)  A branch can be made by running:
-    <pre><code>$ mvn release:branch -DbranchName=2.0.x -Dusername=svn.user -Dpassword=svn.password</pre></code>
+    
+            $ mvn release:branch -DbranchName=2.0.x -Dusername=svn.user -Dpassword=svn.password
 
 1. Checkout a clean copy of the trunk/branch to release using command line svn.
-    1. Do not use Eclipse to do the checkout. The extra dot (.) files created by Eclipse throws off the rat:check processing and will get included in the source distribution. 
-    <code><pre>$ svn checkout https://svn.apache.org/repos/asf/openjpa/branches/2.0.x/ 2.0.1-rc1/</code></pre>
-    <span class="note">Make sure you use https:// protocol because the following release:prepare step requires update to the svn repository.</span>
+    1. Do not use Eclipse to do the checkout. The extra dot (.) files created by Eclipse throws off the rat:check processing and will get included in the source distribution.
+     
+            $ svn checkout https://svn.apache.org/repos/asf/openjpa/branches/2.0.x/ 2.0.1-rc1/
+
+        <span class="note">Make sure you use https:// protocol because the following release:prepare step requires update to the svn repository.</span>
  
 5. \(Optional\) Do a dry run of the release:prepare step.
     1. The dry run will not commit any changes back to SVN and gives you the opportunity to verify that the release process will complete as expected.  You will be prompted for the following information :
@@ -67,57 +76,62 @@ created. If that doesn't help, try runni
     2. Verify that the release process completed as expected
         1. The release plugin will create pom.xml.tag files which contain the changes that would have been committed to SVN. The only differences between pom.xml.tag and it's corresponding pom.xml file should be the version number.
         2. If other formatting changes have been made you should review the changes and then commit them -
-     <code><pre>     $ svn commit -m "fixing formatting for release"</code></pre>
+        
+                 $ svn commit -m "fixing formatting for release"
 
         3. Assuming the .tag files look OK you may proceed and do any other validation you feel necessary. The following list may be helpful 
             1. Check release.properties and make sure that the scm properties have the right version. Sometimes the scm location can be the previous version not the next version. *
             2. verify signatures [Verifying release signatures|*verifySig]
 
     3. Once any failures or required updates have been committed to svn, rollback the release prepare files -
-    <pre><code>     $ mvn -Papache-release release:rollback</code></pre>
+    
+            $ mvn -Papache-release release:rollback
 
 6. Prepare the release
-    1. Run the "release:prepare" step for real this time.  You'll be prompted for the same version information and optionally your GPG passphrase again.  
-<pre><code>     $ mvn release:prepare -Papache-release,docbook-profile,test-derbymem,bval -DskipTests [-Dusername=svn.user -Dpassword=svn.password](-dusername=svn.user--dpassword=svn.password.html) -DpreparationGoals="clean install"
-</code></pre>
-
+    1. Run the "release:prepare" step for real this time.  You'll be prompted for the same version information and optionally your GPG passphrase again.
+      
+            $ mvn release:prepare -Papache-release,docbook-profile,test-derbymem,bval -DskipTests \
+                  [-Dusername=svn.user -Dpassword=svn.password](-dusername=svn.user--dpassword=svn.password.html) \
+                  -DpreparationGoals="clean install"
 
          <div class="note">
 Different arguments and steps are required as there are problems with the maven-jar-plugin and maven-release-plugin when using the test-jar goal.  See <a href="http://jira.codehaus.org/browse/MJAR-68">http://jira.codehaus.org/browse/MJAR-68</a> and <a href = "http://jira.codehaus.org/browse/MRELEASE-285">,http://jira.codehaus.org/browse/MRELEASE-285</a>.
-    <pre><code>     $ mvn release:prepare -Papache-release,docbook-profile,test-derbymem,bval -DskipTests -DpreparationGoals="clean install"
-    ... Build failed....
-    $ mvn install -DskipTests
-    $ mvn release:prepare -Papache-release,docbook-profile,test-derbymem,bval -DskipTests -DpreparationGoals="clean install"
-    </code></pre>
-</div>
+
+            $ mvn release:prepare -Papache-release,docbook-profile,test-derbymem,bval -DskipTests \
+                  -DpreparationGoals="clean install"
+              ... Build failed....
+            $ mvn install -DskipTests
+            $ mvn release:prepare -Papache-release,docbook-profile,test-derbymem,bval -DskipTests \
+                  -DpreparationGoals="clean install"
+
+        </div>
 
 7. Backup (zip or tar) your local release candidate directory in case you need to rollback the release after the next step is performed.
-<pre><code>
-    cd ..
-    tar -czf 2.0.1-rc1-preRelease.tar.gz 2.0.1-rc1/
-    cd 2.0.1-rc1
-</code></pre>
+
+        cd ..
+        tar -czf 2.0.1-rc1-preRelease.tar.gz 2.0.1-rc1/
+        cd 2.0.1-rc1
+
 8. Perform the release
-    1. This step will create a maven staging repository and site for use in testing and voting. You will be prompted for your repository.apache.org and people.apache.org password several times if you have not added server profiles to your settings.xml.	See [Release Setup] for more information. 
-        <pre><code>$ mvn release:perform -Papache-release -Duser.name=<your_apache_uid></pre></code>
+    1. This step will create a maven staging repository and site for use in testing and voting. You will be prompted for your repository.apache.org and people.apache.org password several times if you have not added server profiles to your settings.xml.	See [Release Setup] for more information.
+     
+            $ mvn release:perform -Papache-release -Duser.name=<your_apache_uid>
+
     2. The maven-release-plugin is configured with goals "deploy site site-deploy" and will deploy the site files to a staging-site directory on people.apache.org.
     
 9. Verify the release artifacts
     1. Verify the HTML links in staging-site/index.html are correct
         1. Login to people.apache.org
         2. Edit public_html/openjpa/\[release\](release\.html) /staging-site/index.html and updates the followings:
-            1. 
-<pre><code>
-        &lt;a href="downloads/"&gt;Downloads/&lt;a&gt;
-     to
-    &lt;a href="apache-openjpa/downloads/"&gt;Downloads&lt;/a&gt;
-</code></pre>
-            2. 
-<pre><code>
-        &lt;a href="docs/index.html"&gt;docs/index.html&lt;/a&gt;
-         to
-      &lt;a href="apache-openjpa/docs/index.html"&gt;docs/index.html&lt;/a&gt;
-</code></pre>
+
+                <a href="downloads/"&gt;Downloads/&lt;a&gt;
+                  to
+                <a href="apache-openjpa/downloads/">Downloads</a>
+    
+                <a href="docs/index.html">docs/index.html</a>
+                  to
+                <a href="apache-openjpa/docs/index.html">docs/index.html</a>
+
     2. Login to [Nexus](https://repository.apache.org/index.html)
     3. Verify the staged artifacts in the nexus repo
         1. Build Promotion --> Staging Repositories
@@ -125,6 +139,7 @@ Different arguments and steps are requir
         3. In Browser tab, navigate through the artifact tree and make sure that all javadoc, sources, tests, jars, ... have .asc (GPG signature) and .md5files. See [http://people.apache.org/~henkp/repo/faq.html](http://people.apache.org/~henkp/repo/faq.html) and <http://www.apache.org/dev/release-signing.html/#openpgp-ascii-detach-sig>.
     4. Close the nexus staging repo
         1. Select/check org.apache.openjpa-xxx and select Close.
+
 10. Put the release candidate up for a vote
     1. Create a VOTE email thread on dev@openjpa to record votes as replies, like -
                 
@@ -139,7 +154,8 @@ Different arguments and steps are requir
                 https://repository.apache.org/content/repositories/orgapacheopenjpa-XXX/
                 
                 Source release:
-                https://repository.apache.org/content/repositories/orgapacheopenjpa-XXX/org/apache/openjpa/openjpa-parent/2.0.1/openjpa-parent-2.0.1-source-release.zip
+                https://repository.apache.org/content/repositories/orgapacheopenjpa-XXX/\
+                      org/apache/openjpa/openjpa-parent/2.0.1/openjpa-parent-2.0.1-source-release.zip
                 
                 Javadoc staging site:
                 http://people.apache.org/~dwoods/openjpa/2.0.1/staging-site/apidocs/
@@ -197,43 +213,46 @@ Different arguments and steps are requir
         3. Select/check org.apache.openjpa-xxx and select Release.
     2. Copy the staged site over to the openjpa/builds location on people.apache.org.
         1. ssh to people.apache.org
-<pre><code>
-        $ mkdir /www/openjpa.apache.org/builds/2.0.1
-        $ cp -r ~/public_html/openjpa/2.0.1/staging-site/*
-        /www/openjpa.apache.org/builds/2.0.1/
-        $ chmod -R g+w /www/openjpa.apache.org/builds/2.0.1
-</code></pre>
+
+                $ mkdir /www/openjpa.apache.org/builds/2.0.1
+                $ cp -r ~/public_html/openjpa/2.0.1/staging-site/* /www/openjpa.apache.org/builds/2.0.1/
+                $ chmod -R g+w /www/openjpa.apache.org/builds/2.0.1
+
         2. Update the assemblies in the Downloads directory.  For this, we'll just wget copies of the released assemblies with their signatures and hashes from the Apache repo:
-<pre><code>        
-        $ cd /www/openjpa.apache.org/builds/2.0.1/apache-openjpa/downloads
-        wget [--no-check-certificate] https://repository.apache.org/content/repositories/releases/org/apache/openjpa/apache-openjpa/2.0.1/apache-openjpa-2.0.1-source.zip
-        wget [--no-check-certificate] https://repository.apache.org/content/repositories/releases/org/apache/openjpa/apache-openjpa/2.0.1/apache-openjpa-2.0.1-binary.zip
-</code></pre>
-        Along with the *.zip.asc, *.zip.md5 and *.zip.sha1 for both ZIP files
-above.
+        
+                $ cd /www/openjpa.apache.org/builds/2.0.1/apache-openjpa/downloads
+                wget [--no-check-certificate] https://repository.apache.org/content/repositories/releases/\
+                      org/apache/openjpa/apache-openjpa/2.0.1/apache-openjpa-2.0.1-source.zip
+                wget [--no-check-certificate] https://repository.apache.org/content/repositories/releases/\
+                      org/apache/openjpa/apache-openjpa/2.0.1/apache-openjpa-2.0.1-binary.zip
+
+            Along with the *.zip.asc, *.zip.md5 and *.zip.sha1 for both ZIP files above.
+
         3. copy the RELEASE-NOTES.html to the proper location
-<pre><code>
-$ cd ...../2.0.1-rc1/
-$ scp openjpa-project/RELEASE-NOTES.html allee8285@people.apache.org:/www/openjpa.apache.org/builds/2.0.1/apache-openjpa
-</code></pre>
+
+                $ cd ...../2.0.1-rc1/
+                $ scp openjpa-project/RELEASE-NOTES.html allee8285@people.apache.org:\
+                      /www/openjpa.apache.org/builds/2.0.1/apache-openjpa
+
         4. verify that /www/openjpa.apache.org/builds/2.0.1/docs/manual is populated correctly by comparing it to a previous release. 
-<pre><code>       
-    $ rm /www/openjpa.apache.org/docs/latest
-    $ ln -fvs ../builds/2.0.1/apache-openjpa/docs/ /www/openjpa.apache.org/docs/latest 
-</code></pre>
+
+                $ rm /www/openjpa.apache.org/docs/latest
+                $ ln -fvs ../builds/2.0.1/apache-openjpa/docs/ /www/openjpa.apache.org/docs/latest 
+
     3. Copy the distribution artifacts over to the distribution area.
-<pre><code>
-    mkdir /www/www.apache.org/dist/openjpa/2.0.1
-    cp /www/openjpa.apache.org/builds/2.0.1/apache-openjpa/downloads/* /www/www.apache.org/dist/openjpa/2.0.1/
-    chgrp -R openjpa /www/www.apache.org/dist/openjpa/2.0.1
-    chmod -R g+w /www/www.apache.org/dist/openjpa/2.0.1
-</code></pre>
+
+            mkdir /www/www.apache.org/dist/openjpa/2.0.1
+            cp /www/openjpa.apache.org/builds/2.0.1/apache-openjpa/downloads/* /www/www.apache.org/dist/openjpa/2.0.1/
+            chgrp -R openjpa /www/www.apache.org/dist/openjpa/2.0.1
+            chmod -R g+w /www/www.apache.org/dist/openjpa/2.0.1
+
         1. Optional: Remove the previous version from /dist. Ie if you're publishing 2.0.1 you would remove 2.0.0.  Verify that the release being removed is in the distribution archives before removing.
-<pre><code>
-    $ ls -la /www/archive.apache.org/dist/openjpa/2.0.0/
-    $ rm -rf /www/openjpa.apache.org/dist/openjpa/2.0.0
-</code></pre>
+
+                $ ls -la /www/archive.apache.org/dist/openjpa/2.0.0/
+                $ rm -rf /www/openjpa.apache.org/dist/openjpa/2.0.0
+
     4. Update the [JIRA Releases](https://issues.apache.org/jira/browse/OPENJPA) page to mark the version as "released", and set the date to the date that the release was approved. You may also need to make a new release entry for the next release.
+    
 12. Update wiki pages
     1. After the distribution and build files have been mirrored out to the external sites (takes about an hour), update the [Downloads](/downloads.html) and [Documentation](/documentation.html) pages with the new release.
     2. Make a blog announcement on the OpenJPA wiki. 
@@ -242,18 +261,18 @@ $ scp openjpa-project/RELEASE-NOTES.html
 13. Announcing the release
     1. FIX MEEEE After the Maven mirrors have had time to update (24 hours to be on the safe side) and the wiki updates have been exported and mirrored to the external website, then it's time to announce the release.  Make an announcement about the release on the dev@, user@ and [mailto:announce@apache.org] list as per [the Apache Announcement Mailing Lists page|http://www.apache.org/foundation/mailinglists.html*foundation-announce]
 )
-    <!--{note}-->
+
+        <span class="note">
 Make sure you send the announcement to announce@apache.org from your
 user@apache.org. This can be achieved using gmail by setting the "From"
 field to user@apche.org instead of user@gmail.com when sending the
-announcement.
-    <!--{note}-->
+announcement.</span>
     
  
 # Recovering from a vetoed release
 1. Reply to the initial vote email and prepend to the original subject -
  
-                        [CANCELED]
+    [CANCELED]
 
 2. Rollback the version upgrades in trunk by either -
     1. Restore the 2.0.1-rc1.tar.gz and run
@@ -274,9 +293,9 @@ announcement.
         
 5. Remove the staged site
 
-            $ ssh ${user.name}@people.apache.org 
-            $ cd ~/public_html/openjpa
-            $ rm -fr ${project.version}
+    $ ssh ${user.name}@people.apache.org 
+    $ cd ~/public_html/openjpa
+    $ rm -fr ${project.version}
 
 6. Make the required updates that caused the vote to be canceled
 7. Spin another release candidate!
@@ -287,16 +306,16 @@ announcement.
 
 On unix platforms the following command can be executed -
 
-                for file in `find . -type f -iname '*.asc'`
-                do
-                        gpg --verify ${file} 
-                done
+    for file in `find . -type f -iname '*.asc'`
+    do
+        gpg --verify ${file} 
+    done
 
     
 You'll need to look at the output to ensure it contains only good
 signatures -
 
-            gpg: Good signature from ...
-            gpg: Signature made ...
+    gpg: Good signature from ...
+    gpg: Signature made ...
   
   

Modified: openjpa/site/trunk/content/css/type-settings.css
URL: http://svn.apache.org/viewvc/openjpa/site/trunk/content/css/type-settings.css?rev=1411556&r1=1411555&r2=1411556&view=diff
==============================================================================
--- openjpa/site/trunk/content/css/type-settings.css (original)
+++ openjpa/site/trunk/content/css/type-settings.css Tue Nov 20 06:05:47 2012
@@ -2,6 +2,10 @@
 	Override default elements
 */
 
+h1, h2 {
+    border-bottom: 1px dotted #660033;
+}
+
 pre {
 	margin-top: 5px;
 	margin-left: 15px;
@@ -30,6 +34,43 @@ body, p, ul, ol {
 ul, ol {
 	font-size: 12px;
 }
+
+table, td
+{
+    border-width: 1px;
+    border-style: solid;
+    border-color: #ccc;
+    padding: 3px 4px 3px 4px;
+}
+
+table, th
+{
+    border-width: 1px;
+    border-style: solid;
+    border-color: #ccc;
+    padding: 3px 4px 3px 4px;
+/**    background-color: #f0f0f0; */
+/**    text-align: center; */
+}
+
+td
+{
+    border-width: 1px;
+    border-style: solid;
+    border-color: #ccc;
+    padding: 3px 4px 3px 4px;
+}
+
+th
+{
+    border-width: 1px;
+    border-style: solid;
+    border-color: #ccc;
+    padding: 3px 4px 3px 4px;
+    background-color: #f0f0f0;
+/**    text-align: center; */
+}
+
 td, table, tr {
 	font-family: verdana,arial,helvetica,sans-serif;
 	font-size: 10px;
@@ -41,6 +82,18 @@ td, table, tr {
 	color: #000000;
 }
 
+A:link, A:visited, A:active, A:hover {
+   color: #880055;
+   text-decoration: none;
+   font-weight: bold;
+}
+
+A:active, A:hover {
+   text-decoration: underline;
+   #color: #202020;
+   color: #880055;
+}
+
 /**
 	Additional css class elements. Please ensure to keep this list alphabetized
 */

Modified: openjpa/site/trunk/content/documentation.mdtext
URL: http://svn.apache.org/viewvc/openjpa/site/trunk/content/documentation.mdtext?rev=1411556&r1=1411555&r2=1411556&view=diff
==============================================================================
--- openjpa/site/trunk/content/documentation.mdtext (original)
+++ openjpa/site/trunk/content/documentation.mdtext Tue Nov 20 06:05:47 2012
@@ -8,7 +8,7 @@ The online OpenJPA documentation can be 
 <a name="Documentation-Latest(2.3.0-SNAPSHOT)"></a>
 ## Latest (2.3.0-SNAPSHOT)
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th><th> Schema </th></tr>
 <tr><td> Nightly build (trunk) 
@@ -23,7 +23,7 @@ Javadocs </th><th> Schema </th></tr>
 <a name="Documentation-OpenJPA2.2.xreleases"></a>
 ## OpenJPA 2.2.x releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 2.2.1-SNAPSHOT 
@@ -43,7 +43,7 @@ Javadocs </th></tr>
 <a name="Documentation-OpenJPA2.1.xreleases"></a>
 ## OpenJPA 2.1.x releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 2.1.2-SNAPSHOT 
@@ -69,7 +69,7 @@ Javadocs </th></tr>
 <a name="Documentation-OpenJPA2.0.xreleases"></a>
 ## OpenJPA 2.0.x releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 2.0.2-SNAPSHOT 
@@ -120,7 +120,7 @@ Javadocs </th></tr>
 <a name="Documentation-OpenJPA1.3.xreleases"></a>
 ## OpenJPA 1.3.x releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 1.3.0-SNAPSHOT 
@@ -135,7 +135,7 @@ Javadocs </th></tr>
 <a name="Documentation-OpenJPA1.2.xreleases"></a>
 ## OpenJPA 1.2.x releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 1.2.3-SNAPSHOT 
@@ -167,7 +167,7 @@ Javadocs </th></tr>
 <a name="Documentation-OpenJPA1.1.xreleases"></a>
 ## OpenJPA 1.1.x releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 1.1.0 
@@ -181,7 +181,7 @@ Javadocs </th></tr>
 <a name="Documentation-OpenJPA1.0.xreleases"></a>
 ## OpenJPA 1.0.x releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 1.0.5-SNAPSHOT 
@@ -225,7 +225,7 @@ Javadocs </th></tr>
 <a name="Documentation-Incubatingreleases"></a>
 ## Incubating releases
 
-<table border="1">
+<table>
 <tr><th> Version </th><th> HTML Manual </th><th> HTML Manual (Single Page) </th><th> PDF Manual </th><th>
 Javadocs </th></tr>
 <tr><td> OpenJPA 0.9.7 

Modified: openjpa/site/trunk/content/downloads.mdtext
URL: http://svn.apache.org/viewvc/openjpa/site/trunk/content/downloads.mdtext?rev=1411556&r1=1411555&r2=1411556&view=diff
==============================================================================
--- openjpa/site/trunk/content/downloads.mdtext (original)
+++ openjpa/site/trunk/content/downloads.mdtext Tue Nov 20 06:05:47 2012
@@ -23,20 +23,22 @@ These releases implement the [JSR-317 Ja
 
 <table>
 <tr><th> </th><th> Download </th><th> Release Date </th><th> Checksum </th><th> Signatures </th></tr>
-<tr><td> [OpenJPA 2.2.0](openjpa-2.2.0.html)
- Binary </td><td> [apache-openjpa-2.2.0-binary.zip</td><td>http://www.apache.org/dyn/closer.cgi/openjpa/2.2.0/apache-openjpa-2.2.0-binary.zip]
- [(\*\*)</td><td>#missing.asm]
-</td><td> 20 February 2012 </td><td> [MD5</td><td>http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-binary.zip.md5]
- </td><td> [PGP</td><td>http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-binary.zip.asc]
- </td></tr>
-<tr><td> [OpenJPA 2.2.0](openjpa-2.2.0.html)
- Source </td><td> [apache-openjpa-2.2.0-source.zip</td><td>http://www.apache.org/dyn/closer.cgi/openjpa/2.2.0/apache-openjpa-2.2.0-source.zip]
- </td><td> 20 February 2012 </td><td> [MD5</td><td>http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-source.zip.md5]
- </td><td> [PGP</td><td>http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-source.zip.asc]
- </td></tr>
-<tr><td> [OpenJPA 2.2.0](openjpa-2.2.0.html)
- Release Notes </td><td> [RELEASE-NOTES.html</td><td>http://openjpa.apache.org/builds/2.2.0/apache-openjpa/RELEASE-NOTES.html]
- </td><td> 20 February 2012 </td><td> </td><td> </td></tr>
+<tr><td> OpenJPA 2.2.0 Binary </td>
+    <td> <a href="http://www.apache.org/dyn/closer.cgi/openjpa/2.2.0/apache-openjpa-2.2.0-binary.zip">apache-openjpa-2.2.0-binary.zip</a> <a href="#missing.asm>">(\*\*)</a></td>
+    <td> 20 February 2012 </td>
+    <td> <a href="http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-binary.zip.md5">MD5</a></td>
+    <td> <a href="http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-binary.zip.asc">PGP</a></td>
+</tr>
+<tr><td> OpenJPA 2.2.0 Source </td>
+    <td> <a href="http://www.apache.org/dyn/closer.cgi/openjpa/2.2.0/apache-openjpa-2.2.0-source.zip">apache-openjpa-2.2.0-source.zip</a>
+    <td> 20 February 2012 </td>
+    <td> <a href="http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-source.zip.md5">MD5</a>
+    <td> <a href="http://www.apache.org/dist/openjpa/2.2.0/apache-openjpa-2.2.0-source.zip.asc">PGP</a>
+</tr>
+<tr><td> OpenJPA 2.2.0 Release Notes </td>
+    <td> <a href="http://openjpa.apache.org/builds/2.2.0/apache-openjpa/RELEASE-NOTES.html">RELEASE-NOTES.html</a>
+    <td> 20 February 2012 </td><td> </td><td> </td>
+</tr>
 </table>
 
 <a name="Downloads-2.1.xReleases"></a>