You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2015/02/07 08:38:46 UTC

svn commit: r1658029 [5/5] - in /lucene/dev/trunk/lucene: analysis/common/src/java/org/apache/lucene/analysis/ar/ analysis/common/src/java/org/apache/lucene/analysis/bg/ analysis/common/src/java/org/apache/lucene/analysis/br/ analysis/common/src/java/o...

Copied: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/packed/package-info.java (from r1657982, lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/packed/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/packed/package-info.java?p2=lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/packed/package-info.java&p1=lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/packed/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/packed/package.html (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/packed/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,92 +1,88 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
-<!--
- 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.
--->
-<html>
-<head></head>
-<body bgcolor="white">
-
-<h2>Packed integer arrays and streams.</h2>
-
-<p>
-    The packed package provides
-    <ul>
-    	<li>sequential and random access capable arrays of positive longs,</li>
-    	<li>routines for efficient serialization and deserialization of streams of packed integers.</li>
-    </ul>
-
-    The implementations provide different trade-offs between memory usage and
-    access speed. The standard usage scenario is replacing large int or long
-    arrays in order to reduce the memory footprint.
-</p><p>
-    The main access point is the {@link org.apache.lucene.util.packed.PackedInts} factory.
-</p>
-
-<h3>In-memory structures</h3>
-
-<ul>
-    <li><b>{@link org.apache.lucene.util.packed.PackedInts.Mutable}</b><ul>
-        <li>Only supports positive longs.</li>
-        <li>Requires the number of bits per value to be known in advance.</li>
-        <li>Random-access for both writing and reading.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.GrowableWriter}</b><ul>
-        <li>Same as PackedInts.Mutable but grows the number of bits per values when needed.</li>
-        <li>Useful to build a PackedInts.Mutable from a read-once stream of longs.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.PagedGrowableWriter}</b><ul>
-        <li>Slices data into fixed-size blocks stored in GrowableWriters.</li>
-        <li>Supports more than 2B values.</li>
-        <li>You should use PackedLongValues instead if you don't need random write access.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.PackedLongValues#deltaPackedBuilder}</b><ul>
-        <li>Can store any sequence of longs.</li>
-        <li>Compression is good when values are close to each other.</li>
-        <li>Supports random reads, but only sequential writes.</li>
-        <li>Can address up to 2^42 values.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.PackedLongValues#packedBuilder}</b><ul>
-        <li>Same as deltaPackedBuilder but assumes values are 0-based.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.PackedLongValues#monotonicBuilder}</b><ul>
-        <li>Same as deltaPackedBuilder except that compression is good when the stream is a succession of affine functions.</li>
-    </ul></li>
-</ul>
-
-<h3>Disk-based structures</h3>
-
-<ul>
-    <li><b>{@link org.apache.lucene.util.packed.PackedInts.Writer}, {@link org.apache.lucene.util.packed.PackedInts.Reader}, {@link org.apache.lucene.util.packed.PackedInts.ReaderIterator}</b><ul>
-        <li>Only supports positive longs.</li>
-        <li>Requires the number of bits per value to be known in advance.</li>
-        <li>Supports both fast sequential access with low memory footprint with ReaderIterator and random-access by either loading values in memory or leaving them on disk with Reader.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.BlockPackedWriter}, {@link org.apache.lucene.util.packed.BlockPackedReader}, {@link org.apache.lucene.util.packed.BlockPackedReaderIterator}</b><ul>
-        <li>Splits the stream into fixed-size blocks.</li>
-        <li>Compression is good when values are close to each other.</li>
-        <li>Can address up to 2B * blockSize values.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.MonotonicBlockPackedWriter}, {@link org.apache.lucene.util.packed.MonotonicBlockPackedReader}</b><ul>
-        <li>Same as the non-monotonic variants except that compression is good when the stream is a succession of affine functions.</li>
-        <li>The reason why there is no sequential access is that if you need sequential access, you should rather delta-encode and use BlockPackedWriter.</li>
-    </ul></li>
-    <li><b>{@link org.apache.lucene.util.packed.PackedDataOutput}, {@link org.apache.lucene.util.packed.PackedDataInput}</b><ul>
-        <li>Writes sequences of longs where each long can use any number of bits.</li>
-    </ul></li>
-</ul>
-
-</body>
-</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.
+ */
+
+/** 
+ * Packed integer arrays and streams.
+ * 
+ * <p>
+ *     The packed package provides
+ *     <ul>
+ *      <li>sequential and random access capable arrays of positive longs,</li>
+ *      <li>routines for efficient serialization and deserialization of streams of packed integers.</li>
+ *     </ul>
+ * 
+ *     The implementations provide different trade-offs between memory usage and
+ *     access speed. The standard usage scenario is replacing large int or long
+ *     arrays in order to reduce the memory footprint.
+ * </p><p>
+ *     The main access point is the {@link org.apache.lucene.util.packed.PackedInts} factory.
+ * </p>
+ * 
+ * <h3>In-memory structures</h3>
+ * 
+ * <ul>
+ *     <li><b>{@link org.apache.lucene.util.packed.PackedInts.Mutable}</b><ul>
+ *         <li>Only supports positive longs.</li>
+ *         <li>Requires the number of bits per value to be known in advance.</li>
+ *         <li>Random-access for both writing and reading.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.GrowableWriter}</b><ul>
+ *         <li>Same as PackedInts.Mutable but grows the number of bits per values when needed.</li>
+ *         <li>Useful to build a PackedInts.Mutable from a read-once stream of longs.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.PagedGrowableWriter}</b><ul>
+ *         <li>Slices data into fixed-size blocks stored in GrowableWriters.</li>
+ *         <li>Supports more than 2B values.</li>
+ *         <li>You should use PackedLongValues instead if you don't need random write access.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.PackedLongValues#deltaPackedBuilder}</b><ul>
+ *         <li>Can store any sequence of longs.</li>
+ *         <li>Compression is good when values are close to each other.</li>
+ *         <li>Supports random reads, but only sequential writes.</li>
+ *         <li>Can address up to 2^42 values.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.PackedLongValues#packedBuilder}</b><ul>
+ *         <li>Same as deltaPackedBuilder but assumes values are 0-based.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.PackedLongValues#monotonicBuilder}</b><ul>
+ *         <li>Same as deltaPackedBuilder except that compression is good when the stream is a succession of affine functions.</li>
+ *     </ul></li>
+ * </ul>
+ * 
+ * <h3>Disk-based structures</h3>
+ * 
+ * <ul>
+ *     <li><b>{@link org.apache.lucene.util.packed.PackedInts.Writer}, {@link org.apache.lucene.util.packed.PackedInts.Reader}, {@link org.apache.lucene.util.packed.PackedInts.ReaderIterator}</b><ul>
+ *         <li>Only supports positive longs.</li>
+ *         <li>Requires the number of bits per value to be known in advance.</li>
+ *         <li>Supports both fast sequential access with low memory footprint with ReaderIterator and random-access by either loading values in memory or leaving them on disk with Reader.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.BlockPackedWriter}, {@link org.apache.lucene.util.packed.BlockPackedReader}, {@link org.apache.lucene.util.packed.BlockPackedReaderIterator}</b><ul>
+ *         <li>Splits the stream into fixed-size blocks.</li>
+ *         <li>Compression is good when values are close to each other.</li>
+ *         <li>Can address up to 2B * blockSize values.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.MonotonicBlockPackedWriter}, {@link org.apache.lucene.util.packed.MonotonicBlockPackedReader}</b><ul>
+ *         <li>Same as the non-monotonic variants except that compression is good when the stream is a succession of affine functions.</li>
+ *         <li>The reason why there is no sequential access is that if you need sequential access, you should rather delta-encode and use BlockPackedWriter.</li>
+ *     </ul></li>
+ *     <li><b>{@link org.apache.lucene.util.packed.PackedDataOutput}, {@link org.apache.lucene.util.packed.PackedDataInput}</b><ul>
+ *         <li>Writes sequences of longs where each long can use any number of bits.</li>
+ *     </ul></li>
+ * </ul>
+ */
+package org.apache.lucene.util.packed;

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/analysis/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/analysis/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/analysis/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/analysis/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Copied: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/asserting/package-info.java (from r1657982, lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/asserting/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/asserting/package-info.java?p2=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/asserting/package-info.java&p1=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/asserting/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/asserting/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/asserting/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,25 +1,21 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<!--
- 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
+/*
+ * 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.
+ */
 
-     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.
--->
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-Codec for testing that asserts various contracts of the codec apis.
-</body>
-</html>
+/**
+ * Codec for testing that asserts various contracts of the codec apis.
+ */
+package org.apache.lucene.codecs.asserting;

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/blockterms/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/blockterms/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/blockterms/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/blockterms/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in codecs/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/bloom/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/bloom/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/bloom/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/bloom/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in codecs/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Copied: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cheapbastard/package-info.java (from r1657982, lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cheapbastard/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cheapbastard/package-info.java?p2=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cheapbastard/package-info.java&p1=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cheapbastard/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cheapbastard/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cheapbastard/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,26 +1,22 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<!--
- 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
+/*
+ * 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.
+ */
 
-     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.
--->
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-Codec that unreasonably tries to use as little RAM as possible.
-For testing, benchmarking, API purposes only!
-</body>
-</html>
+/** 
+ * Codec that unreasonably tries to use as little RAM as possible.
+ * For testing, benchmarking, API purposes only!
+ */
+package org.apache.lucene.codecs.cheapbastard;

Copied: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/dummy/package-info.java (from r1657982, lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/dummy/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/dummy/package-info.java?p2=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/dummy/package-info.java&p1=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/dummy/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/dummy/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/dummy/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,25 +1,21 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<!--
- 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
+/*
+ * 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.
+ */
 
-     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.
--->
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-Dummy CompressingCodec implementation used for testing.
-</body>
-</html>
+/** 
+ * Dummy CompressingCodec implementation used for testing.
+ */
+package org.apache.lucene.codecs.compressing.dummy;

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/compressing/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Copied: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cranky/package-info.java (from r1657982, lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cranky/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cranky/package-info.java?p2=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cranky/package-info.java&p1=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cranky/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cranky/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/cranky/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,25 +1,21 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<!--
- 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
+/*
+ * 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.
+ */
 
-     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.
--->
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-Codec for testing that throws random IOExceptions
-</body>
-</html>
\ No newline at end of file
+/**
+ * Codec for testing that throws random IOExceptions
+ */
+package org.apache.lucene.codecs.cranky;

Copied: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/mockrandom/package-info.java (from r1657982, lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/mockrandom/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/mockrandom/package-info.java?p2=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/mockrandom/package-info.java&p1=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/mockrandom/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/mockrandom/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/mockrandom/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,25 +1,21 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<!--
- 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
+/*
+ * 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.
+ */
 
-     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.
--->
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-Frankenstein codec for testing that pieces together random components.
-</body>
-</html>
+/** 
+ * Frankenstein codec for testing that pieces together random components.
+ */
+package org.apache.lucene.codecs.mockrandom;

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Copied: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/ramonly/package-info.java (from r1657982, lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/ramonly/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/ramonly/package-info.java?p2=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/ramonly/package-info.java&p1=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/ramonly/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/ramonly/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/codecs/ramonly/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,25 +1,21 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<!--
- 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
+/*
+ * 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.
+ */
 
-     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.
--->
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-Codec for testing that never writes to disk.
-</body>
-</html>
+/** 
+ * Codec for testing that never writes to disk.
+ */
+package org.apache.lucene.codecs.ramonly;

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/index/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/index/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/index/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/index/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Copied: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/package-info.java (from r1657982, lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/package.html)
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/package-info.java?p2=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/package-info.java&p1=lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/package.html&r1=1657982&r2=1658029&rev=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/mockfile/package-info.java Sat Feb  7 07:38:44 2015
@@ -1,34 +1,30 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<!--
- 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
+/*
+ * 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.
+ */
 
-     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.
--->
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-Support for testing/debugging with virtual filesystems 
-<p>
-The primary classes are:
-<ul>
-  <li>{@link org.apache.lucene.mockfile.LeakFS}: Fails tests if they leave open filehandles.
-  <li>{@link org.apache.lucene.mockfile.VerboseFS}: Prints destructive filesystem operations to infostream.
-  <li>{@link org.apache.lucene.mockfile.WindowsFS}: Acts like windows.
-  <li>{@link org.apache.lucene.mockfile.DisableFsyncFS}: Makes actual fsync calls a no-op.
-</ul>
-</p>
-</body>
-</html>
\ No newline at end of file
+/**
+ * Support for testing/debugging with virtual filesystems 
+ * <p>
+ * The primary classes are:
+ * <ul>
+ *   <li>{@link org.apache.lucene.mockfile.LeakFS}: Fails tests if they leave open filehandles.
+ *   <li>{@link org.apache.lucene.mockfile.VerboseFS}: Prints destructive filesystem operations to infostream.
+ *   <li>{@link org.apache.lucene.mockfile.WindowsFS}: Acts like windows.
+ *   <li>{@link org.apache.lucene.mockfile.DisableFsyncFS}: Makes actual fsync calls a no-op.
+ * </ul>
+ * </p>
+ */
+package org.apache.lucene.mockfile;

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/search/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/search/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/search/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/search/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/store/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/automaton/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/automaton/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/automaton/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/automaton/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/fst/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/fst/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/fst/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/fst/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Modified: lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/package.html?rev=1658029&r1=1658028&r2=1658029&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/package.html (original)
+++ lucene/dev/trunk/lucene/test-framework/src/java/org/apache/lucene/util/package.html Sat Feb  7 07:38:44 2015
@@ -15,6 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
+<!-- not a package-info.java, because we already defined this package in core/ -->
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">