From: Brad <bra...@us...> - 2005-10-20 00:40:56
|
Update of /cvsroot/archive-access/archive-access/projects/wayback/src/webapp/jsp/ReplayUI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12804/src/webapp/jsp/ReplayUI Modified Files: ErrorResult.jsp Added Files: requestform.jsp Log Message: Major UI Overhaul: Moved templates up to top of webapp Created css, images directories, moved relevant files into them UI-Header.txt => UI-Header.jsp (now uses ContextPath) UI-Footer.txt => UI-Footer.jsp (now uses ContextPath) added requestform.jsp pages for ReplayUI and QueryUI ReplayUI servlet url .../retrieve => .../replay Form in header of all Query/Error pages now works WMRequest Parsing: WMRequest now can parse Replay or Query requests with arguments encoded as CGI parameters. If the filter did not already parse the request, then an attemp is made with the WMRequest CGI parameter parsing... This allows for direct CGI GET requests to the individual servlets, making the requestform.jsp FORMs possible. Timestamp: added static method to construct a "current" Timestamp. --- NEW FILE: requestform.jsp --- <jsp:include page="../../template/UI-header.jsp" /> <FORM ACTION="../../replay"> URL:<INPUT TYPE="TEXT" NAME="url" WIDTH="80"><BR> Exact Date:<INPUT TYPE="TEXT" NAME="date" WIDTH="80"><BR> Earliest Date:<INPUT TYPE="TEXT" NAME="earliest" WIDTH="80"><BR> Latest Date:<INPUT TYPE="TEXT" NAME="latest" WIDTH="80"><BR> <INPUT TYPE="HIDDEN" NAME="type" VALUE="replay"> <INPUT TYPE="SUBMIT" VALUE="Submit"> </FORM> <jsp:include page="../../template/UI-footer.jsp" /> Index: ErrorResult.jsp =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wayback/src/webapp/jsp/ReplayUI/ErrorResult.jsp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ErrorResult.jsp 18 Oct 2005 02:30:50 -0000 1.1 --- ErrorResult.jsp 20 Oct 2005 00:40:41 -0000 1.2 *************** *** 1,3 **** ! <jsp:include page="../template/UI-header.txt" /> <B><%= (String) request.getAttribute("message") %></B> ! <jsp:include page="../template/UI-footer.txt" /> --- 1,3 ---- ! <jsp:include page="../../template/UI-header.jsp" /> <B><%= (String) request.getAttribute("message") %></B> ! <jsp:include page="../../template/UI-footer.jsp" /> |