[gatein-commits] gatein SVN: r1602 - in components/wsrp/trunk/admin-gui/src/main/webapp/jsf: producer and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Feb 9 21:25:10 EST 2010


Author: wesleyhales
Date: 2010-02-09 21:25:10 -0500 (Tue, 09 Feb 2010)
New Revision: 1602

Modified:
   components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/confirmEraseRegistration.xhtml
   components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
   components/wsrp/trunk/admin-gui/src/main/webapp/jsf/producer/confirmPropDeletion.xhtml
Log:
webui wsrp consumer & producer admin skin

Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/confirmEraseRegistration.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/confirmEraseRegistration.xhtml	2010-02-10 02:07:58 UTC (rev 1601)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/confirmEraseRegistration.xhtml	2010-02-10 02:25:10 UTC (rev 1602)
@@ -26,7 +26,8 @@
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:jbp="http://www.jboss.org/portal"
-             xmlns:c="http://java.sun.com/jstl/core">
+             xmlns:c="http://java.sun.com/jstl/core"
+             xmlns:webui="http://jboss.org/gatein">
 
    <ui:param name="title" value=""/>
    <ui:define name="content">
@@ -51,12 +52,13 @@
             <p class="portlet-class">#{i18n.confirm_delete_registration_proceed}</p>
 
             <h:form id="confirm-erase-form">
-               <h:commandButton id="submit" value="#{i18n.confirm_delete_registration_submit}"
-                                action="#{consumer.eraseLocalRegistration}"
-                                styleClass="portlet-form-button portlet-section-buttonrow"/>
-               <h:commandButton id="cancel" value="#{i18n.confirm_delete_registration_cancel}"
-                                action="configureConsumer"
-                                styleClass="portlet-form-button portlet-section-buttonrow"/>
+
+               <webui:commandButton id="submit" value="#{i18n.confirm_delete_registration_submit}"
+                                   action="eraseLocalRegistration"
+                                   backingBean="#{consumer}"/>
+
+               <webui:commandLink id="cancel" value="#{i18n.confirm_delete_registration_cancel}"
+                                   actionString="configureConsumer"/>
             </h:form>
          </div>
       </div>

Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml	2010-02-10 02:07:58 UTC (rev 1601)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/consumers/consumers.xhtml	2010-02-10 02:25:10 UTC (rev 1602)
@@ -25,7 +25,8 @@
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:ui="http://java.sun.com/jsf/facelets"
              xmlns:h="http://java.sun.com/jsf/html"
-             xmlns:c="http://java.sun.com/jstl/core">
+             xmlns:c="http://java.sun.com/jstl/core"
+             xmlns:webui="http://jboss.org/gatein">
 
    <ui:param name="title" value="#{i18n.consumers_title}"/>
    <ui:param name="showAddConsumer" value="true"/>
@@ -97,21 +98,11 @@
       </h:form>
 
       <h:form>
-         <table class="ActionContainer">
-            <tr>
-               <td>
-                  <div class="ButtonLeft">
-                     <div class="ButtonRight">
-                        <div class="ButtonMiddle">
-                           <h:commandLink id="createConsumerButton" action="#{consumersMgr.reload}"
-                                          value="#{i18n.consumers_table_reload}"/>
-                        </div>
-                     </div>
-                  </div>
-               </td>
-            </tr>
-         </table>
 
+         <webui:commandButton id="createConsumerButton" value="#{i18n.consumers_table_reload}"
+                                   action="reload"
+                                   backingBean="#{consumersMgr}"/>
+
       </h:form>
    </ui:define>
 </ui:decorate>
\ No newline at end of file

Modified: components/wsrp/trunk/admin-gui/src/main/webapp/jsf/producer/confirmPropDeletion.xhtml
===================================================================
--- components/wsrp/trunk/admin-gui/src/main/webapp/jsf/producer/confirmPropDeletion.xhtml	2010-02-10 02:07:58 UTC (rev 1601)
+++ components/wsrp/trunk/admin-gui/src/main/webapp/jsf/producer/confirmPropDeletion.xhtml	2010-02-10 02:25:10 UTC (rev 1602)
@@ -26,7 +26,8 @@
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:jbp="http://www.jboss.org/portal"
-             xmlns:c="http://java.sun.com/jstl/core">
+             xmlns:c="http://java.sun.com/jstl/core"
+             xmlns:webui="http://jboss.org/gatein">
 
    <ui:param name="title" value=""/>
    <ui:define name="content">
@@ -51,11 +52,12 @@
             <p class="portlet-class">#{i18n.confirm_delete_reg_property_proceed}</p>
 
             <h:form id="confirm-prop-del-form">
-               <h:commandButton id="confirm-delete" value="#{i18n.confirm_delete_reg_property_submit}"
-                                action="#{producer.deleteRegistrationProperty}"
-                                styleClass="portlet-form-button portlet-section-buttonrow"/>
-               <h:commandButton id="cancel-delete" value="#{i18n.confirm_delete_reg_property_cancel}" action="producer"
-                                styleClass="portlet-form-button portlet-section-buttonrow"/>
+               <webui:commandButton id="confirm-delete" value="#{i18n.confirm_delete_reg_property_submit}"
+                                   action="deleteRegistrationProperty"
+                                   backingBean="#{producer}"/>
+
+               <webui:commandLink id="cancel-delete" value="#{i18n.confirm_delete_reg_property_cancel}"
+                                   actionString="producer"/>
             </h:form>
          </div>
       </div>



More information about the gatein-commits mailing list