Author: ppitonak(a)redhat.com
Date: 2010-07-28 06:50:07 -0400 (Wed, 28 Jul 2010)
New Revision: 18249
Added:
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/css/testPageLink.ecss
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/testPageLink.xhtml
root/tests/metamer/trunk/application/src/main/webapp/templates/list.xhtml
Removed:
root/tests/metamer/trunk/application/src/main/webapp/resources/css/list.css
Modified:
root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/list.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/a4jParam/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/list.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/richList/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/list.xhtml
root/tests/metamer/trunk/application/src/main/webapp/index.xhtml
root/tests/metamer/trunk/application/src/main/webapp/resources/css/common.ecss
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/attributes.xhtml
Log:
* list pages refactored to use a template and composite component for links
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jActionListener/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,17 +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: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">
+<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">
- <h:head>
- <title>A4J Action Listener</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
- <h:link outcome="all" value="All"
styleClass="link"/>
- <div class="description">Page that contains a4j:actionListener
invoked by type, binding, method and from composite component.</div>
+ <ui:define name="pageTitle">A4J Action
Listener</ui:define>
- </h:body>
+ <ui:define name="links">
+
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
</html>
\ No newline at end of file
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jAjax/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,52 +1,88 @@
+<!--
+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">
+<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">
-<h:head>
- <title>A4J Ajax</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">A4J Ajax</ui:define>
- <h:link outcome="hCommandButton" value="Command Button"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:commandButton</b> with <b>a4j:ajax</b> and input boxes for
all its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="hCommandLink" value="Command Link"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:commandLink</b> with <b>a4j:ajax</b> and input boxes for all
its attributes.</div>
+ <ta: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>
- <h:link outcome="hInputText" value="Input Text"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:inputText</b> with <b>a4j:ajax</b> and input boxes for all
its attributes.</div>
+ <ta: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>
- <h:link outcome="hInputSecret" value="Input Secret"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:inputSecret</b> with <b>a4j:ajax</b> and input boxes for all
its attributes.</div>
+ <ta: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>
- <h:link outcome="hInputTextarea" value="Input Textarea"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:inputTextarea</b> with <b>a4j:ajax</b> and input boxes for
all its attributes.</div>
+ <ta: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>
- <h:link outcome="hGraphicImage" value="Graphic Image"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:graphicImage</b> with <b>a4j:ajax</b> and input boxes for all
its attributes.</div>
+ <ta: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>
- <h:link outcome="hSelectManyMenu" value="Select Many Menu"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:selectManyMenu</b> with <b>a4j:ajax</b> and input boxes for
all its attributes.</div>
+ <ta: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>
- <h:link outcome="hSelectManyListbox" value="Select Many
Listbox" styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:selectManyListbox</b> with <b>a4j:ajax</b> and input boxes
for all its attributes.</div>
+ <ta: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>
- <h:link outcome="hSelectManyCheckbox" value="Select Many
Checkbox" styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:selectManyCheckbox</b> with <b>a4j:ajax</b> and input boxes
for all its attributes.</div>
+ <ta: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>
- <h:link outcome="hSelectOneMenu" value="Select One Menu"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:selectOneMenu</b> with <b>a4j:ajax</b> and input boxes for
all its attributes.</div>
+ <ta: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>
- <h:link outcome="hSelectBooleanCheckbox" value="Select Boolean
Checkbox" styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:selectBooleanCheckbox</b> with <b>a4j:ajax</b> and input
boxes for all its attributes.</div>
+ <ta: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>
- <h:link outcome="hSelectOneRadio" value="Select One Radio"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:selectOneRadio</b> with <b>a4j:ajax</b> and input boxes for
all its attributes.</div>
+ <ta: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>
- <h:link outcome="hSelectOneListbox" value="Select One Listbox"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:selectOneListbox</b> with <b>a4j:ajax</b> and input boxes for
all its attributes.</div>
-</h:body>
+ <ta: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>
+
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
</html>
\ No newline at end of file
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandButton/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,18 +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: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">
+<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">
- <h:head>
- <title>A4J Command Button</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">A4J Command Button</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>a4j:commandButton</b> and input boxes for all its attributes.</div>
+ <ui:define name="links">
- </h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:commandButton</b> and input
boxes for all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jCommandLink/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,17 +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: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">
+<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">
- <h:head>
- <title>A4J Command Link</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">A4J Command Link</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>a4j:commandLink</b> and input boxes for all its attributes.</div>
+ <ui:define name="links">
- </h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:commandLink</b> and input
boxes for all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jJSFunction/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,21 +21,21 @@
-->
<!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">
+<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">
- <h:head>
- <title>A4J JavaScript Function</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">A4J JavaScript
Function</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link" />
- <div class="description">Simple page that contains
<b>a4j:jsFunction</b> and
- input boxes for all its attributes.</div>
-
- </h:body>
-</html>
\ No newline at end of file
+ <ui:define name="links">
+
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:jsFunction</b> and input
boxes for all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jLog/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,17 +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: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">
+<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">
-<h:head>
- <title>A4J Log</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">A4J Log</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains log and input
boxes for all its attributes.</div>
+ <ui:define name="links">
-</h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:log</b> and input boxes for
all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jMediaOutput/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,19 +1,45 @@
+<!--
+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">
+<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">
-<h:head>
- <title>A4J Media Output</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">A4J Media Output</ui:define>
- <h:link outcome="image" value="Image"
styleClass="link"/>
- <div class="description">Simple page that contains media output
(image) and input boxes for all its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="flash" value="Flash"
styleClass="link"/>
- <div class="description">Simple page that contains media output
(flash) and input boxes for all its attributes.</div>
-</h:body>
-</html>
\ No newline at end of file
+ <ta: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>
+
+ <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:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jOutputPanel/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,19 +21,21 @@
-->
<!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">
+<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">
-<h:head>
- <title>A4J Output Panel</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">A4J Output Panel</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>a4j:outputPanel</b> and input boxes for all its attributes.</div>
+ <ui:define name="links">
-</h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:outputPanel</b> and input
boxes for all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jParam/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,20 +21,21 @@
-->
<!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">
+<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">
- <h:head>
- <title>A4J Action Parameter</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">A4J Action
Parameter</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Page that contains
<b>a4j:param</b> and inputs for all its attributes.</div>
+ <ui:define name="links">
- </h:body>
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Page that contains <b>a4j:param</b> and inputs for all its
attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
</html>
\ No newline at end of file
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPoll/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,17 +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: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">
+<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">
-<h:head>
- <title>A4J Poll</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">A4J Poll</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>a4j:poll</b> and input boxes for all its attributes.</div>
+ <ui:define name="links">
-</h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:poll</b> and input boxes for
all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jPush/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,20 +1,45 @@
+<!--
+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">
+<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">
-<h:head>
- <title>A4J Push</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">A4J Push</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>a4j:push</b> and input boxes for all its attributes.</div>
-
- <h:link outcome="event-producer" value="Event Producer"
styleClass="link"/>
- <div class="description">Page that is bind to application bean
producing events catched by a4j:push.</div>
+ <ui:define name="links">
-</h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:push</b> and input boxes for
all its attributes.
+ </ta:testPageLink>
+
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRegion/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,24 +21,25 @@
-->
<!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">
+<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">
- <h:head>
- <title>A4J Region</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">A4J Region</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link" />
- <div class="description">Simple page that contains
<b>a4j:region</b> and
- input boxes for all its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="nested" value="Nested regions"
styleClass="link" />
- <div class="description">Simple page that contains nested
<b>a4j:region</b>s.</div>
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:region</b> and input boxes
for all its attributes.
+ </ta:testPageLink>
- </h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="nested" outcome="nested"
value="Nested regions">
+ Simple page that contains nested <b>a4j:region</b>s.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/a4jRepeat/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,24 +21,25 @@
-->
<!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">
+<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">
- <h:head>
- <title>A4J Repeat</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">A4J Repeat</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link" />
- <div class="description">Simple page that contains
<b>a4j:repeat</b> and
- input boxes for all its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="matrix" value="Matrix"
styleClass="link" />
- <div class="description">Simple page that contains
<b>a4j:repeat</b> rendering a table. Page contains input boxes for all
repeat's attributes.</div>
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>a4j:repeat</b> and input boxes
for all its attributes.
+ </ta:testPageLink>
- </h:body>
-</html>
\ No newline at end of file
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/commandButton/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,18 +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: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">
+<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">
- <h:head>
- <title>JSF Command Button</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">JSF Command Button</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>h:commandButton</b> and input boxes for all its attributes.</div>
+ <ui:define name="links">
- </h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>h:commandButton</b> and input
boxes for all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richDataGrid/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,34 +21,39 @@
-->
<!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">
+<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">
- <h:head>
- <title>Rich Data Grid</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">Rich Data Grid</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link" />
- <div class="description">Simple page that contains
<b>rich:dataGrid</b> (with model containing capitals) and
- input boxes for all its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="scroller" value="Data Scroller"
styleClass="link" />
- <div class="description">Page that contains
<b>rich:dataGrid</b> (with model containing capitals), data
- scroller and input boxes for all its attributes.</div>
+ <ta: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>
- <h:link outcome="hGraphicImage" value="Graphic Image"
styleClass="link" />
- <div class="description">Page that contains
<b>rich:dataGrid</b> (with model containing employees) with
<b>h:graphicImage</b> inside it.</div>
+ <ta: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>
- <h:link outcome="hSelectBooleanCheckbox" value="Select Boolean
Checkbox" styleClass="link" />
- <div class="description">Page that contains
<b>rich:dataGrid</b> (with model containing employees) with
<b>h:selectBooleanCheckbox</b> inside it.</div>
+ <ta: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>
- <h:link outcome="a4jRepeat" value="A4J Repeat"
styleClass="link" />
- <div class="description">Page that contains
<b>rich:dataGrid</b> (with model containing employees) with
<b>a4j:repeat</b> inside it.</div>
+ <ta: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>
- </h:body>
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
</html>
\ No newline at end of file
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richDataScroller/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,19 +21,21 @@
-->
<!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">
+<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">
- <h:head>
- <title>Rich Data Scroller</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">Rich Data Scroller</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>rich:dataTable</b> with two <b>rich:dataScroller</b>s and input
boxes for all their attributes.</div>
+ <ui:define name="links">
- </h:body>
-</html>
\ No newline at end of file
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richDataTable/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,35 +21,43 @@
-->
<!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">
+<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">
- <h:head>
- <title>Rich Data Table</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">Rich Data Table</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>rich:dataTable</b> (with model containing capitals) and input boxes for all
its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="scroller" value="Data Scroller"
styleClass="link"/>
- <div class="description">Page that contains
<b>rich:dataTable</b> (with model containing capitals), data scroller and
input boxes for all its attributes.</div>
+ <ta: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>
- <h:link outcome="components1" value="Various Components 1"
styleClass="link"/>
- <div class="description">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></div>
+ <ta: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>
- <h:link outcome="components2" value="Various Components 2"
styleClass="link"/>
- <div class="description">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></div>
+ <ta: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>
- <h:link outcome="sorting" value="Table Sorting"
styleClass="link"/>
- <div class="description">Page that contains sortable
<b>rich:dataTable</b> (with model containing capitals) and input boxes for all
its attributes.</div>
+ <ta: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>
- <h:link outcome="filtering" value="Table filtering"
styleClass="link"/>
- <div class="description">Page that contains filterable
<b>rich:dataTable</b> (with model containing capitals) and input boxes for all
its attributes.</div>
- </h:body>
-</html>
\ No newline at end of file
+ <ta: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>
+
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richExtendedDataTable/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,35 +21,43 @@
-->
<!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">
+<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">
- <h:head>
- <title>Rich Extended Data Table</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">Rich Extended Data
Table</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>rich:extendedDataTable</b> (with model containing capitals) and input boxes
for all its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="scroller" value="Data Scroller"
styleClass="link"/>
- <div class="description">Page that contains
<b>rich:extendedDataTable</b> (with model containing capitals), data scroller
and input boxes for all its attributes.</div>
+ <ta: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>
- <h:link outcome="components1" value="Various Components 1"
styleClass="link"/>
- <div class="description">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></div>
+ <ta: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>
- <h:link outcome="components2" value="Various Components 2"
styleClass="link"/>
- <div class="description">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></div>
+ <ta: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>
- <h:link outcome="sorting" value="Table Sorting"
styleClass="link"/>
- <div class="description">Page that contains sortable
<b>rich:extendedDataTable</b> (with model containing capitals) and input boxes
for all its attributes.</div>
+ <ta: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>
- <h:link outcome="filtering" value="Table filtering"
styleClass="link"/>
- <div class="description">Page that contains filterable
<b>rich:extendedDataTable</b> (with model containing capitals) and input boxes
for all its attributes.</div>
- </h:body>
-</html>
\ No newline at end of file
+ <ta: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>
+
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richFunctions/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,17 +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: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">
+<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">
- <h:head>
- <title>Rich Functions</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
- <h:link outcome="all" value="All"
styleClass="link"/>
- <div class="description">Page containing all RichFaces client
functions.</div>
+ <ui:define name="pageTitle">Rich Functions</ui:define>
- </h:body>
-</html>
\ No newline at end of file
+ <ui:define name="links">
+
+ <ta:testPageLink id="all" outcome="all"
value="All">
+ Page containing all RichFaces client functions.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richJQuery/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,17 +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: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">
+<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">
-<h:head>
- <title>Rich jQuery</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">Rich jQuery</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>rich:jQuery</b> and inputs for all its attributes.</div>
+ <ui:define name="links">
-</h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>rich:jQuery</b> and inputs for
all its attributes.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richList/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -21,21 +21,22 @@
-->
<!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">
+<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">
- <h:head>
- <title>Rich List</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
- </h:head>
+ <ui:composition template="/templates/list.xhtml">
- <h:body>
+ <ui:define name="pageTitle">Rich List</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link" />
- <div class="description">Simple page that contains
<b>rich:list</b> (with model containing capitals) and
- input boxes for all its attributes.</div>
+ <ui:define name="links">
- </h:body>
-</html>
\ No newline at end of file
+ <ta: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>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/components/richPanel/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,22 +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:c="http://java.sun.com/jsp/jstl/core">
+<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">
-<h:head>
- <title>Rich Toggle Panel</title>
- <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
- <h:outputStylesheet library="css" name="list.css" />
-</h:head>
+ <ui:composition template="/templates/list.xhtml">
-<h:body>
+ <ui:define name="pageTitle">Rich Toggle Panel</ui:define>
- <h:link outcome="simple" value="Simple"
styleClass="link"/>
- <div class="description">Simple page that contains
<b>rich:togglePanel</b> and input boxes for all its attributes.</div>
+ <ui:define name="links">
- <h:link outcome="nested" value="Nested Panels"
styleClass="link"/>
- <div class="description">Page containing a
<b>rich:togglePanel</b> with two nested panels.</div>
+ <ta:testPageLink id="simple" outcome="simple"
value="Simple">
+ Simple page that contains <b>rich:togglePanel</b> and input
boxes for all its attributes.
+ </ta:testPageLink>
- <h:link outcome="customLook" value="Look Customization"
styleClass="link"/>
- <div class="description">Page containing several
<b>rich:togglePanel</b>s testing stylesheet usage and skinnability
features.</div>
-</h:body>
-</html>
\ No newline at end of file
+ <ta:testPageLink id="nested" outcome="nested"
value="Nested Panels">
+ Page containing a <b>rich:togglePanel</b> with two nested
panels.
+ </ta:testPageLink>
+
+ <ta:testPageLink id="customLook" outcome="customLook"
value="Look Customization">
+ Page containing several <b>rich:togglePanel</b>s testing
stylesheet usage and skinnability features.
+ </ta:testPageLink>
+
+ </ui:define>
+
+ </ui:composition>
+
+</html>
Modified: root/tests/metamer/trunk/application/src/main/webapp/index.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/index.xhtml 2010-07-27 16:26:04
UTC (rev 18248)
+++ root/tests/metamer/trunk/application/src/main/webapp/index.xhtml 2010-07-28 10:50:07
UTC (rev 18249)
@@ -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:c="http://java.sun.com/jsp/jstl/core"
xmlns:a4j="http://richfaces.org/a4j">
@@ -6,7 +28,6 @@
<title>Metamer: RichFaces Testing Application</title>
<meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
<h:outputStylesheet library="css" name="common.ecss"
/>
- <h:outputStylesheet library="css" name="list.css" />
</h:head>
<h:body>
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-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/resources/css/common.ecss 2010-07-28
10:50:07 UTC (rev 18249)
@@ -26,4 +26,9 @@
.valign-top {
vertical-align: top;
+}
+
+ul a.link {
+ font-size: 16px;
+ font-weight: bold;
}
\ No newline at end of file
Deleted: root/tests/metamer/trunk/application/src/main/webapp/resources/css/list.css
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/resources/css/list.css 2010-07-27
16:26:04 UTC (rev 18248)
+++ root/tests/metamer/trunk/application/src/main/webapp/resources/css/list.css 2010-07-28
10:50:07 UTC (rev 18249)
@@ -1,9 +0,0 @@
-.link {
- font-size: 16px;
- font-weight: bold;
-}
-
-.description {
- padding-top: 5px;
- padding-bottom: 15px;
-}
\ No newline at end of file
Modified:
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/attributes.xhtml
===================================================================
---
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/attributes.xhtml 2010-07-27
16:26:04 UTC (rev 18248)
+++
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/attributes.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -6,7 +6,7 @@
<h:body>
<composite:interface>
- <composite:attribute name="id" type="java.util.String"
/>
+ <composite:attribute name="id" type="java.lang.String"
/>
<composite:attribute name="value"
type="org.richfaces.tests.metamer.Attributes" required="true"
shortDescription="Representation of attributes of a
component." />
<composite:attribute name="render" />
Added:
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/css/testPageLink.ecss
===================================================================
---
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/css/testPageLink.ecss
(rev 0)
+++
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/css/testPageLink.ecss 2010-07-28
10:50:07 UTC (rev 18249)
@@ -0,0 +1,9 @@
+.link {
+ font-size: 16px;
+ font-weight: bold;
+}
+
+.description {
+ padding-top: 5px;
+ padding-bottom: 15px;
+}
\ No newline at end of file
Added:
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/testPageLink.xhtml
===================================================================
---
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/testPageLink.xhtml
(rev 0)
+++
root/tests/metamer/trunk/application/src/main/webapp/resources/testapp/testPageLink.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -0,0 +1,43 @@
+<!--
+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:composite="http://java.sun.com/jsf/composite">
+
+ <h:body>
+ <composite:interface>
+ <composite:attribute name="outcome"
type="java.lang.String" required="true"/>
+ <composite:attribute name="value"
type="java.lang.String" required="true"/>
+ </composite:interface>
+
+ <composite:implementation>
+
+ <h:outputStylesheet library="testapp/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">
+ <composite:insertChildren/>
+ </h:panelGroup>
+
+ </composite:implementation>
+ </h:body>
+</html>
Added: root/tests/metamer/trunk/application/src/main/webapp/templates/list.xhtml
===================================================================
--- root/tests/metamer/trunk/application/src/main/webapp/templates/list.xhtml
(rev 0)
+++ root/tests/metamer/trunk/application/src/main/webapp/templates/list.xhtml 2010-07-28
10:50:07 UTC (rev 18249)
@@ -0,0 +1,53 @@
+<!--
+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:ui="http://java.sun.com/jsf/facelets">
+
+ <h:head>
+ <title><ui:insert name="pageTitle">Insert some page title
here</ui:insert></title>
+ <meta http-equiv="Content-Type" content="text/xhtml;
charset=UTF-8" />
+ <h:outputStylesheet library="css" name="list.css" />
+ <ui:insert name="head"/>
+ </h:head>
+
+ <h:body>
+ <h:panelGrid columns="2">
+ <h:link id="goHomeLink" outcome="/index">
+ <h:graphicImage id="goHomeImage" library="images"
name="home.png" title="Go Home" style="width: 36px;"/>
+ </h:link>
+ <h:panelGroup style="font-size: xx-large; font-weight:
bold;">
+ <ui:insert name="pageTitle">Insert some page title
here</ui:insert>
+ </h:panelGroup>
+ </h:panelGrid>
+
+ <br/>
+
+ <h:panelGroup layout="block" styleClass="links">
+ <ui:insert name="links">Insert some links to pages
here</ui:insert>
+ </h:panelGroup>
+
+ <hr style="width: 900px; margin-left: 0px;"/>
+ #{a4j.version}
+ </h:body>
+</html>