From: Brad <bra...@us...> - 2005-10-22 00:29:34
|
Update of /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/simplequeryui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7941/src/java/org/archive/wayback/simplequeryui Modified Files: SimpleQueryUI.java Log Message: BUGFIX: was not including GET query part of URL in WMRequest. Index: SimpleQueryUI.java =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/simplequeryui/SimpleQueryUI.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SimpleQueryUI.java 19 Oct 2005 01:22:37 -0000 1.2 --- SimpleQueryUI.java 22 Oct 2005 00:29:20 -0000 1.3 *************** *** 83,87 **** Matcher matcher = null; ! String origRequestPath = request.getRequestURI(); String contextPath = request.getContextPath(); if (!origRequestPath.startsWith(contextPath)) { --- 83,87 ---- Matcher matcher = null; ! String origRequestPath = request.getRequestURI() + "?" + request.getQueryString(); String contextPath = request.getContextPath(); if (!origRequestPath.startsWith(contextPath)) { |