diff options
Diffstat (limited to 'patches/remote-attribute.diff')
-rw-r--r-- | patches/remote-attribute.diff | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/patches/remote-attribute.diff b/patches/remote-attribute.diff deleted file mode 100644 index beabf46..0000000 --- a/patches/remote-attribute.diff +++ /dev/null @@ -1,39 +0,0 @@ ---- a/web/search.jsp 2012-04-17 17:18:14.147097100 +0100 -+++ b/web/search.jsp 2012-04-17 17:12:42.679094963 +0100 -@@ -48,11 +48,12 @@ - org.apache.lucene.queryParser.*" - %><%@ page session="false" %><%@ page errorPage="error.jsp" %><% - Date starttime = new Date(); --String q = request.getParameter("q"); --String defs = request.getParameter("defs"); --String refs = request.getParameter("refs"); --String hist = request.getParameter("hist"); --String path = request.getParameter("path"); -+String remote = request.getParameter("remote"); -+String q = request.getParameter("q"); -+String defs = request.getParameter("defs"); -+String refs = request.getParameter("refs"); -+String hist = request.getParameter("hist"); -+String path = request.getParameter("path"); - - %><%@ include file="projects.jspf" %><% - String sort = null; -@@ -269,7 +270,7 @@ - RuntimeEnvironment environment = RuntimeEnvironment.getInstance(); - environment.register(); - %><%@ include file="httpheader.jspf" %> --<body> -+<body <% if( remote != null && remote.equals("true") ) { %> id="remote" <% } %> > - <div id="page"> - <div id="header"><%@ include file="pageheader.jspf" %></div> - <div id="Masthead"></div> -@@ -425,7 +426,8 @@ - (refs == null ? "" : "&refs=" + Util.URIEncode(refs)) + - (path == null ? "" : "&path=" + Util.URIEncode(path)) + - (hist == null ? "" : "&hist=" + Util.URIEncode(hist)) + -- (sort == null ? "" : "&sort=" + Util.URIEncode(sort)); -+ (sort == null ? "" : "&sort=" + Util.URIEncode(sort)) + -+ (remote == null ? "" : "&remote=" + Util.URIEncode(remote)); - if (hasProjects) { - urlp = urlp + "&project="; - for (Iterator it = project.iterator(); it.hasNext();) { |