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/06 23:16:46 UTC

svn commit: r793881 - /websites/staging/lucene/trunk/content/lucene/index.html

Author: buildbot
Date: Sat Aug  6 21:16:45 2011
New Revision: 793881

Log:
Staging update by buildbot

Modified:
    websites/staging/lucene/trunk/content/lucene/index.html

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 Sat Aug  6 21:16:45 2011
@@ -1,170 +1,173 @@
 <!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.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE- 2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
+      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.
+      The ASF licenses this file to You under the Apache License, Version 2.0
+      (the "License"); you may not use this file except in compliance with
+      the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE- 2.0
+
+      Unless required by applicable law or agreed to in writing, software
+      distributed under the License is distributed on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+      See the License for the specific language governing permissions and
+      limitations under the License.
+  -->
 
   <link href="/lucene/css/lucene.css" rel="stylesheet" type="text/css">
-  <title>Apache Lucene - Welcome to Apache Lucene</title>
+  <title>Apache Lucene - Welcome to Apache Lucene and Solr</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/> 
-  <meta name="Distribution" content="Global"/> 
-  <meta name="Robots" content="index,follow"/> 
+  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
+  <meta name="Distribution" content="Global"/>
+  <meta name="Robots" content="index,follow"/>
   <meta name="keywords"
         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="images/global.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> 
+        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="images/global.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>
 </head>
 
-<body>
-	<div id="search"> 
-	    <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";
-	      }
-	      }
-
-	      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;
-	        }
-	        provider = unescape(document.cookie.substring(cStart,cEnd));
-	        document.forms['searchform'].elements['searchProvider'].value = provider;
-	        }
-	        }
-	      </script> 
-	    </form> 
-	  </div>	
-	<div id="slides"> 
-	    <div class="slideshow" id="mantleSlides"> 
-	      <div id="slide1" style="display:none"> 
-	        <div class="callout"> 
-	          Ultra-fast Search Library and Server<br/> 
-	        </div> 
-	        <div class="description"> 
-	          Apache Lucene and Solr set the standard for search and indexing performance
-	        </div> 
-	        <div class="mantle"> 
-	          <img alt="Apache Lucene" src="images/mantle-lucene-solr.png"/>
-	        </div> 
-	      </div> 
-	      <div id="slide2" style="display:none"> 
-	        <div class="callout"> 
-	          Proven search capabilities<br/> 
-	        </div> 
-	        <div class="description"> 
-	          Our core algorithms along with the Solr search server power applications the world over, ranging
-	from mobile devices to sites like Twitter, Apple and Wikipedia.
-	        </div> 
-	        <div class="mantle"> 
-	          <img alt="Lucene Power" src="images/mantle-power.png"/> 
-	        </div> 
-	      </div> 
-	      <div id="slide3" style="display:none"> 
-	        <div class="callout"> 
-	          Large, Vibrant community
-	        </div> 
-	        <div class="description"> 
-	          The goal of Apache Lucene and Solr is to provide world class search capabilities
-	        </div> 
-	        <div class="mantle"> 
-	          <img alt="Apache Mahout community" src="images/mantle-community.png"/> 
-	        </div> 
-	      </div> 
-	      <div id="slide4" style="opacity:0.5"> 
-	        <div class="callout"> 
-	          Apache 2.0 licensed
-	        </div> 
-	        <div class="description"> 
-	          Apache Lucene and Solr are distributed under a commercially friendly Apache Software license
-	        </div> 
-	        <div class="mantle"> 
-	          <img alt="Apache Software Foundation" src="images/mantle-asf.png"/> 
-	        </div> 
-	      </div> 
-	    </div> 
-	    <div class="controls"> 
-	      <a class="next" id="next" title="Next" href="http://lucene.apache.org/#">Next</a> 
-	      <a class="previous" id="previous" title="Previous" href="http://lucene.apache.org/#">Previous</a> 
-	      <a class="start" id="start" title="Start" href="http://lucene.apache.org/#" style="display: none; ">Start</a> 
-	      <a class="stop" id="stop" title="Stop" href="http://lucene.apache.org/#">Stop</a> 
-	    </div> 
-	  </div> 
-
-	  <script type="text/javascript"> 
-	    function StartSlides() {
-	    new Slides('mantleSlides');
-	    }
-	    document.observe ('dom:loaded', StartSlides);
-	  </script> 
-	</div>
+<body id="home">
+<div id="wrap">
+  <div id="header">
+    <div id="search">
+      <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";
+            }
+          }
+
+          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;
+              }
+              provider = unescape(document.cookie.substring(cStart, cEnd));
+              document.forms['searchform'].elements['searchProvider'].value = provider;
+            }
+          }
+        </script>
+      </form>
+    </div>
+    <div id="slides">
+      <div class="slideshow" id="mantleSlides">
+        <div id="slide1" style="display:none">
+          <div class="callout">
+            Ultra-fast Search Library and Server<br/>
+          </div>
+          <div class="description">
+            Apache Lucene and Solr set the standard for search and indexing performance
+          </div>
+          <div class="mantle">
+            <img alt="Apache Lucene" src="images/mantle-lucene-solr.png"/>
+          </div>
+        </div>
+        <div id="slide2" style="display:none">
+          <div class="callout">
+            Proven search capabilities<br/>
+          </div>
+          <div class="description">
+            Our core algorithms along with the Solr search server power applications the world over, ranging
+            from mobile devices to sites like Twitter, Apple and Wikipedia.
+          </div>
+          <div class="mantle">
+            <img alt="Lucene Power" src="images/mantle-power.png"/>
+          </div>
+        </div>
+        <div id="slide3" style="display:none">
+          <div class="callout">
+            Large, Vibrant community
+          </div>
+          <div class="description">
+            The goal of Apache Lucene and Solr is to provide world class search capabilities
+          </div>
+          <div class="mantle">
+            <img alt="Apache Mahout community" src="images/mantle-community.png"/>
+          </div>
+        </div>
+        <div id="slide4" style="opacity:0.5">
+          <div class="callout">
+            Apache 2.0 licensed
+          </div>
+          <div class="description">
+            Apache Lucene and Solr are distributed under a commercially friendly Apache Software license
+          </div>
+          <div class="mantle">
+            <img alt="Apache Software Foundation" src="images/mantle-asf.png"/>
+          </div>
+        </div>
+      </div>
+      <div class="controls">
+        <a class="next" id="next" title="Next" href="http://lucene.apache.org/#">Next</a>
+        <a class="previous" id="previous" title="Previous" href="http://lucene.apache.org/#">Previous</a>
+        <a class="start" id="start" title="Start" href="http://lucene.apache.org/#" style="display: none; ">Start</a>
+        <a class="stop" id="stop" title="Stop" href="http://lucene.apache.org/#">Stop</a>
+      </div>
+    </div>
+
+    <script type="text/javascript">
+      function StartSlides() {
+        new Slides('mantleSlides');
+      }
+      document.observe('dom:loaded', StartSlides);
+    </script>
+  </div>
   <div id="content-wrap" class="clearfix">
