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/10/27 09:55:42 UTC

svn commit: r1766798 [3/3] - in /myfaces/tobago/trunk: tobago-core/src/main/java/org/apache/myfaces/tobago/facelets/extension/ tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/extension/ tobago-example/tobago-example-demo/src/main/we...

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectBooleanCheckbox/selectBooleanCheckbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectBooleanCheckbox/selectBooleanCheckbox.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectBooleanCheckbox/selectBooleanCheckbox.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectBooleanCheckbox/selectBooleanCheckbox.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -38,43 +37,43 @@
     <tc:label value="tx with item label"/>
 
     <tc:selectBooleanCheckbox id="n1" value="true" label="normal"/>
-    <tx:selectBooleanCheckbox id="n2" value="true" label="normal"/>
-    <tx:selectBooleanCheckbox id="n3" value="true" label="normal" itemLabel="item label"/>
+    <tc:selectBooleanCheckbox id="n2" value="true" label="normal"/>
+    <tc:selectBooleanCheckbox id="n3" value="true" label="normal" itemLabel="item label"/>
 
     <tc:selectBooleanCheckbox id="r1" value="false" label="readonly" readonly="true"/>
-    <tx:selectBooleanCheckbox id="r2" value="false" label="readonly" readonly="true"/>
-    <tx:selectBooleanCheckbox id="r3" value="false" label="readonly" readonly="true" itemLabel="item label"/>
+    <tc:selectBooleanCheckbox id="r2" value="false" label="readonly" readonly="true"/>
+    <tc:selectBooleanCheckbox id="r3" value="false" label="readonly" readonly="true" itemLabel="item label"/>
 
     <tc:selectBooleanCheckbox id="d1" value="true" label="disabled" disabled="true"/>
-    <tx:selectBooleanCheckbox id="d2" value="true" label="disabled" disabled="true"/>
-    <tx:selectBooleanCheckbox id="d3" value="true" label="disabled" disabled="true" itemLabel="item label"/>
+    <tc:selectBooleanCheckbox id="d2" value="true" label="disabled" disabled="true"/>
+    <tc:selectBooleanCheckbox id="d3" value="true" label="disabled" disabled="true" itemLabel="item label"/>
 
     <tc:selectBooleanCheckbox id="t1" value="false" label="tip" tip="tip"/>
-    <tx:selectBooleanCheckbox id="t2" value="false" label="tip" tip="tip"/>
-    <tx:selectBooleanCheckbox id="t3" value="false" label="tip" tip="tip" itemLabel="item label"/>
+    <tc:selectBooleanCheckbox id="t2" value="false" label="tip" tip="tip"/>
+    <tc:selectBooleanCheckbox id="t3" value="false" label="tip" tip="tip" itemLabel="item label"/>
 
     <tc:selectBooleanCheckbox id="e1" value="true" label="escape &lt;hr/>"/>
-    <tx:selectBooleanCheckbox id="e2" value="true" label="escape &lt;hr/>"/>
-    <tx:selectBooleanCheckbox id="e3" value="true" label="escape &lt;hr/>" itemLabel="item label &lt;hr/>"/>
+    <tc:selectBooleanCheckbox id="e2" value="true" label="escape &lt;hr/>"/>
+    <tc:selectBooleanCheckbox id="e3" value="true" label="escape &lt;hr/>" itemLabel="item label &lt;hr/>"/>
 
     <tc:selectBooleanCheckbox id="i1" value="#{selectBooleanCheckboxBean.value0}" label="edit"/>
-    <tx:selectBooleanCheckbox id="i2" value="#{selectBooleanCheckboxBean.value1}" label="edit"/>
-    <tx:selectBooleanCheckbox id="i3" value="#{selectBooleanCheckboxBean.value2}" label="edit" itemLabel="item label"/>
+    <tc:selectBooleanCheckbox id="i2" value="#{selectBooleanCheckboxBean.value1}" label="edit"/>
+    <tc:selectBooleanCheckbox id="i3" value="#{selectBooleanCheckboxBean.value2}" label="edit" itemLabel="item label"/>
 
     <tc:selectBooleanCheckbox id="q1" label="required" required="true"/>
