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:
Grant Ingersoll 2008-02-24 02:44:32 +00:00
parent ac58a1a4dd
commit d075a69c01
3 changed files with 6 additions and 4 deletions

View File

@ -301,6 +301,8 @@ Other Changes
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
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:

View File

@ -59,7 +59,7 @@
<h2>Field Analysis</h2>
<form method="GET" action="analysis.jsp">
<form method="POST" action="analysis.jsp">
<table>
<tr>
<td>
@ -85,7 +85,7 @@
<%= highlight ? "checked=\"true\"" : "" %> >
</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>
</tr>
<tr>

View File

@ -53,7 +53,7 @@
<xsl:include href="meta.xsl"/>
<xsl:template match="solr/analysis/form">
<form method="GET" action="analysis.jsp">
<form method="POST" action="analysis.jsp">
<table>
<tr>
<td>
@ -72,7 +72,7 @@
highlight matches <input name="highlight" type="checkbox" checked="true"/>
</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>
</tr>
<tr>