Author: sletellier Date: 2011-05-27 15:15:17 +0200 (Fri, 27 May 2011) New Revision: 64 Url: http://chorem.org/repositories/revision/vradi/64 Log: Rename index.html to index.jsp to fix sitemesh error Added: trunk/vradi-web/src/main/webapp/index.jsp Removed: trunk/vradi-web/src/main/webapp/index.html Modified: trunk/vradi-web/src/main/webapp/WEB-INF/decorators.xml trunk/vradi-web/src/main/webapp/WEB-INF/web.xml Modified: trunk/vradi-web/src/main/webapp/WEB-INF/decorators.xml =================================================================== --- trunk/vradi-web/src/main/webapp/WEB-INF/decorators.xml 2011-05-27 13:14:26 UTC (rev 63) +++ trunk/vradi-web/src/main/webapp/WEB-INF/decorators.xml 2011-05-27 13:15:17 UTC (rev 64) @@ -6,10 +6,9 @@ <pattern>/img/*</pattern> <pattern>/css/*</pattern> <pattern>/WEB-INF/jsp/inc/*</pattern> - <pattern>/index.html</pattern> + <pattern>/index.jsp</pattern> </excludes> - <!-- Any urls that are excluded will never be decorated by Sitemesh --> <decorator name="main" page="main.jsp"> <pattern>/*</pattern> </decorator> Modified: trunk/vradi-web/src/main/webapp/WEB-INF/web.xml =================================================================== --- trunk/vradi-web/src/main/webapp/WEB-INF/web.xml 2011-05-27 13:14:26 UTC (rev 63) +++ trunk/vradi-web/src/main/webapp/WEB-INF/web.xml 2011-05-27 13:15:17 UTC (rev 64) @@ -43,6 +43,6 @@ <!-- Welcome file lists --> <welcome-file-list> - <welcome-file>index.html</welcome-file> + <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> Deleted: trunk/vradi-web/src/main/webapp/index.html =================================================================== --- trunk/vradi-web/src/main/webapp/index.html 2011-05-27 13:14:26 UTC (rev 63) +++ trunk/vradi-web/src/main/webapp/index.html 2011-05-27 13:15:17 UTC (rev 64) @@ -1,9 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="refresh" content="0;URL=search.action"/> - <title>Vradi web</title> - </head> - <body onload=""> - </body> -</html> Copied: trunk/vradi-web/src/main/webapp/index.jsp (from rev 60, trunk/vradi-web/src/main/webapp/index.html) =================================================================== --- trunk/vradi-web/src/main/webapp/index.jsp (rev 0) +++ trunk/vradi-web/src/main/webapp/index.jsp 2011-05-27 13:15:17 UTC (rev 64) @@ -0,0 +1,3 @@ +<% +response.sendRedirect("search.action"); +%> \ No newline at end of file
participants (1)
-
sletellier@users.chorem.org