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