You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gs...@apache.org on 2012/02/05 16:11:44 UTC

svn commit: r1240746 - in /lucene/cms/trunk/templates: core-sidebar.html solr-sidebar.html

Author: gsingers
Date: Sun Feb  5 15:11:44 2012
New Revision: 1240746

URL: http://svn.apache.org/viewvc?rev=1240746&view=rev
Log:
LUCENE-2748: clean up status stuff

Modified:
    lucene/cms/trunk/templates/core-sidebar.html
    lucene/cms/trunk/templates/solr-sidebar.html

Modified: lucene/cms/trunk/templates/core-sidebar.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/core-sidebar.html?rev=1240746&r1=1240745&r2=1240746&view=diff
==============================================================================
--- lucene/cms/trunk/templates/core-sidebar.html (original)
+++ lucene/cms/trunk/templates/core-sidebar.html Sun Feb  5 15:11:44 2012
@@ -26,7 +26,7 @@
       <h1>Latest Dev</h1>
       <div class="status-item">{% for e in dev.list %}
       <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
-      <hr>
+        {{ e.content|safe|truncatewords_html:20 }}
       {% endfor %}</div>
     </div>
     {% endif %}
@@ -35,7 +35,7 @@
       <h1>Latest Core User</h1>
       <div class="status-item">{% for e in coreuser.list %}
       <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
-      <hr>
+        {{ e.content|safe|truncatewords_html:20 }}
       {% endfor %}</div>
     </div>
     {% endif %}

Modified: lucene/cms/trunk/templates/solr-sidebar.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/solr-sidebar.html?rev=1240746&r1=1240745&r2=1240746&view=diff
==============================================================================
--- lucene/cms/trunk/templates/solr-sidebar.html (original)
+++ lucene/cms/trunk/templates/solr-sidebar.html Sun Feb  5 15:11:44 2012
@@ -8,9 +8,11 @@
         {% if svn.list %}
         <div class="status-item">
           {% for e in svn.list %}
-          <a class="svn" href="http://svn.apache.org/viewvc?revision={{ e.revision }};view=revision">r{{ e.revision }}</a>
-          {{ e.message|safe|truncatewords_html:20 }} ({{ e.projects|safe }}) &mdash;
-          <a href="http://people.apache.org/committer-index.html#{{ e.author }}">{{ e.author }}</a>
+          <div class="section-content">
+            <a class="svn" href="http://svn.apache.org/viewvc?revision={{ e.revision }};view=revision">r{{ e.revision }}</a>
+            {{ e.message|safe|truncatewords_html:20 }} ({{ e.projects|safe }}) &mdash;
+            <a href="http://people.apache.org/committer-index.html#{{ e.author }}">{{ e.author }}</a>
+          </div>
           {% endfor %}
         </div>
         {% else if %}
@@ -23,7 +25,9 @@
         {% if jira.list %}
         <div class="status-item">{% for e in jira.list %}
           <a class="bug" href="{{ e.url }}">{{ e.title|safe }}</a><br/>
+          <div class="section-content">
                          {{ e.content|safe|truncatewords_html:20 }}
+          </div>
           {% endfor %}
         </div>
         {% else if %}
@@ -36,6 +40,9 @@
         {% if dev.list %}
         <div class="status-item">{% for e in dev.list %}
           <h4><a href="{{ e.url }}">{{ e.title|safe }}</a></h4>
+          <div class="section-content">
+          {{ e.content|safe|truncatewords_html:20 }}
+            </div>
           {% endfor %}
         </div>
         {% else if %}
@@ -48,6 +55,9 @@
         {% if solruser.list %}
         <div class="status-item">{% for e in solruser.list %}
           <h4><a href="{{ e.url }}">{{ e.title|safe }}</a></h4>
+          <div class="section-content">
+          {{ e.content|safe|truncatewords_html:20 }}
+          </div>
           {% endfor %}
         </div>
       </div>