| 
     
      
      
      From: <bra...@us...> - 2011-05-25 01:49:42
      
     
   | 
Revision: 3457
          http://archive-access.svn.sourceforge.net/archive-access/?rev=3457&view=rev
Author:   bradtofel
Date:     2011-05-25 01:49:36 +0000 (Wed, 25 May 2011)
Log Message:
-----------
Fixed AccessPoint list urls to include the request ContextPath, allowing this to work with non-ROOT deployments
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	2011-05-25 01:47:34 UTC (rev 3456)
+++ trunk/archive-access/projects/wayback/wayback-webapp/src/main/webapp/index.jsp	2011-05-25 01:49:36 UTC (rev 3457)
@@ -17,7 +17,7 @@
 		}
 		for(String accessPoint : accessPoints) {
 			%>
-			 <a href="<%= accessPoint %>/"><%= accessPoint %></a><br></br>
+			 <a href="<%= request.getContextPath() + "/" + accessPoint %>/"><%= accessPoint %></a><br></br>
 			<%
 		}
 	}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 |