-    <tx:selectBooleanCheckbox id="q2" label="required" required="true"/>
-    <tx:selectBooleanCheckbox id="q3" label="required" required="true" itemLabel="item label"/>
+    <tc:selectBooleanCheckbox id="q2" label="required" required="true"/>
+    <tc:selectBooleanCheckbox id="q3" label="required" required="true" itemLabel="item label"/>
 
     <tc:selectBooleanCheckbox id="b1" value="#{selectBooleanCheckboxBean.required0}" label="required/edit"
                               required="true"/>
-    <tx:selectBooleanCheckbox id="b2" value="#{selectBooleanCheckboxBean.required1}" label="required/edit"
+    <tc:selectBooleanCheckbox id="b2" value="#{selectBooleanCheckboxBean.required1}" label="required/edit"
                               required="true"/>
-    <tx:selectBooleanCheckbox id="b3" value="#{selectBooleanCheckboxBean.required2}" label="required/edit"
+    <tc:selectBooleanCheckbox id="b3" value="#{selectBooleanCheckboxBean.required2}" label="required/edit"
                               required="true" itemLabel="item label"/>
 
     <tc:selectBooleanCheckbox id="x1"/>
-    <tx:selectBooleanCheckbox id="x2"/>
-    <tx:selectBooleanCheckbox id="x3"/>
+    <tc:selectBooleanCheckbox id="x2"/>
+    <tc:selectBooleanCheckbox id="x3"/>
 
     <tc:button label="submit"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox-layout.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox-layout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox-layout.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -35,10 +34,10 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyCheckbox>
-    <tx:selectManyCheckbox label="normal" fieldId="s2">
+    <tc:selectManyCheckbox label="normal" fieldId="s2">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyCheckbox>
+    </tc:selectManyCheckbox>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyCheckbox/selectManyCheckbox.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -40,55 +39,55 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyCheckbox>
-    <tx:selectManyCheckbox label="normal">
+    <tc:selectManyCheckbox label="normal">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyCheckbox>
+    </tc:selectManyCheckbox>
 
     <tc:selectManyCheckbox readonly="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyCheckbox>
-    <tx:selectManyCheckbox readonly="true" label="readonly">
+    <tc:selectManyCheckbox readonly="true" label="readonly">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyCheckbox>
+    </tc:selectManyCheckbox>
 
     <tc:selectManyCheckbox disabled="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyCheckbox>
-    <tx:selectManyCheckbox disabled="true" label="disabled">
+    <tc:selectManyCheckbox disabled="true" label="disabled">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyCheckbox>
+    </tc:selectManyCheckbox>
 
     <tc:selectManyCheckbox tip="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyCheckbox>
-    <tx:selectManyCheckbox tip="tip" label="tip">
+    <tc:selectManyCheckbox tip="tip" label="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyCheckbox>
+    </tc:selectManyCheckbox>
 
     <tc:selectManyCheckbox inline="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyCheckbox>
-    <tx:selectManyCheckbox inline="true" label="inline">
+    <tc:selectManyCheckbox inline="true" label="inline">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyCheckbox>
+    </tc:selectManyCheckbox>
 
     <tc:selectManyCheckbox required="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyCheckbox>
-    <tx:selectManyCheckbox required="true" label="required">
+    <tc:selectManyCheckbox required="true" label="required">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyCheckbox>
+    </tc:selectManyCheckbox>
 
 
     <tc:button label="submit"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-layout.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-layout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-layout.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -35,10 +34,10 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyListbox>
