diff --git a/CHANGES.txt b/CHANGES.txt
index 25dc916ac8a..0a2bc05f13a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -118,6 +118,8 @@ Changes in runtime behavior
through multiple threads. Large commits also might be faster (klaas, SOLR-65)
9. Lazy field loading can be enabled via a solrconfig directive. This will be faster when
not all stored fields are needed from a document (klaas, SOLR-52)
+10. Made admin JSPs return XML and transform them with new XSL stylesheets
+ (Otis Gospodnetic, SOLR-58)
Optimizations
1. getDocListAndSet can now generate both a DocList and a DocSet from a
diff --git a/src/webapp/resources/admin/analysis.jsp b/src/webapp/resources/admin/analysis.jsp
index 03cece46d90..bdf0f66e089 100644
--- a/src/webapp/resources/admin/analysis.jsp
+++ b/src/webapp/resources/admin/analysis.jsp
@@ -1,20 +1,4 @@
-<%@ page contentType="text/html; charset=utf-8" pageEncoding="UTF-8"%>
-<%--
- 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.
---%>
+<%@ page contentType="text/xml; charset=utf-8" pageEncoding="UTF-8" language="java" %>
<%@ page import="org.apache.lucene.analysis.Analyzer,
org.apache.lucene.analysis.Token,
org.apache.lucene.analysis.TokenStream,
@@ -30,129 +14,86 @@
<%@ page import="java.io.StringReader"%>
<%@ page import="java.util.*"%>
-<%-- $Id$ --%>
-<%-- $Source: /cvs/main/searching/org.apache.solrolarServer/resources/admin/analysis.jsp,v $ --%>
-<%-- $Name: $ --%>
+
-<%@include file="header.jsp" %>
+<%@include file="_info.jsp" %>
<%
String name = request.getParameter("name");
- if (name==null || name.length()==0) name="";
+ if (name == null || name.length() == 0) name = "";
String val = request.getParameter("val");
- if (val==null || val.length()==0) val="";
+ if (val == null || val.length() == 0) val = "";
String qval = request.getParameter("qval");
- if (qval==null || qval.length()==0) qval="";
+ if (qval == null || qval.length() == 0) qval = "";
String verboseS = request.getParameter("verbose");
- boolean verbose = verboseS!=null && verboseS.equalsIgnoreCase("on");
+ boolean verbose = verboseS != null && verboseS.equalsIgnoreCase("on");
String qverboseS = request.getParameter("qverbose");
- boolean qverbose = qverboseS!=null && qverboseS.equalsIgnoreCase("on");
+ boolean qverbose = qverboseS != null && qverboseS.equalsIgnoreCase("on");
String highlightS = request.getParameter("highlight");
- boolean highlight = highlightS!=null && highlightS.equalsIgnoreCase("on");
+ boolean highlight = highlightS != null && highlightS.equalsIgnoreCase("on");
%>
-
-
-