mirror of https://github.com/apache/lucene.git
fix and detect invalid html tags in javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1401947 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d4108c2b80
commit
feddbabf80
|
@ -24,7 +24,7 @@ import java.util.Locale;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parser for trec doc content, invoked on doc text excluding <DOC> and <DOCNO>
|
* Parser for trec doc content, invoked on doc text excluding <DOC> and <DOCNO>
|
||||||
* which are handled in TrecContentSource. Required to be stateless and hence thread safe.
|
* which are handled in TrecContentSource. Required to be stateless and hence thread safe.
|
||||||
*/
|
*/
|
||||||
public abstract class TrecDocParser {
|
public abstract class TrecDocParser {
|
||||||
|
|
|
@ -231,6 +231,13 @@
|
||||||
|
|
||||||
<!-- we check for broken links across all documentation -->
|
<!-- we check for broken links across all documentation -->
|
||||||
<target name="-documentation-lint" if="documentation-lint.supported" depends="documentation">
|
<target name="-documentation-lint" if="documentation-lint.supported" depends="documentation">
|
||||||
|
<echo message="checking for broken html..."/>
|
||||||
|
<jtidy-macro>
|
||||||
|
<!-- NOTE: must currently exclude deprecated-list due to a javadocs bug (as of 1.7.0_09)
|
||||||
|
javadocs generates invalid XML if you deprecate a method that takes a parameter
|
||||||
|
with a generic type -->
|
||||||
|
<fileset dir="build/docs" includes="**/*.html" excludes="**/deprecated-list.html"/>
|
||||||
|
</jtidy-macro>
|
||||||
<echo message="Checking for broken links..."/>
|
<echo message="Checking for broken links..."/>
|
||||||
<check-broken-links dir="build/docs"/>
|
<check-broken-links dir="build/docs"/>
|
||||||
<echo message="Checking for missing docs..."/>
|
<echo message="Checking for missing docs..."/>
|
||||||
|
|
|
@ -1565,6 +1565,25 @@ ${tests-output}/junit4-*.suites - per-JVM executed suites
|
||||||
</sequential>
|
</sequential>
|
||||||
</macrodef>
|
</macrodef>
|
||||||
|
|
||||||
|
<!-- TODO: if we make a custom ant task, we can give better
|
||||||
|
errors and stuff here, and not make a stupid temp dir -->
|
||||||
|
<macrodef name="jtidy-macro">
|
||||||
|
<element name="nested" implicit="yes" optional="yes"/>
|
||||||
|
<sequential>
|
||||||
|
<ivy:cachepath organisation="net.sf.jtidy" module="jtidy" revision="r938"
|
||||||
|
log="download-only" inline="true" conf="master" type="jar" pathid="jtidy.classpath" />
|
||||||
|
<taskdef name="tidy" classname="org.w3c.tidy.ant.JTidyTask" classpathref="jtidy.classpath"/>
|
||||||
|
<delete dir="${common.dir}/build/jtidy_tmp" quiet="true"/>
|
||||||
|
<echo message="Checking for broken html (such as invalid tags)..." taskname="jtidy"/>
|
||||||
|
<tidy failonerror="true" destdir="${common.dir}/build/jtidy_tmp">
|
||||||
|
<nested/>
|
||||||
|
<parameter name="input-encoding" value="UTF-8" />
|
||||||
|
<parameter name="only-errors" value="true" />
|
||||||
|
</tidy>
|
||||||
|
<delete dir="${common.dir}/build/jtidy_tmp" quiet="true"/>
|
||||||
|
</sequential>
|
||||||
|
</macrodef>
|
||||||
|
|
||||||
<property name="failonjavadocwarning" value="true"/>
|
<property name="failonjavadocwarning" value="true"/>
|
||||||
<macrodef name="invoke-javadoc">
|
<macrodef name="invoke-javadoc">
|
||||||
<element name="sources" optional="yes"/>
|
<element name="sources" optional="yes"/>
|
||||||
|
|
|
@ -31,7 +31,7 @@ import org.apache.lucene.util.BytesRef;
|
||||||
// TODO: we need to break out separate StoredField...
|
// TODO: we need to break out separate StoredField...
|
||||||
|
|
||||||
/** Represents a single field for indexing. IndexWriter
|
/** Represents a single field for indexing. IndexWriter
|
||||||
* consumes Iterable<IndexableField> as a document.
|
* consumes Iterable<IndexableField> as a document.
|
||||||
*
|
*
|
||||||
* @lucene.experimental */
|
* @lucene.experimental */
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ import org.apache.lucene.util.encoding.IntEncoder;
|
||||||
* DirectoryReader reader = DirectoryReader.open(oldDir);
|
* DirectoryReader reader = DirectoryReader.open(oldDir);
|
||||||
* IndexWriterConfig conf = new IndexWriterConfig(VER, ANALYZER);
|
* IndexWriterConfig conf = new IndexWriterConfig(VER, ANALYZER);
|
||||||
* IndexWriter writer = new IndexWriter(newDir, conf);
|
* IndexWriter writer = new IndexWriter(newDir, conf);
|
||||||
* List<AtomicReaderContext> leaves = reader.leaves();
|
* List<AtomicReaderContext> leaves = reader.leaves();
|
||||||
* AtomicReader wrappedLeaves[] = new AtomicReader[leaves.size()];
|
* AtomicReader wrappedLeaves[] = new AtomicReader[leaves.size()];
|
||||||
* for (int i = 0; i < leaves.size(); i++) {
|
* for (int i = 0; i < leaves.size(); i++) {
|
||||||
* wrappedLeaves[i] = new OrdinalMappingAtomicReader(leaves.get(i).reader(), ordmap);
|
* wrappedLeaves[i] = new OrdinalMappingAtomicReader(leaves.get(i).reader(), ordmap);
|
||||||
|
|
|
@ -32,7 +32,7 @@ import org.apache.lucene.facet.index.attributes.CategoryAttribute;
|
||||||
* <P>
|
* <P>
|
||||||
* A CategoryAttributesStream object can be reused for producing more than one
|
* A CategoryAttributesStream object can be reused for producing more than one
|
||||||
* stream. To do that, the user should cause the underlying
|
* stream. To do that, the user should cause the underlying
|
||||||
* Iterable<CategoryAttribute> object to return a new set of categories, and
|
* Iterable<CategoryAttribute> object to return a new set of categories, and
|
||||||
* then call {@link #reset()} to allow this stream to be used again.
|
* then call {@link #reset()} to allow this stream to be used again.
|
||||||
*
|
*
|
||||||
* @lucene.experimental
|
* @lucene.experimental
|
||||||
|
|
|
@ -526,6 +526,12 @@
|
||||||
<!-- TODO: does solr have any other docs we should check? -->
|
<!-- TODO: does solr have any other docs we should check? -->
|
||||||
<!-- TODO: also integrate checkJavaDocs.py, which does more checks -->
|
<!-- TODO: also integrate checkJavaDocs.py, which does more checks -->
|
||||||
<target name="-documentation-lint" if="documentation-lint.supported" depends="documentation">
|
<target name="-documentation-lint" if="documentation-lint.supported" depends="documentation">
|
||||||
|
<jtidy-macro>
|
||||||
|
<!-- NOTE: must currently exclude deprecated-list due to a javadocs bug (as of 1.7.0_09)
|
||||||
|
javadocs generates invalid XML if you deprecate a method that takes a parameter
|
||||||
|
with a generic type -->
|
||||||
|
<fileset dir="build/docs" includes="**/*.html" excludes="**/deprecated-list.html"/>
|
||||||
|
</jtidy-macro>
|
||||||
<echo message="Checking for broken links..."/>
|
<echo message="Checking for broken links..."/>
|
||||||
<check-broken-links dir="${javadoc.dir}"/>
|
<check-broken-links dir="${javadoc.dir}"/>
|
||||||
<echo message="Checking for malformed docs..."/>
|
<echo message="Checking for malformed docs..."/>
|
||||||
|
|
|
@ -87,7 +87,7 @@ public abstract class Context {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the VariableResolver used in this entity which can be used to
|
* Returns the VariableResolver used in this entity which can be used to
|
||||||
* resolve the tokens in ${<namespce.name>}
|
* resolve the tokens in ${<namespce.name>}
|
||||||
*
|
*
|
||||||
* @return a VariableResolver instance
|
* @return a VariableResolver instance
|
||||||
* @see org.apache.solr.handler.dataimport.VariableResolver
|
* @see org.apache.solr.handler.dataimport.VariableResolver
|
||||||
|
|
|
@ -32,7 +32,7 @@ import java.util.Properties;
|
||||||
* <p/>
|
* <p/>
|
||||||
* The datasouce may be configured as follows
|
* The datasouce may be configured as follows
|
||||||
* <p/>
|
* <p/>
|
||||||
* <datasource name="f1" type="FieldReaderDataSource" />
|
* <datasource name="f1" type="FieldReaderDataSource" />
|
||||||
* <p/>
|
* <p/>
|
||||||
* The enity which uses this datasource must keep the url value as the variable name url="field-name"
|
* The enity which uses this datasource must keep the url value as the variable name url="field-name"
|
||||||
* <p/>
|
* <p/>
|
||||||
|
|
|
@ -45,7 +45,7 @@ import org.slf4j.LoggerFactory;
|
||||||
* /a/b/c
|
* /a/b/c
|
||||||
* </pre>
|
* </pre>
|
||||||
* A record is a Map<String,Object> . The key is the provided name
|
* A record is a Map<String,Object> . The key is the provided name
|
||||||
* and the value is a String or a List<String>
|
* and the value is a String or a List<String>
|
||||||
*
|
*
|
||||||
* This class is thread-safe for parsing xml. But adding fields is not
|
* This class is thread-safe for parsing xml. But adding fields is not
|
||||||
* thread-safe. The recommended usage is to addField() in one thread and
|
* thread-safe. The recommended usage is to addField() in one thread and
|
||||||
|
@ -651,10 +651,10 @@ public class XPathRecordReader {
|
||||||
/**
|
/**
|
||||||
* @param record The record map. The key is the field name as provided in
|
* @param record The record map. The key is the field name as provided in
|
||||||
* the addField() methods. The value can be a single String (for single
|
* the addField() methods. The value can be a single String (for single
|
||||||
* valued fields) or a List<String> (for multiValued).
|
* valued fields) or a List<String> (for multiValued).
|
||||||
* @param xpath The forEach XPATH for which this record is being emitted
|
* @param xpath The forEach XPATH for which this record is being emitted
|
||||||
* If there is any change all parsing will be aborted and the Exception
|
* If there is any change all parsing will be aborted and the Exception
|
||||||
* is propogated up
|
* is propagated up
|
||||||
*/
|
*/
|
||||||
public void handle(Map<String, Object> record, String xpath);
|
public void handle(Map<String, Object> record, String xpath);
|
||||||
}
|
}
|
||||||
|
|
|
@ -159,7 +159,7 @@ public interface ExtractingParams {
|
||||||
* File format is Java properties format with one key=value per line.
|
* File format is Java properties format with one key=value per line.
|
||||||
* The key is evaluated as a regex against the file name, and the value is the password
|
* The key is evaluated as a regex against the file name, and the value is the password
|
||||||
* The rules are evaluated top-bottom, i.e. the first match will be used
|
* The rules are evaluated top-bottom, i.e. the first match will be used
|
||||||
* If you want a fallback password to be always used, supply a .*=<defaultmypassword> at the end
|
* If you want a fallback password to be always used, supply a .*=<defaultmypassword> at the end
|
||||||
*/
|
*/
|
||||||
public static final String PASSWORD_MAP_FILE = "passwordsFile";
|
public static final String PASSWORD_MAP_FILE = "passwordsFile";
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,8 +34,8 @@ import org.slf4j.LoggerFactory;
|
||||||
* Plugin for lucene/contrib Surround query parser, bringing SpanQuery support
|
* Plugin for lucene/contrib Surround query parser, bringing SpanQuery support
|
||||||
* to Solr
|
* to Solr
|
||||||
*
|
*
|
||||||
* <queryParser name="surround"
|
* <queryParser name="surround"
|
||||||
* class="org.apache.solr.search.SurroundQParserPlugin" />
|
* class="org.apache.solr.search.SurroundQParserPlugin" />
|
||||||
*
|
*
|
||||||
* Examples of query syntax can be found in lucene/queryparser/docs/surround
|
* Examples of query syntax can be found in lucene/queryparser/docs/surround
|
||||||
*
|
*
|
||||||
|
|
|
@ -493,20 +493,24 @@ public class SolrDispatchFilter implements Filter
|
||||||
* filter into a larger web application.
|
* filter into a larger web application.
|
||||||
*
|
*
|
||||||
* For example, if web.xml specifies:
|
* For example, if web.xml specifies:
|
||||||
*
|
* <pre class="prettyprint">
|
||||||
|
* {@code
|
||||||
* <filter-mapping>
|
* <filter-mapping>
|
||||||
* <filter-name>SolrRequestFilter</filter-name>
|
* <filter-name>SolrRequestFilter</filter-name>
|
||||||
* <url-pattern>/xxx/*</url-pattern>
|
* <url-pattern>/xxx/*</url-pattern>
|
||||||
* </filter-mapping>
|
* </filter-mapping>}
|
||||||
|
* </pre>
|
||||||
*
|
*
|
||||||
* Make sure to set the PathPrefix to "/xxx" either with this function
|
* Make sure to set the PathPrefix to "/xxx" either with this function
|
||||||
* or in web.xml.
|
* or in web.xml.
|
||||||
*
|
*
|
||||||
|
* <pre class="prettyprint">
|
||||||
|
* {@code
|
||||||
* <init-param>
|
* <init-param>
|
||||||
* <param-name>path-prefix</param-name>
|
* <param-name>path-prefix</param-name>
|
||||||
* <param-value>/xxx</param-value>
|
* <param-value>/xxx</param-value>
|
||||||
* </init-param>
|
* </init-param>}
|
||||||
*
|
* </pre>
|
||||||
*/
|
*/
|
||||||
public void setPathPrefix(String pathPrefix) {
|
public void setPathPrefix(String pathPrefix) {
|
||||||
this.pathPrefix = pathPrefix;
|
this.pathPrefix = pathPrefix;
|
||||||
|
|
Loading…
Reference in New Issue