-    <tx:selectManyListbox label="normal" fieldId="s2">
+    <tc:selectManyListbox label="normal" fieldId="s2">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-value.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-value.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-value.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox-value.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page>
@@ -35,41 +34,41 @@
 
     <tc:label value="&lt;tx:selectManyListbox>"/>
 
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringList}" label="list of strings">
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringList}" label="list of strings">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringArray}" label="array of strings">
+    </tc:selectManyListbox>
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringArray}" label="array of strings">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringSet}" label="set of strings">
+    </tc:selectManyListbox>
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringSet}" label="set of strings">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringCollection}" label="collection of strings">
+    </tc:selectManyListbox>
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringCollection}" label="collection of strings">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:label value="&lt;tx:selectManyListbox> width java.util.Currency as value"/>
 
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringList}" label="list of currencies">
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringList}" label="list of currencies">
       <tc:selectItems value="#{selectManyListboxBean.currencyItems}"
                       var="currency" itemValue="#{currency.currencyCode}" itemLabel="#{currency.displayName}"/>
-    </tx:selectManyListbox>
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringArray}" label="array of currencies">
+    </tc:selectManyListbox>
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringArray}" label="array of currencies">
       <tc:selectItems value="#{selectManyListboxBean.currencyItems}"
                       var="currency" itemValue="#{currency.currencyCode}" itemLabel="#{currency.displayName}"/>
-    </tx:selectManyListbox>
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringSet}" label="set of currencies">
+    </tc:selectManyListbox>
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringSet}" label="set of currencies">
       <tc:selectItems value="#{selectManyListboxBean.currencyItems}"
                       var="currency" itemValue="#{currency.currencyCode}" itemLabel="#{currency.displayName}"/>
-    </tx:selectManyListbox>
-    <tx:selectManyListbox value="#{selectManyListboxBean.stringCollection}" label="collection of currencies">
+    </tc:selectManyListbox>
+    <tc:selectManyListbox value="#{selectManyListboxBean.stringCollection}" label="collection of currencies">
       <tc:selectItems value="#{selectManyListboxBean.currencyItems}"
                       var="currency" itemValue="#{currency.currencyCode}" itemLabel="#{currency.displayName}"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:button label="submit"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyListbox/selectManyListbox.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -40,46 +39,46 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyListbox>
-    <tx:selectManyListbox label="normal">
+    <tc:selectManyListbox label="normal">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:selectManyListbox readonly="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyListbox>
-    <tx:selectManyListbox readonly="true" label="readonly">
+    <tc:selectManyListbox readonly="true" label="readonly">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:selectManyListbox disabled="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyListbox>
-    <tx:selectManyListbox disabled="true" label="disabled">
+    <tc:selectManyListbox disabled="true" label="disabled">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:selectManyListbox tip="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyListbox>
-    <tx:selectManyListbox tip="tip" label="tip">
+    <tc:selectManyListbox tip="tip" label="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:selectManyListbox required="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyListbox>
-    <tx:selectManyListbox required="true" label="required">
+    <tc:selectManyListbox required="true" label="required">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyListbox>
+    </tc:selectManyListbox>
 
     <tc:button label="submit"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-layout.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-layout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-layout.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -35,10 +34,10 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyShuttle>
-    <tx:selectManyShuttle label="normal" fieldId="s2">
+    <tc:selectManyShuttle label="normal" fieldId="s2">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyShuttle>
+    </tc:selectManyShuttle>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-value.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-value.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-value.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle-value.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -61,7 +60,7 @@
 
     <tc:button label="submit" id="submit"/>
 
-    <tx:in label="on server" value="#{shuttle.result}" readonly="true" fieldId="valueOnServer"/>
+    <tc:in label="on server" value="#{shuttle.result}" readonly="true" fieldId="valueOnServer"/>
 
   </tc:page>
 </f:view>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectManyShuttle/selectManyShuttle.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -40,46 +39,46 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyShuttle>
