JBoss Rich Faces SVN: r18479 - in root/tests/metamer/trunk/application/src/main/webapp: resources/css and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-08-04 10:24:33 -0400 (Wed, 04 Aug 2010)
New Revision: 18479
Modified:
root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/resources/css/common.ecss
root/tests/metamer/trunk/application/src/main/webapp/resources/script/common.js
root/tests/metamer/trunk/application/src/main/webapp/templates/header.xhtml
root/tests/metamer/trunk/application/src/main/webapp/templates/template.xhtml
Log:
* a4j:log on the page refactored. Now it is rendered all the time but hidden by default. Page for testing log doesn't contain this common log.
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml 2010-08-04 14:24:33 UTC (rev 18479)
@@ -67,5 +67,8 @@
<metamer:attributes value="#{a4jLogBean.attributes}" id="attributes" render="log"/>
</ui:define>
+ <!-- we don't want two logs on the page -->
+ <ui:define name="beforeFooter"></ui:define>
+
</ui:composition>
</html>
\ No newline at end of file
Modified: root/tests/metamer/trunk/application/src/main/webapp/resources/css/common.ecss
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/resources/css/common.ecss 2010-08-04 13:24:25 UTC (rev 18478)
+++ root/tests/metamer/trunk/application/src/main/webapp/resources/css/common.ecss 2010-08-04 14:24:33 UTC (rev 18479)
@@ -31,4 +31,8 @@
ul a.link {
font-size: 16px;
font-weight: bold;
+}
+
+.log-panel {
+ display: none;
}
\ No newline at end of file
Modified: root/tests/metamer/trunk/application/src/main/webapp/resources/script/common.js
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/resources/script/common.js 2010-08-04 13:24:25 UTC (rev 18478)
+++ root/tests/metamer/trunk/application/src/main/webapp/resources/script/common.js 2010-08-04 14:24:33 UTC (rev 18479)
@@ -58,3 +58,15 @@
jQuery('table.attributes').show();
}
+/**
+ * Shows or hides the a4j:log above page footer.
+ */
+function showOrHideLog() {
+ if (jQuery('input[id$=a4jLogCheckbox]').is(':checked')) {
+ jQuery('div.log-panel').show();
+ } else {
+ jQuery('div.log-panel').hide();
+ }
+}
+
+
Modified: root/tests/metamer/trunk/application/src/main/webapp/templates/header.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/templates/header.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
+++ root/tests/metamer/trunk/application/src/main/webapp/templates/header.xhtml 2010-08-04 14:24:33 UTC (rev 18479)
@@ -36,9 +36,8 @@
<h:panelGrid columns="2" width="230px">
<h:outputText id="a4jLogLabel" value="Display log" />
- <h:selectBooleanCheckbox id="a4jLogCheckbox" value="#{richBean.log}">
- <a4j:ajax event="change" execute="@this" render="a4jLogPanel" />
- </h:selectBooleanCheckbox>
+
+ <h:selectBooleanCheckbox id="a4jLogCheckbox" value="false" onchange="showOrHideLog()"/>
<h:outputText id="a4jStatusLabel" value="Status" />
<a4j:status id="a4jStatus">
Modified: root/tests/metamer/trunk/application/src/main/webapp/templates/template.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/templates/template.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
+++ root/tests/metamer/trunk/application/src/main/webapp/templates/template.xhtml 2010-08-04 14:24:33 UTC (rev 18479)
@@ -49,9 +49,11 @@
</div>
- <h:panelGroup id="a4jLogPanel" styleClass="log-panel" layout="block">
- <a4j:log id="a4jLog" height="300px" rendered="#{richBean.log}" level="debug"/>
- </h:panelGroup>
+ <ui:insert name="beforeFooter">
+ <h:panelGroup id="a4jLogPanel" styleClass="log-panel" layout="block">
+ <a4j:log id="a4jLog" height="300px" level="debug"/>
+ </h:panelGroup>
+ </ui:insert>
<div class="footer">
<ui:insert name="footer">
15 years, 1 month
JBoss Rich Faces SVN: r18478 - in root/tests/metamer/trunk/application/src/main/webapp: components/a4jAjax and 27 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-08-04 09:24:25 -0400 (Wed, 04 Aug 2010)
New Revision: 18478
Added:
root/tests/metamer/trunk/application/src/main/webapp/resources/metamer/
Removed:
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/
Modified:
root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/all.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandButton.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandLink.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hGraphicImage.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputSecret.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputText.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputTextarea.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectBooleanCheckbox.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyCheckbox.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyListbox.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyMenu.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneListbox.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneMenu.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneRadio.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/wrapped.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/flash.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/image.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/event-producer.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/nested.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/matrix.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/a4jRepeat.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hGraphicImage.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hSelectBooleanCheckbox.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/scroller.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components1.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components2.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/filtering.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/scroller.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/sorting.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components1.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components2.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/filtering.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/scroller.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/sorting.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/all.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richList/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richList/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/customLook.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/nested.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml
root/tests/metamer/trunk/application/src/main/webapp/resources/metamer/attributes.xhtml
root/tests/metamer/trunk/application/src/main/webapp/resources/metamer/testPageLink.xhtml
Log:
* composite component "attributes" moved from namespace testapp to metamer
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/all.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/all.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/all.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j" xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:demo="http://java.sun.com/jsf/composite/demo">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:demo="http://java.sun.com/jsf/composite/demo">
<ui:composition template="/templates/template.xhtml">
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="all" outcome="all" value="All">
+ <metamer:testPageLink id="all" outcome="all" value="All">
Page that contains <b>a4j:actionListener</b> invoked by type, binding, method and from composite component.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandButton.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandButton.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandButton.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -45,7 +67,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandLink.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandLink.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hCommandLink.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -45,7 +67,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hGraphicImage.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hGraphicImage.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hGraphicImage.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -44,7 +66,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputSecret.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputSecret.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputSecret.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -44,7 +66,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputText.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputText.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputText.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -44,7 +66,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputTextarea.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputTextarea.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hInputTextarea.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -44,7 +66,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectBooleanCheckbox.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectBooleanCheckbox.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectBooleanCheckbox.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -46,7 +68,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyCheckbox.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyCheckbox.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyCheckbox.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -53,7 +75,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyListbox.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyListbox.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyListbox.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -52,7 +74,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyMenu.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyMenu.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectManyMenu.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -52,7 +74,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneListbox.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneListbox.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneListbox.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -51,7 +73,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneMenu.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneMenu.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneMenu.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -52,7 +74,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneRadio.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneRadio.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/hSelectOneRadio.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -52,7 +74,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jAjaxBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -21,7 +21,7 @@
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -29,57 +29,57 @@
<ui:define name="links">
- <ta:testPageLink id="hCommandButton" outcome="hCommandButton" value="Command Button">
+ <metamer:testPageLink id="hCommandButton" outcome="hCommandButton" value="Command Button">
Simple page that contains <b>h:commandButton</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hCommandLink" outcome="hCommandLink" value="Command Link">
+ <metamer:testPageLink id="hCommandLink" outcome="hCommandLink" value="Command Link">
Simple page that contains <b>h:commandLink</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hInputText" outcome="hInputText" value="Input Text">
+ <metamer:testPageLink id="hInputText" outcome="hInputText" value="Input Text">
Simple page that contains <b>h:inputText</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hInputSecret" outcome="hInputSecret" value="Input Secret">
+ <metamer:testPageLink id="hInputSecret" outcome="hInputSecret" value="Input Secret">
Simple page that contains <b>h:inputSecret</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hInputTextarea" outcome="hInputTextarea" value="Input Textarea">
+ <metamer:testPageLink id="hInputTextarea" outcome="hInputTextarea" value="Input Textarea">
Simple page that contains <b>h:inputTextarea</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hGraphicImage" outcome="hGraphicImage" value="Graphic Image">
+ <metamer:testPageLink id="hGraphicImage" outcome="hGraphicImage" value="Graphic Image">
Simple page that contains <b>h:graphicImage</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectManyMenu" outcome="hSelectManyMenu" value="Select Many Menu">
+ <metamer:testPageLink id="hSelectManyMenu" outcome="hSelectManyMenu" value="Select Many Menu">
Simple page that contains <b>h:selectManyMenu</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectManyListbox" outcome="hSelectManyListbox" value="Select Many Listbox">
+ <metamer:testPageLink id="hSelectManyListbox" outcome="hSelectManyListbox" value="Select Many Listbox">
Simple page that contains <b>h:selectManyListbox</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectManyCheckbox" outcome="hSelectManyCheckbox" value="Select Many Checkbox">
+ <metamer:testPageLink id="hSelectManyCheckbox" outcome="hSelectManyCheckbox" value="Select Many Checkbox">
Simple page that contains <b>h:selectManyCheckbox</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectOneMenu" outcome="hSelectOneMenu" value="Select One Menu">
+ <metamer:testPageLink id="hSelectOneMenu" outcome="hSelectOneMenu" value="Select One Menu">
Simple page that contains <b>h:selectOneMenu</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectBooleanCheckbox" outcome="hSelectBooleanCheckbox" value="Select Boolean Checkbox">
+ <metamer:testPageLink id="hSelectBooleanCheckbox" outcome="hSelectBooleanCheckbox" value="Select Boolean Checkbox">
Simple page that contains <b>h:selectBooleanCheckbox</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectOneRadio" outcome="hSelectOneRadio" value="Select One Radio">
+ <metamer:testPageLink id="hSelectOneRadio" outcome="hSelectOneRadio" value="Select One Radio">
Simple page that contains <b>h:selectOneRadio</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectOneListbox" outcome="hSelectOneListbox" value="Select One Listbox">
+ <metamer:testPageLink id="hSelectOneListbox" outcome="hSelectOneListbox" value="Select One Listbox">
Simple page that contains <b>h:selectOneListbox</b> with <b>a4j:ajax</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,13 +30,13 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Page containing <b>a4j:attachQueue</b>, two inputs and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="wrapped" outcome="wrapped" value="Wrapped">
+ <metamer:testPageLink id="wrapped" outcome="wrapped" value="Wrapped">
Page containing <b>a4j:attachQueue</b>, a4j:ajax wrapping two inputs and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -114,11 +114,11 @@
<ui:define name="outOfTemplateAfter">
Attributes for first attach queue (first input)
<br/>
- <ta:attributes value="#{a4jAttachQueueBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jAttachQueueBean.attributes}" id="attributes" />
<br/>
Attributes for second attach queue (second input)
<br/>
- <ta:attributes value="#{a4jAttachQueueBean.attributes2}" id="attributes2" />
+ <metamer:attributes value="#{a4jAttachQueueBean.attributes2}" id="attributes2" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/wrapped.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/wrapped.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jAttachQueue/wrapped.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -97,7 +97,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jAttachQueueBean.attributes1}" id="attributes" />
+ <metamer:attributes value="#{a4jAttachQueueBean.attributes1}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:commandButton</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j" xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -56,7 +78,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jButtonBean.attributes}" id="attributes" render="panel"/>
+ <metamer:attributes value="#{a4jButtonBean.attributes}" id="attributes" render="panel"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:commandLink</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j" xmlns:c="http://java.sun.com/jsp/jstl/core"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -57,7 +79,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jLinkBean.attributes}" id="attributes" render="panel"/>
+ <metamer:attributes value="#{a4jLinkBean.attributes}" id="attributes" render="panel"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:jsFunction</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" >
<ui:composition template="/templates/template.xhtml">
@@ -77,7 +77,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jJSFunctionBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jJSFunctionBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:log</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -42,7 +64,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jLogBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{a4jLogBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/flash.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/flash.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/flash.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j" xmlns:c="http://java.sun.com/jsp/jstl/core"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -41,7 +63,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jMediaOutputBean.attributes}" id="attributes" render="panel"/>
+ <metamer:attributes value="#{a4jMediaOutputBean.attributes}" id="attributes" render="panel"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/image.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/image.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/image.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -76,7 +98,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jMediaOutputBean.attributes}" id="attributes" render="panel"/>
+ <metamer:attributes value="#{a4jMediaOutputBean.attributes}" id="attributes" render="panel"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,13 +30,15 @@
<ui:define name="links">
- <ta:testPageLink id="image" outcome="image" value="Image">
+ <metamer:testPageLink id="image" outcome="image" value="Image">
Simple page that contains <b>a4j:mediaOutput</b> (image) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="flash" outcome="flash" value="Flash">
- Simple page that contains <b>a4j:mediaOutput</b> (flash) and input boxes for all its attributes.
- </ta:testPageLink>
+ <ui:remove>
+ <metamer:testPageLink id="flash" outcome="flash" value="Flash">
+ Simple page that contains <b>a4j:mediaOutput</b> (flash) and input boxes for all its attributes.
+ </metamer:testPageLink>
+ </ui:remove>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:outputPanel</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,8 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp"
- xmlns:c="http://java.sun.com/jsp/jstl/core">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -75,7 +74,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jOutputPanelBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jOutputPanelBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Page that contains <b>a4j:param</b> and inputs for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,8 +22,8 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j" xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:demo="http://java.sun.com/jsf/composite/demo">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -66,7 +66,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jParamBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jParamBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:poll</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -61,7 +83,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jPollBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jPollBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/event-producer.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/event-producer.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/event-producer.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,29 +1,49 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets">
-<ui:composition template="/templates/template.xhtml">
+ <ui:composition template="/templates/template.xhtml">
- <f:metadata>
- <f:event type="preRenderView" listener="#{a4jPushEventProcuder.produceEvent}" />
- </f:metadata>
+ <f:metadata>
+ <f:event type="preRenderView" listener="#{a4jPushEventProcuder.produceEvent}" />
+ </f:metadata>
- <ui:define name="head">
- </ui:define>
+ <ui:define name="head">
+ </ui:define>
- <ui:define name="outOfTemplateBefore">
- </ui:define>
+ <ui:define name="outOfTemplateBefore">
+ </ui:define>
- <ui:define name="component">
- <h:button value="Generate push event" />
- </ui:define>
+ <ui:define name="component">
+ <h:button value="Generate push event" />
+ </ui:define>
- <ui:define name="outOfTemplateAfter">
- </ui:define>
+ <ui:define name="outOfTemplateAfter">
+ </ui:define>
-</ui:composition>
+ </ui:composition>
</html>
\ No newline at end of file
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,13 +30,13 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:push</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="event-producer" outcome="event-producer" value="Event Producer">
+ <metamer:testPageLink id="event-producer" outcome="event-producer" value="Event Producer">
Page that is bind to application bean producing events catched by a4j:push.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -64,7 +86,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jPushBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jPushBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:queue</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jQueue/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -97,7 +97,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jQueueBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jQueueBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,13 +30,13 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:region</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="nested" outcome="nested" value="Nested regions">
+ <metamer:testPageLink id="nested" outcome="nested" value="Nested regions">
Simple page that contains nested <b>a4j:region</b>s.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/nested.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/nested.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/nested.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,8 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j">
<ui:composition template="/templates/template.xhtml">
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" >
<ui:composition template="/templates/template.xhtml">
@@ -98,7 +98,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jRegionBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jRegionBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,13 +30,13 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>a4j:repeat</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="matrix" outcome="matrix" value="Matrix">
+ <metamer:testPageLink id="matrix" outcome="matrix" value="Matrix">
Simple page that contains <b>a4j:repeat</b> rendering a table. Page contains input boxes for all repeat's attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/matrix.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/matrix.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/matrix.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,8 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j" >
<ui:composition template="/templates/template.xhtml">
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -79,7 +79,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{a4jRepeatBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{a4jRepeatBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>h:commandButton</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,28 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j" xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/template.xhtml">
@@ -54,7 +75,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{buttonBean.attributes}" id="attributes" render="panel"/>
+ <metamer:attributes value="#{buttonBean.attributes}" id="attributes" render="panel"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains a <b>rich:componentControl</b> controlling a <b>rich:dataScroller</b> and input boxes for all component control's attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richComponentControl/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,8 +22,8 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
+ xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -76,8 +76,7 @@
<ui:define name="outOfTemplateAfter">
<br/>
-
- <ta:attributes value="#{richComponentControlBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richComponentControlBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/a4jRepeat.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/a4jRepeat.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/a4jRepeat.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -97,7 +97,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richDataGridBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataGridBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hGraphicImage.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hGraphicImage.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hGraphicImage.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -95,7 +95,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richDataGridBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataGridBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hSelectBooleanCheckbox.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hSelectBooleanCheckbox.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/hSelectBooleanCheckbox.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -98,7 +98,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richDataGridBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataGridBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,27 +30,27 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>rich:dataGrid</b> (with model containing capitals) and
input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="scroller" outcome="scroller" value="Data Scroller">
+ <metamer:testPageLink id="scroller" outcome="scroller" value="Data Scroller">
Page that contains <b>rich:dataGrid</b> (with model containing capitals), data
scroller and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hGraphicImage" outcome="hGraphicImage" value="Graphic Image">
+ <metamer:testPageLink id="hGraphicImage" outcome="hGraphicImage" value="Graphic Image">
Page that contains <b>rich:dataGrid</b> (with model containing employees) with <b>h:graphicImage</b> inside it.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="hSelectBooleanCheckbox" outcome="hSelectBooleanCheckbox" value="Select Boolean Checkbox">
+ <metamer:testPageLink id="hSelectBooleanCheckbox" outcome="hSelectBooleanCheckbox" value="Select Boolean Checkbox">
Page that contains <b>rich:dataGrid</b> (with model containing employees) with <b>h:selectBooleanCheckbox</b> inside it.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="a4jRepeat" outcome="a4jRepeat" value="A4J Repeat">
+ <metamer:testPageLink id="a4jRepeat" outcome="a4jRepeat" value="A4J Repeat">
Page that contains <b>rich:dataGrid</b> (with model containing employees) with <b>a4j:repeat</b> inside it.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/scroller.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/scroller.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/scroller.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -147,7 +147,7 @@
<br/><br/>
- <ta:attributes value="#{richDataGridBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataGridBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -93,7 +93,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richDataGridBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataGridBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>rich:dataTable</b> with two <b>rich:dataScroller</b>s and input boxes for all their attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -221,7 +221,7 @@
<br/><br/>
- <ta:attributes value="#{richDataScrollerBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataScrollerBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components1.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components1.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components1.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -172,7 +172,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components2.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components2.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/components2.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -176,7 +176,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/filtering.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/filtering.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/filtering.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich"
xmlns:fn="http://java.sun.com/jsp/jstl/functions">
<ui:composition template="/templates/template.xhtml">
@@ -171,7 +171,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,31 +30,31 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>rich:dataTable</b> (with model containing capitals) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="scroller" outcome="scroller" value="Data Scroller">
+ <metamer:testPageLink id="scroller" outcome="scroller" value="Data Scroller">
Page that contains <b>rich:dataTable</b> (with model containing capitals), data scroller and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="components1" outcome="components1" value="Various Components 1">
+ <metamer:testPageLink id="components1" outcome="components1" value="Various Components 1">
Page that contains <b>rich:dataTable</b> (with model containing employees) and input boxes for all its attributes.
<span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="components2" outcome="components2" value="Various Components 2">
+ <metamer:testPageLink id="components2" outcome="components2" value="Various Components 2">
Page that contains <b>rich:dataTable</b> (with model containing employees) and input boxes for all its attributes.
<span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="sorting" outcome="sorting" value="Table Sorting">
+ <metamer:testPageLink id="sorting" outcome="sorting" value="Table Sorting">
Page that contains sortable <b>rich:dataTable</b> (with model containing capitals) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="filtering" outcome="filtering" value="Table filtering">
+ <metamer:testPageLink id="filtering" outcome="filtering" value="Table filtering">
Page that contains filterable <b>rich:dataTable</b> (with model containing capitals) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/scroller.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/scroller.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/scroller.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -177,7 +177,7 @@
<br/><br/>
- <ta:attributes value="#{richDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -121,7 +121,7 @@
<br/><br/>
- <ta:attributes value="#{richDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/sorting.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/sorting.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/sorting.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -118,7 +118,7 @@
<br/><br/>
- <ta:attributes value="#{richDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components1.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components1.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components1.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -172,7 +172,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components2.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components2.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/components2.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -176,7 +176,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/filtering.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/filtering.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/filtering.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich"
xmlns:fn="http://java.sun.com/jsp/jstl/functions">
<ui:composition template="/templates/template.xhtml">
@@ -171,7 +171,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,31 +30,31 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>rich:extendedDataTable</b> (with model containing capitals) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="scroller" outcome="scroller" value="Data Scroller">
+ <metamer:testPageLink id="scroller" outcome="scroller" value="Data Scroller">
Page that contains <b>rich:extendedDataTable</b> (with model containing capitals), data scroller and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="components1" outcome="components1" value="Various Components 1">
+ <metamer:testPageLink id="components1" outcome="components1" value="Various Components 1">
Page that contains <b>rich:extendedDataTable</b> (with model containing employees) and input boxes for all its attributes.
<span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="components2" outcome="components2" value="Various Components 2">
+ <metamer:testPageLink id="components2" outcome="components2" value="Various Components 2">
Page that contains <b>rich:extendedDataTable</b> (with model containing employees) and input boxes for all its attributes.
<span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="sorting" outcome="sorting" value="Table Sorting">
+ <metamer:testPageLink id="sorting" outcome="sorting" value="Table Sorting">
Page that contains sortable <b>rich:extendedDataTable</b> (with model containing capitals) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="filtering" outcome="filtering" value="Table filtering">
+ <metamer:testPageLink id="filtering" outcome="filtering" value="Table filtering">
Page that contains filterable <b>rich:extendedDataTable</b> (with model containing capitals) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/scroller.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/scroller.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/scroller.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -172,7 +172,7 @@
<br/><br/>
- <ta:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -125,7 +125,7 @@
<br/><br/>
- <ta:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/sorting.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/sorting.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/sorting.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -23,7 +23,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:rich="http://richfaces.org/rich">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -118,7 +118,7 @@
<br/><br/>
- <ta:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richExtendedDataTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/all.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/all.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/all.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,8 +1,28 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
- xmlns:rich="http://richfaces.org/rich">
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="all" outcome="all" value="All">
+ <metamer:testPageLink id="all" outcome="all" value="All">
Page containing all RichFaces client functions.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>rich:jQuery</b> and inputs for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,7 +1,29 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:a4j="http://richfaces.org/a4j"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp" xmlns:misc="http://richfaces.org/misc">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer" xmlns:misc="http://richfaces.org/misc">
<ui:composition template="/templates/template.xhtml">
@@ -64,7 +86,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richJQueryBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{richJQueryBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richList/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richList/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richList/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,10 +30,10 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>rich:list</b> (with model containing capitals) and
input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richList/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richList/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richList/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -87,7 +87,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richListBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richListBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/customLook.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/customLook.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/customLook.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,3 +1,25 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:rich="http://richfaces.org/rich">
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,17 +30,17 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Simple page that contains <b>rich:panel</b> and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="nested" outcome="nested" value="Nested Panels">
+ <metamer:testPageLink id="nested" outcome="nested" value="Nested Panels">
Page containing a <b>rich:panel</b> with two nested panels.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="customLook" outcome="customLook" value="Look Customization">
+ <metamer:testPageLink id="customLook" outcome="customLook" value="Look Customization">
Page containing several <b>rich:panel</b>s testing stylesheet usage and skinnability features.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/nested.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/nested.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/nested.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,3 +1,25 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:rich="http://richfaces.org/rich">
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,6 +1,28 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -92,7 +114,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richPanelBean.attributes}" id="attributes" render="log"/>
+ <metamer:attributes value="#{richPanelBean.attributes}" id="attributes" render="log"/>
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
<ui:composition template="/templates/template.xhtml">
@@ -143,7 +143,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richSubTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/templates/template.xhtml">
@@ -145,7 +145,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richSubTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,19 +30,19 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Page that contains a table with two <b>rich:subTable</b>s with defined facets (header, footer, noData) and input boxes for all its attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="components1" outcome="components1" value="Various Components 1">
+ <metamer:testPageLink id="components1" outcome="components1" value="Various Components 1">
Page that contains a table with two <b>rich:subTable</b>s (with model containing employees) and input boxes for all its attributes.
<span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
- </ta:testPageLink>
+ </metamer:testPageLink>
- <ta:testPageLink id="components2" outcome="components2" value="Various Components 2">
+ <metamer:testPageLink id="components2" outcome="components2" value="Various Components 2">
Page that contains a table with two <b>rich:subTable</b>s (with model containing employees) and input boxes for all its attributes.
<span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
<ui:composition template="/templates/template.xhtml">
@@ -131,7 +131,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richSubTableBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Deleted: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,150 +0,0 @@
-<!--
-JBoss, Home of Professional Open Source
-Copyright 2010, Red Hat, Inc. and individual contributors
-by the @authors tag. See the copyright.txt in the distribution for a
-full listing of individual contributors.
-
-This is free software; you can redistribute it and/or modify it
-under the terms of the GNU Lesser General Public License as
-published by the Free Software Foundation; either version 2.1 of
-the License, or (at your option) any later version.
-
-This software is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this software; if not, write to the Free
-Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-02110-1301 USA, or see the FSF site: http://www.fsf.org.
--->
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
- xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
-
- <ui:composition template="/templates/template.xhtml">
-
- <ui:define name="head">
- <f:metadata>
- <f:viewParam name="templates" value="#{templateBean.templates}">
- <f:converter converterId="templatesListConverter" />
- </f:viewParam>
- </f:metadata>
- </ui:define>
-
- <ui:define name="outOfTemplateBefore">
- <br/>
- </ui:define>
-
- <ui:define name="component">
-
- <rich:dataTable value="#{richSubTableBean.lists}" var="list">
- <f:facet name="header">
- <rich:columnGroup>
- <rich:column colspan="6">
- <h:outputText id="columnHeaderEmployees" value="Employees" />
- </rich:column>
- <rich:column breakRowBefore="true">
- <h:outputText id="columnHeaderSex" value="Sex" />
- <br/>
- <h:outputText id="columnHeaderSexComponent" value="h:graphicImage" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderName" value="Name" />
- <br/>
- <h:outputText id="columnHeaderNameComponent" value="h:outputText" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderTitle" value="Title" />
- <br/>
- <h:outputText id="columnHeaderTitleComponent" value="rich:inplaceSelect" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderSmoker" value="Smoker" />
- <br/>
- <h:outputText id="columnHeaderSmokerComponent" value="h:selectBooleanCheckbox" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderFavoriteColor" value="Favorite Color" />
- <br/>
- <h:outputText id="columnHeaderFavoriteColorComponent" value="rich:colorPicker" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderNumberOfKids" value="Number of Kids" />
- <br/>
- <h:outputText id="columnHeaderNumberOfKidsComponent" value="rich:inputNumberSpinner" />
- </rich:column>
- </rich:columnGroup>
- </f:facet>
- <rich:column colspan="6">
- <rich:subTableToggleControl for="richSubTable"/>
- <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
- </rich:column>
- <rich:subTable id="richSubTable"
- breakBefore="#{richSubTableBean.attributes['breakBefore'].value}"
- expandMode="#{richSubTableBean.attributes['expandMode'].value}"
- expanded="#{richSubTableBean.attributes['expanded'].value}"
- filterVar="#{richSubTableBean.attributes['filterVar'].value}"
- filteringListeners="#{richSubTableBean.attributes['filteringListeners'].value}"
- first="#{richSubTableBean.attributes['first'].value}"
- footer="#{richSubTableBean.attributes['footer'].value}"
- header="#{richSubTableBean.attributes['header'].value}"
- iterationState="#{richSubTableBean.attributes['iterationState'].value}"
- iterationStatusVar="#{richSubTableBean.attributes['iterationStatusVar'].value}"
- keepSaved="#{richSubTableBean.attributes['keepSaved'].value}"
- noData="#{richSubTableBean.attributes['noData'].value}"
- noDataLabel="#{richSubTableBean.attributes['noDataLabel'].value}"
- relativeRowIndex="#{richSubTableBean.attributes['relativeRowIndex'].value}"
- rendered="#{richSubTableBean.attributes['rendered'].value}"
- rowAvailable="#{richSubTableBean.attributes['rowAvailable'].value}"
- rowCount="#{richSubTableBean.attributes['rowCount'].value}"
- rowData="#{richSubTableBean.attributes['rowData'].value}"
- rowIndex="#{richSubTableBean.attributes['rowIndex'].value}"
- rowKey="#{richSubTableBean.attributes['rowKey'].value}"
- rowKeyConverter="#{richSubTableBean.attributes['rowKeyConverter'].value}"
- rows="#{richSubTableBean.attributes['rows'].value}"
- selection="#{richSubTableBean.attributes['selection'].value}"
- sortExpression="#{richSubTableBean.attributes['sortExpression'].value}"
- sortMode="#{richSubTableBean.attributes['sortMode'].value}"
- sortPriority="#{richSubTableBean.attributes['sortPriority'].value}"
- sortingListeners="#{richSubTableBean.attributes['sortingListeners'].value}"
- toggleListeners="#{richSubTableBean.attributes['toggleListeners'].value}"
- value="#{list}"
- var="item">
- <rich:column>
- <h:graphicImage id="sex" library="images" name="#{item.sex == 'MALE' ? 'male.png' : 'female.png'}" />
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.name}" />
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.title}" />
- </rich:column>
- <rich:column>
- <h:selectBooleanCheckbox id="smokerCheckbox" value="#{item.smoker}">
- <a4j:ajax event="change"/>
- </h:selectBooleanCheckbox>
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.favoriteColor}" />
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.numberOfKids}" />
- </rich:column>
- <f:facet name="footer">
- <h:outputText value="Total of #{list[0].sex == 'MALE' ? 'men' : 'women'}: #{list.size()}" />
- </f:facet>
- </rich:subTable>
- </rich:dataTable>
-
- </ui:define>
-
- <ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
- </ui:define>
-
- </ui:composition>
-</html>
\ No newline at end of file
Deleted: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,152 +0,0 @@
-<!--
-JBoss, Home of Professional Open Source
-Copyright 2010, Red Hat, Inc. and individual contributors
-by the @authors tag. See the copyright.txt in the distribution for a
-full listing of individual contributors.
-
-This is free software; you can redistribute it and/or modify it
-under the terms of the GNU Lesser General Public License as
-published by the Free Software Foundation; either version 2.1 of
-the License, or (at your option) any later version.
-
-This software is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this software; if not, write to the Free
-Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-02110-1301 USA, or see the FSF site: http://www.fsf.org.
--->
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
- xmlns:rich="http://richfaces.org/rich">
-
- <ui:composition template="/templates/template.xhtml">
-
- <ui:define name="head">
- <f:metadata>
- <f:viewParam name="templates" value="#{templateBean.templates}">
- <f:converter converterId="templatesListConverter" />
- </f:viewParam>
- </f:metadata>
- </ui:define>
-
- <ui:define name="outOfTemplateBefore">
- <br/>
- </ui:define>
-
- <ui:define name="component">
-
- <rich:dataTable value="#{richSubTableBean.lists}" var="list">
- <f:facet name="header">
- <rich:columnGroup>
- <rich:column colspan="6">
- <h:outputText id="columnHeaderEmployees" value="Employees" />
- </rich:column>
- <rich:column breakRowBefore="true">
- <h:outputText id="columnHeaderSex" value="Sex" />
- <br/>
- <h:outputText id="columnHeaderSexComponent" value="rich:paint2D" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderName" value="Name" />
- <br/>
- <h:outputText id="columnHeaderNameComponent" value="h:inplaceInput" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderTitle" value="Title" />
- <br/>
- <h:outputText id="columnHeaderTitleComponent" value="rich:comboBox" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderBirthdate" value="Birthdate" />
- <br/>
- <h:outputText id="columnHeaderBirthdateComponent" value="rich:calendar" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderCompanies" value="Companies" />
- <br/>
- <h:outputText id="columnHeaderCompaniesComponent" value="a4j:repeat" />
- </rich:column>
- <rich:column>
- <h:outputText id="columnHeaderNumberOfKids" value="Number of Kids" />
- <br/>
- <h:outputText id="columnHeaderNumberOfKidsComponent" value="rich:inputNumberSlider" />
- </rich:column>
- </rich:columnGroup>
- </f:facet>
- <rich:column colspan="6">
- <rich:subTableToggleControl for="richSubTable"/>
- <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
- </rich:column>
- <rich:subTable id="richSubTable"
- breakBefore="#{richSubTableBean.attributes['breakBefore'].value}"
- expandMode="#{richSubTableBean.attributes['expandMode'].value}"
- expanded="#{richSubTableBean.attributes['expanded'].value}"
- filterVar="#{richSubTableBean.attributes['filterVar'].value}"
- filteringListeners="#{richSubTableBean.attributes['filteringListeners'].value}"
- first="#{richSubTableBean.attributes['first'].value}"
- footer="#{richSubTableBean.attributes['footer'].value}"
- header="#{richSubTableBean.attributes['header'].value}"
- iterationState="#{richSubTableBean.attributes['iterationState'].value}"
- iterationStatusVar="#{richSubTableBean.attributes['iterationStatusVar'].value}"
- keepSaved="#{richSubTableBean.attributes['keepSaved'].value}"
- noData="#{richSubTableBean.attributes['noData'].value}"
- noDataLabel="#{richSubTableBean.attributes['noDataLabel'].value}"
- relativeRowIndex="#{richSubTableBean.attributes['relativeRowIndex'].value}"
- rendered="#{richSubTableBean.attributes['rendered'].value}"
- rowAvailable="#{richSubTableBean.attributes['rowAvailable'].value}"
- rowCount="#{richSubTableBean.attributes['rowCount'].value}"
- rowData="#{richSubTableBean.attributes['rowData'].value}"
- rowIndex="#{richSubTableBean.attributes['rowIndex'].value}"
- rowKey="#{richSubTableBean.attributes['rowKey'].value}"
- rowKeyConverter="#{richSubTableBean.attributes['rowKeyConverter'].value}"
- rows="#{richSubTableBean.attributes['rows'].value}"
- selection="#{richSubTableBean.attributes['selection'].value}"
- sortExpression="#{richSubTableBean.attributes['sortExpression'].value}"
- sortMode="#{richSubTableBean.attributes['sortMode'].value}"
- sortPriority="#{richSubTableBean.attributes['sortPriority'].value}"
- sortingListeners="#{richSubTableBean.attributes['sortingListeners'].value}"
- toggleListeners="#{richSubTableBean.attributes['toggleListeners'].value}"
- value="#{list}"
- var="item">
- <rich:column>
- <h:outputText value="#{item.sex}" />
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.name}" />
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.title}" />
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.birthdate}" />
- </rich:column>
- <rich:column>
- <ul>
- <a4j:repeat value="#{item.companies}" var="company">
- <li>#{company.name}</li>
- </a4j:repeat>
- </ul>
- </rich:column>
- <rich:column>
- <h:outputText value="#{item.numberOfKids}" />
- </rich:column>
- <f:facet name="footer">
- <h:outputText value="Total of #{list[0].sex == 'MALE' ? 'men' : 'women'}: #{list.size()}" />
- </f:facet>
- </rich:subTable>
- </rich:dataTable>
-
- </ui:define>
-
- <ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
- </ui:define>
-
- </ui:composition>
-</html>
\ No newline at end of file
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
<ui:composition template="/templates/list.xhtml">
@@ -30,9 +30,9 @@
<ui:define name="links">
- <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
Page that contains a table with two subtables and input boxes for all <b>rich:subTableToggleControl</b>s' attributes.
- </ta:testPageLink>
+ </metamer:testPageLink>
</ui:define>
Modified: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -22,7 +22,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
<ui:composition template="/templates/template.xhtml">
@@ -114,7 +114,7 @@
</ui:define>
<ui:define name="outOfTemplateAfter">
- <ta:attributes value="#{richSubTableToggleControlBean.attributes}" id="attributes" />
+ <metamer:attributes value="#{richSubTableToggleControlBean.attributes}" id="attributes" />
</ui:define>
</ui:composition>
Copied: root/tests/metamer/trunk/application/src/main/webapp/resources/metamer (from rev 18474, root/tests/metamer/trunk/application/src/main/webapp/resources/testapp)
Modified: root/tests/metamer/trunk/application/src/main/webapp/resources/metamer/attributes.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/attributes.xhtml 2010-08-04 00:56:13 UTC (rev 18474)
+++ root/tests/metamer/trunk/application/src/main/webapp/resources/metamer/attributes.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -1,8 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
- xmlns:a4j="http://richfaces.org/a4j" xmlns:c="http://java.sun.com/jsp/jstl/core"
- xmlns:composite="http://java.sun.com/jsf/composite"
- xmlns:ui="http://java.sun.com/jsf/facelets">
+<html xmlns="http://www.w3.org/1999/xhtml" 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" xmlns:composite="http://java.sun.com/jsf/composite">
<h:body>
<composite:interface>
@@ -15,7 +13,7 @@
<composite:implementation>
- <h:outputStylesheet library="testapp/css" name="attributes.ecss" />
+ <h:outputStylesheet library="metamer/css" name="attributes.ecss" />
<h:panelGrid id="#{cc.attrs.id}" columns="#{cc.attrs.columns * 2}" styleClass="attributes"
columnClasses="attributes-first-column, attributes-second-column, attributes-first-column, attributes-second-column">
Modified: root/tests/metamer/trunk/application/src/main/webapp/resources/metamer/testPageLink.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/testPageLink.xhtml 2010-08-04 00:56:13 UTC (rev 18474)
+++ root/tests/metamer/trunk/application/src/main/webapp/resources/metamer/testPageLink.xhtml 2010-08-04 13:24:25 UTC (rev 18478)
@@ -31,7 +31,7 @@
<composite:implementation>
- <h:outputStylesheet library="testapp/css" name="testPageLink.ecss" />
+ <h:outputStylesheet library="metamer/css" name="testPageLink.ecss" />
<h:link id="link" outcome="#{cc.attrs.outcome}" value="#{cc.attrs.value}" styleClass="link" />
<h:panelGroup id="desc" layout="block" styleClass="description">
15 years, 1 month
JBoss Rich Faces SVN: r18477 - trunk/examples/richfaces-showcase/src/main/webapp/richfaces/togglePanel.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-08-04 08:22:13 -0400 (Wed, 04 Aug 2010)
New Revision: 18477
Modified:
trunk/examples/richfaces-showcase/src/main/webapp/richfaces/togglePanel/simple.xhtml
Log:
minor corrections on demo sample page.
Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/togglePanel/simple.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/togglePanel/simple.xhtml 2010-08-04 12:07:03 UTC (rev 18476)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/togglePanel/simple.xhtml 2010-08-04 12:22:13 UTC (rev 18477)
@@ -1,26 +1,40 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:rich="http://richfaces.org/rich"
- xmlns:a4j="http://richfaces.org/a4j">
-
- <ui:composition>
- <p>DESC</p>
- <h:form>
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:rich="http://richfaces.org/rich"
+ xmlns:a4j="http://richfaces.org/a4j">
+
+<ui:composition>
+<style>
+ .rf-tp-i {
+ border: 1px solid #{ richSkin.panelBorderColor
+ }
+</style>
+ <p>DESC</p>
+ <h:form>
+ <h:commandLink value="Toggle Panel Item 1">
+ <rich:toggleControl forPanel="panel1" targetItem="item1" />
+ </h:commandLink>
+ <h:outputText value=" | " />
+ <h:commandLink value="Toggle Panel Item 2">
+ <rich:toggleControl forPanel="panel1" targetItem="item2" />
+ </h:commandLink>
<rich:togglePanel id="panel1" activeItem="item1">
- <rich:togglePanelItem name="item1">
- <h:outputText value="This Toggle Panel Item 1"/>
+ <rich:togglePanelItem name="item1" styleClass="rf-tp-i">
+ <p>This toggle panel switches in Ajax mode. So only one active
+ item loaded to the client.</p>
+ <p>For now you are at Panel 1</p>
</rich:togglePanelItem>
- <rich:togglePanelItem name="item2">
- <h:outputText value="This Toggle Panel Item 2"/>
- </rich:togglePanelItem>
+ <rich:togglePanelItem name="item2" styleClass="rf-tp-i">
+ <p>After the second link click - panel changed active item to
+ the second one according to name specified in the
+ togglePanelBehavior</p>
+ <p>For now you are at Panel 2</p>
+ </rich:togglePanelItem>
</rich:togglePanel>
- </h:form>
- <h:commandButton value="Switch">
- <rich:toggleControl forPanel="panel1"/>
- </h:commandButton>
- </ui:composition>
-
+ </h:form>
+</ui:composition>
+
</html>
\ No newline at end of file
15 years, 1 month
JBoss Rich Faces SVN: r18476 - in root/tests/metamer/trunk/application/src/main: webapp/components and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-08-04 08:07:03 -0400 (Wed, 04 Aug 2010)
New Revision: 18476
Added:
root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableToggleControlBean.java
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml
Modified:
root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
Log:
RFPL-732
* added rich:subTableToggleControl to Metamer
Modified: root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
===================================================================
--- root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2010-08-04 10:55:12 UTC (rev 18475)
+++ root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2010-08-04 12:07:03 UTC (rev 18476)
@@ -115,7 +115,8 @@
components.put("richJQuery", "Rich jQuery");
components.put("richList", "Rich List");
components.put("richPanel", "Rich Panel");
- components.put("richSubTable", "Rich SubTable");
+ components.put("richSubTable", "Rich Subtable");
+ components.put("richSubTableToggleControl", "Rich Subtable Toggle Control");
}
private void createSkinList() {
Added: root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableToggleControlBean.java
===================================================================
--- root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableToggleControlBean.java (rev 0)
+++ root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableToggleControlBean.java 2010-08-04 12:07:03 UTC (rev 18476)
@@ -0,0 +1,123 @@
+/*******************************************************************************
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ *******************************************************************************/
+package org.richfaces.tests.metamer.bean;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.annotation.PostConstruct;
+import javax.faces.bean.ManagedBean;
+import javax.faces.bean.ManagedProperty;
+import javax.faces.bean.SessionScoped;
+import org.richfaces.component.UISubTableToggleControl;
+
+import org.richfaces.tests.metamer.Attributes;
+import org.richfaces.tests.metamer.model.Employee;
+import org.richfaces.tests.metamer.model.Employee.Sex;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Managed bean for rich:subTableToggleControl.
+ *
+ * @author <a href="mailto:ppitonak@redhat.com">Pavol Pitonak</a>
+ * @version $Revision$
+ */
+@ManagedBean(name = "richSubTableToggleControlBean")
+@SessionScoped
+public class RichSubTableToggleControlBean implements Serializable {
+
+ private static final long serialVersionUID = -1L;
+ private static Logger logger;
+ private Attributes attributes;
+ @ManagedProperty(value = "#{model.employees}")
+ private List<Employee> employees;
+ private List<List<Employee>> lists;
+ // true = model, false = empty table
+ private boolean state;
+
+ /**
+ * Initializes the managed bean.
+ */
+ @PostConstruct
+ public void init() {
+ logger = LoggerFactory.getLogger(getClass());
+ logger.debug("initializing bean " + getClass().getName());
+
+ attributes = Attributes.getUIComponentAttributes(UISubTableToggleControl.class, getClass());
+ attributes.setAttribute("event", "click");
+ attributes.setAttribute("rendered", true);
+ // TODO these attributes have to be tested in another way
+ attributes.remove("for");
+
+ List<Employee> men = new ArrayList<Employee>();
+ List<Employee> women = new ArrayList<Employee>();
+
+ for (Employee e : employees) {
+ if (e.getSex() == Sex.MALE) {
+ men.add(e);
+ } else {
+ women.add(e);
+ }
+ }
+
+ lists = new ArrayList<List<Employee>>();
+ lists.add(men);
+ lists.add(women);
+
+ state = true;
+ }
+
+ public Attributes getAttributes() {
+ return attributes;
+ }
+
+ public void setAttributes(Attributes attributes) {
+ this.attributes = attributes;
+ }
+
+ public List<Employee> getEmployees() {
+ return employees;
+ }
+
+ public void setEmployees(List<Employee> employees) {
+ this.employees = employees;
+ }
+
+ public List<List<Employee>> getLists() {
+ return lists;
+ }
+
+ public void setLists(List<List<Employee>> lists) {
+ this.lists = lists;
+ }
+
+ public boolean isState() {
+ return state;
+ }
+
+ public void setState(boolean state) {
+ this.state = state;
+ }
+
+}
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components1.xhtml 2010-08-04 12:07:03 UTC (rev 18476)
@@ -0,0 +1,150 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+ <ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ <br/>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:dataTable value="#{richSubTableBean.lists}" var="list">
+ <f:facet name="header">
+ <rich:columnGroup>
+ <rich:column colspan="6">
+ <h:outputText id="columnHeaderEmployees" value="Employees" />
+ </rich:column>
+ <rich:column breakRowBefore="true">
+ <h:outputText id="columnHeaderSex" value="Sex" />
+ <br/>
+ <h:outputText id="columnHeaderSexComponent" value="h:graphicImage" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderName" value="Name" />
+ <br/>
+ <h:outputText id="columnHeaderNameComponent" value="h:outputText" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderTitle" value="Title" />
+ <br/>
+ <h:outputText id="columnHeaderTitleComponent" value="rich:inplaceSelect" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderSmoker" value="Smoker" />
+ <br/>
+ <h:outputText id="columnHeaderSmokerComponent" value="h:selectBooleanCheckbox" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderFavoriteColor" value="Favorite Color" />
+ <br/>
+ <h:outputText id="columnHeaderFavoriteColorComponent" value="rich:colorPicker" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderNumberOfKids" value="Number of Kids" />
+ <br/>
+ <h:outputText id="columnHeaderNumberOfKidsComponent" value="rich:inputNumberSpinner" />
+ </rich:column>
+ </rich:columnGroup>
+ </f:facet>
+ <rich:column colspan="6">
+ <rich:subTableToggleControl for="richSubTable"/>
+ <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
+ </rich:column>
+ <rich:subTable id="richSubTable"
+ breakBefore="#{richSubTableBean.attributes['breakBefore'].value}"
+ expandMode="#{richSubTableBean.attributes['expandMode'].value}"
+ expanded="#{richSubTableBean.attributes['expanded'].value}"
+ filterVar="#{richSubTableBean.attributes['filterVar'].value}"
+ filteringListeners="#{richSubTableBean.attributes['filteringListeners'].value}"
+ first="#{richSubTableBean.attributes['first'].value}"
+ footer="#{richSubTableBean.attributes['footer'].value}"
+ header="#{richSubTableBean.attributes['header'].value}"
+ iterationState="#{richSubTableBean.attributes['iterationState'].value}"
+ iterationStatusVar="#{richSubTableBean.attributes['iterationStatusVar'].value}"
+ keepSaved="#{richSubTableBean.attributes['keepSaved'].value}"
+ noData="#{richSubTableBean.attributes['noData'].value}"
+ noDataLabel="#{richSubTableBean.attributes['noDataLabel'].value}"
+ relativeRowIndex="#{richSubTableBean.attributes['relativeRowIndex'].value}"
+ rendered="#{richSubTableBean.attributes['rendered'].value}"
+ rowAvailable="#{richSubTableBean.attributes['rowAvailable'].value}"
+ rowCount="#{richSubTableBean.attributes['rowCount'].value}"
+ rowData="#{richSubTableBean.attributes['rowData'].value}"
+ rowIndex="#{richSubTableBean.attributes['rowIndex'].value}"
+ rowKey="#{richSubTableBean.attributes['rowKey'].value}"
+ rowKeyConverter="#{richSubTableBean.attributes['rowKeyConverter'].value}"
+ rows="#{richSubTableBean.attributes['rows'].value}"
+ selection="#{richSubTableBean.attributes['selection'].value}"
+ sortExpression="#{richSubTableBean.attributes['sortExpression'].value}"
+ sortMode="#{richSubTableBean.attributes['sortMode'].value}"
+ sortPriority="#{richSubTableBean.attributes['sortPriority'].value}"
+ sortingListeners="#{richSubTableBean.attributes['sortingListeners'].value}"
+ toggleListeners="#{richSubTableBean.attributes['toggleListeners'].value}"
+ value="#{list}"
+ var="item">
+ <rich:column>
+ <h:graphicImage id="sex" library="images" name="#{item.sex == 'MALE' ? 'male.png' : 'female.png'}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.name}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.title}" />
+ </rich:column>
+ <rich:column>
+ <h:selectBooleanCheckbox id="smokerCheckbox" value="#{item.smoker}">
+ <a4j:ajax event="change"/>
+ </h:selectBooleanCheckbox>
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.favoriteColor}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.numberOfKids}" />
+ </rich:column>
+ <f:facet name="footer">
+ <h:outputText value="Total of #{list[0].sex == 'MALE' ? 'men' : 'women'}: #{list.size()}" />
+ </f:facet>
+ </rich:subTable>
+ </rich:dataTable>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/components2.xhtml 2010-08-04 12:07:03 UTC (rev 18476)
@@ -0,0 +1,152 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:rich="http://richfaces.org/rich">
+
+ <ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ <br/>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:dataTable value="#{richSubTableBean.lists}" var="list">
+ <f:facet name="header">
+ <rich:columnGroup>
+ <rich:column colspan="6">
+ <h:outputText id="columnHeaderEmployees" value="Employees" />
+ </rich:column>
+ <rich:column breakRowBefore="true">
+ <h:outputText id="columnHeaderSex" value="Sex" />
+ <br/>
+ <h:outputText id="columnHeaderSexComponent" value="rich:paint2D" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderName" value="Name" />
+ <br/>
+ <h:outputText id="columnHeaderNameComponent" value="h:inplaceInput" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderTitle" value="Title" />
+ <br/>
+ <h:outputText id="columnHeaderTitleComponent" value="rich:comboBox" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderBirthdate" value="Birthdate" />
+ <br/>
+ <h:outputText id="columnHeaderBirthdateComponent" value="rich:calendar" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderCompanies" value="Companies" />
+ <br/>
+ <h:outputText id="columnHeaderCompaniesComponent" value="a4j:repeat" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderNumberOfKids" value="Number of Kids" />
+ <br/>
+ <h:outputText id="columnHeaderNumberOfKidsComponent" value="rich:inputNumberSlider" />
+ </rich:column>
+ </rich:columnGroup>
+ </f:facet>
+ <rich:column colspan="6">
+ <rich:subTableToggleControl for="richSubTable"/>
+ <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
+ </rich:column>
+ <rich:subTable id="richSubTable"
+ breakBefore="#{richSubTableBean.attributes['breakBefore'].value}"
+ expandMode="#{richSubTableBean.attributes['expandMode'].value}"
+ expanded="#{richSubTableBean.attributes['expanded'].value}"
+ filterVar="#{richSubTableBean.attributes['filterVar'].value}"
+ filteringListeners="#{richSubTableBean.attributes['filteringListeners'].value}"
+ first="#{richSubTableBean.attributes['first'].value}"
+ footer="#{richSubTableBean.attributes['footer'].value}"
+ header="#{richSubTableBean.attributes['header'].value}"
+ iterationState="#{richSubTableBean.attributes['iterationState'].value}"
+ iterationStatusVar="#{richSubTableBean.attributes['iterationStatusVar'].value}"
+ keepSaved="#{richSubTableBean.attributes['keepSaved'].value}"
+ noData="#{richSubTableBean.attributes['noData'].value}"
+ noDataLabel="#{richSubTableBean.attributes['noDataLabel'].value}"
+ relativeRowIndex="#{richSubTableBean.attributes['relativeRowIndex'].value}"
+ rendered="#{richSubTableBean.attributes['rendered'].value}"
+ rowAvailable="#{richSubTableBean.attributes['rowAvailable'].value}"
+ rowCount="#{richSubTableBean.attributes['rowCount'].value}"
+ rowData="#{richSubTableBean.attributes['rowData'].value}"
+ rowIndex="#{richSubTableBean.attributes['rowIndex'].value}"
+ rowKey="#{richSubTableBean.attributes['rowKey'].value}"
+ rowKeyConverter="#{richSubTableBean.attributes['rowKeyConverter'].value}"
+ rows="#{richSubTableBean.attributes['rows'].value}"
+ selection="#{richSubTableBean.attributes['selection'].value}"
+ sortExpression="#{richSubTableBean.attributes['sortExpression'].value}"
+ sortMode="#{richSubTableBean.attributes['sortMode'].value}"
+ sortPriority="#{richSubTableBean.attributes['sortPriority'].value}"
+ sortingListeners="#{richSubTableBean.attributes['sortingListeners'].value}"
+ toggleListeners="#{richSubTableBean.attributes['toggleListeners'].value}"
+ value="#{list}"
+ var="item">
+ <rich:column>
+ <h:outputText value="#{item.sex}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.name}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.title}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.birthdate}" />
+ </rich:column>
+ <rich:column>
+ <ul>
+ <a4j:repeat value="#{item.companies}" var="company">
+ <li>#{company.name}</li>
+ </a4j:repeat>
+ </ul>
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.numberOfKids}" />
+ </rich:column>
+ <f:facet name="footer">
+ <h:outputText value="Total of #{list[0].sex == 'MALE' ? 'men' : 'women'}: #{list.size()}" />
+ </f:facet>
+ </rich:subTable>
+ </rich:dataTable>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/list.xhtml 2010-08-04 12:07:03 UTC (rev 18476)
@@ -0,0 +1,41 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+
+ <ui:composition template="/templates/list.xhtml">
+
+ <ui:define name="pageTitle">Rich Subtable Toggle Control</ui:define>
+
+ <ui:define name="links">
+
+ <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ Page that contains a table with two subtables and input boxes for all <b>rich:subTableToggleControl</b>s' attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTableToggleControl/simple.xhtml 2010-08-04 12:07:03 UTC (rev 18476)
@@ -0,0 +1,121 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+ <ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ <br/>
+ <h:outputText value="Show data in table: " />
+ <h:selectBooleanCheckbox value="#{richSubTableToggleControlBean.state}">
+ <a4j:ajax render="richDataTable"/>
+ </h:selectBooleanCheckbox>
+ <br/><br/>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:dataTable id="richDataTable" value="#{richSubTableToggleControlBean.lists}" var="list">
+ <f:facet name="header">
+ <rich:columnGroup>
+ <rich:column colspan="3">
+ <h:outputText id="columnHeaderEmployees" value="Employees" />
+ </rich:column>
+ <rich:column breakRowBefore="true">
+ <h:outputText id="columnHeaderName" value="Name" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderTitle" value="Title" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderBirthdate" value="Birthdate" />
+ </rich:column>
+ </rich:columnGroup>
+ </f:facet>
+
+ <rich:column colspan="3">
+ <rich:subTableToggleControl id="richSTTControl"
+ collapseIcon="#{richSubTableToggleControlBean.attributes['collapseIcon'].value}"
+ collapseLable="#{richSubTableToggleControlBean.attributes['collapseLabel'].value}"
+ event="#{richSubTableToggleControlBean.attributes['event'].value}"
+ expandIcon="#{richSubTableToggleControlBean.attributes['expandIcon'].value}"
+ expandLabel="#{richSubTableToggleControlBean.attributes['expandLabel'].value}"
+ rendered="#{richSubTableToggleControlBean.attributes['rendered'].value}"
+ for="richSubTable"/>
+ <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
+ </rich:column>
+
+ <rich:subTable id="richSubTable"
+ expandMode="client"
+ expanded="true"
+ rows="5"
+
+ value="#{richSubTableToggleControlBean.state ? list : null}"
+ var="item">
+
+ <f:facet name="header">
+ header facet
+ </f:facet>
+
+ <f:facet name="noData">
+ no data facet
+ </f:facet>
+
+ <rich:column>
+ <h:outputText value="#{item.name}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.title}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.birthdate}">
+ <f:convertDateTime pattern="d MMM yyyy"/>
+ </h:outputText>
+ </rich:column>
+
+ <f:facet name="footer">
+ footer facet
+ </f:facet>
+
+ </rich:subTable>
+ </rich:dataTable>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <ta:attributes value="#{richSubTableToggleControlBean.attributes}" id="attributes" />
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
15 years, 1 month
JBoss Rich Faces SVN: r18475 - in root/tests/metamer/trunk/application/src/main: webapp/components and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-08-04 06:55:12 -0400 (Wed, 04 Aug 2010)
New Revision: 18475
Added:
root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableBean.java
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml
Modified:
root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
Log:
RFPL-731
* added 3 pages for rich:subTable
Modified: root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
===================================================================
--- root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2010-08-04 00:56:13 UTC (rev 18474)
+++ root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2010-08-04 10:55:12 UTC (rev 18475)
@@ -115,6 +115,7 @@
components.put("richJQuery", "Rich jQuery");
components.put("richList", "Rich List");
components.put("richPanel", "Rich Panel");
+ components.put("richSubTable", "Rich SubTable");
}
private void createSkinList() {
Added: root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableBean.java
===================================================================
--- root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableBean.java (rev 0)
+++ root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableBean.java 2010-08-04 10:55:12 UTC (rev 18475)
@@ -0,0 +1,131 @@
+/*******************************************************************************
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ *******************************************************************************/
+package org.richfaces.tests.metamer.bean;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.annotation.PostConstruct;
+import javax.faces.bean.ManagedBean;
+import javax.faces.bean.ManagedProperty;
+import javax.faces.bean.SessionScoped;
+import org.richfaces.component.UISubTable;
+
+import org.richfaces.tests.metamer.Attributes;
+import org.richfaces.tests.metamer.model.Employee;
+import org.richfaces.tests.metamer.model.Employee.Sex;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Managed bean for rich:subTable.
+ *
+ * @author <a href="mailto:ppitonak@redhat.com">Pavol Pitonak</a>
+ * @version $Revision$
+ */
+@ManagedBean(name = "richSubTableBean")
+@SessionScoped
+public class RichSubTableBean implements Serializable {
+
+ private static final long serialVersionUID = -1L;
+ private static Logger logger;
+ private Attributes attributes;
+ @ManagedProperty(value = "#{model.employees}")
+ private List<Employee> employees;
+ private List<List<Employee>> lists;
+ // true = model, false = empty table
+ private boolean state;
+
+ /**
+ * Initializes the managed bean.
+ */
+ @PostConstruct
+ public void init() {
+ logger = LoggerFactory.getLogger(getClass());
+ logger.debug("initializing bean " + getClass().getName());
+
+ attributes = Attributes.getUIComponentAttributes(UISubTable.class, getClass());
+
+ attributes.setAttribute("expandMode", "client");
+ attributes.setAttribute("expanded", true);
+ attributes.setAttribute("rendered", true);
+ attributes.setAttribute("rows", 5);
+
+ // TODO these attributes have to be tested in another way
+ attributes.remove("componentState");
+ attributes.remove("rowKeyVar");
+ attributes.remove("stateVar");
+ attributes.remove("var");
+ attributes.remove("value");
+
+ List<Employee> men = new ArrayList<Employee>();
+ List<Employee> women = new ArrayList<Employee>();
+
+ for (Employee e : employees) {
+ if (e.getSex() == Sex.MALE) {
+ men.add(e);
+ } else {
+ women.add(e);
+ }
+ }
+
+ lists = new ArrayList<List<Employee>>();
+ lists.add(men);
+ lists.add(women);
+
+ state = true;
+ }
+
+ public Attributes getAttributes() {
+ return attributes;
+ }
+
+ public void setAttributes(Attributes attributes) {
+ this.attributes = attributes;
+ }
+
+ public List<Employee> getEmployees() {
+ return employees;
+ }
+
+ public void setEmployees(List<Employee> employees) {
+ this.employees = employees;
+ }
+
+ public List<List<Employee>> getLists() {
+ return lists;
+ }
+
+ public void setLists(List<List<Employee>> lists) {
+ this.lists = lists;
+ }
+
+ public boolean isState() {
+ return state;
+ }
+
+ public void setState(boolean state) {
+ this.state = state;
+ }
+
+}
Property changes on: root/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichSubTableBean.java
___________________________________________________________________
Name: svn:keywords
+ Revision
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components1.xhtml 2010-08-04 10:55:12 UTC (rev 18475)
@@ -0,0 +1,150 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+ <ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ <br/>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:dataTable value="#{richSubTableBean.lists}" var="list">
+ <f:facet name="header">
+ <rich:columnGroup>
+ <rich:column colspan="6">
+ <h:outputText id="columnHeaderEmployees" value="Employees" />
+ </rich:column>
+ <rich:column breakRowBefore="true">
+ <h:outputText id="columnHeaderSex" value="Sex" />
+ <br/>
+ <h:outputText id="columnHeaderSexComponent" value="h:graphicImage" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderName" value="Name" />
+ <br/>
+ <h:outputText id="columnHeaderNameComponent" value="h:outputText" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderTitle" value="Title" />
+ <br/>
+ <h:outputText id="columnHeaderTitleComponent" value="rich:inplaceSelect" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderSmoker" value="Smoker" />
+ <br/>
+ <h:outputText id="columnHeaderSmokerComponent" value="h:selectBooleanCheckbox" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderFavoriteColor" value="Favorite Color" />
+ <br/>
+ <h:outputText id="columnHeaderFavoriteColorComponent" value="rich:colorPicker" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderNumberOfKids" value="Number of Kids" />
+ <br/>
+ <h:outputText id="columnHeaderNumberOfKidsComponent" value="rich:inputNumberSpinner" />
+ </rich:column>
+ </rich:columnGroup>
+ </f:facet>
+ <rich:column colspan="6">
+ <rich:subTableToggleControl for="richSubTable"/>
+ <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
+ </rich:column>
+ <rich:subTable id="richSubTable"
+ breakBefore="#{richSubTableBean.attributes['breakBefore'].value}"
+ expandMode="#{richSubTableBean.attributes['expandMode'].value}"
+ expanded="#{richSubTableBean.attributes['expanded'].value}"
+ filterVar="#{richSubTableBean.attributes['filterVar'].value}"
+ filteringListeners="#{richSubTableBean.attributes['filteringListeners'].value}"
+ first="#{richSubTableBean.attributes['first'].value}"
+ footer="#{richSubTableBean.attributes['footer'].value}"
+ header="#{richSubTableBean.attributes['header'].value}"
+ iterationState="#{richSubTableBean.attributes['iterationState'].value}"
+ iterationStatusVar="#{richSubTableBean.attributes['iterationStatusVar'].value}"
+ keepSaved="#{richSubTableBean.attributes['keepSaved'].value}"
+ noData="#{richSubTableBean.attributes['noData'].value}"
+ noDataLabel="#{richSubTableBean.attributes['noDataLabel'].value}"
+ relativeRowIndex="#{richSubTableBean.attributes['relativeRowIndex'].value}"
+ rendered="#{richSubTableBean.attributes['rendered'].value}"
+ rowAvailable="#{richSubTableBean.attributes['rowAvailable'].value}"
+ rowCount="#{richSubTableBean.attributes['rowCount'].value}"
+ rowData="#{richSubTableBean.attributes['rowData'].value}"
+ rowIndex="#{richSubTableBean.attributes['rowIndex'].value}"
+ rowKey="#{richSubTableBean.attributes['rowKey'].value}"
+ rowKeyConverter="#{richSubTableBean.attributes['rowKeyConverter'].value}"
+ rows="#{richSubTableBean.attributes['rows'].value}"
+ selection="#{richSubTableBean.attributes['selection'].value}"
+ sortExpression="#{richSubTableBean.attributes['sortExpression'].value}"
+ sortMode="#{richSubTableBean.attributes['sortMode'].value}"
+ sortPriority="#{richSubTableBean.attributes['sortPriority'].value}"
+ sortingListeners="#{richSubTableBean.attributes['sortingListeners'].value}"
+ toggleListeners="#{richSubTableBean.attributes['toggleListeners'].value}"
+ value="#{list}"
+ var="item">
+ <rich:column>
+ <h:graphicImage id="sex" library="images" name="#{item.sex == 'MALE' ? 'male.png' : 'female.png'}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.name}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.title}" />
+ </rich:column>
+ <rich:column>
+ <h:selectBooleanCheckbox id="smokerCheckbox" value="#{item.smoker}">
+ <a4j:ajax event="change"/>
+ </h:selectBooleanCheckbox>
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.favoriteColor}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.numberOfKids}" />
+ </rich:column>
+ <f:facet name="footer">
+ <h:outputText value="Total of #{list[0].sex == 'MALE' ? 'men' : 'women'}: #{list.size()}" />
+ </f:facet>
+ </rich:subTable>
+ </rich:dataTable>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/components2.xhtml 2010-08-04 10:55:12 UTC (rev 18475)
@@ -0,0 +1,152 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:rich="http://richfaces.org/rich">
+
+ <ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ <br/>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:dataTable value="#{richSubTableBean.lists}" var="list">
+ <f:facet name="header">
+ <rich:columnGroup>
+ <rich:column colspan="6">
+ <h:outputText id="columnHeaderEmployees" value="Employees" />
+ </rich:column>
+ <rich:column breakRowBefore="true">
+ <h:outputText id="columnHeaderSex" value="Sex" />
+ <br/>
+ <h:outputText id="columnHeaderSexComponent" value="rich:paint2D" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderName" value="Name" />
+ <br/>
+ <h:outputText id="columnHeaderNameComponent" value="h:inplaceInput" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderTitle" value="Title" />
+ <br/>
+ <h:outputText id="columnHeaderTitleComponent" value="rich:comboBox" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderBirthdate" value="Birthdate" />
+ <br/>
+ <h:outputText id="columnHeaderBirthdateComponent" value="rich:calendar" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderCompanies" value="Companies" />
+ <br/>
+ <h:outputText id="columnHeaderCompaniesComponent" value="a4j:repeat" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderNumberOfKids" value="Number of Kids" />
+ <br/>
+ <h:outputText id="columnHeaderNumberOfKidsComponent" value="rich:inputNumberSlider" />
+ </rich:column>
+ </rich:columnGroup>
+ </f:facet>
+ <rich:column colspan="6">
+ <rich:subTableToggleControl for="richSubTable"/>
+ <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
+ </rich:column>
+ <rich:subTable id="richSubTable"
+ breakBefore="#{richSubTableBean.attributes['breakBefore'].value}"
+ expandMode="#{richSubTableBean.attributes['expandMode'].value}"
+ expanded="#{richSubTableBean.attributes['expanded'].value}"
+ filterVar="#{richSubTableBean.attributes['filterVar'].value}"
+ filteringListeners="#{richSubTableBean.attributes['filteringListeners'].value}"
+ first="#{richSubTableBean.attributes['first'].value}"
+ footer="#{richSubTableBean.attributes['footer'].value}"
+ header="#{richSubTableBean.attributes['header'].value}"
+ iterationState="#{richSubTableBean.attributes['iterationState'].value}"
+ iterationStatusVar="#{richSubTableBean.attributes['iterationStatusVar'].value}"
+ keepSaved="#{richSubTableBean.attributes['keepSaved'].value}"
+ noData="#{richSubTableBean.attributes['noData'].value}"
+ noDataLabel="#{richSubTableBean.attributes['noDataLabel'].value}"
+ relativeRowIndex="#{richSubTableBean.attributes['relativeRowIndex'].value}"
+ rendered="#{richSubTableBean.attributes['rendered'].value}"
+ rowAvailable="#{richSubTableBean.attributes['rowAvailable'].value}"
+ rowCount="#{richSubTableBean.attributes['rowCount'].value}"
+ rowData="#{richSubTableBean.attributes['rowData'].value}"
+ rowIndex="#{richSubTableBean.attributes['rowIndex'].value}"
+ rowKey="#{richSubTableBean.attributes['rowKey'].value}"
+ rowKeyConverter="#{richSubTableBean.attributes['rowKeyConverter'].value}"
+ rows="#{richSubTableBean.attributes['rows'].value}"
+ selection="#{richSubTableBean.attributes['selection'].value}"
+ sortExpression="#{richSubTableBean.attributes['sortExpression'].value}"
+ sortMode="#{richSubTableBean.attributes['sortMode'].value}"
+ sortPriority="#{richSubTableBean.attributes['sortPriority'].value}"
+ sortingListeners="#{richSubTableBean.attributes['sortingListeners'].value}"
+ toggleListeners="#{richSubTableBean.attributes['toggleListeners'].value}"
+ value="#{list}"
+ var="item">
+ <rich:column>
+ <h:outputText value="#{item.sex}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.name}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.title}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.birthdate}" />
+ </rich:column>
+ <rich:column>
+ <ul>
+ <a4j:repeat value="#{item.companies}" var="company">
+ <li>#{company.name}</li>
+ </a4j:repeat>
+ </ul>
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.numberOfKids}" />
+ </rich:column>
+ <f:facet name="footer">
+ <h:outputText value="Total of #{list[0].sex == 'MALE' ? 'men' : 'women'}: #{list.size()}" />
+ </f:facet>
+ </rich:subTable>
+ </rich:dataTable>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/list.xhtml 2010-08-04 10:55:12 UTC (rev 18475)
@@ -0,0 +1,51 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:ta="http://java.sun.com/jsf/composite/testapp">
+
+ <ui:composition template="/templates/list.xhtml">
+
+ <ui:define name="pageTitle">Rich SubTable</ui:define>
+
+ <ui:define name="links">
+
+ <ta:testPageLink id="simple" outcome="simple" value="Simple">
+ Page that contains a table with two <b>rich:subTable</b>s with defined facets (header, footer, noData) and input boxes for all its attributes.
+ </ta:testPageLink>
+
+ <ta:testPageLink id="components1" outcome="components1" value="Various Components 1">
+ Page that contains a table with two <b>rich:subTable</b>s (with model containing employees) and input boxes for all its attributes.
+ <span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
+ </ta:testPageLink>
+
+ <ta:testPageLink id="components2" outcome="components2" value="Various Components 2">
+ Page that contains a table with two <b>rich:subTable</b>s (with model containing employees) and input boxes for all its attributes.
+ <span style="color: red">TODO will be used with various types of input and command components as soon as available</span>
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
Added: root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml (rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/components/richSubTable/simple.xhtml 2010-08-04 10:55:12 UTC (rev 18475)
@@ -0,0 +1,138 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:ta="http://java.sun.com/jsf/composite/testapp"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+ <ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="head">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="outOfTemplateBefore">
+ <br/>
+ <h:outputText value="Show data in table: " />
+ <h:selectBooleanCheckbox value="#{richSubTableBean.state}">
+ <a4j:ajax render="richDataTable"/>
+ </h:selectBooleanCheckbox>
+ <br/><br/>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:dataTable id="richDataTable" value="#{richSubTableBean.lists}" var="list">
+ <f:facet name="header">
+ <rich:columnGroup>
+ <rich:column colspan="3">
+ <h:outputText id="columnHeaderEmployees" value="Employees" />
+ </rich:column>
+ <rich:column breakRowBefore="true">
+ <h:outputText id="columnHeaderName" value="Name" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderTitle" value="Title" />
+ </rich:column>
+ <rich:column>
+ <h:outputText id="columnHeaderBirthdate" value="Birthdate" />
+ </rich:column>
+ </rich:columnGroup>
+ </f:facet>
+
+ <rich:column colspan="3">
+ <rich:subTableToggleControl for="richSubTable"/>
+ <h:outputText value="#{list[0].sex == 'MALE' ? 'Men' : 'Women'}" />
+ </rich:column>
+
+ <rich:subTable id="richSubTable"
+ breakBefore="#{richSubTableBean.attributes['breakBefore'].value}"
+ expandMode="#{richSubTableBean.attributes['expandMode'].value}"
+ expanded="#{richSubTableBean.attributes['expanded'].value}"
+ filterVar="#{richSubTableBean.attributes['filterVar'].value}"
+ filteringListeners="#{richSubTableBean.attributes['filteringListeners'].value}"
+ first="#{richSubTableBean.attributes['first'].value}"
+ footer="#{richSubTableBean.attributes['footer'].value}"
+ header="#{richSubTableBean.attributes['header'].value}"
+ iterationState="#{richSubTableBean.attributes['iterationState'].value}"
+ iterationStatusVar="#{richSubTableBean.attributes['iterationStatusVar'].value}"
+ keepSaved="#{richSubTableBean.attributes['keepSaved'].value}"
+ noData="#{richSubTableBean.attributes['noData'].value}"
+ noDataLabel="#{richSubTableBean.attributes['noDataLabel'].value}"
+ relativeRowIndex="#{richSubTableBean.attributes['relativeRowIndex'].value}"
+ rendered="#{richSubTableBean.attributes['rendered'].value}"
+ rowAvailable="#{richSubTableBean.attributes['rowAvailable'].value}"
+ rowCount="#{richSubTableBean.attributes['rowCount'].value}"
+ rowData="#{richSubTableBean.attributes['rowData'].value}"
+ rowIndex="#{richSubTableBean.attributes['rowIndex'].value}"
+ rowKey="#{richSubTableBean.attributes['rowKey'].value}"
+ rowKeyConverter="#{richSubTableBean.attributes['rowKeyConverter'].value}"
+ rows="#{richSubTableBean.attributes['rows'].value}"
+ selection="#{richSubTableBean.attributes['selection'].value}"
+ sortExpression="#{richSubTableBean.attributes['sortExpression'].value}"
+ sortMode="#{richSubTableBean.attributes['sortMode'].value}"
+ sortPriority="#{richSubTableBean.attributes['sortPriority'].value}"
+ sortingListeners="#{richSubTableBean.attributes['sortingListeners'].value}"
+ toggleListeners="#{richSubTableBean.attributes['toggleListeners'].value}"
+ value="#{richSubTableBean.state ? list : null}"
+ var="item">
+
+ <f:facet name="header">
+ header facet
+ </f:facet>
+
+ <f:facet name="noData">
+ no data facet
+ </f:facet>
+
+ <rich:column>
+ <h:outputText value="#{item.name}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.title}" />
+ </rich:column>
+ <rich:column>
+ <h:outputText value="#{item.birthdate}">
+ <f:convertDateTime pattern="d MMM yyyy"/>
+ </h:outputText>
+ </rich:column>
+
+ <f:facet name="footer">
+ footer facet
+ </f:facet>
+
+ </rich:subTable>
+ </rich:dataTable>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <ta:attributes value="#{richSubTableBean.attributes}" id="attributes" />
+ </ui:define>
+
+ </ui:composition>
+</html>
\ No newline at end of file
15 years, 1 month
JBoss Rich Faces SVN: r18474 - branches/development.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-08-03 20:56:13 -0400 (Tue, 03 Aug 2010)
New Revision: 18474
Added:
branches/development/docs/
Log:
Creating docs branch for development
Copied: branches/development/docs (from rev 18473, trunk/docs)
15 years, 1 month
JBoss Rich Faces SVN: r18473 - in trunk: archetypes and 105 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-03 20:19:37 -0400 (Tue, 03 Aug 2010)
New Revision: 18473
Modified:
trunk/
trunk/archetypes/
trunk/archetypes/richfaces-archetype-simpleapp/
trunk/archetypes/richfaces-archetype-simpleapp/src/main/resources/archetype-resources/
trunk/archetypes/richfaces-component-short/
trunk/archetypes/richfaces-component-short/src/main/resources/archetype-resources/
trunk/archetypes/richfaces-component/
trunk/archetypes/richfaces-component/src/main/resources/archetype-resources/
trunk/archetypes/richfaces-component/src/main/resources/archetype-resources/api/
trunk/archetypes/richfaces-component/src/main/resources/archetype-resources/impl/
trunk/archetypes/richfaces-component/src/main/resources/archetype-resources/ui/
trunk/archetypes/richfaces-components-aggregator/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/bom/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist/api/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist/impl/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist/ui/
trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/parent/
trunk/bom/
trunk/cdk/
trunk/cdk/archetypes/
trunk/cdk/archetypes/ui-multimodule/
trunk/cdk/archetypes/ui-multimodule/src/main/resources/archetype-resources/
trunk/cdk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/
trunk/cdk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/
trunk/cdk/archetypes/ui-singlemodule/
trunk/cdk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/
trunk/cdk/bom/
trunk/cdk/dist/
trunk/cdk/docs/
trunk/cdk/docs/Component_Development_Kit_Guide/
trunk/cdk/parent/
trunk/cdk/plugins/
trunk/cdk/plugins/annotations/
trunk/cdk/plugins/attributes/
trunk/cdk/plugins/commons/
trunk/cdk/plugins/generator/
trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/AttributesProcessorImpl.java
trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/model/validator/ValidatorImpl.java
trunk/cdk/plugins/maven-cdk-plugin/
trunk/cdk/plugins/maven-cdk-plugin/src/it/annotated-component/
trunk/cdk/plugins/maven-cdk-plugin/src/it/renderer-template-test/
trunk/cdk/plugins/maven-cdk-plugin/src/it/xml-configured-component/
trunk/cdk/plugins/maven-javascript-plugin/
trunk/cdk/plugins/xinclude/
trunk/core/
trunk/core/api/
trunk/core/bom/
trunk/core/commons/
trunk/core/commons/api/
trunk/core/commons/bom/
trunk/core/commons/parent/
trunk/core/impl/
trunk/core/legacy-tests/
trunk/core/parent/
trunk/dist/
trunk/docs/
trunk/docs/Component_Reference/
trunk/docs/Developer_Guide/
trunk/docs/Migration_Guide/
trunk/docs/parent/
trunk/examples/
trunk/examples/core-demo/
trunk/examples/dist/
trunk/examples/iteration-demo/
trunk/examples/misc-demo/
trunk/examples/output-demo/
trunk/examples/repeater-demo/
trunk/examples/richfaces-showcase/
trunk/pom.xml
trunk/ui/core/
trunk/ui/core/bom/
trunk/ui/core/parent/
trunk/ui/core/ui/
trunk/ui/dist/
trunk/ui/dist/bom/
trunk/ui/dist/parent/
trunk/ui/dist/richfaces-components-api/
trunk/ui/dist/richfaces-components-impl/
trunk/ui/dist/richfaces-components-ui/
trunk/ui/iteration/
trunk/ui/iteration/bom/
trunk/ui/iteration/datascroller/
trunk/ui/iteration/datascroller/api/
trunk/ui/iteration/datascroller/ui/
trunk/ui/iteration/dist/
trunk/ui/iteration/dist/richfaces-ui-iteration-api/
trunk/ui/iteration/dist/richfaces-ui-iteration-impl/
trunk/ui/iteration/dist/richfaces-ui-iteration-ui/
trunk/ui/iteration/lists/
trunk/ui/iteration/lists/api/
trunk/ui/iteration/lists/ui/
trunk/ui/iteration/parent/
trunk/ui/iteration/tables/
trunk/ui/iteration/tables/api/
trunk/ui/iteration/tables/impl/
trunk/ui/iteration/tables/ui/
trunk/ui/misc/
trunk/ui/misc/bom/
trunk/ui/misc/componentcontrol/
trunk/ui/misc/dist/
trunk/ui/misc/dist/richfaces-ui-misc-ui/
trunk/ui/misc/functions/
trunk/ui/misc/parent/
trunk/ui/output/
trunk/ui/output/bom/
Log:
fix build errors, ignore working files
Property changes on: trunk
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Name: svn:externals
+ ^/tags/richfaces-parent-9 build/parent
^/tags/richfaces-checkstyle-1 build/checkstyle
^/tags/faces-shade-transformers-2 build/faces-shade-transformers
Property changes on: trunk/archetypes
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-archetype-simpleapp
___________________________________________________________________
Name: svn:ignore
- .classpath
.project
.settings
target
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-archetype-simpleapp/src/main/resources/archetype-resources
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-component
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-component/src/main/resources/archetype-resources
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-component/src/main/resources/archetype-resources/api
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-component/src/main/resources/archetype-resources/impl
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-component/src/main/resources/archetype-resources/ui
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-component-short
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-component-short/src/main/resources/archetype-resources
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist/api
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist/impl
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/dist/ui
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/archetypes/richfaces-components-aggregator/src/main/resources/archetype-resources/trunk/parent
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/archetypes
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/archetypes/ui-multimodule
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/archetypes/ui-multimodule/src/main/resources/archetype-resources
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/archetypes/ui-singlemodule
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/archetypes/ui-singlemodule/src/main/resources/archetype-resources
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/dist
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/docs
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/docs/Component_Development_Kit_Guide
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/parent
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/annotations
___________________________________________________________________
Name: svn:ignore
- .classpath
.project
.settings
target
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/attributes
___________________________________________________________________
Name: svn:ignore
- .classpath
.project
.settings
target
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/commons
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
bin
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/generator
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
bin
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Modified: trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/AttributesProcessorImpl.java
===================================================================
--- trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/AttributesProcessorImpl.java 2010-08-03 22:29:00 UTC (rev 18472)
+++ trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/AttributesProcessorImpl.java 2010-08-04 00:19:37 UTC (rev 18473)
@@ -88,7 +88,11 @@
utils.setModelProperty(attribute, attributeAnnotarion, "passThrough");
utils.setModelProperty(attribute, attributeAnnotarion, "required");
utils.setModelProperty(attribute, attributeAnnotarion, "readOnly");
- utils.setModelProperty(attribute, attributeAnnotarion, "generate");
+ if (!utils.isDefaultValue(attributeAnnotarion, "generate")) {
+ attribute.setGenerate(utils.getAnnotationValue(attributeAnnotarion, "generate", boolean.class));
+ } else {
+ attribute.setGenerate(!beanProperty.isExists());
+ }
descriptionProcessor.processDescription(attribute, beanProperty.getAnnotation(Attribute.class).description(), beanProperty
.getDocComment());
Modified: trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/model/validator/ValidatorImpl.java
===================================================================
--- trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/model/validator/ValidatorImpl.java 2010-08-03 22:29:00 UTC (rev 18472)
+++ trunk/cdk/plugins/generator/src/main/java/org/richfaces/cdk/model/validator/ValidatorImpl.java 2010-08-04 00:19:37 UTC (rev 18473)
@@ -58,6 +58,7 @@
import com.google.common.collect.Iterables;
import com.google.common.collect.Sets;
import com.google.inject.Inject;
+import com.google.inject.Provider;
/**
* <p class="changed_added_4_0">
@@ -93,12 +94,12 @@
private final NamingConventions namingConventions;
- private final SourceUtils sourceUtils;
+ private final Provider<SourceUtils> sourceUtilsProvider;
@Inject
- public ValidatorImpl(NamingConventions namingConventions, SourceUtils sourceUtils) {
+ public ValidatorImpl(NamingConventions namingConventions, Provider<SourceUtils> sourceUtilsProvider) {
this.namingConventions = namingConventions;
- this.sourceUtils = sourceUtils;
+ this.sourceUtilsProvider = sourceUtilsProvider;
}
/*
@@ -121,6 +122,7 @@
if (null == listenerInterface) {
// TODO - infer listener interface name.
}
+ SourceUtils sourceUtils = sourceUtilsProvider.get();
event.setGenerateListener(null == sourceUtils.asTypeElement(listenerInterface));
String methodName = event.getListenerMethod();
if (null == methodName) {
Property changes on: trunk/cdk/plugins/maven-cdk-plugin
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
bin
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/maven-cdk-plugin/src/it/annotated-component
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
bin
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/maven-cdk-plugin/src/it/renderer-template-test
___________________________________________________________________
Name: svn:ignore
- .classpath
.project
.settings
target
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/maven-cdk-plugin/src/it/xml-configured-component
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
bin
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/maven-javascript-plugin
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/cdk/plugins/xinclude
___________________________________________________________________
Name: svn:ignore
- .project
bin
target
.classpath
.settings
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/api
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/commons
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/commons/api
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/commons/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/commons/parent
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/impl
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
bin
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/legacy-tests
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/core/parent
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/dist
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/docs
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/docs/Component_Reference
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/docs/Developer_Guide
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/docs/Migration_Guide
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/docs/parent
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples/core-demo
___________________________________________________________________
Name: svn:ignore
- target
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples/dist
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples/iteration-demo
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples/misc-demo
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples/output-demo
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples/repeater-demo
___________________________________________________________________
Name: svn:ignore
- target
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/examples/richfaces-showcase
___________________________________________________________________
Name: svn:ignore
- target
.settings
.classpath
.project
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-03 22:29:00 UTC (rev 18472)
+++ trunk/pom.xml 2010-08-04 00:19:37 UTC (rev 18473)
@@ -37,6 +37,14 @@
<profiles>
<profile>
+ <id>bootstrap</id>
+ <modules>
+ <module>build/parent</module>
+ <module>build/checkstyle</module>
+ <module>build/faces-shade-transformers</module>
+ </modules>
+ </profile>
+ <profile>
<id>release</id>
<modules>
<module>dist</module>
Property changes on: trunk/ui/core
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/core/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/core/parent
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/core/ui
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/dist
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/dist/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/dist/parent
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/dist/richfaces-components-api
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/dist/richfaces-components-impl
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/dist/richfaces-components-ui
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/datascroller
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/datascroller/api
___________________________________________________________________
Name: svn:ignore
- target
.classpath
.project
.settings
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/datascroller/ui
___________________________________________________________________
Name: svn:ignore
- target
.classpath
.project
.settings
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/dist
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/dist/richfaces-ui-iteration-api
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/dist/richfaces-ui-iteration-impl
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/dist/richfaces-ui-iteration-ui
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/lists
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/lists/api
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/lists/ui
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/parent
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/tables
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/tables/api
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/tables/impl
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/iteration/tables/ui
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/misc
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/misc/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/misc/componentcontrol
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/misc/dist
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/misc/dist/richfaces-ui-misc-ui
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/misc/functions
___________________________________________________________________
Name: svn:ignore
- target
.settings
.project
.classpath
.clover
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/misc/parent
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/output
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
Property changes on: trunk/ui/output/bom
___________________________________________________________________
Name: svn:ignore
+ target
.settings
.project
.classpath
.clover
.externalToolBuilders
15 years, 1 month
JBoss Rich Faces SVN: r18472 - tags and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-03 18:29:00 -0400 (Tue, 03 Aug 2010)
New Revision: 18472
Added:
tags/richfaces-parent-9/
Removed:
root/build/parent/tags/richfaces-parent-9/
Log:
move latest richfaces-parent to the tags
Copied: tags/richfaces-parent-9 (from rev 18471, root/build/parent/tags/richfaces-parent-9)
15 years, 1 month
JBoss Rich Faces SVN: r18471 - root.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-03 18:12:46 -0400 (Tue, 03 Aug 2010)
New Revision: 18471
Removed:
root/tags/
Log:
remove obsolette tags folder
15 years, 1 month
JBoss Rich Faces SVN: r18470 - root/branches and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-03 18:11:57 -0400 (Tue, 03 Aug 2010)
New Revision: 18470
Added:
branches/4.0.0.Alpha2/dist/
Removed:
root/branches/richfaces-dist-4.0.0.Alpha2/
Log:
Move tag 4.0.0.Alpha2 to the global /branches folder
Copied: branches/4.0.0.Alpha2/dist (from rev 18469, root/branches/richfaces-dist-4.0.0.Alpha2)
15 years, 1 month