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/07 01:36:47 UTC

svn commit: r1241294 - in /lucene/cms/trunk: lib/path.pm templates/body.html

Author: gsingers
Date: Tue Feb  7 00:36:47 2012
New Revision: 1241294

URL: http://svn.apache.org/viewvc?rev=1241294&view=rev
Log:
LUCENE-2748: mail on front site

Modified:
    lucene/cms/trunk/lib/path.pm
    lucene/cms/trunk/templates/body.html

Modified: lucene/cms/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/lib/path.pm?rev=1241294&r1=1241293&r2=1241294&view=diff
==============================================================================
--- lucene/cms/trunk/lib/path.pm (original)
+++ lucene/cms/trunk/lib/path.pm Tue Feb  7 00:36:47 2012
@@ -51,7 +51,16 @@ our @patterns = (
 	[qr!openrelevance\/.*?\.mdtext$!, main => { template => "openrelevance-simple.html" }],
 
 	# keep the general one last
-  [qr!\/index\.mdtext$!, main => { template => "main.html"}],
+  [qr!\/index\.mdtext$!, main => { template => "main.html",
+    coreuser => ASF::Value::Mail->new(list => 'java-user@lucene.apache.org',
+                                          limit => 3,
+                                          localMode => $localMode),
+    dev => ASF::Value::Mail->new(list => 'dev@lucene.apache.org',
+                                          limit => 3, localMode => $localMode),
+    solruser => ASF::Value::Mail->new(list => 'solr-user@lucene.apache.org',
+                                          limit => 3, localMode => $localMode),
+
+  }],
   [qr!\.mdtext$!, main => { template => "simple.html"	 }],
 ) ;
 

Modified: lucene/cms/trunk/templates/body.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/body.html?rev=1241294&r1=1241293&r2=1241294&view=diff
==============================================================================
--- lucene/cms/trunk/templates/body.html (original)
+++ lucene/cms/trunk/templates/body.html Tue Feb  7 00:36:47 2012
@@ -103,21 +103,18 @@
           <h1>Latest Dev</h1>
           <div class="status-item">{% for e in dev.list %}
           <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
-          <hr>
           {% endfor %}</div>
         </div>
         <div id="core-user-mail">
           <h1>Latest Core User</h1>
           <div class="status-item">{% for e in coreuser.list %}
           <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
-          <hr>
           {% endfor %}</div>
         </div>
         <div id="solr-user-mail">
           <h1>Latest Solr User</h1>
           <div class="status-item">{% for e in solruser.list %}
           <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
-          <hr>
           {% endfor %}</div>
         </div>
       </div>