[jboss-cvs] jboss-seam/seam-gen/view ...

Gavin King gavin.king at jboss.com
Tue Nov 7 22:09:53 EST 2006


  User: gavin   
  Date: 06/11/07 22:09:53

  Modified:    seam-gen/view   edit.xhtml.ftl view.xhtml.ftl
  Log:
  minor fixes
  
  Revision  Changes    Path
  1.5       +3 -3      jboss-seam/seam-gen/view/edit.xhtml.ftl
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: edit.xhtml.ftl
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/view/edit.xhtml.ftl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- edit.xhtml.ftl	7 Nov 2006 09:11:57 -0000	1.4
  +++ edit.xhtml.ftl	8 Nov 2006 03:09:53 -0000	1.5
  @@ -112,7 +112,7 @@
   </#foreach>
                  <h:column>
                      <f:facet name="header">action</f:facet>
  -		           <s:link id="${parentName}" value="View" view="/${parentPageName}.xhtml" propagation="end">
  +		           <s:link id="view${parentName}" value="View" view="/${parentPageName}.xhtml" propagation="end">
   		               <f:param name="${parentName}Id" value="${'#'}{${parentName}.${parentPojo.identifierProperty.name}}"/>
   		           </s:link>
                  </h:column>
  @@ -141,14 +141,14 @@
   </#foreach>
               <h:column>
                   <f:facet name="header">action</f:facet>
  -		        <s:link id="${childName}" value="Select" view="/${childPageName}.xhtml" propagation="end">
  +		        <s:link id="select${childName}" value="Select" view="/${childPageName}.xhtml" propagation="end">
   		            <f:param name="${childName}Id" value="${'#'}{${childName}.${childPojo.identifierProperty.name}}"/>
   		        </s:link>
               </h:column>
             </h:dataTable>
             
   		    <div class="actionButtons">
  -		        <s:link id="add" value="Add ${childName}" linkStyle="button"
  +		        <s:link id="add${childName}" value="Add ${childName}" linkStyle="button"
   		            view="/${childEditPageName}.xhtml" propagation="begin">
   	            	<f:param name="${componentName}Id" 
   	            	    value="${'#'}{${homeName}.instance.${pojo.identifierProperty.name}}"/>
  
  
  
  1.2       +3 -3      jboss-seam/seam-gen/view/view.xhtml.ftl
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: view.xhtml.ftl
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/view/view.xhtml.ftl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- view.xhtml.ftl	7 Nov 2006 09:12:21 -0000	1.1
  +++ view.xhtml.ftl	8 Nov 2006 03:09:53 -0000	1.2
  @@ -109,7 +109,7 @@
   </#foreach>
                  <h:column>
                      <f:facet name="header">action</f:facet>
  -		           <s:link id="${parentName}" value="View" view="/${parentPageName}.xhtml">
  +		           <s:link id="view${parentName}" value="View" view="/${parentPageName}.xhtml">
   		               <f:param name="${parentName}Id" value="${'#'}{${parentName}.${parentPojo.identifierProperty.name}}"/>
   		           </s:link>
                  </h:column>
  @@ -139,14 +139,14 @@
   </#foreach>
               <h:column>
                   <f:facet name="header">action</f:facet>
  -		        <s:link id="${childName}" value="Select" view="/${childPageName}.xhtml">
  +		        <s:link id="select${childName}" value="Select" view="/${childPageName}.xhtml">
   		            <f:param name="${childName}Id" value="${'#'}{${childName}.${childPojo.identifierProperty.name}}"/>
   		        </s:link>
               </h:column>
             </h:dataTable>
   
   		    <div class="actionButtons">
  -		        <s:link id="add" value="Add ${childName}" linkStyle="button"
  +		        <s:link id="add${childName}" value="Add ${childName}" linkStyle="button"
   		            view="/${childEditPageName}.xhtml" propagation="begin">
   	            	<f:param name="${componentName}Id" 
   	            	    value="${'#'}{${homeName}.instance.${pojo.identifierProperty.name}}"/>
  
  
  



More information about the jboss-cvs-commits mailing list