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 2011/08/07 05:11:47 UTC

svn commit: r793906 [1/2] - in /websites/staging/lucene/trunk/content/lucene: core/documentation.html core/downloads.html core/index.html core/mailing-lists.html core/quickstart.html index.html scripts/jquery.js

Author: buildbot
Date: Sun Aug  7 03:11:46 2011
New Revision: 793906

Log:
Staging update by buildbot

Added:
    websites/staging/lucene/trunk/content/lucene/scripts/jquery.js
Modified:
    websites/staging/lucene/trunk/content/lucene/core/documentation.html
    websites/staging/lucene/trunk/content/lucene/core/downloads.html
    websites/staging/lucene/trunk/content/lucene/core/index.html
    websites/staging/lucene/trunk/content/lucene/core/mailing-lists.html
    websites/staging/lucene/trunk/content/lucene/core/quickstart.html
    websites/staging/lucene/trunk/content/lucene/index.html

Modified: websites/staging/lucene/trunk/content/lucene/core/documentation.html
==============================================================================
--- websites/staging/lucene/trunk/content/lucene/core/documentation.html (original)
+++ websites/staging/lucene/trunk/content/lucene/core/documentation.html Sun Aug  7 03:11:46 2011
@@ -1,8 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
+
+
 <head>
   <!--
-  Core
+
 
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
@@ -20,7 +22,7 @@
       limitations under the License.
   -->
 
-
+  <link href="../css/core.css" rel="stylesheet" type="text/css">
   <title>Apache Lucene - </title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
@@ -30,98 +32,105 @@
         content="apache, apache lucene, apache solr, solr, lucene
         search, information retrieval, spell checking, faceting, inverted index, open source"/>
   <link rel="shortcut icon" type="image/x-icon" href="../images/favicon.ico"/>
-  <link rel="stylesheet" href="../css/core.css" type="text/css"/>
   <script type="text/javascript" src="../scripts/prototype.js"></script>
   <script type="text/javascript" src="../scripts/effects.js"></script>
   <script type="text/javascript" src="../scripts/search.js"></script>
   <script type="text/javascript" src="../scripts/slides.js"></script>
+  <script type="text/javascript" src="../scripts/jquery.js"></script>
 </head>
 
 <body id="home">
 <div id="wrap">
   <div id="header">
     <div id="logo">
-      <a href="http://lucene.apache.org/core"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+      
+  <a href="http://lucene.apache.org/"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+
     </div>
     <div id="nav">
-    <ul>
-      <li><a href="index.html">Core</a></li>
-      <li><a href="downloads.html">Download</a></li>
-      <li><a href="documentation.html">Documentation</a></li>
-      <li><a href="quickstart.html">Tutorials</a></li>
-      <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
-      <li><a class="last" href="mailing-lists.html">Discussion</a></li>
-    </ul>
-  </div>
+      
+<ul>
+  <li><a href="index.html">Core</a></li>
+  <li><a href="downloads.html">Download</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
+  <li><a href="quickstart.html">Tutorials</a></li>
+  <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
+  <li><a class="last" href="mailing-lists.html">Discussion</a></li>
+</ul>
+
+    </div>
     <div id="search">
