From: Walter M. <wal...@us...> - 2007-01-11 17:37:57
|
User: walterim Date: 07/01/11 09:37:58 Modified: andromda-jsf2/src/main/resources/templates/jsf2/views/jsp index.jsp.vsl Added: andromda-jsf2/src/main/resources/templates/jsf2/views/facelets/crud crud-index.xhtml.vsl Log: Added a blank start page to the crud. Revision Changes Path 1.1 cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/facelets/crud/crud-index.xhtml.vsl Index: crud-index.xhtml.vsl =================================================================== <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:c="http://java.sun.com/jstl/core"> <ui:composition template="/layout/layout.xhtml"> <ui:define name="content"> </ui:define> </ui:composition> </html> 1.3 +1 -1 cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/jsp/index.jsp.vsl Index: index.jsp.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/jsp/index.jsp.vsl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -w -r1.2 -r1.3 --- index.jsp.vsl 11 Dec 2006 13:44:00 -0000 1.2 +++ index.jsp.vsl 11 Jan 2007 17:37:58 -0000 1.3 @@ -1,6 +1,6 @@ #if($applicationUseCases.size() > 0) #set($path = $applicationUseCases.iterator().next().path) #else -#set($path = $manageables.iterator().next().actionFullPath) +#set($path = "/crud-index") #end <%response.sendRedirect(request.getContextPath() + "${path}.${facesServletExtension}");%> \ No newline at end of file |