[richfaces-svn-commits] JBoss Rich Faces SVN: r2157 - in trunk/samples/richfaces-demo/src/main/webapp: richfaces and 1 other directory.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Aug 8 13:38:09 EDT 2007


Author: dbiatenia
Date: 2007-08-08 13:38:09 -0400 (Wed, 08 Aug 2007)
New Revision: 2157

Modified:
   trunk/samples/richfaces-demo/src/main/webapp/css/common.css
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/actionparam.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxListener.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/bundle.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandButton.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandLink.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataFilterSlider.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTableScroller.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragIndicator.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragSupport.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropSupport.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/form.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/gmap.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/keepAlive.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/paint2D.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/panel.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/panelBar.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/region.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/script.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/separator.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/spacer.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/status.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/style.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/suggestionBox.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/support.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/tabPanel.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolBar.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip.xhtml
   trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree.xhtml
Log:
new attribute 'headerClass' added to tabPanel

Modified: trunk/samples/richfaces-demo/src/main/webapp/css/common.css
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/css/common.css	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/css/common.css	2007-08-08 17:38:09 UTC (rev 2157)
@@ -247,6 +247,11 @@
 
 .top_tab .dr-tbpnl-tbtopbrdr{
 }
+
+.header_tabs_class{
+	border-width:0px;
+}
+
 .source_frame {
 	border: 1px solid #ACBECE; 
 	margin: 8px 0px 15px 0px;

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/actionparam.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/actionparam.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/actionparam.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Action Parameter</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/actionparam/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxListener.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxListener.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxListener.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Listener</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/ajaxListener/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/bundle.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/bundle.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/bundle.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Load Bundle</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/bundle/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandButton.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandButton.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandButton.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Button</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/commandButton/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandLink.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandLink.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/commandLink.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Link</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/commandLink/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataFilterSlider.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataFilterSlider.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataFilterSlider.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Data FIlter Slider</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/dataFilterSlider/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Data table</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/dataTable/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTableScroller.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTableScroller.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTableScroller.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Data Table Scroller</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/dataTableScroller/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragIndicator.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragIndicator.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragIndicator.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Drag-n-Drop. Drag Indicator</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/dragSupport/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragSupport.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragSupport.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dragSupport.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Drag-n-Drop. DragSupport</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/dragSupport/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropDownMenu.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Drop Down Menu Component</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/dropDownMenu/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropSupport.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropSupport.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dropSupport.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Drag-n-Drop. DragSupport</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/dragSupport/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/form.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/form.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/form.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Form</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/form/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/gmap.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/gmap.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/gmap.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -8,7 +8,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Google Map Component</ui:define>
 	<ui:define name="body">
 		<f:view contentType="text/html">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/gmap/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -8,7 +8,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - InputNumberSlider</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/inputNumberSlider/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -8,7 +8,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - InputNumberSpinner</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="ajax" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="ajax" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/inputNumberSpinner/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/keepAlive.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/keepAlive.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/keepAlive.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Keep Bean Alive</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/keepAlive/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/modalPanel.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Modal Panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/modalPanel/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/paint2D.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/paint2D.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/paint2D.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Paint 2D Graphic</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/paint2D/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/panel.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/panel.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/panel.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -9,7 +9,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Panel</ui:define>
 	<ui:define name="current">panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" headerClass="header_tabs_class"  contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/panel/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/panelBar.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/panelBar.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/panelBar.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -9,7 +9,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - PanelBar</ui:define>
 	<ui:define name="current">panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/panelBar/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/poll.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Poll</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/poll/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/region.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/region.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/region.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Region</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/region/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/script.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/script.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/script.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Load Script</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/script/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/separator.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/separator.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/separator.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -8,7 +8,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Separator</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="ajax" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="ajax" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/separator/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Simple Toggle Panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/simpleTogglePanel/usage.xhtml"/>
 			</rich:tab>						

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/spacer.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/spacer.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/spacer.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -8,7 +8,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Spacer</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="ajax" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="ajax" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/spacer/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/status.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/status.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/status.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Status</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/status/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/style.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/style.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/style.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Load Style</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/style/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/suggestionBox.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/suggestionBox.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/suggestionBox.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Suggestion Box</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/suggestionBox/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/support.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/support.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/support.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -8,7 +8,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Ajax Support</ui:define>
 	<ui:define name="body">
 	<ui:remove>
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/support/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/tabPanel.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/tabPanel.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/tabPanel.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -7,7 +7,7 @@
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - TabPanel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/tabPanel/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/togglePanel.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -9,7 +9,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Toggle Panel</ui:define>
 	<ui:define name="current">panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/togglePanel/usage.xhtml"/>
 			</rich:tab>		

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolBar.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolBar.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolBar.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -9,7 +9,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - PanelBar</ui:define>
 	<ui:define name="current">panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/toolBar/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -9,7 +9,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - PanelBar</ui:define>
 	<ui:define name="current">panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="ajax" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="ajax" value="#{componentNavigator.activeTab}" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/toolTip/usage.xhtml"/>
 			</rich:tab>			

Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree.xhtml	2007-08-08 17:21:00 UTC (rev 2156)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree.xhtml	2007-08-08 17:38:09 UTC (rev 2157)
@@ -9,7 +9,7 @@
 	<ui:define name="title">RichFaces - Open Source Rich JSF Components - Tree</ui:define>
 	<ui:define name="current">panel</ui:define>
 	<ui:define name="body">
-		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" inactiveTabClass="inactive_tab" activeTabClass="active_tab">
+		<rich:tabPanel switchType="server" styleClass="top_tab" contentClass="content_tab" headerClass="header_tabs_class"  inactiveTabClass="inactive_tab" activeTabClass="active_tab">
 			<rich:tab label="Usage">
 				<ui:include src="/richfaces/tree/usage.xhtml"/>
 			</rich:tab>		




More information about the richfaces-svn-commits mailing list