You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by bu...@apache.org on 2012/08/14 05:30:33 UTC

svn commit: r828858 - in /websites/staging/lucene/trunk/content: ./ core/ solr/

Author: buildbot
Date: Tue Aug 14 03:30:32 2012
New Revision: 828858

Log:
Staging update by buildbot for lucene

Modified:
    websites/staging/lucene/trunk/content/   (props changed)
    websites/staging/lucene/trunk/content/.htaccess
    websites/staging/lucene/trunk/content/core/corenews.html
    websites/staging/lucene/trunk/content/core/developer.html
    websites/staging/lucene/trunk/content/core/discussion.html
    websites/staging/lucene/trunk/content/core/documentation.html
    websites/staging/lucene/trunk/content/core/downloads.html
    websites/staging/lucene/trunk/content/core/features.html
    websites/staging/lucene/trunk/content/core/index.html
    websites/staging/lucene/trunk/content/core/mirrors-core-3x-redir.html
    websites/staging/lucene/trunk/content/core/mirrors-core-latest-redir.html
    websites/staging/lucene/trunk/content/core/mirrors-core-redir.html
    websites/staging/lucene/trunk/content/core/quickstart.html
    websites/staging/lucene/trunk/content/core/systemreqs.html
    websites/staging/lucene/trunk/content/index.html
    websites/staging/lucene/trunk/content/mainnews.html
    websites/staging/lucene/trunk/content/privacy.html
    websites/staging/lucene/trunk/content/site-instructions.html
    websites/staging/lucene/trunk/content/solr/books.html
    websites/staging/lucene/trunk/content/solr/discussion.html
    websites/staging/lucene/trunk/content/solr/documentation.html
    websites/staging/lucene/trunk/content/solr/downloads.html
    websites/staging/lucene/trunk/content/solr/features.html
    websites/staging/lucene/trunk/content/solr/index.html
    websites/staging/lucene/trunk/content/solr/mirrors-solr-3x-redir.html
    websites/staging/lucene/trunk/content/solr/mirrors-solr-latest-redir.html
    websites/staging/lucene/trunk/content/solr/mirrors-solr-redir.html
    websites/staging/lucene/trunk/content/solr/quickstart.html
    websites/staging/lucene/trunk/content/solr/solrnews.html
    websites/staging/lucene/trunk/content/solr/tutorial.html
    websites/staging/lucene/trunk/content/solr/versioncontrol.html
    websites/staging/lucene/trunk/content/whoweare.html

Propchange: websites/staging/lucene/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 14 03:30:32 2012
@@ -1 +1 @@
-1372706
+1372717

Modified: websites/staging/lucene/trunk/content/.htaccess
==============================================================================
--- websites/staging/lucene/trunk/content/.htaccess (original)
+++ websites/staging/lucene/trunk/content/.htaccess Tue Aug 14 03:30:32 2012
@@ -25,7 +25,7 @@ RedirectMatch Permanent /solr/api/index.
 # Other pages can always be redirected to the "most current" released javadocs
 # using "temp" instead of permanent so crawlers know that they
 # might change again in the future
-RedirectMatch temp /solr/api/(.*) /solr/api-4_0_0-ALPHA/$1
+RedirectMatch temp /solr/api/(.*) /solr/api-4_0_0-BETA/$1
 
 # we no longer have a TLP mail.html page use 'core' for now
 RedirectMatch Permanent /mail.html /core/discussion.html

Modified: websites/staging/lucene/trunk/content/core/corenews.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/corenews.html (original)
+++ websites/staging/lucene/trunk/content/core/corenews.html Tue Aug 14 03:30:32 2012
@@ -207,6 +207,64 @@
       <h1 class="title"></h1>
 
       <div><h1 id="lucene-core-news">Lucene Core News</h1>