-      <script type="text/javascript">
-        function getBlank(input, stdValue) {
-          if (input.value == stdValue) {
-            input.value = '';
-          }
-          return true;
+  <script type="text/javascript">
+    function getBlank(input, stdValue) {
+      if (input.value == stdValue) {
+        input.value = '';
+      }
+      return true;
+    }
+
+    function selectProvider(form) {
+      provider = form.elements['searchProvider'].value;
+      if (provider == "any") {
+        if (Math.random() > 0.5) {
+          provider = "lucid";
+        } else {
+          provider = "sl";
         }
+      }
 
-        function selectProvider(form) {
-          provider = form.elements['searchProvider'].value;
-          if (provider == "any") {
-            if (Math.random() > 0.5) {
-              provider = "lucid";
-            } else {
-              provider = "sl";
-            }
+      if (provider == "lucid") {
+        form.action = "http://search.lucidimagination.com/p:lucene";
+      } else if (provider == "sl") {
+        form.action = "http://search-lucene.com/lucene";
+      }
+
+      days = 90; // cookie will be valid for 90 days
+      date = new Date();
+      date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+      expires = "; expires=" + date.toGMTString();
+      document.cookie = "searchProvider=" + provider + expires + "; path=/";
+      return true;
+    }
+  </script>
+  <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
+        action="http://search-lucene.com/lucene"
+        name="searchform">
+    <fieldset>
+      <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
+             onfocus="getBlank(this, 'Search with Apache Solr...')">
+      <span style="color:white">@</span>
+      <select name="searchProvider" id="searchProvider">
+        <option value="any">select provider</option>
+        <option value="lucid">Lucid Find</option>
+        <option value="sl">Search-Lucene</option>
+      </select>
+    </fieldset>
+    <script type="text/javascript">
+      if (document.cookie.length > 0) {
+        cStart = document.cookie.indexOf("searchProvider=");
+        if (cStart != -1) {
+          cStart = cStart + "searchProvider=".length;
+          cEnd = document.cookie.indexOf(";", cStart);
+          if (cEnd == -1) {
+            cEnd = document.cookie.length;
           }
-
-          if (provider == "lucid") {
-            form.action = "http://search.lucidimagination.com/p:lucene";
-          } else if (provider == "sl") {
-            form.action = "http://search-lucene.com/lucene";
-          }
-
-          days = 90; // cookie will be valid for 90 days
-          date = new Date();
-          date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
-          expires = "; expires=" + date.toGMTString();
-          document.cookie = "searchProvider=" + provider + expires + "; path=/";
-          return true;
+          provider = unescape(document.cookie.substring(cStart, cEnd));
+          document.forms['searchform'].elements['searchProvider'].value = provider;
         }
-      </script>
-      <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
-            action="http://search-lucene.com/lucene"
-            name="searchform">
-        <fieldset>
-          <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
-                 onfocus="getBlank(this, 'Search with Apache Solr...')">
-          <span style="color:white">@</span>
-          <select name="searchProvider" id="searchProvider">
-            <option value="any">select provider</option>
-            <option value="lucid">Lucid Find</option>
-            <option value="sl">Search-Lucene</option>
-          </select>
-        </fieldset>
-        <script type="text/javascript">
-          if (document.cookie.length > 0) {
-            cStart = document.cookie.indexOf("searchProvider=");
-            if (cStart != -1) {
-              cStart = cStart + "searchProvider=".length;
-              cEnd = document.cookie.indexOf(";", cStart);
-              if (cEnd == -1) {
-                cEnd = document.cookie.length;
-              }
-              provider = unescape(document.cookie.substring(cStart, cEnd));
-              document.forms['searchform'].elements['searchProvider'].value = provider;
-            }
-          }
-        </script>
-      </form>
-    </div>
+      }
+    </script>
+  </form>
+</div>
+    
+
   </div>
   <div id="content-wrap" class="clearfix">
     <div id="main">
       <h1 class="title"></h1>
+
       <div></div>
     </div>
-
+    
     <div id="sidebar">
       <h1 id="user_resources">User Resources</h1>
 <ul>
@@ -155,6 +164,7 @@
 <li><a href="http://zookeeper.apache.org">Apache Zookeeper</a></li>
 </ul>
     </div>
+
   </div>
 </div>
 <div id="footer">

Modified: websites/staging/lucene/trunk/content/lucene/core/downloads.html
==============================================================================
--- websites/staging/lucene/trunk/content/lucene/core/downloads.html (original)
+++ websites/staging/lucene/trunk/content/lucene/core/downloads.html Sun Aug  7 03:11:46 2011
@@ -1,8 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
+
+
 <head>
   <!--
-  Core
+
 
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
@@ -20,7 +22,7 @@
       limitations under the License.
   -->
 
-
+  <link href="../css/core.css" rel="stylesheet" type="text/css">
   <title>Apache Lucene - </title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
@@ -30,95 +32,102 @@
         content="apache, apache lucene, apache solr, solr, lucene
         search, information retrieval, spell checking, faceting, inverted index, open source"/>
   <link rel="shortcut icon" type="image/x-icon" href="../images/favicon.ico"/>
-  <link rel="stylesheet" href="../css/core.css" type="text/css"/>
   <script type="text/javascript" src="../scripts/prototype.js"></script>
   <script type="text/javascript" src="../scripts/effects.js"></script>
   <script type="text/javascript" src="../scripts/search.js"></script>
   <script type="text/javascript" src="../scripts/slides.js"></script>
+  <script type="text/javascript" src="../scripts/jquery.js"></script>
 </head>
 
 <body id="home">
 <div id="wrap">
   <div id="header">
     <div id="logo">
-      <a href="http://lucene.apache.org/core"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+      
+  <a href="http://lucene.apache.org/"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+
     </div>
     <div id="nav">
-    <ul>
-      <li><a href="index.html">Core</a></li>
-      <li><a href="downloads.html">Download</a></li>
-      <li><a href="documentation.html">Documentation</a></li>
-      <li><a href="quickstart.html">Tutorials</a></li>
-      <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
-      <li><a class="last" href="mailing-lists.html">Discussion</a></li>
-    </ul>
-  </div>
+      
+<ul>
+  <li><a href="index.html">Core</a></li>
+  <li><a href="downloads.html">Download</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
+  <li><a href="quickstart.html">Tutorials</a></li>
+  <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
+  <li><a class="last" href="mailing-lists.html">Discussion</a></li>
+</ul>
+
+    </div>
     <div id="search">
-      <script type="text/javascript">
-        function getBlank(input, stdValue) {
-          if (input.value == stdValue) {
-            input.value = '';
-          }
-          return true;
+  <script type="text/javascript">
+    function getBlank(input, stdValue) {
+      if (input.value == stdValue) {
+        input.value = '';
+      }
+      return true;
+    }
+
+    function selectProvider(form) {
+      provider = form.elements['searchProvider'].value;
+      if (provider == "any") {
+        if (Math.random() > 0.5) {
+          provider = "lucid";
+        } else {
+          provider = "sl";
         }
+      }
 
-        function selectProvider(form) {
-          provider = form.elements['searchProvider'].value;
-          if (provider == "any") {
-            if (Math.random() > 0.5) {
-              provider = "lucid";
-            } else {
-              provider = "sl";
-            }
+      if (provider == "lucid") {
+        form.action = "http://search.lucidimagination.com/p:lucene";
+      } else if (provider == "sl") {
+        form.action = "http://search-lucene.com/lucene";
+      }
+
+      days = 90; // cookie will be valid for 90 days
+      date = new Date();
+      date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+      expires = "; expires=" + date.toGMTString();
+      document.cookie = "searchProvider=" + provider + expires + "; path=/";
+      return true;
+    }
+  </script>
+  <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
+        action="http://search-lucene.com/lucene"
+        name="searchform">
+    <fieldset>
+      <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
+             onfocus="getBlank(this, 'Search with Apache Solr...')">
+      <span style="color:white">@</span>
+      <select name="searchProvider" id="searchProvider">
+        <option value="any">select provider</option>
+        <option value="lucid">Lucid Find</option>
+        <option value="sl">Search-Lucene</option>
+      </select>
+    </fieldset>
+    <script type="text/javascript">
+      if (document.cookie.length > 0) {
+        cStart = document.cookie.indexOf("searchProvider=");
+        if (cStart != -1) {
+          cStart = cStart + "searchProvider=".length;
+          cEnd = document.cookie.indexOf(";", cStart);
+          if (cEnd == -1) {
+            cEnd = document.cookie.length;
           }
-
-          if (provider == "lucid") {
-            form.action = "http://search.lucidimagination.com/p:lucene";
-          } else if (provider == "sl") {
-            form.action = "http://search-lucene.com/lucene";
-          }
-
-          days = 90; // cookie will be valid for 90 days
-          date = new Date();
-          date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
-          expires = "; expires=" + date.toGMTString();
-          document.cookie = "searchProvider=" + provider + expires + "; path=/";
-          return true;
+          provider = unescape(document.cookie.substring(cStart, cEnd));
+          document.forms['searchform'].elements['searchProvider'].value = provider;
         }
-      </script>
-      <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
-            action="http://search-lucene.com/lucene"
-            name="searchform">
-        <fieldset>
-          <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
-                 onfocus="getBlank(this, 'Search with Apache Solr...')">
-          <span style="color:white">@</span>
-          <select name="searchProvider" id="searchProvider">
-            <option value="any">select provider</option>
-            <option value="lucid">Lucid Find</option>
-            <option value="sl">Search-Lucene</option>
-          </select>
-        </fieldset>
-        <script type="text/javascript">
-          if (document.cookie.length > 0) {
-            cStart = document.cookie.indexOf("searchProvider=");
-            if (cStart != -1) {
-              cStart = cStart + "searchProvider=".length;
-              cEnd = document.cookie.indexOf(";", cStart);
-              if (cEnd == -1) {
-                cEnd = document.cookie.length;
-              }
-              provider = unescape(document.cookie.substring(cStart, cEnd));
-              document.forms['searchform'].elements['searchProvider'].value = provider;
-            }
-          }
-        </script>
-      </form>
-    </div>
+      }
+    </script>
+  </form>
+</div>
+    
+
   </div>
   <div id="content-wrap" class="clearfix">
     <div id="main">
       <h1 class="title"></h1>
+
       <div><h2 id="downloads">Downloads</h2>
 <p>Official releases are usually created when the <a href="whoweare.html">developers</a> feel there are
             sufficient changes, improvements and bug fixes to warrant a release.
@@ -133,7 +142,7 @@
             <tt>lucene-VERSION-src.zip</tt> or <tt>.tar.gz</tt> contains the full source
             code for that version.</p></div>
     </div>
-
+    
     <div id="sidebar">
       <h1 id="user_resources">User Resources</h1>
 <ul>
@@ -167,6 +176,7 @@
 <li><a href="http://zookeeper.apache.org">Apache Zookeeper</a></li>
 </ul>
     </div>
+
   </div>
 </div>
 <div id="footer">

Modified: websites/staging/lucene/trunk/content/lucene/core/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/lucene/core/index.html (original)
+++ websites/staging/lucene/trunk/content/lucene/core/index.html Sun Aug  7 03:11:46 2011
@@ -1,8 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
+
+
 <head>
   <!--
-  Core
+
 
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
@@ -20,7 +22,7 @@
       limitations under the License.
   -->
 
-
+  <link href="../css/core.css" rel="stylesheet" type="text/css">
   <title>Apache Lucene - Apache Lucene Core</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
@@ -30,99 +32,106 @@
         content="apache, apache lucene, apache solr, solr, lucene
         search, information retrieval, spell checking, faceting, inverted index, open source"/>
   <link rel="shortcut icon" type="image/x-icon" href="../images/favicon.ico"/>
-  <link rel="stylesheet" href="../css/core.css" type="text/css"/>
   <script type="text/javascript" src="../scripts/prototype.js"></script>
   <script type="text/javascript" src="../scripts/effects.js"></script>
   <script type="text/javascript" src="../scripts/search.js"></script>
   <script type="text/javascript" src="../scripts/slides.js"></script>
+  <script type="text/javascript" src="../scripts/jquery.js"></script>
 </head>
 
 <body id="home">
 <div id="wrap">
   <div id="header">
     <div id="logo">
-      <a href="http://lucene.apache.org/core"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+      
+  <a href="http://lucene.apache.org/"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+
     </div>
     <div id="nav">
-    <ul>
-      <li><a href="index.html">Core</a></li>
-      <li><a href="downloads.html">Download</a></li>
-      <li><a href="documentation.html">Documentation</a></li>
-      <li><a href="quickstart.html">Tutorials</a></li>
-      <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
-      <li><a class="last" href="mailing-lists.html">Discussion</a></li>
-    </ul>
-  </div>
+      
+<ul>
+  <li><a href="index.html">Core</a></li>
+  <li><a href="downloads.html">Download</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
+  <li><a href="quickstart.html">Tutorials</a></li>
+  <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
+  <li><a class="last" href="mailing-lists.html">Discussion</a></li>
+</ul>
+
+    </div>
     <div id="search">
-      <script type="text/javascript">
-        function getBlank(input, stdValue) {
-          if (input.value == stdValue) {
-            input.value = '';
-          }
-          return true;
+  <script type="text/javascript">
+    function getBlank(input, stdValue) {
+      if (input.value == stdValue) {
+        input.value = '';
+      }
+      return true;
+    }
+
+    function selectProvider(form) {
+      provider = form.elements['searchProvider'].value;
+      if (provider == "any") {
+        if (Math.random() > 0.5) {
+          provider = "lucid";
+        } else {
+          provider = "sl";
         }
+      }
 
-        function selectProvider(form) {
-          provider = form.elements['searchProvider'].value;
-          if (provider == "any") {
-            if (Math.random() > 0.5) {
-              provider = "lucid";
-            } else {
-              provider = "sl";
-            }
+      if (provider == "lucid") {
+        form.action = "http://search.lucidimagination.com/p:lucene";
+      } else if (provider == "sl") {
+        form.action = "http://search-lucene.com/lucene";
+      }
+
+      days = 90; // cookie will be valid for 90 days
+      date = new Date();
+      date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+      expires = "; expires=" + date.toGMTString();
+      document.cookie = "searchProvider=" + provider + expires + "; path=/";
+      return true;
+    }
+  </script>
+  <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
+        action="http://search-lucene.com/lucene"
+        name="searchform">
+    <fieldset>
+      <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
+             onfocus="getBlank(this, 'Search with Apache Solr...')">
+      <span style="color:white">@</span>
+      <select name="searchProvider" id="searchProvider">
+        <option value="any">select provider</option>
+        <option value="lucid">Lucid Find</option>
+        <option value="sl">Search-Lucene</option>
+      </select>
+    </fieldset>
+    <script type="text/javascript">
+      if (document.cookie.length > 0) {
+        cStart = document.cookie.indexOf("searchProvider=");
+        if (cStart != -1) {
+          cStart = cStart + "searchProvider=".length;
+          cEnd = document.cookie.indexOf(";", cStart);
+          if (cEnd == -1) {
+            cEnd = document.cookie.length;
           }
-
-          if (provider == "lucid") {
-            form.action = "http://search.lucidimagination.com/p:lucene";
-          } else if (provider == "sl") {
-            form.action = "http://search-lucene.com/lucene";
-          }
-
-          days = 90; // cookie will be valid for 90 days
-          date = new Date();
-          date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
-          expires = "; expires=" + date.toGMTString();
-          document.cookie = "searchProvider=" + provider + expires + "; path=/";
-          return true;
+          provider = unescape(document.cookie.substring(cStart, cEnd));
+          document.forms['searchform'].elements['searchProvider'].value = provider;
         }
-      </script>
-      <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
-            action="http://search-lucene.com/lucene"
-            name="searchform">
-        <fieldset>
-          <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
-                 onfocus="getBlank(this, 'Search with Apache Solr...')">
-          <span style="color:white">@</span>
-          <select name="searchProvider" id="searchProvider">
-            <option value="any">select provider</option>
-            <option value="lucid">Lucid Find</option>
-            <option value="sl">Search-Lucene</option>
-          </select>
-        </fieldset>
-        <script type="text/javascript">
-          if (document.cookie.length > 0) {
-            cStart = document.cookie.indexOf("searchProvider=");
-            if (cStart != -1) {
-              cStart = cStart + "searchProvider=".length;
-              cEnd = document.cookie.indexOf(";", cStart);
-              if (cEnd == -1) {
-                cEnd = document.cookie.length;
-              }
-              provider = unescape(document.cookie.substring(cStart, cEnd));
-              document.forms['searchform'].elements['searchProvider'].value = provider;
-            }
-          }
-        </script>
-      </form>
-    </div>
+      }
+    </script>
+  </form>
+</div>
+    
+
   </div>
   <div id="content-wrap" class="clearfix">
     <div id="main">
       <h1 class="title">Apache Lucene Core</h1>
+
       <div><p>Apache Lucene(TM) 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>Apache Lucene is an open source project available for free download. Please use the links on the left to access Lucene.</p></div>
     </div>
-
+    
     <div id="sidebar">
       <h1 id="user_resources">User Resources</h1>
 <ul>
@@ -156,6 +165,7 @@
 <li><a href="http://zookeeper.apache.org">Apache Zookeeper</a></li>
 </ul>
     </div>
+
   </div>
 </div>
 <div id="footer">

Modified: websites/staging/lucene/trunk/content/lucene/core/mailing-lists.html
==============================================================================
--- websites/staging/lucene/trunk/content/lucene/core/mailing-lists.html (original)
+++ websites/staging/lucene/trunk/content/lucene/core/mailing-lists.html Sun Aug  7 03:11:46 2011
@@ -1,8 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
+
+
 <head>
   <!--
-  Core
+
 
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
@@ -20,7 +22,7 @@
       limitations under the License.
   -->
 
-
+  <link href="../css/core.css" rel="stylesheet" type="text/css">
   <title>Apache Lucene - </title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
@@ -30,95 +32,102 @@
         content="apache, apache lucene, apache solr, solr, lucene
         search, information retrieval, spell checking, faceting, inverted index, open source"/>
   <link rel="shortcut icon" type="image/x-icon" href="../images/favicon.ico"/>
-  <link rel="stylesheet" href="../css/core.css" type="text/css"/>
   <script type="text/javascript" src="../scripts/prototype.js"></script>
   <script type="text/javascript" src="../scripts/effects.js"></script>
   <script type="text/javascript" src="../scripts/search.js"></script>
   <script type="text/javascript" src="../scripts/slides.js"></script>
+  <script type="text/javascript" src="../scripts/jquery.js"></script>
 </head>
 
 <body id="home">
 <div id="wrap">
   <div id="header">
     <div id="logo">
-      <a href="http://lucene.apache.org/core"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+      
+  <a href="http://lucene.apache.org/"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+
     </div>
     <div id="nav">
-    <ul>
-      <li><a href="index.html">Core</a></li>
-      <li><a href="downloads.html">Download</a></li>
-      <li><a href="documentation.html">Documentation</a></li>
-      <li><a href="quickstart.html">Tutorials</a></li>
-      <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
-      <li><a class="last" href="mailing-lists.html">Discussion</a></li>
-    </ul>
-  </div>
+      
+<ul>
+  <li><a href="index.html">Core</a></li>
+  <li><a href="downloads.html">Download</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
+  <li><a href="quickstart.html">Tutorials</a></li>
+  <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
+  <li><a class="last" href="mailing-lists.html">Discussion</a></li>
+</ul>
+
+    </div>
     <div id="search">
-      <script type="text/javascript">
-        function getBlank(input, stdValue) {
-          if (input.value == stdValue) {
-            input.value = '';
-          }
-          return true;
+  <script type="text/javascript">
+    function getBlank(input, stdValue) {
+      if (input.value == stdValue) {
+        input.value = '';
+      }
+      return true;
+    }
+
+    function selectProvider(form) {
+      provider = form.elements['searchProvider'].value;
+      if (provider == "any") {
+        if (Math.random() > 0.5) {
+          provider = "lucid";
+        } else {
+          provider = "sl";
         }
+      }
 
-        function selectProvider(form) {
-          provider = form.elements['searchProvider'].value;
-          if (provider == "any") {
-            if (Math.random() > 0.5) {
-              provider = "lucid";
-            } else {
-              provider = "sl";
-            }
+      if (provider == "lucid") {
+        form.action = "http://search.lucidimagination.com/p:lucene";
+      } else if (provider == "sl") {
+        form.action = "http://search-lucene.com/lucene";
+      }
+
+      days = 90; // cookie will be valid for 90 days
+      date = new Date();
+      date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+      expires = "; expires=" + date.toGMTString();
+      document.cookie = "searchProvider=" + provider + expires + "; path=/";
+      return true;
+    }
+  </script>
+  <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
+        action="http://search-lucene.com/lucene"
+        name="searchform">
+    <fieldset>
+      <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
+             onfocus="getBlank(this, 'Search with Apache Solr...')">
+      <span style="color:white">@</span>
+      <select name="searchProvider" id="searchProvider">
+        <option value="any">select provider</option>
+        <option value="lucid">Lucid Find</option>
+        <option value="sl">Search-Lucene</option>
+      </select>
+    </fieldset>
+    <script type="text/javascript">
+      if (document.cookie.length > 0) {
+        cStart = document.cookie.indexOf("searchProvider=");
+        if (cStart != -1) {
+          cStart = cStart + "searchProvider=".length;
+          cEnd = document.cookie.indexOf(";", cStart);
+          if (cEnd == -1) {
+            cEnd = document.cookie.length;
           }
-
-          if (provider == "lucid") {
-            form.action = "http://search.lucidimagination.com/p:lucene";
-          } else if (provider == "sl") {
-            form.action = "http://search-lucene.com/lucene";
-          }
-
-          days = 90; // cookie will be valid for 90 days
-          date = new Date();
-          date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
-          expires = "; expires=" + date.toGMTString();
-          document.cookie = "searchProvider=" + provider + expires + "; path=/";
-          return true;
+          provider = unescape(document.cookie.substring(cStart, cEnd));
+          document.forms['searchform'].elements['searchProvider'].value = provider;
         }
-      </script>
-      <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
-            action="http://search-lucene.com/lucene"
-            name="searchform">
-        <fieldset>
-          <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
-                 onfocus="getBlank(this, 'Search with Apache Solr...')">
-          <span style="color:white">@</span>
-          <select name="searchProvider" id="searchProvider">
-            <option value="any">select provider</option>
-            <option value="lucid">Lucid Find</option>
-            <option value="sl">Search-Lucene</option>
-          </select>
-        </fieldset>
-        <script type="text/javascript">
-          if (document.cookie.length > 0) {
-            cStart = document.cookie.indexOf("searchProvider=");
-            if (cStart != -1) {
-              cStart = cStart + "searchProvider=".length;
-              cEnd = document.cookie.indexOf(";", cStart);
-              if (cEnd == -1) {
-                cEnd = document.cookie.length;
-              }
-              provider = unescape(document.cookie.substring(cStart, cEnd));
-              document.forms['searchform'].elements['searchProvider'].value = provider;
-            }
-          }
-        </script>
-      </form>
-    </div>
+      }
+    </script>
+  </form>
+</div>
+    
+
   </div>
   <div id="content-wrap" class="clearfix">
     <div id="main">
       <h1 class="title"></h1>
+
       <div><h2 id="core_user_list">Core User List</h2>
 <p>This list is for users of Java Lucene to ask questions, share knowledge,
 and discuss issues. <b>Do</b> send mail to this list with usage and configuration questions and problems.  Also, please
@@ -153,7 +162,7 @@ No endorsement is implied by the listing
 <p>Each Lucene project maintains its own mailing lists.  Please refer to the project you are interested in for details
     on subscribing to its mailing list.  For the Lucene TLP General mailing list, go <a href="http://lucene.apache.org/mail.html">here</a>.</p></div>
     </div>
-
+    
     <div id="sidebar">
       <h1 id="user_resources">User Resources</h1>
 <ul>
@@ -187,6 +196,7 @@ No endorsement is implied by the listing
 <li><a href="http://zookeeper.apache.org">Apache Zookeeper</a></li>
 </ul>
     </div>
+
   </div>
 </div>
 <div id="footer">

Modified: websites/staging/lucene/trunk/content/lucene/core/quickstart.html
==============================================================================
--- websites/staging/lucene/trunk/content/lucene/core/quickstart.html (original)
+++ websites/staging/lucene/trunk/content/lucene/core/quickstart.html Sun Aug  7 03:11:46 2011
@@ -1,8 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
+
+
 <head>
   <!--
-  Core
+
 
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
@@ -20,7 +22,7 @@
       limitations under the License.
   -->
 
-
+  <link href="../css/core.css" rel="stylesheet" type="text/css">
   <title>Apache Lucene - </title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
@@ -30,98 +32,105 @@
         content="apache, apache lucene, apache solr, solr, lucene
         search, information retrieval, spell checking, faceting, inverted index, open source"/>
   <link rel="shortcut icon" type="image/x-icon" href="../images/favicon.ico"/>
-  <link rel="stylesheet" href="../css/core.css" type="text/css"/>
   <script type="text/javascript" src="../scripts/prototype.js"></script>
   <script type="text/javascript" src="../scripts/effects.js"></script>
   <script type="text/javascript" src="../scripts/search.js"></script>
   <script type="text/javascript" src="../scripts/slides.js"></script>
+  <script type="text/javascript" src="../scripts/jquery.js"></script>
 </head>
 
 <body id="home">
 <div id="wrap">
   <div id="header">
     <div id="logo">
-      <a href="http://lucene.apache.org/core"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+      
+  <a href="http://lucene.apache.org/"><img border="0" src="../images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+
     </div>
     <div id="nav">
-    <ul>
-      <li><a href="index.html">Core</a></li>
-      <li><a href="downloads.html">Download</a></li>
-      <li><a href="documentation.html">Documentation</a></li>
-      <li><a href="quickstart.html">Tutorials</a></li>
-      <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
-      <li><a class="last" href="mailing-lists.html">Discussion</a></li>
-    </ul>
-  </div>
+      
+<ul>
+  <li><a href="index.html">Core</a></li>
+  <li><a href="downloads.html">Download</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
+  <li><a href="quickstart.html">Tutorials</a></li>
+  <li><a href="https://issues.apache.org/jira/browse/LUCENE">Bug Tracker</a></li>
+  <li><a class="last" href="mailing-lists.html">Discussion</a></li>
+</ul>
+
+    </div>
     <div id="search">
-      <script type="text/javascript">
-        function getBlank(input, stdValue) {
-          if (input.value == stdValue) {
-            input.value = '';
-          }
-          return true;
+  <script type="text/javascript">
+    function getBlank(input, stdValue) {
+      if (input.value == stdValue) {
+        input.value = '';
+      }
+      return true;
+    }
+
+    function selectProvider(form) {
+      provider = form.elements['searchProvider'].value;
+      if (provider == "any") {
+        if (Math.random() > 0.5) {
+          provider = "lucid";
+        } else {
+          provider = "sl";
         }
+      }
 
-        function selectProvider(form) {
-          provider = form.elements['searchProvider'].value;
-          if (provider == "any") {
-            if (Math.random() > 0.5) {
-              provider = "lucid";
-            } else {
-              provider = "sl";
-            }
+      if (provider == "lucid") {
+        form.action = "http://search.lucidimagination.com/p:lucene";
+      } else if (provider == "sl") {
+        form.action = "http://search-lucene.com/lucene";
+      }
+
+      days = 90; // cookie will be valid for 90 days
+      date = new Date();
+      date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+      expires = "; expires=" + date.toGMTString();
+      document.cookie = "searchProvider=" + provider + expires + "; path=/";
+      return true;
+    }
+  </script>
+  <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
+        action="http://search-lucene.com/lucene"
+        name="searchform">
+    <fieldset>
+      <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
+             onfocus="getBlank(this, 'Search with Apache Solr...')">
+      <span style="color:white">@</span>
+      <select name="searchProvider" id="searchProvider">
+        <option value="any">select provider</option>
+        <option value="lucid">Lucid Find</option>
+        <option value="sl">Search-Lucene</option>
+      </select>
+    </fieldset>
+    <script type="text/javascript">
+      if (document.cookie.length > 0) {
+        cStart = document.cookie.indexOf("searchProvider=");
+        if (cStart != -1) {
+          cStart = cStart + "searchProvider=".length;
+          cEnd = document.cookie.indexOf(";", cStart);
+          if (cEnd == -1) {
+            cEnd = document.cookie.length;
           }
-
-          if (provider == "lucid") {
-            form.action = "http://search.lucidimagination.com/p:lucene";
-          } else if (provider == "sl") {
-            form.action = "http://search-lucene.com/lucene";
-          }
-
-          days = 90; // cookie will be valid for 90 days
-          date = new Date();
-          date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
-          expires = "; expires=" + date.toGMTString();
-          document.cookie = "searchProvider=" + provider + expires + "; path=/";
-          return true;
+          provider = unescape(document.cookie.substring(cStart, cEnd));
+          document.forms['searchform'].elements['searchProvider'].value = provider;
         }
-      </script>
-      <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
-            action="http://search-lucene.com/lucene"
-            name="searchform">
-        <fieldset>
-          <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
-                 onfocus="getBlank(this, 'Search with Apache Solr...')">
-          <span style="color:white">@</span>
-          <select name="searchProvider" id="searchProvider">
-            <option value="any">select provider</option>
-            <option value="lucid">Lucid Find</option>
-            <option value="sl">Search-Lucene</option>
-          </select>
-        </fieldset>
-        <script type="text/javascript">
-          if (document.cookie.length > 0) {
-            cStart = document.cookie.indexOf("searchProvider=");
-            if (cStart != -1) {
-              cStart = cStart + "searchProvider=".length;
-              cEnd = document.cookie.indexOf(";", cStart);
-              if (cEnd == -1) {
-                cEnd = document.cookie.length;
-              }
-              provider = unescape(document.cookie.substring(cStart, cEnd));
-              document.forms['searchform'].elements['searchProvider'].value = provider;
-            }
-          }
-        </script>
-      </form>
-    </div>
+      }
+    </script>
+  </form>
+</div>
+    
+
   </div>
   <div id="content-wrap" class="clearfix">
     <div id="main">
       <h1 class="title"></h1>
+
       <div></div>
     </div>
-
+    
     <div id="sidebar">
       <h1 id="user_resources">User Resources</h1>
 <ul>
@@ -155,6 +164,7 @@
 <li><a href="http://zookeeper.apache.org">Apache Zookeeper</a></li>
 </ul>
     </div>
+
   </div>
 </div>
 <div id="footer">

Modified: websites/staging/lucene/trunk/content/lucene/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/lucene/index.html (original)
+++ websites/staging/lucene/trunk/content/lucene/index.html Sun Aug  7 03:11:46 2011
@@ -1,8 +1,11 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
+
+
 <head>
   <!--
 
+
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
       this work for additional information regarding copyright ownership.
@@ -33,84 +36,90 @@
   <script type="text/javascript" src="scripts/effects.js"></script>
   <script type="text/javascript" src="scripts/search.js"></script>
   <script type="text/javascript" src="scripts/slides.js"></script>
+  <script type="text/javascript" src="scripts/jquery.js"></script>
 </head>
 
 <body id="home">
 <div id="wrap">
   <div id="header">
     <div id="logo">
+      
       <a href="http://lucene.apache.org/"><img border="0" src="images/lucene_green_300.gif" alt="Lucene Logo"/></a>
+      
     </div>
     <div id="nav">
-    <ul>
-      <li><a href="./core/">Core (Java)</a></li>
-      <li><a href="./solr/">Solr</a></li>
-      <li><a href="./pylucene/">PyLucene</a></li>
-      <li><a href="Open Relevance">Open Relevance</a></li>
-    </ul>
-  </div>
+      
+      <ul>
+        <li><a href="./core/">Core (Java)</a></li>
+        <li><a href="./solr/">Solr</a></li>
+        <li><a href="./pylucene/">PyLucene</a></li>
+        <li><a href="Open Relevance">Open Relevance</a></li>
+      </ul>
+      
+    </div>
     <div id="search">
-      <script type="text/javascript">
-        function getBlank(input, stdValue) {
-          if (input.value == stdValue) {
-            input.value = '';
-          }
-          return true;
+  <script type="text/javascript">
+    function getBlank(input, stdValue) {
+      if (input.value == stdValue) {
+        input.value = '';
+      }
+      return true;
+    }
+
+    function selectProvider(form) {
+      provider = form.elements['searchProvider'].value;
+      if (provider == "any") {
+        if (Math.random() > 0.5) {
+          provider = "lucid";
+        } else {
+          provider = "sl";
         }
+      }
 
-        function selectProvider(form) {
-          provider = form.elements['searchProvider'].value;
-          if (provider == "any") {
-            if (Math.random() > 0.5) {
-              provider = "lucid";
-            } else {
-              provider = "sl";
-            }
-          }
+      if (provider == "lucid") {
+        form.action = "http://search.lucidimagination.com/p:lucene";
+      } else if (provider == "sl") {
+        form.action = "http://search-lucene.com/lucene";
+      }
 
-          if (provider == "lucid") {
-            form.action = "http://search.lucidimagination.com/p:lucene";
-          } else if (provider == "sl") {
-            form.action = "http://search-lucene.com/lucene";
+      days = 90; // cookie will be valid for 90 days
+      date = new Date();
+      date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+      expires = "; expires=" + date.toGMTString();
+      document.cookie = "searchProvider=" + provider + expires + "; path=/";
+      return true;
+    }
+  </script>
+  <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
+        action="http://search-lucene.com/lucene"
+        name="searchform">
+    <fieldset>
+      <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
+             onfocus="getBlank(this, 'Search with Apache Solr...')">
+      <span style="color:white">@</span>
+      <select name="searchProvider" id="searchProvider">
+        <option value="any">select provider</option>
+        <option value="lucid">Lucid Find</option>
+        <option value="sl">Search-Lucene</option>
+      </select>
+    </fieldset>
+    <script type="text/javascript">
+      if (document.cookie.length > 0) {
+        cStart = document.cookie.indexOf("searchProvider=");
+        if (cStart != -1) {
+          cStart = cStart + "searchProvider=".length;
+          cEnd = document.cookie.indexOf(";", cStart);
+          if (cEnd == -1) {
+            cEnd = document.cookie.length;
           }
-
-          days = 90; // cookie will be valid for 90 days
-          date = new Date();
-          date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
-          expires = "; expires=" + date.toGMTString();
-          document.cookie = "searchProvider=" + provider + expires + "; path=/";
-          return true;
+          provider = unescape(document.cookie.substring(cStart, cEnd));
+          document.forms['searchform'].elements['searchProvider'].value = provider;
         }
-      </script>
-      <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
-            action="http://search-lucene.com/lucene"
-            name="searchform">
-        <fieldset>
-          <input type="search" name="q" value="Search with Apache Solr..." class="class1 class2 hint" accesskey="q"
-                 onfocus="getBlank(this, 'Search with Apache Solr...')">
-          <span style="color:white">@</span>
-          <select name="searchProvider" id="searchProvider">
-            <option value="any">select provider</option>
-            <option value="lucid">Lucid Find</option>
-            <option value="sl">Search-Lucene</option>
-          </select>
-        </fieldset>
-        <script type="text/javascript">
-          if (document.cookie.length > 0) {
-            cStart = document.cookie.indexOf("searchProvider=");
-            if (cStart != -1) {
-              cStart = cStart + "searchProvider=".length;
-              cEnd = document.cookie.indexOf(";", cStart);
-              if (cEnd == -1) {
-                cEnd = document.cookie.length;
-              }
-              provider = unescape(document.cookie.substring(cStart, cEnd));
-              document.forms['searchform'].elements['searchProvider'].value = provider;
-            }
-          }
-        </script>
-      </form>
-    </div>
+      }
+    </script>
+  </form>
+</div>
+    
     <div id="slides">
       <div class="slideshow" id="mantleSlides">
         <div id="slide1" style="display:none">
@@ -173,10 +182,12 @@
       }
       document.observe('dom:loaded', StartSlides);
     </script>
+    
   </div>
   <div id="content-wrap" class="clearfix">
     <div id="main">
       <h1 class="title">Welcome to Apache Lucene</h1>
+
       <div><p>The Apache Lucene project develops open-source search software, including:</p>
 <ul>
 <li><em><a href="./core/">Lucene Core</a></em>, our flagship sub-project, provides Java-based indexing and search technology, as well as spellchecking, hit highlighting and advanced analysis/tokenization capabilities.</li>
@@ -187,7 +198,7 @@
 <h2 id="the_apache_software_foundation">The Apache Software Foundation</h2>
 <p>The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are defined by collaborative consensus based processes, an open, pragmatic software license and a desire to create high quality software that leads the way in its field. Apache Lucene, Apache Solr, Apache PyLucene, Apache Open Relevance Project and their respective logos are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</p></div>
     </div>
-
+    
     <div id="sidebar">
       <h1 id="user_resources">User Resources</h1>
 <ul>
@@ -220,7 +231,42 @@
 <li><a href="http://tika.apache.org">Apache Tika</a></li>
 <li><a href="http://zookeeper.apache.org">Apache Zookeeper</a></li>
 </ul>
+      <div>
+        
+
+        
+        <div class="section-content">
+          <a class="svn" href="http://svn.apache.org/viewvc?revision=1154647;view=revision">r1154647</a>
+          <a href="https://issues.apache.org/jira/browse/LUCENE-2748">LUCENE-2748</a>: hook in demo of email, svn, etc.  Still needs look and feel and work out the kinks (<a href="http://lucene.apache.org/">lucene</a>) &mdash;
+          <a href="http://people.apache.org/committer-index.html#gsingers">gsingers</a>
+        </div>
+        
+
+        
+        <div id="dev-mail">
+          <h2>Latest Dev</h2>
+          
+          <h4><a href="http://mail-archives.apache.org/mod_mbox/lucene-dev/201108.mbox/%3c1582155516.14224.1312670967072.JavaMail.tomcat@hel.zones.apache.org%3e">[jira] [Commented] (LUCENE-2748) Convert all Lucene web properties to use the ASF CMS</a></h4>
+          <hr>
+          
+          <h4><a href="http://mail-archives.apache.org/mod_mbox/lucene-dev/201108.mbox/%3c705562730.14196.1312669527083.JavaMail.tomcat@hel.zones.apache.org%3e">[jira] [Commented] (SOLR-2701) Expose IndexWriter.commit(Map&lt;String,String&gt; commitUserData) to solr</a></h4>
+          <hr>
+          
+          <h4><a href="http://mail-archives.apache.org/mod_mbox/lucene-dev/201108.mbox/%3c1121282665.14178.1312668927114.JavaMail.tomcat@hel.zones.apache.org%3e">[jira] [Commented] (LUCENE-2748) Convert all Lucene web properties to use the ASF CMS</a></h4>
+          <hr>
+          
+        </div>
+        <div id="core-user-mail">
+          <h2>Latest Core User</h2>
+          
+        </div>
+        <div id="solr-user-mail">
+          <h2>Latest Solr User</h2>
+          
+        </div>
+      </div>
     </div>
+    
   </div>
 </div>
 <div id="footer">