You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ri...@apache.org on 2005/06/06 23:48:39 UTC

svn commit: r185057 - /incubator/beehive/branches/v1/m1/docs/forrest/src/documentation/content/xdocs/downloads.xml

Author: rich
Date: Mon Jun  6 14:48:38 2005
New Revision: 185057

URL: http://svn.apache.org/viewcvs?rev=185057&view=rev
Log:
Updated the downloads page with the link to V1/M1, and also with instructions for verifying digital signatures on the files.

tests: validate in docs/forrest (WinXP)
BB: self (linux)


Modified:
    incubator/beehive/branches/v1/m1/docs/forrest/src/documentation/content/xdocs/downloads.xml

Modified: incubator/beehive/branches/v1/m1/docs/forrest/src/documentation/content/xdocs/downloads.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/branches/v1/m1/docs/forrest/src/documentation/content/xdocs/downloads.xml?rev=185057&r1=185056&r2=185057&view=diff
==============================================================================
--- incubator/beehive/branches/v1/m1/docs/forrest/src/documentation/content/xdocs/downloads.xml (original)
+++ incubator/beehive/branches/v1/m1/docs/forrest/src/documentation/content/xdocs/downloads.xml Mon Jun  6 14:48:38 2005
@@ -7,14 +7,13 @@
 	</header>
 	<body>
 		<section>
-            <title>Beehive 1.0 Beta Binary Distribution</title>
-            <p>The Beehive 1.0 Beta binary distribution is available for 
-                download at <a
-				href="http://cvs.apache.org/dist/incubator/beehive/v1.0-beta/bin/">http://cvs.apache.org/dist/incubator/beehive/v1.0-beta/bin/</a>. 
-				</p>
-					<note>This distribution is a <em>beta</em> release and is 
-				<em>not</em> intended for creating production-level 
-                applications.</note>
+            <title>Beehive 1.0m1 Binary Distribution</title>
+            <p>
+                The Beehive 1.0 Milestone 1 binary distribution is available for download at
+                <a href="http://cvs.apache.org/dist/incubator/beehive/v1.0m1/">
+                    http://cvs.apache.org/dist/incubator/beehive/v1.0m1/
+                </a>. 
+            </p>
 		</section>
 		<section>
 			<title>Daily Binary Distributions</title>
@@ -22,6 +21,100 @@
 				<a href="http://cvs.apache.org/dist/incubator/beehive/nightlies/">http://cvs.apache.org/dist/incubator/beehive/nightlies/</a> 
 				</p>
 		</section>
+        <section>
+            <title>Older Releases</title>
+            <section>
+                <title>Beehive 1.0 Beta Binary Distribution</title>
+                <p>
+                    The Beehive 1.0 Beta binary distribution is available for download at
+                    <a href="http://cvs.apache.org/dist/incubator/beehive/v1.0-beta/bin/">
+                        http://cvs.apache.org/dist/incubator/beehive/v1.0-beta/bin/
+                    </a>. 
+                </p>
+                <note>
+                    This distribution is a <em>beta</em> release and is <em>not</em> intended for
+                    creating production-level applications.
+                </note>
+            </section>
+        </section>
+        <section>
+            <title>Verifying Downloaded Files</title>
+            <p>
+                You can verify the integrity of downloaded files using either GnuPG/PGP or MD5.
+            </p>
+            <section>
+                <title>Verifying with PGP</title>
+                <p>
+                    PGP is commercial encryption/digital-signature software.  It can be found
+                    <a href="http://www.pgp.com">here</a>.
+                </p>
+                <ul>
+                    <li>
+                        Download the Beehive
+                        <a href="http://cvs.apache.org/dist/incubator/beehive/KEYS">KEYS</a>
+                        file.
+                    </li>
+                    <li>
+                        Download the associated <code>.asc</code> file that goes with the file
+                        you downloaded.  If you downloaded <code>example.tar.gz</code>, then you
+                        would also need <code>example.tar.gz.asc</code>.
+                    </li>
+                    <li>
+                        Import the KEYS file into your local keystore:
+                        <source>pgp -ka KEYS</source>
+                    </li>
+                    <li>
+                        Verify your downloaded file:
+                        <source>pgp example.tar.gz.asc</source>
+                    </li>
+                </ul>
+            </section>
+            <section>
+                <title>Verifying with GnuPG</title>
+                <p>
+                    GnuPG is a "complete and free replacement for PGP."  It can be found
+                    <a href="http://www.gnupg.org">here</a>.
+                </p>
+                <ul>
+                    <li>
+                        Download the Beehive
+                        <a href="http://cvs.apache.org/dist/incubator/beehive/KEYS">KEYS</a>
+                        file.
+                    </li>
+                    <li>
+                        Download the associated <code>.asc</code> file that goes with the file
+                        you downloaded.  If you downloaded <code>example.tar.gz</code>, then you
+                        would also need <code>example.tar.gz.asc</code>.
+                    </li>
+                    <li>
+                        Import the KEYS file into your local keystore:
+                        <source>gpg --import KEYS</source>
+                    </li>
+                    <li>
+                        Verify your downloaded file:
+                        <source>gpg --verify example.tar.gz.asc</source>
+                    </li>
+                </ul>
+            </section>
+            <section>
+                <title>Verifying with MD5</title>
+                <p>
+                    <code>md5sum</code> is a program on Unix-type systems that creates and verifies
+                    file checksums ("message digests").
+                </p>
+                <ul>
+                    <li>
+                        Download the associated <code>.md5</code> file that goes with the file
+                        you downloaded.  If you downloaded <code>example.tar.gz</code>, then you
+                        would also need <code>example.tar.gz.md5</code>.
+                    </li>
+                    <li>
+                        Verify your downloaded file:
+                        <source>md5sum -c example.tar.gz.md5</source>
+                    </li>
+                </ul>
+            </section>
+        </section>
 		<section>
 			<title>Making Your Own Distribution</title>
 			<p>If you want the Beehive source, follow the instructions at