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 2012/02/15 05:23:59 UTC

[Lucene.Net] svn commit: r1244344 - in /incubator/lucene.net/site/trunk/content/lucene.net: index.html index.mdtext index.page/ index.page/right_whouses.mdtext index.page/what_is_lucenenet.mdtext

Author: pnasser
Date: Wed Feb 15 04:23:58 2012
New Revision: 1244344

URL: http://svn.apache.org/viewvc?rev=1244344&view=rev
Log:
updating index.html 

Added:
    incubator/lucene.net/site/trunk/content/lucene.net/index.html
    incubator/lucene.net/site/trunk/content/lucene.net/index.page/
    incubator/lucene.net/site/trunk/content/lucene.net/index.page/right_whouses.mdtext
    incubator/lucene.net/site/trunk/content/lucene.net/index.page/what_is_lucenenet.mdtext
Removed:
    incubator/lucene.net/site/trunk/content/lucene.net/index.mdtext

Added: incubator/lucene.net/site/trunk/content/lucene.net/index.html
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/content/lucene.net/index.html?rev=1244344&view=auto
==============================================================================
--- incubator/lucene.net/site/trunk/content/lucene.net/index.html (added)
+++ incubator/lucene.net/site/trunk/content/lucene.net/index.html Wed Feb 15 04:23:58 2012
@@ -0,0 +1,17 @@
+{% extends "template.html" %}
+
+<div class="left">
+	{{ what_is_lucenenet.content|markdown }}
+
+	{% block content %}
+		{% for e in blog.list %}
+			<h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
+			<div class="section-content">{{ e.content|safe|truncatewords_html:50 }}</div>
+			<hr>
+		{% endfor %}
+	{% endblock %}
+
+</div>
+<div class="right">
+	{{ right_whouses.content|markdown }}
+</div>
\ No newline at end of file

Added: incubator/lucene.net/site/trunk/content/lucene.net/index.page/right_whouses.mdtext
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/content/lucene.net/index.page/right_whouses.mdtext?rev=1244344&view=auto
==============================================================================
--- incubator/lucene.net/site/trunk/content/lucene.net/index.page/right_whouses.mdtext (added)
+++ incubator/lucene.net/site/trunk/content/lucene.net/index.page/right_whouses.mdtext Wed Feb 15 04:23:58 2012
@@ -0,0 +1,44 @@
+Title: Right Who Uses Content
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+
+## Who Uses Lucene.Net?
+
+### Open Source Initiatives
+	
+- [iReaper](http://ireaper.codeplex.com/)
+- [Linq to Lucene](http://linqtolucene.codeplex.com/)
+- [Lucandra.NET](http://lucandranet.codeplex.com/)
+- [MindTouch](http://www.mindtouch.com/)
+- [Orchard](http://orchard.codeplex.com/)
+- [RavenDB](http://ravendb.net/)
+- [Stackoverflow](http://stackoverflow.com/)
+- [SubText](http://subtextproject.com/)
+- [Umbraco](http://umbraco.codeplex.com)
+	
+### Commercial Products
+- [Autodesk](http://autodesk.com/)
+- [BBC UK Top Gear site](http://www.topgear.com/)
+- [Epro, Bluewire Technologies](http://www.epro.com/)
+- [IntelliEnterprise Intranet Suite](http://www.adenin.com/)
+- [Koders.com, Black Duck Software](http://www.koders.com/)
+- [Oxford Analytica](http://www.oxan.com)
+- [Paradigm](http://discover-e-legal.com/aboutparadigm.html)
+- [PowerSearch](http://datassimilate.com/PSindex.html)
+	
+### ...any many more
\ No newline at end of file

Added: incubator/lucene.net/site/trunk/content/lucene.net/index.page/what_is_lucenenet.mdtext
URL: http://svn.apache.org/viewvc/incubator/lucene.net/site/trunk/content/lucene.net/index.page/what_is_lucenenet.mdtext?rev=1244344&view=auto
==============================================================================
--- incubator/lucene.net/site/trunk/content/lucene.net/index.page/what_is_lucenenet.mdtext (added)
+++ incubator/lucene.net/site/trunk/content/lucene.net/index.page/what_is_lucenenet.mdtext Wed Feb 15 04:23:58 2012
@@ -0,0 +1,6 @@
+Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users. The Lucene search library is based on an [inverted index](http://lucene.sourceforge.net/talks/pisa/). Lucene.Net has three primary goals: 
+
+1.  Maintain the existing line-by-line port from Java to C#, fully automating and commoditizing the process such that the project can easily synchronize with the Java Lucene release schedule;
+2.  Maintaining the high-performance requirements excepted of a first class C# search engine library;
+3.  Maximize usability and power when used within the .NET runtime. To that end, it will present a highly idiomatic, carefully tailored API that takes advantage of many of the special features of the .NET runtime.
+