You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2011/03/25 20:36:31 UTC

svn commit: r1085532 - in /lucene/dev/branches/lucene_solr_3_1/lucene: build.xml common-build.xml src/test-framework/overview.html

Author: sarowe
Date: Fri Mar 25 19:36:31 2011
New Revision: 1085532

URL: http://svn.apache.org/viewvc?rev=1085532&view=rev
Log:
LUCENE-2993: Add an overview.html specific to the Lucene Test Framework.

Added:
    lucene/dev/branches/lucene_solr_3_1/lucene/src/test-framework/overview.html
Modified:
    lucene/dev/branches/lucene_solr_3_1/lucene/build.xml
    lucene/dev/branches/lucene_solr_3_1/lucene/common-build.xml

Modified: lucene/dev/branches/lucene_solr_3_1/lucene/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/lucene/build.xml?rev=1085532&r1=1085531&r2=1085532&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/lucene/build.xml (original)
+++ lucene/dev/branches/lucene_solr_3_1/lucene/build.xml Fri Mar 25 19:36:31 2011
@@ -706,6 +706,7 @@
 	<sequential>
       <mkdir dir="${javadoc.dir}/test-framework"/>
       <invoke-javadoc
+          overview="src/test-framework/overview.html"
           destdir="${javadoc.dir}/test-framework"
           title="${Name} ${version} Test Framework API">
         <sources>

Modified: lucene/dev/branches/lucene_solr_3_1/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/lucene/common-build.xml?rev=1085532&r1=1085531&r2=1085532&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/lucene/common-build.xml (original)
+++ lucene/dev/branches/lucene_solr_3_1/lucene/common-build.xml Fri Mar 25 19:36:31 2011
@@ -744,12 +744,13 @@
     <element name="sources" optional="yes"/>
     <attribute name="destdir"/>
   	<attribute name="title" default="${Name} ${version} API"/>
+    <attribute name="overview" default="${src.dir}/overview.html"/>
     <sequential>
       <copy todir="@{destdir}/../prettify" overwrite="false">
         <fileset dir="${prettify.dir}"/>
       </copy>
       <javadoc
-          overview="${src.dir}/overview.html"
+          overview="@{overview}"
           packagenames="org.apache.lucene.*"
           destdir="@{destdir}"
           access="${javadoc.access}"

Added: lucene/dev/branches/lucene_solr_3_1/lucene/src/test-framework/overview.html
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/lucene/src/test-framework/overview.html?rev=1085532&view=auto
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/lucene/src/test-framework/overview.html (added)
+++ lucene/dev/branches/lucene_solr_3_1/lucene/src/test-framework/overview.html Fri Mar 25 19:36:31 2011
@@ -0,0 +1,28 @@
+<html>
+<!--
+ 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.
+-->
+<head>
+   <title>Apache Lucene Test Framework API</title>
+</head>
+<body>
+<p>
+  The Lucene Test Framework is used by Lucene as the basis for its tests.  
+  The framework can also be used for testing third-party code that uses
+  the Lucene API. 
+</p>
+</body>
+</html>