[seam-commits] Seam SVN: r9103 - trunk/seam-gen/icefaces/view.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon Sep 22 15:41:51 EDT 2008


Author: jguglielmin
Date: 2008-09-22 15:41:51 -0400 (Mon, 22 Sep 2008)
New Revision: 9103

Modified:
   trunk/seam-gen/icefaces/view/edit.xhtml
   trunk/seam-gen/icefaces/view/edit.xhtml.ftl
   trunk/seam-gen/icefaces/view/form.xhtml
   trunk/seam-gen/icefaces/view/home.xhtml
   trunk/seam-gen/icefaces/view/list.xhtml
   trunk/seam-gen/icefaces/view/login.xhtml
   trunk/seam-gen/icefaces/view/query.xhtml
Log:
redo h components into ice components for ICE-3543

Modified: trunk/seam-gen/icefaces/view/edit.xhtml
===================================================================
--- trunk/seam-gen/icefaces/view/edit.xhtml	2008-09-22 18:45:26 UTC (rev 9102)
+++ trunk/seam-gen/icefaces/view/edit.xhtml	2008-09-22 19:41:51 UTC (rev 9103)
@@ -32,15 +32,15 @@
        </ice:panelGroup>
 
         <div class="actionButtons">
-            <h:commandButton id="edit at homeName@save" 
+            <ice:commandButton id="edit at homeName@save" 
                           value="Save" 
                          action="#{@homeName at .persist}"
                        rendered="#{!@homeName at .managed}"/>                   
-            <h:commandButton id="edit at homeName@update" 
+            <ice:commandButton id="edit at homeName@update" 
                           value="Save" 
                          action="#{@homeName at .update}"
                        rendered="#{@homeName at .managed}"/>                  
-            <h:commandButton id="edit at homeName@delete" 
+            <ice:commandButton id="edit at homeName@delete" 
                           value="Delete" 
                          action="#{@homeName at .remove}"
                       immediate="true"

Modified: trunk/seam-gen/icefaces/view/edit.xhtml.ftl
===================================================================
--- trunk/seam-gen/icefaces/view/edit.xhtml.ftl	2008-09-22 18:45:26 UTC (rev 9102)
+++ trunk/seam-gen/icefaces/view/edit.xhtml.ftl	2008-09-22 19:41:51 UTC (rev 9103)
@@ -41,18 +41,18 @@
                   
        <div class="actionButtons">
         
-            <h:commandButton id="save${homeName}" 
+            <ice:commandButton id="save${homeName}" 
                           value="Save" 
                          action="${'#'}{${homeName}.persist}"
                        disabled="${'#'}{!${homeName}.wired}"
                        rendered="${'#'}{!${homeName}.managed}"/>  
                           			  
-            <h:commandButton id="update${homeName}" 
+            <ice:commandButton id="update${homeName}" 
                           value="Save" 
                          action="${'#'}{${homeName}.update}"
                        rendered="${'#'}{${homeName}.managed}"/>
                         			  
-            <h:commandButton id="delete${homeName}" 
+            <ice:commandButton id="delete${homeName}" 
                           value="Delete" 
                          action="${'#'}{${homeName}.remove}"
                       immediate="true"

Modified: trunk/seam-gen/icefaces/view/form.xhtml
===================================================================
--- trunk/seam-gen/icefaces/view/form.xhtml	2008-09-22 18:45:26 UTC (rev 9102)
+++ trunk/seam-gen/icefaces/view/form.xhtml	2008-09-22 19:41:51 UTC (rev 9103)
@@ -33,7 +33,7 @@
         </ice:panelGroup>
 
         <div class="actionButtons">
-            <h:commandButton id="@methodName@" value="@methodName@" 
+            <ice:commandButton id="@methodName@" value="@methodName@" 
                 action="#{@componentName at .@methodName@}"/>     			  
         </div>
     </ice:form>

Modified: trunk/seam-gen/icefaces/view/home.xhtml
===================================================================
--- trunk/seam-gen/icefaces/view/home.xhtml	2008-09-22 18:45:26 UTC (rev 9102)
+++ trunk/seam-gen/icefaces/view/home.xhtml	2008-09-22 19:41:51 UTC (rev 9103)
@@ -5,7 +5,7 @@
                 xmlns:ui="http://java.sun.com/jsf/facelets"
                 xmlns:f="http://java.sun.com/jsf/core"
                 xmlns:h="http://java.sun.com/jsf/html"
-		xmlns:ice="http://www.icesoft.com/icefaces/component"
+		        xmlns:ice="http://www.icesoft.com/icefaces/component"
                 template="layout/template.xhtml">
 
 <ui:define name="body">

Modified: trunk/seam-gen/icefaces/view/list.xhtml
===================================================================
--- trunk/seam-gen/icefaces/view/list.xhtml	2008-09-22 18:45:26 UTC (rev 9102)
+++ trunk/seam-gen/icefaces/view/list.xhtml	2008-09-22 19:41:51 UTC (rev 9103)
@@ -5,7 +5,7 @@
                 xmlns:ui="http://java.sun.com/jsf/facelets"
                 xmlns:f="http://java.sun.com/jsf/core"
                 xmlns:h="http://java.sun.com/jsf/html"
-		xmlns:ice="http://www.icesoft.com/icefaces/component" 
+		        xmlns:ice="http://www.icesoft.com/icefaces/component" 
                 template="layout/template.xhtml">
                        
 <ui:define name="body">

Modified: trunk/seam-gen/icefaces/view/login.xhtml
===================================================================
--- trunk/seam-gen/icefaces/view/login.xhtml	2008-09-22 18:45:26 UTC (rev 9102)
+++ trunk/seam-gen/icefaces/view/login.xhtml	2008-09-22 19:41:51 UTC (rev 9103)
@@ -5,7 +5,7 @@
                 xmlns:ui="http://java.sun.com/jsf/facelets"
                 xmlns:f="http://java.sun.com/jsf/core"
                 xmlns:h="http://java.sun.com/jsf/html"
-		    xmlns:ice="http://www.icesoft.com/icefaces/component"
+		        xmlns:ice="http://www.icesoft.com/icefaces/component"
                 template="layout/template.xhtml">
 
 <ui:define name="body">

Modified: trunk/seam-gen/icefaces/view/query.xhtml
===================================================================
--- trunk/seam-gen/icefaces/view/query.xhtml	2008-09-22 18:45:26 UTC (rev 9102)
+++ trunk/seam-gen/icefaces/view/query.xhtml	2008-09-22 19:41:51 UTC (rev 9103)
@@ -5,7 +5,7 @@
                 xmlns:ui="http://java.sun.com/jsf/facelets"
                 xmlns:f="http://java.sun.com/jsf/core"
                 xmlns:h="http://java.sun.com/jsf/html"
-		xmlns:ice="http://www.icesoft.com/icefaces/component"   
+		        xmlns:ice="http://www.icesoft.com/icefaces/component"   
                 template="layout/template.xhtml">
                        
 <ui:define name="body">




More information about the seam-commits mailing list