From: Brad <bra...@us...> - 2005-10-20 00:40:56
|
Update of /cvsroot/archive-access/archive-access/projects/wayback/src/webapp/template In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12804/src/webapp/template Added Files: UI-header.jsp UI-footer.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: UI-header.jsp --- <!-- HEADER --> <html> <head> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <link rel="stylesheet" type="text/css" href="<%= request.getContextPath() %>/css/styles.css" src="<%= request.getContextPath() %>/css/styles.css"> <title>Internet Archive Wayback Machine</title> <base target="_top"> </head> <body bgcolor="white" alink="red" vlink="#0000aa" link="blue" style="font-family: Arial; font-size: 10pt"> <table width="100%" border="0" cellpadding="0" cellspacing="5"> <tr> <!-- WAYBACK LOGO --> <td width="26%"><a href="<%= request.getContextPath() %>"><img src="<%= request.getContextPath() %>/images/wayback_logo_sm.gif" width="153" height="54" border="0"></a></td> <!-- /WAYBACK LOGO --> <!-- COLLECTION-EMPTYLOGO --> <td width="70%" align="right"></td> <!-- /COLLECTION-EMPTY LOGO --> </tr> <!-- GREEN BANNER --> <tr> <td colspan="2" height="30" align="center" class="mainSecHeadW"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr class="mainBColor"> <td colspan="2"> <table border="0" width="80%" align="center"> <!-- URL FORM --> <form action="query" method="GET"> <tr> <td nowrap align="center"><img src="images/shim.gif" width="1" height="20"> <b class="mainBodyW"> <font size="2" color="#FFFFFF" face="Arial, Helvetica, sans-serif"> Enter Web Address: </font> <input type="hidden" name="type" value="query"> <input type="text" name="url" value="http://" size="24" maxlength="256"> </b> <select name="date" size="1"> <option value="" selected>All</option> <option>2005</option> <option>2004</option> <option>2003</option> <option>2002</option> <option>2001</option> <option>2000</option> <option>1999</option> <option>1998</option> <option>1997</option> <option>1996</option> </select> <input type="Submit" name="Submit" value="Take Me Back" align="absMiddle"> <a href="<%= request.getContextPath() %>/jsp/QueryUI/requestform.jsp" style="color:white;font-size:11px"> Adv. Search </a> </td> </tr> </form> <!-- /URL FORM --> </table> </td> </tr> </table> </td> </tr> <!-- /GREEN BANNER --> </table> <!-- /HEADER --> --- NEW FILE: UI-footer.jsp --- <!-- FOOTER --> <div align="center"> <hr noshade size="1" align="center"> <p> <a href="<%= request.getContextPath() %>">Home</a> | <a href="<%= request.getContextPath() %>/help.jsp">Help</a> </p> <p> <a href="http://www.archive.org">Internet Archive</a> | <a href="http://www.archive.org/about/terms.php">Terms of Use</a> | <a href="http://www.archive.org/about/terms.php#privacy">Privacy Policy</a> </p> </div> </body> </html> <!-- /FOOTER --> |