You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by pn...@apache.org on 2011/03/06 22:37:22 UTC

[Lucene.Net] svn commit: r1078582 - in /incubator/lucene.net/site/trunk: lib/path.pm templates/blank.html templates/subpage.html

Author: pnasser
Date: Sun Mar  6 21:37:22 2011
New Revision: 1078582

URL: http://svn.apache.org/viewvc?rev=1078582&view=rev
Log: (empty)

Added:
    incubator/lucene.net/site/trunk/templates/blank.html
Modified:
    incubator/lucene.net/site/trunk/lib/path.pm
    incubator/lucene.net/site/trunk/templates/subpage.html

Modified: incubator/lucene.net/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/lib/path.pm?rev=1078582&r1=1078581&r2=1078582&view=diff
==============================================================================
--- incubator/lucene.net/site/trunk/lib/path.pm (original)
+++ incubator/lucene.net/site/trunk/lib/path.pm Sun Mar  6 21:37:22 2011
@@ -10,7 +10,7 @@ use warnings;
 
 our @patterns = (
     [ qr!^/.*\.html$!, basic => {} ],
-	[ qr!\.html$!, basic => {} ],
+	[ qr!\.html$!, basic => { template => "blank.html" } ],
 	[ qr!\.mdtext$!, basic => { template => "subpage.html" } ],
     [ qr!^/sitemap\.html$!, sitemap => {} ],
 );

Added: incubator/lucene.net/site/trunk/templates/blank.html
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/templates/blank.html?rev=1078582&view=auto
==============================================================================
--- incubator/lucene.net/site/trunk/templates/blank.html (added)
+++ incubator/lucene.net/site/trunk/templates/blank.html Sun Mar  6 21:37:22 2011
@@ -0,0 +1 @@
+{% block content %} {{ content|markdown }} {% endblock %}
\ No newline at end of file

Modified: incubator/lucene.net/site/trunk/templates/subpage.html
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/templates/subpage.html?rev=1078582&r1=1078581&r2=1078582&view=diff
==============================================================================
--- incubator/lucene.net/site/trunk/templates/subpage.html (original)
+++ incubator/lucene.net/site/trunk/templates/subpage.html Sun Mar  6 21:37:22 2011
@@ -88,18 +88,5 @@
 				of their respective owners.</li>
 		</ul>
 	</div>
-
-	<script type="text/javascript">
-		$(function() {
-			$(".calltoaction li a").mouseenter(function () {
-				//hide panels 
-				$('.calltoactionpanel').hide();
-				
-				//show panel
-				var panel = $(this).attr("href");
-				$(panel).show();
-			});
-		});
-	</script>
 </body>
 </html>
\ No newline at end of file