Author: msorokin
Date: 2009-03-19 10:40:35 -0400 (Thu, 19 Mar 2009)
New Revision: 13030
Added:
trunk/test-applications/richfaces-docs/web/src/main/webapp/framework.xhtml
trunk/test-applications/richfaces-docs/web/src/main/webapp/stskinning.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-6419
Added new sections and fixed menu
Added: trunk/test-applications/richfaces-docs/web/src/main/webapp/framework.xhtml
===================================================================
--- trunk/test-applications/richfaces-docs/web/src/main/webapp/framework.xhtml
(rev 0)
+++ trunk/test-applications/richfaces-docs/web/src/main/webapp/framework.xhtml 2009-03-19
14:40:35 UTC (rev 13030)
@@ -0,0 +1,25 @@
+<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
+
xmlns:s="http://jboss.com/products/seam/taglib"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:rich="http://richfaces.org/rich"
+ template="layout/template.xhtml"
+
xmlns:a4j="http://richfaces.org/a4j">
+
+<ui:define name="body">
+
+
+ <h:messages globalOnly="true" styleClass="message"/>
+
+
+
+ <rich:panel>
+ <f:facet name="header">Framework</f:facet>
+
+ </rich:panel>
+
+</ui:define>
+</ui:composition>
Added: trunk/test-applications/richfaces-docs/web/src/main/webapp/stskinning.xhtml
===================================================================
--- trunk/test-applications/richfaces-docs/web/src/main/webapp/stskinning.xhtml
(rev 0)
+++ trunk/test-applications/richfaces-docs/web/src/main/webapp/stskinning.xhtml 2009-03-19
14:40:35 UTC (rev 13030)
@@ -0,0 +1,53 @@
+<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
+
xmlns:s="http://jboss.com/products/seam/taglib"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:rich="http://richfaces.org/rich"
+ template="layout/template.xhtml"
+
xmlns:a4j="http://richfaces.org/a4j">
+
+<ui:define name="body">
+
+
+ <h:messages globalOnly="true" styleClass="message"/>
+
+
+
+ <rich:panel>
+ <f:facet name="header">Standard Controls Skinning</f:facet>
+
+<h:selectOneRadio id="subscriptions1" value="">
+ <f:selectItem itemLabel="News" itemValue="1" />
+ <f:selectItem itemLabel="Sports" itemValue="2" />
+ <f:selectItem itemLabel="Music" itemValue="3" />
+ <f:selectItem itemLabel="Java" itemValue="4" />
+ <f:selectItem itemLabel="Web" itemValue="5" />
+</h:selectOneRadio>
+
+
+<h:selectManyCheckbox id="subscriptions2" value=""
layout="pageDirection">
+ <f:selectItem itemLabel="News" itemValue="1" />
+ <f:selectItem itemLabel="Sports" itemValue="2" />
+ <f:selectItem itemLabel="Music" itemValue="3" />
+ <f:selectItem itemLabel="Java" itemValue="4" />
+ <f:selectItem itemLabel="Web" itemValue="5" />
+</h:selectManyCheckbox>
+
+<h:selectManyListbox id="subscriptions3" value="">
+ <f:selectItem itemLabel="News" itemValue="1" />
+ <f:selectItem itemLabel="Sports" itemValue="2" />
+ <f:selectItem itemLabel="Music" itemValue="3" />
+ <f:selectItem itemLabel="Java" itemValue="4" />
+ <f:selectItem itemLabel="Web" itemValue="5" />
+</h:selectManyListbox>
+
+
+<h:commandButton value="Submit" />
+
+ </rich:panel>
+
+</ui:define>
+</ui:composition>