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

svn commit: r1372717 - in /lucene/cms/trunk: content/ content/core/ content/solr/ templates/

Author: rmuir
Date: Tue Aug 14 03:29:26 2012
New Revision: 1372717

URL: http://svn.apache.org/viewvc?rev=1372717&view=rev
Log:
update links to beta and add core news

Modified:
    lucene/cms/trunk/content/.htaccess
    lucene/cms/trunk/content/core/corenews.mdtext
    lucene/cms/trunk/content/core/documentation.mdtext
    lucene/cms/trunk/content/core/quickstart.mdtext
    lucene/cms/trunk/content/solr/documentation.mdtext
    lucene/cms/trunk/content/solr/tutorial.mdtext
    lucene/cms/trunk/templates/core-sidebar.html
    lucene/cms/trunk/templates/corenav.mdtext
    lucene/cms/trunk/templates/mirrors-core-latest-redir.html
    lucene/cms/trunk/templates/mirrors-solr-latest-redir.html
    lucene/cms/trunk/templates/sidenav.mdtext
    lucene/cms/trunk/templates/solr-sidebar.html

Modified: lucene/cms/trunk/content/.htaccess
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/.htaccess?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/content/.htaccess (original)
+++ lucene/cms/trunk/content/.htaccess Tue Aug 14 03:29:26 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: lucene/cms/trunk/content/core/corenews.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/corenews.mdtext?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/corenews.mdtext (original)
+++ lucene/cms/trunk/content/core/corenews.mdtext Tue Aug 14 03:29:26 2012
@@ -1,5 +1,62 @@
 # Lucene Core News
 
+## 13 August 2012 - Lucene Core 4.0-BETA
+
+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.
+
+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>
+
+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.
+
+Highlights of changes since 4.0-alpha:
+
+- <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.
+
+- 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.
+
+- 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>.
+
+- 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.
+
+- 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.
+
+- Improved highlighting for multi-valued fields.
+
+- Various other API changes, optimizations and bug fixes.
+
+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.
+
+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.
+
+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>)
+
 ## 22 July 2012 - Apache Lucene 3.6.1
 
 The Lucene PMC is pleased to announce the release of Apache Lucene 3.6.1.

Modified: lucene/cms/trunk/content/core/documentation.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/documentation.mdtext?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/documentation.mdtext (original)
+++ lucene/cms/trunk/content/core/documentation.mdtext Tue Aug 14 03:29:26 2012
@@ -2,6 +2,6 @@
 
 ## Java Docs
 
-- [4.0-ALPHA](./4_0_0-ALPHA/index.html)
+- [4.0-BETA](./4_0_0-BETA/index.html)
 - [3.6.1](./3_6_1/index.html)
 

Modified: lucene/cms/trunk/content/core/quickstart.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/quickstart.mdtext?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/quickstart.mdtext (original)
+++ lucene/cms/trunk/content/core/quickstart.mdtext Tue Aug 14 03:29:26 2012
@@ -3,4 +3,4 @@ in the documentation for that release.
 
 The most recent version can also be found online:
 
-- <a href="4_0_0-ALPHA/demo/overview-summary.html#overview_description">Lucene 4.0-ALPHA Demo</a>
+- <a href="4_0_0-BETA/demo/overview-summary.html#overview_description">Lucene 4.0-BETA Demo</a>

Modified: lucene/cms/trunk/content/solr/documentation.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/solr/documentation.mdtext?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/content/solr/documentation.mdtext (original)
+++ lucene/cms/trunk/content/solr/documentation.mdtext Tue Aug 14 03:29:26 2012
@@ -24,7 +24,7 @@ New users are encouraged to start by loo
 Java API documentation is available online for the following releases:
 
 - [3.6.1](./api-3_6_1/)
-- [4.0-ALPHA](./api-4_0_0-ALPHA/)
+- [4.0-BETA](./api-4_0_0-BETA/)
 
 ## Additional Documentation
 

Modified: lucene/cms/trunk/content/solr/tutorial.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/solr/tutorial.mdtext?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/content/solr/tutorial.mdtext (original)
+++ lucene/cms/trunk/content/solr/tutorial.mdtext Tue Aug 14 03:29:26 2012
@@ -6,4 +6,4 @@ major branch can also be found online:
 
 - <a href="api-3_6_1/doc-files/tutorial.html">Solr 3.6.1 Tutorial</a>
 
-- <a href="api-4_0_0-ALPHA/doc-files/tutorial.html">Solr 4.0-ALPHA Tutorial</a>
+- <a href="api-4_0_0-BETA/doc-files/tutorial.html">Solr 4.0-BETA Tutorial</a>

Modified: lucene/cms/trunk/templates/core-sidebar.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/core-sidebar.html?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/templates/core-sidebar.html (original)
+++ lucene/cms/trunk/templates/core-sidebar.html Tue Aug 14 03:29:26 2012
@@ -12,9 +12,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>
   {% filter markdown %}{% include "corenav.mdtext" %}{% endfilter %}
   <div class="status">

Modified: lucene/cms/trunk/templates/corenav.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/corenav.mdtext?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/templates/corenav.mdtext (original)
+++ lucene/cms/trunk/templates/corenav.mdtext Tue Aug 14 03:29:26 2012
@@ -7,7 +7,7 @@
 
 # Release Docs
 
-- [4.0-ALPHA](./4_0_0-ALPHA/index.html)
+- [4.0-BETA](./4_0_0-BETA/index.html)
 - [3.6.1](./3_6_1/index.html)
 
 # About

Modified: lucene/cms/trunk/templates/mirrors-core-latest-redir.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/mirrors-core-latest-redir.html?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/templates/mirrors-core-latest-redir.html (original)
+++ lucene/cms/trunk/templates/mirrors-core-latest-redir.html Tue Aug 14 03:29:26 2012
@@ -4,7 +4,7 @@
 #}
 {% extends "head.html" %}
 {% block css %}
-    <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">

Modified: lucene/cms/trunk/templates/mirrors-solr-latest-redir.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/mirrors-solr-latest-redir.html?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/templates/mirrors-solr-latest-redir.html (original)
+++ lucene/cms/trunk/templates/mirrors-solr-latest-redir.html Tue Aug 14 03:29:26 2012
@@ -5,7 +5,7 @@
 #}
 {% extends "head.html" %}
 {% block css %}
-    <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">

Modified: lucene/cms/trunk/templates/sidenav.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/sidenav.mdtext?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/templates/sidenav.mdtext (original)
+++ lucene/cms/trunk/templates/sidenav.mdtext Tue Aug 14 03:29:26 2012
@@ -14,15 +14,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>
+  <div class="download-desc">Apache Solr 4.0-BETA</div>
 # Projects
   - [Lucene Core (Java)](./core/)
   - [Solr](./solr/)

Modified: lucene/cms/trunk/templates/solr-sidebar.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/solr-sidebar.html?rev=1372717&r1=1372716&r2=1372717&view=diff
==============================================================================
--- lucene/cms/trunk/templates/solr-sidebar.html (original)
+++ lucene/cms/trunk/templates/solr-sidebar.html Tue Aug 14 03:29:26 2012
@@ -12,8 +12,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">{% filter markdown %}{% include "solrnav.mdtext" %}{% endfilter %}