Revision: 2537
http://archive-access.svn.sourceforge.net/archive-access/?rev=2537&view=rev
Author: bradtofel
Date: 2008-08-12 22:41:36 +0000 (Tue, 12 Aug 2008)
Log Message:
-----------
TWEAK: Updated getFormatter() from WaybackRequest, not UIResults. fixed typo in text.
Modified Paths:
--------------
trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/index.jsp
Modified: trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/index.jsp
===================================================================
--- trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/index.jsp 2008-08-11 23:57:40 UTC (rev 2536)
+++ trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/index.jsp 2008-08-12 22:41:36 UTC (rev 2537)
@@ -4,14 +4,14 @@
<jsp:include page="/WEB-INF/template/UI-header.jsp" flush="true" />
<%
UIResults results = UIResults.getGeneric(request);
-StringFormatter fmt = results.getFormatter();
+StringFormatter fmt = results.getWbRequest().getFormatter();
Object names = request.getAttribute("AccessPointNames");
if(names != null) {
if(names instanceof ArrayList) {
ArrayList<String> accessPoints = (ArrayList<String>) names;
if(accessPoints.size() > 0) {
%>
- You seems to be accessing this Wayback via an incorrect URL. Please try one of the following AccessPoints:<br></br>
+ You seem to be accessing this Wayback via an incorrect URL. Please try one of the following AccessPoints:<br></br>
<%
}
for(String accessPoint : accessPoints) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|