-    <tx:selectManyShuttle label="normal">
+    <tc:selectManyShuttle label="normal">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyShuttle>
+    </tc:selectManyShuttle>
 
     <tc:selectManyShuttle readonly="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyShuttle>
-    <tx:selectManyShuttle readonly="true" label="readonly">
+    <tc:selectManyShuttle readonly="true" label="readonly">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyShuttle>
+    </tc:selectManyShuttle>
 
     <tc:selectManyShuttle disabled="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyShuttle>
-    <tx:selectManyShuttle disabled="true" label="disabled">
+    <tc:selectManyShuttle disabled="true" label="disabled">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyShuttle>
+    </tc:selectManyShuttle>
 
     <tc:selectManyShuttle tip="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyShuttle>
-    <tx:selectManyShuttle tip="tip" label="tip">
+    <tc:selectManyShuttle tip="tip" label="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyShuttle>
+    </tc:selectManyShuttle>
 
     <tc:selectManyShuttle required="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectManyShuttle>
-    <tx:selectManyShuttle required="true" label="required">
+    <tc:selectManyShuttle required="true" label="required">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectManyShuttle>
+    </tc:selectManyShuttle>
 
 
     <tc:button label="submit"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice-layout.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice-layout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice-layout.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -35,10 +34,10 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneChoice>
-    <tx:selectOneChoice value="b" label="normal" fieldId="s2">
+    <tc:selectOneChoice value="b" label="normal" fieldId="s2">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneChoice>
+    </tc:selectOneChoice>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneChoice/selectOneChoice.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -40,48 +39,48 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneChoice>
-    <tx:selectOneChoice value="b" label="normal">
+    <tc:selectOneChoice value="b" label="normal">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneChoice>
+    </tc:selectOneChoice>
 
     <tc:selectOneChoice value="a" readonly="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneChoice>
-    <tx:selectOneChoice value="b" readonly="true" label="readonly">
+    <tc:selectOneChoice value="b" readonly="true" label="readonly">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneChoice>
+    </tc:selectOneChoice>
 
     <tc:selectOneChoice value="a" disabled="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneChoice>
-    <tx:selectOneChoice value="b" disabled="true" label="disabled">
+    <tc:selectOneChoice value="b" disabled="true" label="disabled">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneChoice>
+    </tc:selectOneChoice>
 
     <tc:selectOneChoice value="a" tip="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneChoice>
-    <tx:selectOneChoice value="b" tip="tip" label="tip">
+    <tc:selectOneChoice value="b" tip="tip" label="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneChoice>
+    </tc:selectOneChoice>
 
     <tc:selectOneChoice required="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
       <tc:selectItem itemLabel="&lt;no value>"/>
     </tc:selectOneChoice>
-    <tx:selectOneChoice required="true" label="required">
+    <tc:selectOneChoice required="true" label="required">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
       <tc:selectItem itemLabel="&lt;no value>"/>
-    </tx:selectOneChoice>
+    </tc:selectOneChoice>
     
     <tc:button label="submit"/>
     

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox-layout.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox-layout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox-layout.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -35,10 +34,10 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneListbox>
-    <tx:selectOneListbox value="b" label="normal" fieldId="s2">
+    <tc:selectOneListbox value="b" label="normal" fieldId="s2">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneListbox>
+    </tc:selectOneListbox>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneListbox/selectOneListbox.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -40,46 +39,46 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneListbox>
-    <tx:selectOneListbox value="b" label="normal">
+    <tc:selectOneListbox value="b" label="normal">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneListbox>
+    </tc:selectOneListbox>
 
     <tc:selectOneListbox value="a" readonly="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneListbox>
-    <tx:selectOneListbox value="b" readonly="true" label="readonly">
+    <tc:selectOneListbox value="b" readonly="true" label="readonly">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneListbox>
+    </tc:selectOneListbox>
 
     <tc:selectOneListbox value="a" disabled="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneListbox>
