mirror of https://github.com/apache/lucene.git
SOLR-451: minor change to make analysis use POST instead of GET. Also made the input area a little bigger to make it more readable.
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@630573 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ac58a1a4dd
commit
d075a69c01
|
@ -301,6 +301,8 @@ Other Changes
|
||||||
|
|
||||||
8. Upgraded to Lucene 2.3.0; Jan 23, 2008.
|
8. Upgraded to Lucene 2.3.0; Jan 23, 2008.
|
||||||
|
|
||||||
|
9. SOLR-451: Changed analysis.jsp to use POST instead of GET, also made the input area a bit bigger (gsingers)
|
||||||
|
|
||||||
Build
|
Build
|
||||||
1. SOLR-411. Changed the names of the Solr JARs to use the defacto standard JAR names based on
|
1. SOLR-411. Changed the names of the Solr JARs to use the defacto standard JAR names based on
|
||||||
project-name-version.jar. This yields, for example:
|
project-name-version.jar. This yields, for example:
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
|
|
||||||
<h2>Field Analysis</h2>
|
<h2>Field Analysis</h2>
|
||||||
|
|
||||||
<form method="GET" action="analysis.jsp">
|
<form method="POST" action="analysis.jsp">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
<%= highlight ? "checked=\"true\"" : "" %> >
|
<%= highlight ? "checked=\"true\"" : "" %> >
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<textarea class="std" rows="3" cols="70" name="val"><% XML.escapeCharData(val,out); %></textarea>
|
<textarea class="std" rows="8" cols="70" name="val"><% XML.escapeCharData(val,out); %></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
<xsl:include href="meta.xsl"/>
|
<xsl:include href="meta.xsl"/>
|
||||||
|
|
||||||
<xsl:template match="solr/analysis/form">
|
<xsl:template match="solr/analysis/form">
|
||||||
<form method="GET" action="analysis.jsp">
|
<form method="POST" action="analysis.jsp">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
highlight matches <input name="highlight" type="checkbox" checked="true"/>
|
highlight matches <input name="highlight" type="checkbox" checked="true"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<textarea class="std" rows="3" cols="70" name="val"><xsl:value-of select="fieldIndexValue" /></textarea>
|
<textarea class="std" rows="8" cols="70" name="val"><xsl:value-of select="fieldIndexValue" /></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in New Issue