You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/12/09 22:58:58 UTC

svn commit: r1044140 - /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/

Author: lu4242
Date: Thu Dec  9 21:58:57 2010
New Revision: 1044140

URL: http://svn.apache.org/viewvc?rev=1044140&view=rev
Log:
fix examples because s:fieldset was moved to tomahawk core (now it is t:fieldset)

Modified:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fieldset.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupCommandLink.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataScroller.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataTable.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupLoadingMessage.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupMultiple.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupOnChange.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggerPattern.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggers.jsp
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupProcessComponents.jsp

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fieldset.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fieldset.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fieldset.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/fieldset.jsp Thu Dec  9 21:58:57 2010
@@ -30,7 +30,7 @@
 <body>
   	<f:view>	
 		<h:form>
-			<s:fieldset legend="FieldSet">
+			<t:fieldset legend="FieldSet">
 				<h:outputLabel for="input1" value="Input1: "/>
 				<h:inputText id="input1"/>
 				<t:htmlTag value="br"/>
@@ -40,7 +40,7 @@
 				<h:outputLabel for="input3" value="Input3: "/>
 				<h:inputText id="input3"/>
 				<s:focus id="focus" for="input2" />
-			</s:fieldset>
+			</t:fieldset>
 		</h:form>
   	</f:view>	
 </body>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupCommandLink.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupCommandLink.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupCommandLink.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupCommandLink.jsp Thu Dec  9 21:58:57 2010
@@ -63,14 +63,14 @@ seconds since last page refresh.
             </t:dataList>
         </s:pprPanelGroup>
 
-        <s:fieldset legend="about this example">
+        <t:fieldset legend="about this example">
             <f:verbatim>
                  <br />
                  <br />
                 This example demonstrates that also actions can be invoked via AJAX <br />
                 when using PPR.
             </f:verbatim>
-        </s:fieldset>
+        </t:fieldset>
     </h:form>
 
 

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataScroller.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataScroller.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataScroller.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataScroller.jsp Thu Dec  9 21:58:57 2010
@@ -121,7 +121,7 @@ seconds since last page refresh.
                 </s:pprPanelGroup>
             </h:panelGrid>
 
-            <s:fieldset legend="about this example">
+            <t:fieldset legend="about this example">
          <f:verbatim>
              <br />
              <br />
@@ -142,7 +142,7 @@ seconds since last page refresh.
              page the table could also be placed inside a naming container <br />
              like f:subview.
         </f:verbatim>
-    </s:fieldset>
+    </t:fieldset>
     </h:form>
 
 

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataTable.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataTable.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataTable.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupDataTable.jsp Thu Dec  9 21:58:57 2010
@@ -91,7 +91,7 @@ seconds since last page refresh.
             </f:facet>
         </t:dataTable>
 
-        <s:fieldset legend="about this example">
+        <t:fieldset legend="about this example">
             <f:verbatim>
                  <br />
                  <br />
@@ -99,7 +99,7 @@ seconds since last page refresh.
                 (in the table footer) how a component not easily reachable via id-references can be manually
                 added to the list of refreshed components on the server.
             </f:verbatim>
-        </s:fieldset>
+        </t:fieldset>
     </h:form>
 
 

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupLoadingMessage.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupLoadingMessage.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupLoadingMessage.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupLoadingMessage.jsp Thu Dec  9 21:58:57 2010
@@ -62,7 +62,7 @@ seconds since last page refresh.
 			</s:pprPanelGroup>
 		</h:panelGrid>
 
-        <s:fieldset legend="about this example">
+        <t:fieldset legend="about this example">
             <f:verbatim>
                 <br/>
                 <br/>
@@ -73,7 +73,7 @@ seconds since last page refresh.
                 This example shows a loading message while executing a 4 seconds  <br/>
                 timeout within the called action.    <br/>
             </f:verbatim>
-        </s:fieldset>
+        </t:fieldset>
     </h:form>
 
 </f:view>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupMultiple.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupMultiple.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupMultiple.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupMultiple.jsp Thu Dec  9 21:58:57 2010
@@ -72,7 +72,7 @@ seconds since last page refresh.
 				<h:outputText value="#{pprExampleBean.textField}" />
 			</s:pprPanelGroup>
         </h:panelGrid>
-        <s:fieldset legend="about this example">
+        <t:fieldset legend="about this example">
             <f:verbatim>
                 <br />
                 <br />
@@ -81,7 +81,7 @@ seconds since last page refresh.
                 how multiple partialTriggers can be used in more than one <br />
                 pprPanelGroup.
             </f:verbatim>
-        </s:fieldset>
+        </t:fieldset>
     </h:form>
 
 </f:view>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupOnChange.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupOnChange.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupOnChange.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupOnChange.jsp Thu Dec  9 21:58:57 2010
@@ -84,7 +84,7 @@ seconds since last page refresh.
 			</s:pprPanelGroup>            
         </h:panelGrid>
 
-        <s:fieldset legend="about this example">
+        <t:fieldset legend="about this example">
          <f:verbatim>
              <br />
              <br />
@@ -97,7 +97,7 @@ seconds since last page refresh.
             and validation, so that a failed conversion or validation won't hinder the AJAXified part of the
             page to redisplay.
         </f:verbatim>
-    </s:fieldset>
+    </t:fieldset>
 
     </h:form>
 

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggerPattern.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggerPattern.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggerPattern.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggerPattern.jsp Thu Dec  9 21:58:57 2010
@@ -65,7 +65,7 @@ seconds since last page refresh.
 			</s:pprPanelGroup>
 		</h:panelGrid>
 	</h:form>
-    <s:fieldset legend="about this example">
+    <t:fieldset legend="about this example">
          <f:verbatim>
              <br />
              <br />
@@ -82,7 +82,7 @@ seconds since last page refresh.
              in the pprPanelGroup and so all of them trigger AJAX updates  <br />
              of the group.
         </f:verbatim>
-    </s:fieldset>
+    </t:fieldset>
 </f:view>
 
 <%@include file="inc/page_footer.jsp"%>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggers.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggers.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggers.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupPartialTriggers.jsp Thu Dec  9 21:58:57 2010
@@ -85,7 +85,7 @@ seconds since last page refresh.
             <h:commandLink id="normalLinkGoingHome" value="Normal Submit with Link going home" action="home"/>
                         
         </h:panelGrid>
-        <s:fieldset legend="about this example">
+        <t:fieldset legend="about this example">
             <f:verbatim>
                 <br />
                 <br />
@@ -97,7 +97,7 @@ seconds since last page refresh.
                 which would normally cause a submit ) an AJAX request is performed  <br />
                 which updates all components within the pprPanelGroup  <br />
             </f:verbatim>
-        </s:fieldset>
+        </t:fieldset>
     </h:form>
 
 </f:view>

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupProcessComponents.jsp
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupProcessComponents.jsp?rev=1044140&r1=1044139&r2=1044140&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupProcessComponents.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/pprPanelGroupProcessComponents.jsp Thu Dec  9 21:58:57 2010
@@ -87,7 +87,7 @@ function localDomUpdateFunction(formNode
 </script>
         </f:verbatim>
 
-        <s:fieldset legend="about this example">
+        <t:fieldset legend="about this example">
             <f:verbatim>
                 <br/>
                 Both input fields in this form are required. Normally a PPR request will fail as long as
@@ -104,7 +104,7 @@ function localDomUpdateFunction(formNode
                 Also notice that a user defined java script function is used to read the ppr response and
                 update the dom as required.
             </f:verbatim>
-        </s:fieldset>
+        </t:fieldset>
     </h:form>
 
     <h:messages id="messages" />