-    <tx:selectOneListbox value="b" disabled="true" label="disabled">
+    <tc:selectOneListbox value="b" disabled="true" label="disabled">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneListbox>
+    </tc:selectOneListbox>
 
     <tc:selectOneListbox value="a" tip="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneListbox>
-    <tx:selectOneListbox value="b" tip="tip" label="tip">
+    <tc:selectOneListbox value="b" tip="tip" label="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneListbox>
+    </tc:selectOneListbox>
 
     <tc:selectOneListbox required="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneListbox>
-    <tx:selectOneListbox required="true" label="required">
+    <tc:selectOneListbox required="true" label="required">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneListbox>
+    </tc:selectOneListbox>
     
     <tc:button label="submit"/>
     

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio-layout.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio-layout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio-layout.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -35,10 +34,10 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneRadio>
-    <tx:selectOneRadio value="b" label="normal" fieldId="s2">
+    <tc:selectOneRadio value="b" label="normal" fieldId="s2">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneRadio>
+    </tc:selectOneRadio>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/selectOneRadio/selectOneRadio.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -40,55 +39,55 @@
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneRadio>
-    <tx:selectOneRadio value="b" label="normal">
+    <tc:selectOneRadio value="b" label="normal">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneRadio>
+    </tc:selectOneRadio>
 
     <tc:selectOneRadio value="a" readonly="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneRadio>
-    <tx:selectOneRadio value="b" readonly="true" label="readonly">
+    <tc:selectOneRadio value="b" readonly="true" label="readonly">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneRadio>
+    </tc:selectOneRadio>
 
     <tc:selectOneRadio value="a" disabled="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneRadio>
-    <tx:selectOneRadio value="b" disabled="true" label="disabled">
+    <tc:selectOneRadio value="b" disabled="true" label="disabled">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneRadio>
+    </tc:selectOneRadio>
 
     <tc:selectOneRadio value="a" tip="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneRadio>
-    <tx:selectOneRadio value="b" tip="tip" label="tip">
+    <tc:selectOneRadio value="b" tip="tip" label="tip">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneRadio>
+    </tc:selectOneRadio>
 
     <tc:selectOneRadio value="a" inline="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneRadio>
-    <tx:selectOneRadio value="b" inline="true" label="inline">
+    <tc:selectOneRadio value="b" inline="true" label="inline">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneRadio>
+    </tc:selectOneRadio>
 
     <tc:selectOneRadio required="true">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
     </tc:selectOneRadio>
-    <tx:selectOneRadio required="true" label="required">
+    <tc:selectOneRadio required="true" label="required">
       <tc:selectItem itemValue="a" itemLabel="A Value"/>
       <tc:selectItem itemValue="b" itemLabel="An Alternative"/>
-    </tx:selectOneRadio>
+    </tc:selectOneRadio>
 
     
     <tc:button label="submit"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label-facet.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label-facet.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label-facet.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label-facet.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-with-label.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-without-label.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-without-label.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-without-label.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/separator/separator-without-label.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-header-footer.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-header-footer.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-header-footer.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-header-footer.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-rows.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-rows.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-rows.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-height-rows.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-width.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-width.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-width.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-auto-width.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-bug-tobago-1090.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-bug-tobago-1090.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-bug-tobago-1090.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-bug-tobago-1090.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-large.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-large.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-large.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-large.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -48,11 +47,11 @@
       <f:facet name="layout">
         <tc:gridLayout columns="2*;*"/>
       </f:facet>
-      <tx:in readonly="true" label="Select 1st row"/>
+      <tc:in readonly="true" label="Select 1st row"/>
       <tc:button label="Run" omit="true">
         <tc:dataAttribute name="clickrow" value="0"/>
       </tc:button>
