You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2021/02/21 21:56:47 UTC

[lucene-site] 04/07: Redesign TLP frontpage - add info about Solr moved to TLP

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to branch main/lucene
in repository https://gitbox.apache.org/repos/asf/lucene-site.git

commit 4f9ebf581543a5feb4ee226ec115ab6a6931fc8a
Author: Jan Høydahl <ja...@cominvent.com>
AuthorDate: Sun Feb 21 22:22:54 2021 +0100

    Redesign TLP frontpage - add info about Solr moved to TLP
---
 themes/lucene/templates/lucene/tlp/index.html | 42 +++++++++------------------
 1 file changed, 14 insertions(+), 28 deletions(-)

diff --git a/themes/lucene/templates/lucene/tlp/index.html b/themes/lucene/templates/lucene/tlp/index.html
index 47287d3..9405edb 100644
--- a/themes/lucene/templates/lucene/tlp/index.html
+++ b/themes/lucene/templates/lucene/tlp/index.html
@@ -6,19 +6,16 @@
 <p>
   The Apache Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> project develops open-source search
   software. The project releases a core search library, named Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> core,
-  as well as the Solr<span style="vertical-align: super; font-size: xx-small">TM</span> search server.
+  as well as PyLucene, a python binding for Lucene.
 </p>
 
 <div id="col1">
-  <div class="front-logo-container">
-    <a href="/core/">
-      <img src="/theme/images/lucene/lucene_logo_green_300.png" width="300" alt="Lucene Logo" />
-    </a>
-  </div>
   <p><a href="/core/">Lucene Core</a> is a Java library providing powerful indexing and search features,
   as well as spellchecking, hit highlighting and advanced analysis/tokenization capabilities. The <a href="/pylucene/">PyLucene</a>
     sub project provides Python bindings for Lucene Core.
   </p>
+</div>
+<div id="col2">
   <h2 id="lucene-core-news">Latest Lucene Core News</h2>
   <div>
     {% for article in (articles | selectattr("category.name", "eq", "core/news")|list)[:3] %}
@@ -28,30 +25,19 @@
     {% endfor %}
   </div>
 </div>
-<div id="col2">
-  <div class="front-logo-container">
-    <a href="/solr/">
-      <img src="/theme/images/solr/Solr_Logo_200x101.png" width="200" alt="Solr Logo" />
-    </a>
-  </div>
-  <p><a href="/solr/">Solr<span style="vertical-align: super; font-size: xx-small">TM</span></a> is a high
-  performance search server built using Lucene Core. Solr is highly scalable, providing fully fault tolerant distributed
-  indexing, search and analytics. It exposes Lucene's features through easy to use JSON/HTTP interfaces or native clients
-  for Java and other languages.
+<br clear="all"/>
+<hr/>
+<br clear="all"/>
+<div>
+  <p>
+    <img src="/theme/images/solr/Solr_Logo_200x101.png" width="100" alt="Solr Logo" align="left" />
+    The <a href="https://solr.apache.org/">Solr<span style="vertical-align: super; font-size: xx-small">TM</span></a>
+    sub project was a part of Lucene TLP until February 2021. All things Solr have now moved to <a href="https://solr.apache.org/">https://solr.apache.org/</a>
   </p>
-  <h2 id="solr-news">Latest Solr News</h2>
-  <div>
-    {% for article in (articles | selectattr("category.name", "in", ['solr/news', 'solr/security'])|list)[:3] %}
-    <p id="{{article.slug}}">
-      {% if article.category.name == 'solr/security' %}
-      <a href="/solr/security.html#{{article.slug}}" class="security">{{article.title}}</a> <span class="news-date">({{ article.date | strftime("%d.%b") }})</span>
-      {% else %}
-      <a href="/solr/news.html#{{article.slug}}">{{article.title}}</a> <span class="news-date">({{ article.date | strftime("%d.%b") }})</span>
-      {% endif %}
-    </p>
-    {% endfor %}
-  </div>
 </div>
 <br clear="all"/>
+<hr/>
+<br clear="all"/>
+
 {% include "lucene/_asf.html" %}
 {% endblock content %}