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 2016/04/29 11:54:23 UTC

svn commit: r1741600 - in /myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content: 20-component/080-sheet/00/ 20-component/080-sheet/01/ 20-component/080-sheet/02/ 20-component/080-sheet/03/ 30-concept/22-theme/ 30-concept/51-f...

Author: lofwyr
Date: Fri Apr 29 09:54:23 2016
New Revision: 1741600

URL: http://svn.apache.org/viewvc?rev=1741600&view=rev
Log:
TOBAGO-1544: Revise Demo Application for Tobago 3.0 
[developed with hnoeth]

Removed:
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/080-sheet/00/
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/080-sheet/01/
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/080-sheet/02/
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/080-sheet/03/
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/22-theme/
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/55-suggest/
Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/51-for-each/for-each.xhtml
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/65-accessKey/accessKey.xhtml

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/51-for-each/for-each.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/51-for-each/for-each.xhtml?rev=1741600&r1=1741599&r2=1741600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/51-for-each/for-each.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/51-for-each/for-each.xhtml Fri Apr 29 09:54:23 2016
@@ -16,6 +16,7 @@
 -->
 
 <ui:composition template="/main.xhtml"
+                xmlns="http://www.w3.org/1999/xhtml"
                 xmlns:tc="http://myfaces.apache.org/tobago/component"
                 xmlns:ui="http://java.sun.com/jsf/facelets"
                 xmlns:c="http://java.sun.com/jsp/jstl/core">
@@ -27,7 +28,7 @@
     <tc:form>
       <tc:in label="Name" value="#{forEachController.name}" required="true"/>
       <tc:in label="Length (km)" value="#{forEachController.length}" required="true" markup="number"/>
-      <tc:in label="Discharge (m^3/s)" value="#{forEachController.discharge}" required="true"/>
+      <tc:in label="Discharge (m³/s)" value="#{forEachController.discharge}" required="true"/>
       <tc:button label="Add" action="#{forEachController.addNewRiver}" defaultCommand="true"/>
     </tc:form>
     <tc:form>
@@ -40,7 +41,7 @@
       <c:forEach items="#{forEachController.rivers}" var="river">
         <tc:box label="#{river.name}">
           <tc:out label="Length" value="#{river.length} km" markup="number"/>
-          <tc:out label="Discharge" value="#{river.discharge} m^3/s" markup="number"/>
+          <tc:out label="Discharge" value="#{river.discharge} m³/s" markup="number"/>
         </tc:box>
       </c:forEach>
     </tc:segmentLayout>
@@ -51,7 +52,7 @@
       <ui:repeat value="#{forEachController.rivers}" var="river">
         <tc:box label="#{river.name}">
           <tc:out label="Length" value="#{river.length} km" markup="number"/>
-          <tc:out label="Discharge" value="#{river.discharge} m^3/s" markup="number"/>
+          <tc:out label="Discharge" value="#{river.discharge} m³/s" markup="number"/>
         </tc:box>
       </ui:repeat>
     </tc:segmentLayout>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/65-accessKey/accessKey.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/65-accessKey/accessKey.xhtml?rev=1741600&r1=1741599&r2=1741600&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/65-accessKey/accessKey.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/65-accessKey/accessKey.xhtml Fri Apr 29 09:54:23 2016
@@ -82,6 +82,9 @@
   </tc:section>
 
   <tc:section label="Label">
-    TODO
+    <tc:label value="Test" accessKey="e" for="@auto"/> (todo: fix, this is because of the change, that the local root element has now the clientId, need ::filed suffix)
+    <tc:in />
+    <tc:in label="Test" accessKey="s" />
+    <tc:selectBooleanCheckbox label="Test" accessKey="s" />
   </tc:section>
 </ui:composition>