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 20:55:29 UTC

[Lucene.Net] svn commit: r1078551 - in /incubator/lucene.net/site/trunk: content/lucene.net/index2.mdtext templates/subpage.html

Author: pnasser
Date: Sun Mar  6 19:55:29 2011
New Revision: 1078551

URL: http://svn.apache.org/viewvc?rev=1078551&view=rev
Log:
created subpage template: templates/subpage.html

Added:
    incubator/lucene.net/site/trunk/content/lucene.net/index2.mdtext
    incubator/lucene.net/site/trunk/templates/subpage.html

Added: incubator/lucene.net/site/trunk/content/lucene.net/index2.mdtext
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/content/lucene.net/index2.mdtext?rev=1078551&view=auto
==============================================================================
--- incubator/lucene.net/site/trunk/content/lucene.net/index2.mdtext (added)
+++ incubator/lucene.net/site/trunk/content/lucene.net/index2.mdtext Sun Mar  6 19:55:29 2011
@@ -0,0 +1,16 @@
+Latest Release - Lucene.Net 2.9.2
+
+
+These are official releases that are stable and should be relatively free of bugs:
+	Binary
+	Source
+	
+Cutting Edge
+This is the latest and greatest, we do our best to keep it stable, but occasionally 
+it won't build correctly. Newer features will likely not work as intended, 
+and even older features might be broken temporarily
+
+Archives
+2.9.1 Source Binary
+2.9.0 Source Binary
+2.4.0 Source Binary

Added: incubator/lucene.net/site/trunk/templates/subpage.html
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/templates/subpage.html?rev=1078551&view=auto
==============================================================================
--- incubator/lucene.net/site/trunk/templates/subpage.html (added)
+++ incubator/lucene.net/site/trunk/templates/subpage.html Sun Mar  6 19:55:29 2011
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+	<title>Grab the Code - Lucene.Net</title>
+	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+	
+	<link rel="stylesheet" type="text/css" href="styles/reset.css" />
+	<link rel="stylesheet" type="text/css" href="styles/layout.css" />
+	<link rel="stylesheet" type="text/css" href="styles/screen.css" />
+	<link rel="stylesheet" type="text/css" href="styles/print.css" media="print" />
+	<link rel="stylesheet" type="text/css" href="styles/lucene.css" />
+
+	<link rel="icon" href="images/icon.png" type="image/png" />
+	
+	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
+</head>
+
+<body class="promo">
+	<div id="wrapper">
+
+		<div>
+			<div id="header">
+				<ul id="global-nav">
+				  <li><a href="http://www.apache.org">Apache.org</a></li>
+				  <li><a href="#">Wiki</a></li>
+				  <li><a href="https://issues.apache.org/jira/browse/LUCENENET">Issue Tracker (JIRA)</a></li>
+				  <li><a href="#">Source</a></li>
+				  <li><a href="http://lucene.apache.org/">Lucene Project</a></li>
+				</ul>
+			
+				<a href="/" id="logo">Apache Lucene.Net</a>
+	
+				<div id="main-nav" class="clearfix"> 
+					<ul class="clearfix"> 
+						<li class="incubatorlogo"></li> 
+					</ul> 
+    			</div> 
+				
+			</div>
+		</div>
+
+		<div id="introduction">
+			<div>
+
+				<h1>Grab the Code</h1>
+				<h2>Binaries, Source, Archives, whatever you need...</h2>
+
+				
+				<div class="clearer"></div>
+			</div>
+		</div>
+
+    <div id="content">
+      
+		<div class="two-column clearfix">
+			<div class="column" style="width:600px;">
+				{% block content %} {{ content|markdown }} {% endblock %}
+			</div>
+			
+			<div class="column last" style="width:300px">
+				<h2>Lucene.Net</h2>
+				<ul>
+					<li><h3><a href="#">Home</a></h3></li>
+					<li><h3><a href="#">Grab the Code</a></h3></li>
+					<li><h3><a href="#">Join the Conversation</a></h3></li>
+					<li><h3><a href="#">Roadmap</a></h3></li>
+					<li><h3><a href="#">FAQ</a></h3></li>
+				</ul>
+				<h3></h3>
+				<h2>Apache Resources</h2>
+				<ul>
+					<li><h3><a href="#">Lucene Project</a></h3></li>
+					<li><h3><a href="#">Apache.org</a></h3></li>
+					<li><h3><a href="#">Apache Incubator</a></h3></li>
+				</ul>
+			</div>
+		</div>
+
+    </div>
+
+  </div>
+
+	<div id="footer">
+		<ul id="footer-nav">
+			<li>Copyright © 2011 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br />
+				Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are 
+				trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks 
+				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