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 2017/04/27 16:50:34 UTC

svn commit: r1011236 - in /websites/staging/lucene/trunk/content: ./ solr/guide/ solr/guide/index.html

Author: buildbot
Date: Thu Apr 27 16:50:34 2017
New Revision: 1011236

Log:
Staging update by buildbot for lucene

Added:
    websites/staging/lucene/trunk/content/solr/guide/
    websites/staging/lucene/trunk/content/solr/guide/index.html
Modified:
    websites/staging/lucene/trunk/content/   (props changed)

Propchange: websites/staging/lucene/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Apr 27 16:50:34 2017
@@ -1 +1 @@
-1792921
+1792922

Added: websites/staging/lucene/trunk/content/solr/guide/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/guide/index.html (added)
+++ websites/staging/lucene/trunk/content/solr/guide/index.html Thu Apr 27 16:50:34 2017
@@ -0,0 +1,341 @@
+<!doctype html>
+<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.
+  -->
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <meta name="viewport" content="minimal-ui, initial-scale=1, maximum-scale=1, user-scalable=0">
+
+  <link href='http://fonts.googleapis.com/css?family=Raleway:400,300,600,500' rel='stylesheet' type='text/css'>
+
+  <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
+  <link rel="stylesheet" href="/solr/lib/foundation/styles/normalize.css" />
+  <link rel="stylesheet" href="/solr/lib/foundation/styles/foundation.min.css"/>
+  <link rel="stylesheet" href="/solr/lib/foundation/styles/foundation-icons.css"/>
+  <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/jquery.slick/1.3.7/slick.css"/>
+  <link rel="stylesheet" href="/solr/assets/styles/base.css" />
+  
+
+  <title>Apache Solr - Ref Guide</title>
+
+
+
+  <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="icon" href="/solr/assets/images/favicon.ico" type="image/x-icon"> 
+  <link rel="shortcut icon" href="/solr/assets/images/favicon.ico" type="image/x-icon"> 
+  
+
+  <script src="/solr/lib/jquery-2.1.1.min.js"></script>
+<script src="/solr/lib/foundation/scripts/modernizr.js"></script>
+<script src="/solr/lib/angularjs/scripts/angular.min.js"></script>
+<script src="/solr/lib/angularjs/scripts/angular-animate.min.js"></script>
+<script src="/solr/lib/foundation/scripts/foundation.min.js"></script>
+<script src="//cdn.jsdelivr.net/jquery.slick/1.3.7/slick.min.js"/></script>
+<script src="/solr/lib/jquery.smooth-scroll.min.js"></script>
+
+    <script src="/solr/assets/scripts/main.js"></script>
+    
+
+</head>
+
+
+
+  <body class="page" x-ng-app-root="/solr" x-ng-app="page" x-ng-controller="page.controllers.main">
+
+    
+<div class="contain-to-grid">
+<div class="header-section">
+	<nav class="top-bar" data-topbar role="navigation">
+	  <ul class="title-area">
+	    <li class="name">
+	      <a href="/solr/"><img class="logo" src="/solr/assets/images/logo.svg" /></a>
+	    </li>
+	    <li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
+	  </ul>
+
+	  <div class="top-bar-section">
+	    <ul class="navigation right">
+  <li>
+    <a href="/solr/news.html">News</a>
+  </li>
+  <li>
+    <a href="/solr/features.html">Features</a>
+  </li>
+  <li>
+    <a href="/solr/resources.html">Resources</a>
+  </li>
+  <li>
+    <a href="/solr/community.html">Community</a>
+  </li>
+  <li class="toggle">
+    <a ng-hide="toggled" ng-click="toggle();" href="#">Search</a>
+    <div id="search">
+  <script type="text/javascript">
+    function getBlank(input, stdValue) {
+      if (input.value == stdValue) {
+        input.value = '';
+      }
+      return true;
+    }
+
+    function selectProvider(form) {
+      lucidAction = "http://find.searchhub.org/p:lucene,solr";
+      searchLuceneAction = "http://search-lucene.com/solr";
+
+      provider = document.getElementById('searchProvider').value;
+      if (provider == "lucid" || provider == "sl") {
+        if (provider == "lucid") {
+          form.action = lucidAction;
+        } else if (provider == "sl") {
+          form.action = searchLuceneAction;
+        }
+
+        // Only store provider preference cookie if the user selected it
+        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=/";
+      } else {
+        if (Math.random() > 0.5) {
+          form.action = lucidAction;
+        } else {
+          form.action = searchLuceneAction;
+        }
+      }
+      return true;
+    }
+  </script>
+  <form id="quick-search" method="GET" onsubmit="return selectProvider(this)"
+        action="http://search-lucene.com/solr"
+        name="searchform">
+    <fieldset>
+      <div ng-show="toggled" class="search-box ng-hide">
+        <input type="search" name="q" placeholder="Search |" accesskey="q"
+               onfocus="getBlank(this, 'Search |');"/>
+        <a class="search-button" type="submit" 
+           onclick="form = document.getElementById('quick-search'); selectProvider(form); form.submit();"><img src="/solr/assets/images/magnifying-glass.png"/></a>
+        <select id="searchProvider" class="search-provider">
+          <option value="any"> - select provider - </option>
+          <option value="lucid">@ Lucid Find</option>
+          <option value="sl">@ Search-Lucene</option>
+        </select>
+      </div>
+    </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.getElementById('searchProvider').value = provider;
+        }
+      }
+    </script>
+  </form>
+</div>
+
+  </li>
+  <li>
+    <a class="btn" href="/solr/mirrors-solr-latest-redir.html">download</a>
+  </li>
+  <li >
+    <a class="lucene-btn" href="/index.html">Lucene<br />&#8679; TLP</a>
+  </li>
+</ul>
+
+	  </div>
+	</nav>
+</div>
+</div>
+
+<div class="header-fill"></div>
+
+  <div class="container">
+
+    <div class="row">
+      <div class="small-12 columns">
+        
+          <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="apache-solr-reference-guide">Apache Solr Reference Guide<a class="headerlink" href="#apache-solr-reference-guide" title="Permanent link">&para;</a></h1>
+<p>Placeholder text for Ref Guide links</p>
+<ul>
+<li><a href="test-10290">Test Ref Guide</a></li>
+</ul>
+        
+      </div>
+    </div>
+
+  </div>
+    
+    <footer>
+  <div class="row">
+    <div class="small-6 medium-3 columns">
+      <h4>Features</h4>
+      <ul>
+        <li><a href="/solr/features.html">Overview</a></li>
+        <li><a href="/solr/features.html#data-handling">Data Handling</a></li>
+        <li><a href="/solr/features.html#query">Querying</a></li>
+        <li><a href="/solr/features.html#facets">Faceting</a></li>
+        <li><a href="/solr/features.html#discovery">Discovery</a></li>
+        <li><a href="/solr/features.html#plugins">Plugins and Extensions</a></li>
+        <li><a href="/solr/features.html#stats">Statistics and Aggregations</a></li>
+        <li><a href="/solr/features.html#spatial">Spatial</a></li>
+        <li><a href="/solr/features.html#rich-content">Rich Content</a></li>
+        <li><a href="/solr/features.html#performance">Performance</a></li>
+        <li><a href="/solr/features.html#solrcloud">Scaling with SolrCloud</a></li>
+        <li><a href="/solr/features.html#admin-ui">User Interface</a></li>
+      </ul>
+    </div>
+    <div class="small-6 medium-3 columns">
+      <h4>Resources</h4>
+      <ul>
+        <li><a href="/solr/resources.html#tutorial">Tutorial</a></li>
+        <li><a href="/solr/resources.html#documentation">Docs</a></li>
+        <li><a href="/solr/resources.html#solr-books">Books</a></li>
+        <li><a href="/solr/resources.html#presentations">Presentations</a></li>
+        <li><a href="/solr/resources.html#videos">Videos</a></li>
+        <li><a href="/solr/logos-and-assets.html">Solr Logos and Assets</a></li>
+        <li><a href="/solr/downloads.html">Download Older Releases</a></li>
+      </ul>
+    </div>
+    <div class="small-6 medium-3 columns">
+      <h4>Get Started</h4>
+      <ul>
+        <li><a href="/solr/mirrors-solr-latest-redir.html">Download</a></li>
+        <li><a href="/solr/quickstart.html">Run Through the Tutorial</a></li>
+        <li><a href="/solr/resources.html">Level Up</a></li>
+      </ul>
+		<br/>
+      <h4>Community</h4>
+      <ul>
+		<li><a href="/solr/community.html#support">Support</a></li>		  
+		<li><a href="/solr/community.html#mailing-lists-irc">Mailing Lists</a></li>
+		<li><a href="/solr/community.html#issue-tracker">Issues (JIRA)</a></li>		  
+		<li><a href="/solr/community.html#how-to-contribute">Contribute</a></li>		  
+		<li><a href="/solr/community.html#version-control">Version control (GIT)</a></li>		  
+	  </ul>
+    </div>
+    <div class="small-6 medium-3 columns">
+      <h4>Related Projects</h4>
+      <ul>
+        <li><a href="http://hadoop.apache.org/">Apache Hadoop</a></li>
+        <li><a href="http://manifoldcf.apache.org/">Apache ManifoldCF</a></li>
+        <li><a href="http://mahout.apache.org/">Apache Mahout</a></li>
+        <li><a href="http://nutch.apache.org/">Apache Nutch</a></li>
+        <li><a href="http://opennlp.apache.org/">Apache OpenNLP</a></li>
+        <li><a href="http://spark.apache.org/">Apache Spark</a></li>
+        <li><a href="http://tika.apache.org/">Apache Tika</a></li>
+        <li><a href="http://zeppelin.apache.org/">Apache Zeppelin</a></li>
+		<li><a href="http://zookeeper.apache.org/">Apache Zookeeper</a></li>
+      </ul>
+    </div>
+  </div>
+  <div class="row copyright">
+    <div class="large-centered columns">
+      <p>Copyright © 2017 The Apache Software Foundation, Licensed under the Apache License, Version 2.0. Privacy Policy<br/>Apache and the Apache feather logo are trademarks of The Apache Software Foundation. Apache Lucene, Apache Solr and their respective logos are trademarks of the Apache Software Foundation. Please see the Apache Trademark Policy for more information.  All non-Apache logos are the trademarks of their respective owners.</p>
+    </div>
+  </div>
+</footer>
+
+<script>
+  $(document).foundation();
+</script>
+<script>
+$(document).ready(function(){
+    $('.slider').slick({
+      infinite: false,
+      speed: 300,
+      slidesToShow: 6,
+      slidesToScroll: 6,
+      responsive: [
+        {
+          breakpoint: 1024,
+          settings: {
+            slidesToShow: 4,
+            slidesToScroll: 4,
+            infinite: true
+          }
+        },
+        {
+          breakpoint: 600,
+          settings: {
+            slidesToShow: 3,
+            slidesToScroll: 3
+          }
+        },
+        {
+          breakpoint: 480,
+          settings: {
+            slidesToShow: 2,
+            slidesToScroll: 2
+          }
+        },
+        {
+          breakpoint: 320,
+          settings: {
+            slidesToShow: 1,
+            slidesToScroll: 1
+          }
+        }
+      ],
+      prevArrow: '<i class="fa fa-angle-left fa-2x slider-prev"></i>',
+      nextArrow: '<i class="fa fa-angle-right fa-2x slider-next"></i>'
+    });
+});
+</script>
+<script type="text/javascript">
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-94576-12']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+  })();
+
+</script>
+
+
+
+  </body>
+</html>