Author: vbriand Date: 2011-03-17 14:32:45 +0100 (Thu, 17 Mar 2011) New Revision: 21 Url: http://chorem.org/repositories/revision/chorem/21 Log: Moved jsp pages to WEB-INF Added: trunk/chorem-web/src/main/webapp/WEB-INF/jsp/ trunk/chorem-web/src/main/webapp/WEB-INF/jsp/home.jsp Removed: trunk/chorem-web/src/main/webapp/jsp/ Modified: trunk/chorem-web/src/main/resources/i18n/chorem-web_en_GB.properties trunk/chorem-web/src/main/resources/i18n/chorem-web_fr_FR.properties trunk/chorem-web/src/main/resources/struts.xml Modified: trunk/chorem-web/src/main/resources/i18n/chorem-web_en_GB.properties =================================================================== --- trunk/chorem-web/src/main/resources/i18n/chorem-web_en_GB.properties 2011-03-17 13:20:47 UTC (rev 20) +++ trunk/chorem-web/src/main/resources/i18n/chorem-web_en_GB.properties 2011-03-17 13:32:45 UTC (rev 21) @@ -3,6 +3,8 @@ chorem.gepeto.project=Project {0} chorem.gepeto.project.add=Add a new project chorem.gepeto.project.description=Description +chorem.gepeto.project.name=Project name chorem.gepeto.projectDetails.title=Details of project {0} chorem.gepeto.projectsByYear.title=Projects of year {0} chorem.gepeto.results.title=Results by year +chorem.home= Modified: trunk/chorem-web/src/main/resources/i18n/chorem-web_fr_FR.properties =================================================================== --- trunk/chorem-web/src/main/resources/i18n/chorem-web_fr_FR.properties 2011-03-17 13:20:47 UTC (rev 20) +++ trunk/chorem-web/src/main/resources/i18n/chorem-web_fr_FR.properties 2011-03-17 13:32:45 UTC (rev 21) @@ -3,6 +3,8 @@ chorem.gepeto.project=Projet {0} chorem.gepeto.project.add=Ajouter un nouveau projet chorem.gepeto.project.description=Description +chorem.gepeto.project.name=Nom du projet chorem.gepeto.projectDetails.title=D\u00E9tails du projet {0} chorem.gepeto.projectsByYear.title=Projets de l''ann\u00E9e {0} chorem.gepeto.results.title=R\u00E9sultats par ann\u00E0e +chorem.home= Modified: trunk/chorem-web/src/main/resources/struts.xml =================================================================== --- trunk/chorem-web/src/main/resources/struts.xml 2011-03-17 13:20:47 UTC (rev 20) +++ trunk/chorem-web/src/main/resources/struts.xml 2011-03-17 13:32:45 UTC (rev 21) @@ -11,15 +11,33 @@ </package> <package name="chorem" namespace="/" extends="struts-default"> - <action name="home" class="org.chorem.action.HomeAction" method="execute"> - <result name="success">/WEB-INF/jsp/Home.jsp</result> + <action name="home" class="org.chorem.action.HomeAction"> + <result>/WEB-INF/jsp/home.jsp</result> </action> </package> <!-- <package name="bonzoms" namespace="/bonzoms" extends="struts-default"> - <action name="home" class="org.chorem.bonzoms.action.HomeAction" method="execute"> - <result name="success">/WEB-INF/jsp/bonzoms/Home.jsp</result> + <action name="home" class="org.chorem.bonzoms.action.HomeAction"> + <result>/WEB-INF/jsp/bonzoms/home.jsp</result> </action> </package> + + <package name="gepeto" namespace="/gepeto" extends="struts-default"> + <action name="home" class="org.chorem.gepeto.action.HomeAction"> + <result>/WEB-INF/jsp/gepeto/home.jsp</result> + </action> + </package> + + <package name="billy" namespace="/billy" extends="struts-default"> + <action name="home" class="org.chorem.billy.action.HomeAction"> + <result>/WEB-INF/jsp/billy/home.jsp</result> + </action> + </package> + + <package name="cash" namespace="/cash" extends="struts-default"> + <action name="home" class="org.chorem.cash.action.HomeAction"> + <result>/WEB-INF/jsp/cash/home.jsp</result> + </action> + </package> --> </struts> Added: trunk/chorem-web/src/main/webapp/WEB-INF/jsp/home.jsp =================================================================== --- trunk/chorem-web/src/main/webapp/WEB-INF/jsp/home.jsp (rev 0) +++ trunk/chorem-web/src/main/webapp/WEB-INF/jsp/home.jsp 2011-03-17 13:32:45 UTC (rev 21) @@ -0,0 +1,12 @@ +<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@taglib prefix="s" uri="/struts-tags" %> + +<html xmlns:s="http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" + xmlns:jsp="http://java.sun.com/JSP/Page"> + <head> + <title><s:text name="chorem.home" /></title> + <s:head /> + </head> + <body> + </body> +</html> Property changes on: trunk/chorem-web/src/main/webapp/WEB-INF/jsp/home.jsp ___________________________________________________________________ Added: svn:mime-type + text/plain
participants (1)
-
vbriand@users.chorem.org