-      <tx:in readonly="true" label="Select 2nd row"/>
+      <tc:in readonly="true" label="Select 2nd row"/>
       <tc:button label="Run" omit="true">
         <tc:dataAttribute name="clickrow" value="1"/>
       </tc:button>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-reload.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-reload.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-reload.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-reload.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-selector.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-selector.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-selector.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-selector.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns="http://www.w3.org/1999/xhtml">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-simple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-simple.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-simple.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-simple.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-sort.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-unknown-row-count.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-unknown-row-count.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-unknown-row-count.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-unknown-row-count.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-without-columns-definition.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-without-columns-definition.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-without-columns-definition.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/sheet/sheet-without-columns-definition.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/suggest/tx-in-suggest.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/suggest/tx-in-suggest.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/suggest/tx-in-suggest.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/suggest/tx-in-suggest.xhtml Thu Oct 27 09:55:39 2016
@@ -19,8 +19,7 @@
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
     xmlns:ui="http://java.sun.com/jsf/facelets"
-    xmlns:f="http://java.sun.com/jsf/core"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension">
+    xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page>
     <f:facet name="layout">
@@ -28,7 +27,7 @@
     </f:facet>
     <tc:gridLayoutConstraint width="600px" height="300px"/>
 
-    <tx:in value="some value" required="true" label="Suggest"
+    <tc:in value="some value" required="true" label="Suggest"
            tip="test" suggestMethod="#{inputSuggest.inputSuggestItems}"/>
 
   </tc:page>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/client.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/client.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/client.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/client.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:f="http://java.sun.com/jsf/core">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/selectedIndexWithoutSetter.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/selectedIndexWithoutSetter.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/selectedIndexWithoutSetter.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/selectedIndexWithoutSetter.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:f="http://java.sun.com/jsf/core">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/simple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/simple.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/simple.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/simple.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:f="http://java.sun.com/jsf/core">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/tabGroup-layout-1164.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/tabGroup-layout-1164.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/tabGroup-layout-1164.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tabGroup/tabGroup-layout-1164.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/text/textarea-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/text/textarea-layout.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/text/textarea-layout.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/text/textarea-layout.xhtml Thu Oct 27 09:55:39 2016
@@ -19,7 +19,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -32,7 +31,7 @@
     <tc:label value="tx"/>
 
     <tc:textarea value="a" id="s1"/>
-    <tx:textarea value="b" label="normal" fieldId="s2"/>
+    <tc:textarea value="b" label="normal" fieldId="s2"/>
 
     <tc:script file="script/tobago-assert.js"/>
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/time/time.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/time/time.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/time/time.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/time/time.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 
@@ -61,37 +60,37 @@
       </tc:date>
       <tc:in value="for comparison only" markup="error"/>
 
-      <tx:date label="Label">
+      <tc:date label="Label">
         <f:convertDateTime type="time"/>
-      </tx:date>
-      <tx:date label="Label">
+      </tc:date>
+      <tc:date label="Label">
         <f:convertDateTime type="time" pattern="HH:mm:ss"/>
-      </tx:date>
-      <tx:in label="Label" value="for comparison only"/>
+      </tc:date>
+      <tc:in label="Label" value="for comparison only"/>
 
-      <tx:date label="Label" readonly="true">
+      <tc:date label="Label" readonly="true">
         <f:convertDateTime type="time"/>
-      </tx:date>
-      <tx:date label="Label" readonly="true">
+      </tc:date>
+      <tc:date label="Label" readonly="true">
         <f:convertDateTime type="time" pattern="HH:mm:ss"/>
-      </tx:date>
-      <tx:in label="Label" value="for comparison only" readonly="true"/>
+      </tc:date>
+      <tc:in label="Label" value="for comparison only" readonly="true"/>
 
-      <tx:date label="Label" disabled="true">
+      <tc:date label="Label" disabled="true">
         <f:convertDateTime type="time"/>
-      </tx:date>
-      <tx:date label="Label" disabled="true">
+      </tc:date>
+      <tc:date label="Label" disabled="true">
         <f:convertDateTime type="time" pattern="HH:mm:ss"/>