-  <div id="main">
-    <h1 class="title">Welcome to Apache Lucene</h1>
-    <p>Welcome to Apache Lucene, the world's greatest search engine</p>
+    <div id="main">
+      <h1 class="title">Welcome to Apache Lucene and Solr</h1>
+      <p>Welcome to Apache Lucene and Solr, the world's greatest search engine</p>
 <h1 id="mailing_lists">Mailing lists</h1>
 <p>do something</p>
 <p>Mailing list archives are available at <a href="http://mail-archives.apache.org/mod_mbox/">mail-archives.apache.org</a>.</p>
@@ -180,10 +183,10 @@
 <li>http://www.apache.org</li>
 </ul>
 <p>Hi</p>
-  </div>
+    </div>
 
-  <div id="sidebar">
-    <h1 id="about">About</h1>
+    <div id="sidebar">
+      <h1 id="about">About</h1>
 <h1 id="user_resources">User Resources</h1>
 <h1 id="dev_resources">Dev Resources</h1>
 <h1 id="asf_links">ASF links</h1>
@@ -204,18 +207,18 @@
 <li><a href="http://incubator.apache.org/opennlp">Apache OpenNLP</a></li>
 <li><a href="http://zookeeper.apache.org">Apache Zookeeper</a></li>
 </ul>
-  </div>
-  </div>
-  <div id="footer">
-    <div class="copyright">
-      <p>
-        Copyright &copy; 2011 The Apache Software Foundation, Licensed under 
-        the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.
-        <br />
-        Apache and the Apache feather logo are trademarks of The Apache Software Foundation.
-      </p>
     </div>
   </div>
-  
+</div>
+<div id="footer">
+  <div class="copyright">
+    <p>
+      Copyright &copy; 2011 The Apache Software Foundation, Licensed under
+      the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.
+      <br/>
+      Apache and the Apache feather logo are trademarks of The Apache Software Foundation.
+    </p>
+  </div>
+</div>
 </body>
 </html>