+<h2 id="13-august-2012-lucene-core-40-beta">13 August 2012 - Lucene Core 4.0-BETA</h2>
+<p>Apache Lucene is a high-performance, full-featured text search engine
+library written entirely in Java. It is a technology suitable for nearly
+any application that requires full-text search, especially cross-platform.</p>
+<p>This release contains numerous bug fixes, optimizations, and
+improvements, some of which are highlighted below.  The release
+is available for immediate download at:
+   <a href="/core/mirrors-core-latest-redir.html?">http://lucene.apache.org/core/mirrors-core-latest-redir.html</a></p>
+<p>See the <a href="http://lucene.apache.org/core/4_0_0-BETA/changes/Changes.html">CHANGES.txt</a> file included with the release for a full list of
+details.</p>
+<p>Highlights of changes since 4.0-alpha:</p>
+<ul>
+<li>
+<p><a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/index/IndexWriter.html#tryDeleteDocument%28org.apache.lucene.index.IndexReader,%20int%29">
+  IndexWriter.tryDeleteDocument</a> can sometimes delete by document ID, 
+  for higher performance in some applications.</p>
+</li>
+<li>
+<p>New experimental postings formats: <a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/codecs/bloom/BloomFilteringPostingsFormat.html">
+  BloomFilteringPostingsFormat</a> uses a bloom filter to sometimes avoid 
+  disk seeks when looking up terms,
+  <a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/codecs/memory/DirectPostingsFormat.html">
+  DirectPostingsFormat</a> holds all postings as simple byte[] and int[] 
+  for very fast performance at the cost of very high RAM consumption.</p>
+</li>
+<li>
+<p>CJK analysis improvements: <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-kuromoji/org/apache/lucene/analysis/ja/JapaneseIterationMarkCharFilter.html">
+  JapaneseIterationMarkCharFilter</a> normalizes Japanese iteration marks, 
+  added unigram+bigram support to <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html">
+  CJKBigramFilter</a>.</p>
+</li>
+<li>
+<p>Improvements to Scorer navigation API (<a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/search/Scorer.html#getChildren%28%29">
+  Scorer.getChildren</a>) to support all queries, useful for determining 
+  which portions of the query matched.</p>
+</li>
+<li>
+<p>Analysis improvements: factories for creating <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/util/TokenizerFactory.html">
+  Tokenizer</a>, <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/util/TokenFilterFactory.html">
+  TokenFilter</a>, and <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/util/CharFilterFactory.html"> 
+  CharFilter</a> have been moved from Solr to Lucene's analysis module,
+  less memory overhead for StandardTokenizer and Snowball filters.</p>
+</li>
+<li>
+<p>Improved highlighting for multi-valued fields.</p>
+</li>
+<li>
+<p>Various other API changes, optimizations and bug fixes.</p>
+</li>
+</ul>
+<p>Please read <a href="http://lucene.apache.org/core/4_0_0-BETA/changes/Changes.html">CHANGES.txt</a> and 
+<a href="http://lucene.apache.org/core/4_0_0-BETA/MIGRATE.html">MIGRATE.txt</a> for a full list of new features and notes on upgrading. 
+Particularly, the new apis are not compatible with previous version of Lucene, however, file 
+format backwards compatibility is provided for indexes from the 3.0 series and the 4.0-alpha release.</p>
+<p>This is a beta release for early adopters. The guarantee for this beta release is that the index 
+format will be the 4.0 index format, supported through the 5.x series of Apache Lucene, unless there 
+is a critical bug (e.g. that would cause index corruption) that would prevent this.</p>
+<p>Please report any feedback to the mailing lists (<a href="http://lucene.apache.org/core/discussion.html">http://lucene.apache.org/core/discussion.html</a>)</p>
 <h2 id="22-july-2012-apache-lucene-361">22 July 2012 - Apache Lucene 3.6.1</h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Lucene 3.6.1.</p>
 <p>Apache Lucene is a high-performance, full-featured text search engine
@@ -390,9 +448,9 @@ is a critical bug (e.g. that would cause
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -404,7 +462,7 @@ is a critical bug (e.g. that would cause
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/developer.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/developer.html (original)
+++ websites/staging/lucene/trunk/content/core/developer.html Tue Aug 14 03:30:32 2012
@@ -257,9 +257,9 @@ project. It is responsible for running n
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -271,7 +271,7 @@ project. It is responsible for running n
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/discussion.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/discussion.html (original)
+++ websites/staging/lucene/trunk/content/core/discussion.html Tue Aug 14 03:30:32 2012
@@ -276,9 +276,9 @@ No endorsement is implied by the listing
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -290,7 +290,7 @@ No endorsement is implied by the listing
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/documentation.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/documentation.html (original)
+++ websites/staging/lucene/trunk/content/core/documentation.html Tue Aug 14 03:30:32 2012
@@ -209,7 +209,7 @@
       <div><h1 id="release-docs">Release Docs</h1>
 <h2 id="java-docs">Java Docs</h2>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul></div>
       
@@ -232,9 +232,9 @@
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -246,7 +246,7 @@
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/downloads.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/downloads.html (original)
+++ websites/staging/lucene/trunk/content/core/downloads.html Tue Aug 14 03:30:32 2012
@@ -239,9 +239,9 @@
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -253,7 +253,7 @@
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/features.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/features.html (original)
+++ websites/staging/lucene/trunk/content/core/features.html Tue Aug 14 03:30:32 2012
@@ -255,9 +255,9 @@
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -269,7 +269,7 @@
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/index.html (original)
+++ websites/staging/lucene/trunk/content/core/index.html Tue Aug 14 03:30:32 2012
@@ -259,9 +259,9 @@
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -273,7 +273,7 @@
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>
@@ -306,33 +306,33 @@
       <div class="status-item">
       
       <div class="section-content">
-        <a class="svn" href="http://svn.apache.org/viewvc?revision=1364107;view=revision">r1364107</a>
-        explain that app should not change returned BytesRef payload (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
-        <a href="http://people.apache.org/committer-index.html#mikemccand">mikemccand</a>
+        <a class="svn" href="http://svn.apache.org/viewvc?revision=1372701;view=revision">r1372701</a>
+        <a href="https://issues.apache.org/jira/browse/SOLR-3727">SOLR-3727</a>: improve solrcloud close/shutdown (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+        <a href="http://people.apache.org/committer-index.html#markrmiller">markrmiller</a>
       </div>
     
       <div class="section-content">
-        <a class="svn" href="http://svn.apache.org/viewvc?revision=1364106;view=revision">r1364106</a>
-        also test extremes (1, MAX_VALUE) for DirectPF's configs (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
-        <a href="http://people.apache.org/committer-index.html#mikemccand">mikemccand</a>
+        <a class="svn" href="http://svn.apache.org/viewvc?revision=1372687;view=revision">r1372687</a>
+        <a href="https://issues.apache.org/jira/browse/SOLR-3670">SOLR-3670</a>: New CountFieldValuesUpdateProcessorFactory (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+        <a href="http://people.apache.org/committer-index.html#hossman">hossman</a>
       </div>
     
       <div class="section-content">
-        <a class="svn" href="http://svn.apache.org/viewvc?revision=1364070;view=revision">r1364070</a>
-        fix bugs in DirectPF's lowFreq d-and-p-enum, set payload.bytes/offset/length in getPayload, also skip payload pointer correctly when scanning over deleted docs... (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+        <a class="svn" href="http://svn.apache.org/viewvc?revision=1372654;view=revision">r1372654</a>
+        <a href="https://issues.apache.org/jira/browse/LUCENE-4152">LUCENE-4152</a>: use simpler sugar (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
         <a href="http://people.apache.org/committer-index.html#rmuir">rmuir</a>
       </div>
     
       <div class="section-content">
-        <a class="svn" href="http://svn.apache.org/viewvc?revision=1364064;view=revision">r1364064</a>
-        add toString for debugging (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+        <a class="svn" href="http://svn.apache.org/viewvc?revision=1372645;view=revision">r1372645</a>
+        <a href="https://issues.apache.org/jira/browse/LUCENE-4152">LUCENE-4152</a>: add one syllable method to enumerate subreaders (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
         <a href="http://people.apache.org/committer-index.html#rmuir">rmuir</a>
       </div>
     
       <div class="section-content">
-        <a class="svn" href="http://svn.apache.org/viewvc?revision=1364031;view=revision">r1364031</a>
-        TestNRTThreads wants a MockDirectoryWrapper always (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
-        <a href="http://people.apache.org/committer-index.html#rmuir">rmuir</a>
+        <a class="svn" href="http://svn.apache.org/viewvc?revision=1372633;view=revision">r1372633</a>
+        <a href="https://issues.apache.org/jira/browse/LUCENE-4302">LUCENE-4302</a>: Fix facet userguide to have HTML loose doctype like all other javadocs (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+        <a href="http://people.apache.org/committer-index.html#uschindler">uschindler</a>
       </div>
     </div></div>
     

Modified: websites/staging/lucene/trunk/content/core/mirrors-core-3x-redir.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/mirrors-core-3x-redir.html (original)
+++ websites/staging/lucene/trunk/content/core/mirrors-core-3x-redir.html Tue Aug 14 03:30:32 2012
@@ -311,9 +311,9 @@ following:</p>
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -325,7 +325,7 @@ following:</p>
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/mirrors-core-latest-redir.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/mirrors-core-latest-redir.html (original)
+++ websites/staging/lucene/trunk/content/core/mirrors-core-latest-redir.html Tue Aug 14 03:30:32 2012
@@ -18,7 +18,7 @@
   -->
 
   
-    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/java/4.0.0-ALPHA">
+    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/java/4.0.0-BETA">
     <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
     <link href="../css/global.css" rel="stylesheet" type="text/css">
     <link href="../css/core.css" rel="stylesheet" type="text/css">
@@ -311,9 +311,9 @@ following:</p>
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -325,7 +325,7 @@ following:</p>
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/mirrors-core-redir.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/mirrors-core-redir.html (original)
+++ websites/staging/lucene/trunk/content/core/mirrors-core-redir.html Tue Aug 14 03:30:32 2012
@@ -309,9 +309,9 @@ following:</p>
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -323,7 +323,7 @@ following:</p>
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/quickstart.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/quickstart.html (original)
+++ websites/staging/lucene/trunk/content/core/quickstart.html Tue Aug 14 03:30:32 2012
@@ -210,7 +210,7 @@
 in the documentation for that release.</p>
 <p>The most recent version can also be found online:</p>
 <ul>
-<li><a href="4_0_0-ALPHA/demo/overview-summary.html#overview_description">Lucene 4.0-ALPHA Demo</a></li>
+<li><a href="4_0_0-BETA/demo/overview-summary.html#overview_description">Lucene 4.0-BETA Demo</a></li>
 </ul></div>
       
 
@@ -232,9 +232,9 @@ in the documentation for that release.</
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -246,7 +246,7 @@ in the documentation for that release.</
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/core/systemreqs.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/systemreqs.html (original)
+++ websites/staging/lucene/trunk/content/core/systemreqs.html Tue Aug 14 03:30:32 2012
@@ -251,9 +251,9 @@ Also, the <a href="http://svn.apache.org
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+    <div class="download-desc">Apache Lucene 4.0-BETA</div>
   </div>
   <h1 id="resources">Resources</h1>
 <ul>
@@ -265,7 +265,7 @@ Also, the <a href="http://svn.apache.org
 </ul>
 <h1 id="release-docs">Release Docs</h1>
 <ul>
-<li><a href="./4_0_0-ALPHA/index.html">4.0-ALPHA</a></li>
+<li><a href="./4_0_0-BETA/index.html">4.0-BETA</a></li>
 <li><a href="./3_6_1/index.html">3.6.1</a></li>
 </ul>
 <h1 id="about">About</h1>

Modified: websites/staging/lucene/trunk/content/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/index.html (original)
+++ websites/staging/lucene/trunk/content/index.html Tue Aug 14 03:30:32 2012
@@ -465,15 +465,15 @@ and Solr can be downloaded from <a href=
   <div class="button-green">
     <a href="core/mirrors-core-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+  <div class="download-desc">Apache Lucene 4.0-BETA</div>
   <div class="button-orange">
     <a href="solr/mirrors-solr-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Solr 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Solr 4.0-ALPHA</div></p>
+  <div class="download-desc">Apache Solr 4.0-BETA</div></p>
 <h1 id="projects">Projects</h1>
 <ul>
 <li><a href="./core/">Lucene Core (Java)</a></li>

Modified: websites/staging/lucene/trunk/content/mainnews.html
==============================================================================
--- websites/staging/lucene/trunk/content/mainnews.html (original)
+++ websites/staging/lucene/trunk/content/mainnews.html Tue Aug 14 03:30:32 2012
@@ -455,15 +455,15 @@ and Solr can be downloaded from <a href=
   <div class="button-green">
     <a href="core/mirrors-core-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+  <div class="download-desc">Apache Lucene 4.0-BETA</div>
   <div class="button-orange">
     <a href="solr/mirrors-solr-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Solr 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Solr 4.0-ALPHA</div></p>
+  <div class="download-desc">Apache Solr 4.0-BETA</div></p>
 <h1 id="projects">Projects</h1>
 <ul>
 <li><a href="./core/">Lucene Core (Java)</a></li>

Modified: websites/staging/lucene/trunk/content/privacy.html
==============================================================================
--- websites/staging/lucene/trunk/content/privacy.html (original)
+++ websites/staging/lucene/trunk/content/privacy.html Tue Aug 14 03:30:32 2012
@@ -224,15 +224,15 @@ Part of this information is gathered usi
   <div class="button-green">
     <a href="core/mirrors-core-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+  <div class="download-desc">Apache Lucene 4.0-BETA</div>
   <div class="button-orange">
     <a href="solr/mirrors-solr-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Solr 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Solr 4.0-ALPHA</div></p>
+  <div class="download-desc">Apache Solr 4.0-BETA</div></p>
 <h1 id="projects">Projects</h1>
 <ul>
 <li><a href="./core/">Lucene Core (Java)</a></li>

Modified: websites/staging/lucene/trunk/content/site-instructions.html
==============================================================================
--- websites/staging/lucene/trunk/content/site-instructions.html (original)
+++ websites/staging/lucene/trunk/content/site-instructions.html Tue Aug 14 03:30:32 2012
@@ -245,15 +245,15 @@
   <div class="button-green">
     <a href="core/mirrors-core-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+  <div class="download-desc">Apache Lucene 4.0-BETA</div>
   <div class="button-orange">
     <a href="solr/mirrors-solr-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Solr 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Solr 4.0-ALPHA</div></p>
+  <div class="download-desc">Apache Solr 4.0-BETA</div></p>
 <h1 id="projects">Projects</h1>
 <ul>
 <li><a href="./core/">Lucene Core (Java)</a></li>

Modified: websites/staging/lucene/trunk/content/solr/books.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/books.html (original)
+++ websites/staging/lucene/trunk/content/solr/books.html Tue Aug 14 03:30:32 2012
@@ -291,8 +291,8 @@ David Smiley and Eric Pugh are proud to 
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/discussion.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/discussion.html (original)
+++ websites/staging/lucene/trunk/content/solr/discussion.html Tue Aug 14 03:30:32 2012
@@ -295,8 +295,8 @@ No endorsement is implied by the listing
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/documentation.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/documentation.html (original)
+++ websites/staging/lucene/trunk/content/solr/documentation.html Tue Aug 14 03:30:32 2012
@@ -231,7 +231,7 @@
 <p>Java API documentation is available online for the following releases:</p>
 <ul>
 <li><a href="./api-3_6_1/">3.6.1</a></li>
-<li><a href="./api-4_0_0-ALPHA/">4.0-ALPHA</a></li>
+<li><a href="./api-4_0_0-BETA/">4.0-BETA</a></li>
 </ul>
 <h2 id="additional-documentation">Additional Documentation</h2>
 <p>Additional documentation can be found on <a href="http://lucene.apache.org/solr/wiki.html">the Solr Wiki</a>.</p></div>
@@ -255,8 +255,8 @@
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/downloads.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/downloads.html (original)
+++ websites/staging/lucene/trunk/content/solr/downloads.html Tue Aug 14 03:30:32 2012
@@ -257,8 +257,8 @@
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/features.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/features.html (original)
+++ websites/staging/lucene/trunk/content/solr/features.html Tue Aug 14 03:30:32 2012
@@ -358,8 +358,8 @@ numeric fields or query relevancy scores
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/index.html (original)
+++ websites/staging/lucene/trunk/content/solr/index.html Tue Aug 14 03:30:32 2012
@@ -365,8 +365,8 @@ numeric fields or query relevancy scores
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>
@@ -408,33 +408,33 @@ numeric fields or query relevancy scores
         <div class="status-item">
           
           <div class="section-content">
-            <a class="svn" href="http://svn.apache.org/viewvc?revision=1364107;view=revision">r1364107</a>
-            explain that app should not change returned BytesRef payload (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
-            <a href="http://people.apache.org/committer-index.html#mikemccand">mikemccand</a>
+            <a class="svn" href="http://svn.apache.org/viewvc?revision=1372701;view=revision">r1372701</a>
+            <a href="https://issues.apache.org/jira/browse/SOLR-3727">SOLR-3727</a>: improve solrcloud close/shutdown (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+            <a href="http://people.apache.org/committer-index.html#markrmiller">markrmiller</a>
           </div>
           
           <div class="section-content">
-            <a class="svn" href="http://svn.apache.org/viewvc?revision=1364106;view=revision">r1364106</a>
-            also test extremes (1, MAX_VALUE) for DirectPF's configs (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
-            <a href="http://people.apache.org/committer-index.html#mikemccand">mikemccand</a>
+            <a class="svn" href="http://svn.apache.org/viewvc?revision=1372687;view=revision">r1372687</a>
+            <a href="https://issues.apache.org/jira/browse/SOLR-3670">SOLR-3670</a>: New CountFieldValuesUpdateProcessorFactory (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+            <a href="http://people.apache.org/committer-index.html#hossman">hossman</a>
           </div>
           
           <div class="section-content">
-            <a class="svn" href="http://svn.apache.org/viewvc?revision=1364070;view=revision">r1364070</a>
-            fix bugs in DirectPF's lowFreq d-and-p-enum, set payload.bytes/offset/length in getPayload, also skip payload pointer correctly when scanning over deleted docs... (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+            <a class="svn" href="http://svn.apache.org/viewvc?revision=1372654;view=revision">r1372654</a>
+            <a href="https://issues.apache.org/jira/browse/LUCENE-4152">LUCENE-4152</a>: use simpler sugar (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
             <a href="http://people.apache.org/committer-index.html#rmuir">rmuir</a>
           </div>
           
           <div class="section-content">
-            <a class="svn" href="http://svn.apache.org/viewvc?revision=1364064;view=revision">r1364064</a>
-            add toString for debugging (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+            <a class="svn" href="http://svn.apache.org/viewvc?revision=1372645;view=revision">r1372645</a>
+            <a href="https://issues.apache.org/jira/browse/LUCENE-4152">LUCENE-4152</a>: add one syllable method to enumerate subreaders (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
             <a href="http://people.apache.org/committer-index.html#rmuir">rmuir</a>
           </div>
           
           <div class="section-content">
-            <a class="svn" href="http://svn.apache.org/viewvc?revision=1364031;view=revision">r1364031</a>
-            TestNRTThreads wants a MockDirectoryWrapper always (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
-            <a href="http://people.apache.org/committer-index.html#rmuir">rmuir</a>
+            <a class="svn" href="http://svn.apache.org/viewvc?revision=1372633;view=revision">r1372633</a>
+            <a href="https://issues.apache.org/jira/browse/LUCENE-4302">LUCENE-4302</a>: Fix facet userguide to have HTML loose doctype like all other javadocs (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+            <a href="http://people.apache.org/committer-index.html#uschindler">uschindler</a>
           </div>
           
         </div>
@@ -446,15 +446,15 @@ numeric fields or query relevancy scores
         
         <div class="status-item">
           <div class="section-content">
-             <a href="http://twitter.com/luiscappabanda/statuses/227054293172244480">@</a>RT <a href="http://twitter.com/thetaph1">@thetaph1</a>: <a href="http://twitter.com/search?q=%23Apache">#Apache</a> <a href="http://twitter.com/search?q=%23Lucene">#Lucene</a> and <a href="http://twitter.com/search?q=%23Solr">#Solr</a> 3.6.1 released! Downloads and release notes as usual on: <a href="http://t.co/ys0BAtdb">http://t.co/ys0BAtdb</a>
+             <a href="http://twitter.com/patrickDurusau/statuses/235194079879757824">@</a>Lucid Imagination become LucidWorks [Man Bites Dog Story] <a href="http://twitter.com/search?q=%23topicmaps">#topicmaps</a> <a href="http://twitter.com/search?q=%23lucidworks">#lucidworks</a> <a href="http://twitter.com/search?q=%23lucene">#lucene</a> <a href="http://twitter.com/search?q=%23solr">#solr</a> Please Retweet - <a href="http://t.co/lKWFZV1v">http://t.co/lKWFZV1v</a>
           </div>
           
           <div class="section-content">
-             <a href="http://twitter.com/atilika/statuses/227054018151727104">@</a>RT <a href="http://twitter.com/thetaph1">@thetaph1</a>: <a href="http://twitter.com/search?q=%23Apache">#Apache</a> <a href="http://twitter.com/search?q=%23Lucene">#Lucene</a> and <a href="http://twitter.com/search?q=%23Solr">#Solr</a> 3.6.1 released! Downloads and release notes as usual on: <a href="http://t.co/ys0BAtdb">http://t.co/ys0BAtdb</a>
+             <a href="http://twitter.com/kab8609/statuses/235155164821061632">@</a>I have 1 <a href="http://twitter.com/search?q=%23solr">#solr</a> / <a href="http://twitter.com/search?q=%23Magento">#Magento</a> implementation just not working correctly. You can get the results in the solr admin just not on Magento
           </div>
           
           <div class="section-content">
-             <a href="http://twitter.com/T3RevNeverEnd/statuses/227053999076036608">@</a>RT <a href="http://twitter.com/thetaph1">@thetaph1</a>: <a href="http://twitter.com/search?q=%23Apache">#Apache</a> <a href="http://twitter.com/search?q=%23Lucene">#Lucene</a> and <a href="http://twitter.com/search?q=%23Solr">#Solr</a> 3.6.1 released! Downloads and release notes as usual on: <a href="http://t.co/ys0BAtdb">http://t.co/ys0BAtdb</a>
+             <a href="http://twitter.com/introfini/statuses/235145835158052866">@</a>Finalmente!!! Consegui resolver um problema que andava há quase 1 semana  a tentar resolver no <a href="http://twitter.com/search?q=%23Solr">#Solr</a> e <a href="http://twitter.com/search?q=%23UIMA">#UIMA</a> :-D <a href="http://twitter.com/search?q=%23textmining">#textmining</a>
           </div>
           
         </div>

Modified: websites/staging/lucene/trunk/content/solr/mirrors-solr-3x-redir.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/mirrors-solr-3x-redir.html (original)
+++ websites/staging/lucene/trunk/content/solr/mirrors-solr-3x-redir.html Tue Aug 14 03:30:32 2012
@@ -416,8 +416,8 @@ numeric fields or query relevancy scores
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/mirrors-solr-latest-redir.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/mirrors-solr-latest-redir.html (original)
+++ websites/staging/lucene/trunk/content/solr/mirrors-solr-latest-redir.html Tue Aug 14 03:30:32 2012
@@ -19,7 +19,7 @@
   -->
 
   
-    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/solr/4.0.0-ALPHA">
+    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/solr/4.0.0-BETA">
     <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
     <link href="../css/global.css" rel="stylesheet" type="text/css">
     <link href="../css/solr.css" rel="stylesheet" type="text/css">
@@ -416,8 +416,8 @@ numeric fields or query relevancy scores
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/mirrors-solr-redir.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/mirrors-solr-redir.html (original)
+++ websites/staging/lucene/trunk/content/solr/mirrors-solr-redir.html Tue Aug 14 03:30:32 2012
@@ -415,8 +415,8 @@ numeric fields or query relevancy scores
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/quickstart.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/quickstart.html (original)
+++ websites/staging/lucene/trunk/content/solr/quickstart.html Tue Aug 14 03:30:32 2012
@@ -247,8 +247,8 @@
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/solrnews.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/solrnews.html (original)
+++ websites/staging/lucene/trunk/content/solr/solrnews.html Tue Aug 14 03:30:32 2012
@@ -371,8 +371,8 @@ is a critical bug (e.g. that would cause
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/tutorial.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/tutorial.html (original)
+++ websites/staging/lucene/trunk/content/solr/tutorial.html Tue Aug 14 03:30:32 2012
@@ -235,7 +235,7 @@ major branch can also be found online:</
 <p><a href="api-3_6_1/doc-files/tutorial.html">Solr 3.6.1 Tutorial</a></p>
 </li>
 <li>
-<p><a href="api-4_0_0-ALPHA/doc-files/tutorial.html">Solr 4.0-ALPHA Tutorial</a></p>
+<p><a href="api-4_0_0-BETA/doc-files/tutorial.html">Solr 4.0-BETA Tutorial</a></p>
 </li>
 </ul></div>
       
@@ -258,8 +258,8 @@ major branch can also be found online:</
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/solr/versioncontrol.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/versioncontrol.html (original)
+++ websites/staging/lucene/trunk/content/solr/versioncontrol.html Tue Aug 14 03:30:32 2012
@@ -266,8 +266,8 @@
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
-      <div class="download-desc">Apache Solr 4.0-ALPHA</div>
+      <div class="flap bottom">of Apache Solr 4.0-BETA</div>
+      <div class="download-desc">Apache Solr 4.0-BETA</div>
     </div>
   </div>  
   <span class="sidenav"><h1 id="resources">Resources</h1>

Modified: websites/staging/lucene/trunk/content/whoweare.html
==============================================================================
--- websites/staging/lucene/trunk/content/whoweare.html (original)
+++ websites/staging/lucene/trunk/content/whoweare.html Tue Aug 14 03:30:32 2012
@@ -310,15 +310,15 @@
   <div class="button-green">
     <a href="core/mirrors-core-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Lucene 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Lucene 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Lucene 4.0-ALPHA</div>
+  <div class="download-desc">Apache Lucene 4.0-BETA</div>
   <div class="button-orange">
     <a href="solr/mirrors-solr-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Solr 4.0-ALPHA</div>
+    <div class="flap bottom">of Apache Solr 4.0-BETA</div>
   </div>
-  <div class="download-desc">Apache Solr 4.0-ALPHA</div></p>
+  <div class="download-desc">Apache Solr 4.0-BETA</div></p>
 <h1 id="projects">Projects</h1>
 <ul>
 <li><a href="./core/">Lucene Core (Java)</a></li>