-      </tx:date>
-      <tx:in label="Label" value="for comparison only" disabled="true"/>
+      </tc:date>
+      <tc:in label="Label" value="for comparison only" disabled="true"/>
 
-      <tx:date label="Label" markup="error">
+      <tc:date label="Label" markup="error">
         <f:convertDateTime type="time"/>
-      </tx:date>
-      <tx:date label="Label" markup="error">
+      </tc:date>
+      <tc:date label="Label" markup="error">
         <f:convertDateTime type="time" pattern="HH:mm:ss"/>
-      </tx:date>
-      <tx:in label="Label" value="for comparison only" markup="error"/>
+      </tc:date>
+      <tc:in label="Label" value="for comparison only" markup="error"/>
 
       <tc:panel/>
       <tc:panel/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-command.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-command.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-command.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-command.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-state.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-state.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-state.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-state.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -36,7 +35,7 @@
       </tc:treeNode>
     </tc:tree>
 
-    <tx:in fieldId="in" label="Required" required="true"/>
+    <tc:in fieldId="in" label="Required" required="true"/>
     <tc:panel>
       <f:facet name="layout">
         <tc:gridLayout columns="*;auto;auto"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-value.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-value.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-value.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-select-via-value.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
@@ -37,7 +36,7 @@
       </tc:treeNode>
     </tc:tree>
 
-    <tx:in fieldId="in" label="Required" required="true"/>
+    <tc:in fieldId="in" label="Required" required="true"/>
     <tc:panel>
       <f:facet name="layout">
         <tc:gridLayout columns="*;auto;auto"/>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-show-attributes.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-show-attributes.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-show-attributes.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-show-attributes.xhtml Thu Oct 27 09:55:39 2016
@@ -19,8 +19,7 @@
 
 
 <f:view xmlns:tc="http://myfaces.apache.org/tobago/component"
-        xmlns:tx="http://myfaces.apache.org/tobago/extension"
-        xmlns:ui="http://java.sun.com/jsf/facelets"
+            xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:c="http://java.sun.com/jsp/jstl/core">

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-simple-with-data.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-simple-with-data.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-simple-with-data.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/tree/tree-simple-with-data.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeListbox/treeListbox.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeListbox/treeListbox.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeListbox/treeListbox.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeListbox/treeListbox.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-command.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-command.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-command.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-command.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-simple.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-simple.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-simple.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/treeMenu/treeMenu-simple.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,6 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

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=1766798&r1=1766797&r2=1766798&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 Thu Oct 27 09:55:39 2016
@@ -17,7 +17,6 @@
 -->
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

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=1766798&r1=1766797&r2=1766798&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 Thu Oct 27 09:55:39 2016
@@ -17,7 +17,6 @@
 -->
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:tx="http://myfaces.apache.org/tobago/extension"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:f="http://java.sun.com/jsf/core">
 

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/version/version.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/version/version.xhtml?rev=1766798&r1=1766797&r2=1766798&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/version/version.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/webapp/test/version/version.xhtml Thu Oct 27 09:55:39 2016
@@ -18,7 +18,7 @@
 
 <f:view
     xmlns:tc="http://myfaces.apache.org/tobago/component"
-    xmlns:f="http://java.sun.com/jsf/core" xmlns:tx="http://myfaces.apache.org/tobago/extension">
+    xmlns:f="http://java.sun.com/jsf/core">
 
   <tc:page id="page">
     <tc:gridLayoutConstraint width="700px" height="600px"/>
@@ -39,8 +39,8 @@
     </tc:box>
 
     <tc:box label="From package">
-      <tx:in value="#{version.jsfVersion}" label="JSF Version"/>
-      <tx:in value="#{version.jsfTitle}" label="JSF Title"/>
+      <tc:in value="#{version.jsfVersion}" label="JSF Version"/>
+      <tc:in value="#{version.jsfTitle}" label="JSF Title"/>
     </tc:box>
 
     <tc:script file="script/tobago-assert.js"/>