You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2015/04/08 16:21:04 UTC

svn commit: r1672093 [2/2] - in /myfaces/tobago/trunk: ./ src/docbook/ tobago-example/tobago-example-addressbook-cdi/src/main/webapp/ tobago-example/tobago-example-addressbook-cdi/src/main/webapp/addressbook/ tobago-example/tobago-example-addressbook-c...

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/in/in.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/in/in.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/in/in.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/in/in.xhtml Wed Apr  8 14:21:03 2015
@@ -35,7 +35,7 @@
 
     <tc:button label="submit"/>
 
-    <tc:cell/>
+    <tc:panel/>
 
   </tc:page>
 </f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/label/label.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/label/label.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/label/label.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/label/label.xhtml Wed Apr  8 14:21:03 2015
@@ -35,11 +35,11 @@
     <f:facet name="layout">
     <tc:gridLayout columns="170px;1*" rows="50px" border="0" />
     </f:facet>
-    <tc:cell>
+    <tc:panel>
     <tc:label value="Very very very very long label that is very long">
         <tc:out value="XXX"/>
       </tc:label>
-    </tc:cell>
+    </tc:panel>
     </tc:panel>
 
   </tc:page>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/popup/z-index.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/popup/z-index.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/popup/z-index.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/popup/z-index.xhtml Wed Apr  8 14:21:03 2015
@@ -290,9 +290,9 @@
       <tc:gridLayout columns="*;*"/>
     </f:facet>
     <tx:selectBooleanCheckbox label="1st Popup Modal" value="#{zIndex.modal1}" id="modal1st"/>
-    <tc:cell/>
+    <tc:panel/>
     <tx:selectBooleanCheckbox label="2nd Popup Modal" value="#{zIndex.modal2}"/>
-    <tc:cell/>
+    <tc:panel/>
   </tc:panel>
   <tc:panel>
     <f:facet name="layout">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/resource/tobago-694.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/resource/tobago-694.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/resource/tobago-694.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/resource/tobago-694.xhtml Wed Apr  8 14:21:03 2015
@@ -38,7 +38,7 @@
 
     <tc:button label="submit" action="#{reload.isReload}"/>
 
-    <tc:cell/>
+    <tc:panel/>
 
   </tc:page>
 </f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectItem/type-of-literals.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectItem/type-of-literals.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectItem/type-of-literals.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectItem/type-of-literals.xhtml Wed Apr  8 14:21:03 2015
@@ -27,9 +27,10 @@
       <tc:gridLayout rows="auto;80px;80px;auto;*" columns="4*;*"/>
     </f:facet>
 
-    <tc:cell spanX="2">
+    <tc:panel>
+      <tc:gridLayoutConstraint columnSpan="2"/>
       <tc:messages/>
-    </tc:cell>
+    </tc:panel>
 
     <tx:selectOneListbox value="#{selectItemModel.number}" label="Model: int" labelWidth="160px">
       <f:selectItem itemValue="1" itemLabel="f:selectItem 1 (literal), works not with JSF 1.1"/>
@@ -49,10 +50,12 @@
 
     <tc:in readonly="true" value="#{selectItemModel.currency}"/>
 
-    <tc:cell/>
+    <tc:panel/>
     <tc:button label="submit"/>
 
-    <tc:cell spanX="2"/>
+    <tc:panel>
+      <tc:gridLayoutConstraint columnSpan="2"/>
+    </tc:panel>
 
   </tc:page>
 </f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/currency.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/currency.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/currency.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/currency.xhtml Wed Apr  8 14:21:03 2015
@@ -42,7 +42,7 @@
 
     <tc:button label="submit"/>
 
-    <tc:cell/>
+    <tc:panel/>
     
   </tc:page>
 </f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-with-constraints.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-with-constraints.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-with-constraints.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-with-constraints.xhtml Wed Apr  8 14:21:03 2015
@@ -133,9 +133,9 @@
     </tc:image>
 
     <!-- fixme: this filler is not nice, should work automatically -->
-    <tc:cell>
+    <tc:panel>
       <tc:gridLayoutConstraint width="100px" height="200px"/>
-    </tc:cell>
+    </tc:panel>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-without-constraints.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-without-constraints.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-without-constraints.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/type/measure-image-without-constraints.xhtml Wed Apr  8 14:21:03 2015
@@ -103,9 +103,9 @@
     </tc:image>
 
     <!-- fixme: this filler is not nice, should work automatically -->
-    <tc:cell>
+    <tc:panel>
       <tc:gridLayoutConstraint width="100px" height="200px"/>
-    </tc:cell>
+    </tc:panel>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/fileIntoCondition.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/fileIntoCondition.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/fileIntoCondition.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/fileIntoCondition.xhtml Wed Apr  8 14:21:03 2015
@@ -65,7 +65,7 @@
 
       <tx:in label="Folder"/>
 
-      <tc:cell/>
+      <tc:panel/>
 
     </tc:panel>
     <!--
@@ -74,7 +74,7 @@
             <tc:gridLayout columns="*;auto;auto;auto;auto"/>
           </f:facet>
 
-          <tc:cell/>
+          <tc:panel/>
           <tfs:wizardPrevious wizard="${w}" label="Vorherige"/>
           <tfs:wizardNext wizard="${w}" label="Nächste" action="finish"/>
           <tfs:wizardFinish wizard="${w}" label="Fertig"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/filter.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/filter.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/filter.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/filter.xhtml Wed Apr  8 14:21:03 2015
@@ -68,7 +68,7 @@
               <tc:gridLayout columns="*;auto;auto;auto;auto"/>
             </f:facet>
 
-            <tc:cell/>
+            <tc:panel/>
             <tfs:wizardPrevious wizard="#{controller.wizard}" label="Vorherige"/>
             <tfs:wizardNext wizard="#{controller.wizard}" label="Nächste" action="${controller.createFilter}"/>
             <tfs:wizardFinish wizard="#{controller.wizard}" label="Fertig"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/finish.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/finish.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/finish.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/finish.xhtml Wed Apr  8 14:21:03 2015
@@ -49,7 +49,7 @@
       </f:facet>
 
       <tc:out value="Finish"/>
-      <tc:cell/>
+      <tc:panel/>
 
     </tc:panel>
     <!--
@@ -58,7 +58,7 @@
               <tc:gridLayout columns="*;auto;auto;auto;auto"/>
             </f:facet>
 
-            <tc:cell/>
+            <tc:panel/>
             <tfs:wizardPrevious wizard="${w}" label="Vorherige"/>
             <tfs:wizardNext wizard="${w}" label="Nächste"/>
             <tfs:wizardFinish wizard="${w}" label="Fertig"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/forwardCondition.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/forwardCondition.xhtml?rev=1672093&r1=1672092&r2=1672093&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/forwardCondition.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/tf/wizard/navi/forwardCondition.xhtml Wed Apr  8 14:21:03 2015
@@ -59,7 +59,7 @@
               <tc:gridLayout columns="*;auto;auto;auto;auto"/>
             </f:facet>
 
-            <tc:cell/>
+            <tc:panel/>
             <tfs:wizardPrevious wizard="${w}" label="Vorherige"/>
             <tfs:wizardNext wizard="${w}" label="Nächste" action="finish"/>
             <tfs:wizardFinish wizard="${w}" label="Fertig"/>