[richfaces-svn-commits] JBoss Rich Faces SVN: r18947 - in trunk/examples/richfaces-showcase/src/main/webapp: resources/org.richfaces.showcase and 9 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Aug 24 08:01:25 EDT 2010


Author: ilya_shaikovsky
Date: 2010-08-24 08:01:23 -0400 (Tue, 24 Aug 2010)
New Revision: 18947

Added:
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.css
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.css
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.ecss
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.ecss
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/rich/
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/rich/css/
   trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/toolBar.xhtml
Removed:
   trunk/examples/richfaces-showcase/src/main/webapp/resources/rich/
Modified:
   trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/tableFiltering-sample.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/richfaces/outputPanel/samples/compositemessages-sample.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/richfaces/queue/samples/queue-sample.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/richfaces/region/samples/region-sample.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/richfaces/standardSkinning/standardSkinning.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml
   trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml
Log:
solving problems with resources. 
and https://jira.jboss.org/browse/RF-9021

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.css
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.css	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.css	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,3 @@
+rich-message{
+	color:red;
+}
\ No newline at end of file

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.xhtml	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/message.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,30 @@
+<!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:c="http://java.sun.com/jsp/jstl/core"
+	xmlns:composite="http://java.sun.com/jsf/composite"
+	xmlns:a4j="http://richfaces.org/a4j">
+<head>
+<title>panel</title>
+</head>
+<body>
+   
+<composite:interface>
+	<composite:attribute name="for" required="true" />
+	<composite:attribute name="style" required="false" />
+	<composite:attribute name="styleClass" required="false" />
+</composite:interface>
+
+<composite:implementation>
+	<h:outputStylesheet library="org.richfaces.showcase" name="message.css" />  
+	<a4j:outputPanel ajaxRendered="true" layout="none">
+		<h:message for="#{cc.attrs.for}" showDetail="#{cc.attrs.showDetails}"
+			showSummary="#{cc.attrs.showSummary}" style="#{cc.attrs.style}"
+			styleClass="rich-message #{cc.attrs.styleClass}" />
+	</a4j:outputPanel>
+</composite:implementation>
+</body>
+</html>

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.css
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.css	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.css	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,3 @@
+rich-messages{
+	color:red;
+}
\ No newline at end of file

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.xhtml	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/messages.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,29 @@
+<!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:c="http://java.sun.com/jsp/jstl/core"
+	xmlns:composite="http://java.sun.com/jsf/composite"
+	xmlns:a4j="http://richfaces.org/a4j">
+<head>
+<title>panel</title>
+</head>
+<body>
+
+<composite:interface>
+	<composite:attribute name="style" required="false" />
+	<composite:attribute name="styleClass" required="false" />
+</composite:interface>
+
+<composite:implementation>
+	<h:outputStylesheet library="org.richfaces.showcase" name="messages.css" />
+	<a4j:outputPanel ajaxRendered="true" layout="none">
+		<h:messages layout="#{cc.attrs.layout}"
+			showSummary="true" style="color:red; #{cc.attrs.style}"
+			styleClass="rich-message #{cc.attrs.styleClass}" />
+	</a4j:outputPanel>
+</composite:implementation>
+</body>
+</html>

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.ecss
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.ecss	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.ecss	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,96 @@
+.rich-page {
+	width: 100%;
+}
+
+body {
+	background-color: #FFFFFF;
+	margin: 10px;
+}
+
+.header_bg {
+	background-image:
+		"url(#{resource['org.richfaces.demo.images.PageHeaderGradient']})";
+	border-bottom: 1px solid #FFFFFF;
+	background-color: '#{richSkin.headerBackgroundColor}';
+	background-repeat: repeat-x;
+	background-position: top left;
+}
+
+.footer_bg {
+	background-image:
+		"url(#{resource['org.richfaces.demo.images.PageFooterGradient']})";
+	border-top: 1px solid #FFFFFF;
+	background-color: '#{richSkin.headerBackgroundColor}';
+	background-repeat: repeat-x;
+	background-position: center left;
+}
+
+.menu_col {
+	background-color: '#{richSkin.generalBackgroundColor}';
+	vertical-align: top;
+	border-top: 10px solid #FFFFFF;
+	border-right: 10px solid #FFFFFF;
+	border-bottom: 10px solid #FFFFFF;
+}
+
+.content_col {
+	background-color: #FFFFFF;
+	vertical-align: top;
+	width: 100%;
+	border-top: 10px solid #FFFFFF;
+	border-bottom: 10px solid #FFFFFF;
+}
+
+*.menu_col,*.content_col,*.footer_bg {
+	font-family: '#{richSkin.generalFamilyFont}';
+	color: '#{richSkin.generalTextColor}';
+	font-size: '#{richSkin.generalSizeFont}';
+} 
+
+*.header_content {
+	font-family: '#{richSkin.generalFamilyFont}';
+	color: '#{richSkin.headerTextColor}';
+	font-size: '#{richSkin.generalSizeFont}';
+	padding-left: 20px;
+}
+
+.page_size {
+	width: 100%;
+	height: 100%;
+}
+
+.header_content {
+	margin: 0px 0px 0px 0px;
+	position: relative
+}
+
+.spacer {
+	font-size: 1px;
+}
+
+.footer_bg_content {
+	padding:20px;
+	margin: 0px 0px 0px 0px;
+}
+
+.new_marker {
+	color: red; 
+	vertical-align: super; 
+	font-size: 8px; 
+	padding-left: 2px;
+}
+
+.header_links_container, .header_links_container a:visited, .header_links_container * {
+	color: '#{richSkin.headerTextColor}';
+}
+
+.header_links_container {
+	padding-right: 20px;
+}
+
+.skin-chooser{
+margin-bottom: 3px;
+}
+.samples-navigator{
+margin-bottom: 10px;
+}
\ No newline at end of file

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.xhtml	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/page.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,69 @@
+<!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:c="http://java.sun.com/jsp/jstl/core"
+      xmlns:composite="http://java.sun.com/jsf/composite">
+ <head>
+  <title>page</title>
+ </head>
+<body>
+ 
+<composite:interface>
+    <composite:attribute name="style" />
+    <composite:attribute name="styleClass"/>
+    <composite:attribute name="headerClass"/>
+    <composite:attribute name="bodyClass"/>
+    <composite:attribute name="sidebarClass"/>
+</composite:interface>
+<composite:implementation>
+<h:outputText value="&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&gt;" escape="false"/>
+<html xmlns="http://www.w3.org/1999/xhtml"> 
+<h:head>
+	<title>#{cc.attrs.pageTitle}</title>
+	<composite:renderFacet name="pageHeader"/>
+</h:head>
+<h:body>
+    <h:outputStylesheet name="rich/css/page.ecss" />
+			<table border="0" cellpadding="0" cellspacing="0" class="rich-page #{cc.attrs.pageClass}">
+			   <tbody>
+				<tr>
+					<td class="header_bg">
+							<div class="header_content rich-page-header #{cc.attrs.headerClass}">
+						         <composite:renderFacet name="header"/>
+							</div>
+					</td>
+				</tr>
+				<tr>
+					<td width="100%" height="100%" class="bg_tabbody">
+						<table cellpadding="0" cellspacing="0" border="0"  width="100%" height="100%" class="rich-page-content #{cc.attrs.contentClass}">
+						  <tbody>
+							<tr>
+								<td class="menu_col rich-page-sidebar #{cc.attrs.sidebarClass}">
+									<div class="menu_width spacer" style="width:#{cc.attrs.sidebarWidth}px"></div>
+		         						<composite:renderFacet  name="sidebar"/>
+								</td>
+								<td class="content_col  rich-page-body #{cc.attrs.bodyClass}">
+								   <composite:insertChildren /> 
+								</td>
+							</tr>
+							</tbody>
+						</table>
+					</td>
+				</tr>
+				<tr>
+					<td class="footer_bg">
+						<div class="footer_bg_content rich-page-footer #{cc.attrs.footerClass}">
+					          <composite:renderFacet name="footer"/>
+						</div>
+					</td>
+				</tr>
+				</tbody>
+			</table>
+</h:body>
+</html>		
+</composite:implementation>
+</body>
+</html>

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.ecss
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.ecss	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.ecss	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,28 @@
+.rich-panel {
+	border-width: 1px;
+	border-style: solid;
+	padding: 1px;
+	color: '#{richSkin.generalTextColor}';
+	font-family: '#{richSkin.generalFamilyFont}';
+	font-size: '#{richSkin.generalSizeFont}';
+	background-color: '#{richSkin.generalBackgroundColor}';
+	border-color: '#{richSkin.panelBorderColor}';
+}
+
+.rich-panel-header {
+	padding: 7px 20px;
+	border-width: 1px;
+	border-style: solid;
+	background-color: '#{richSkin.headerBackgroundColor}';
+	border-color: '#{richSkin.panelBorderColor}';
+	font-weight: bold;
+	background-position: left top;
+	background-repeat: repeat-x;
+	background-image:
+		"url(#{resource['org.richfaces.demo.images.PanelGradient']})";
+	color: '#{richSkin.headerTextColor}';
+}
+
+.rich-panel-body {
+	padding: 10px;
+}
\ No newline at end of file

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.xhtml	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/panel.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,50 @@
+<!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:c="http://java.sun.com/jsp/jstl/core"
+      xmlns:composite="http://java.sun.com/jsf/composite">
+ <head>
+  <title>panel</title>
+ </head>
+<body>
+ 
+<composite:interface>
+    <composite:attribute name="id" required="false"/>
+    <composite:attribute name="style" required="false"/>
+    <composite:attribute name="styleClass" required="false"/>
+    <composite:attribute name="headerClass" required="false"/>
+    <composite:attribute name="bodyClass" required="false"/>
+</composite:interface>
+ 
+<composite:implementation>
+    <h:outputStylesheet library="org.richfaces.showcase" name="panel.ecss" />
+  
+ <div class="rich-panel #{cc.attrs.styleClass}" id="#{cc.attrs.id}"
+   style="#{cc.attrs.style}"
+   onclick="#{cc.attrs.onclick}" 
+   ondblclick="#{cc.attrs.ondblclick}"
+   onkeydown="#{cc.attrs.onkeydown}"
+   onkeypress="#{cc.attrs.onkeypress}"
+   onkeyup="#{cc.attrs.onkeyup}"
+   onmousedown="#{cc.attrs.onmousedown}"
+   onmousemove="#{cc.attrs.onmousemove}"
+   onmouseout="#{cc.attrs.onmouseout}"
+   onmouseover="#{cc.attrs.onmouseover}"
+   onmouseup="#{cc.attrs.onmouseup}">
+
+   <h:panelGroup rendered="#{not empty cc.facets.header}">
+   <div class="rich-panel-header #{cc.attrs.headerClass}">
+     <composite:renderFacet name="header"/>
+   </div>      
+   </h:panelGroup>   
+  <div class="rich-panel-body #{cc.attrs.bodyClass}" > 
+   <composite:insertChildren /> 
+  </div>   
+ 
+ </div> 
+</composite:implementation>
+</body>
+</html>

Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/toolBar.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/toolBar.xhtml	                        (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/org.richfaces.showcase/toolBar.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -0,0 +1,32 @@
+<!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:c="http://java.sun.com/jsp/jstl/core"
+      xmlns:composite="http://java.sun.com/jsf/composite"
+      xmlns:a4j="http://richfaces.org/a4j">
+ <head>
+  <title>toolBar</title>
+ </head>
+<body>
+
+<composite:interface>
+    <composite:attribute name="items" required="true"/>
+</composite:interface>
+<composite:implementation>
+	<table>
+		<tbody>
+			<a4j:repeat value="#{cc.attrs.items}" var="item">
+				<tr>
+					<td>
+						<h:link value="#{item.name}" outcome="#{item.outcome}" />
+					</td>
+				</tr>
+			</a4j:repeat>
+		</tbody>
+	</table>
+</composite:implementation>
+</body>
+</html>
\ No newline at end of file

Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -3,7 +3,7 @@
 	xmlns:h="http://java.sun.com/jsf/html"
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:ui="http://java.sun.com/jsf/facelets"
-	xmlns:rich="http://java.sun.com/jsf/composite/rich">
+	xmlns:rich="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 
 <ui:composition template="/templates/main.xhtml">
 	<ui:define name="demoSampleParameters">

Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/tableFiltering-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/tableFiltering-sample.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/tableFiltering-sample.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -6,7 +6,7 @@
 	xmlns:a4j="http://richfaces.org/a4j"
 	xmlns:rich="http://richfaces.org/rich"
 	xmlns:fn="http://java.sun.com/jsp/jstl/functions"
-	xmlns:r="http://java.sun.com/jsf/composite/rich">
+	xmlns:r="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 	<h:form id="form">
 		<r:messages />
 		<rich:dataTable value="#{carsBean.allInventoryItems}" var="car"

Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/outputPanel/samples/compositemessages-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/outputPanel/samples/compositemessages-sample.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/outputPanel/samples/compositemessages-sample.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -5,7 +5,7 @@
 	xmlns:ui="http://java.sun.com/jsf/facelets"
 	xmlns:a4j="http://richfaces.org/a4j"
 	xmlns:rich="http://richfaces.org/rich"
-	xmlns:r="http://java.sun.com/jsf/composite/rich">
+	xmlns:r="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 	<h:form>
 		<rich:panel id="psnel">
 			<f:facet name="header">

Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/queue/samples/queue-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/queue/samples/queue-sample.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/queue/samples/queue-sample.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -5,7 +5,7 @@
 	xmlns:ui="http://java.sun.com/jsf/facelets"
 	xmlns:a4j="http://richfaces.org/a4j"
 	xmlns:rich="http://richfaces.org/rich"
-	xmlns:r="http://java.sun.com/jsf/composite/rich">
+	xmlns:r="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 	<rich:panel>
 		<h:form id="form">
 			<a4j:queue requestDelay="#{queueBean.requestDelay}" />

Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/region/samples/region-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/region/samples/region-sample.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/region/samples/region-sample.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -4,7 +4,7 @@
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:ui="http://java.sun.com/jsf/facelets"
 	xmlns:a4j="http://richfaces.org/a4j"
-	xmlns:rich="http://java.sun.com/jsf/composite/rich">
+	xmlns:rich="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 
 <ui:composition>
 	<h:form>

Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/standardSkinning/standardSkinning.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/standardSkinning/standardSkinning.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/standardSkinning/standardSkinning.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -4,7 +4,7 @@
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:ui="http://java.sun.com/jsf/facelets"
 	xmlns:a4j="http://richfaces.org/a4j"
-	xmlns:rich="http://java.sun.com/jsf/composite/rich">
+	xmlns:rich="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 
 <ui:composition>
 	<p>This section overviews main principles of standard components

Modified: trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -3,7 +3,7 @@
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:ui="http://java.sun.com/jsf/facelets"
 	xmlns:a4j="http://richfaces.org/a4j"
-	xmlns:rich="http://java.sun.com/jsf/composite/rich">
+	xmlns:rich="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 	<rich:panel style="width:300px" bodyClass="">
 		<f:facet name="header">
 			<h:outputText value="Navigation" />

Modified: trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -4,7 +4,7 @@
       xmlns:f="http://java.sun.com/jsf/core"
       xmlns:ui="http://java.sun.com/jsf/facelets"
       xmlns:a4j="http://richfaces.org/a4j"
-	xmlns:rich="http://java.sun.com/jsf/composite/rich">
+	xmlns:rich="http://java.sun.com/jsf/composite/org.richfaces.showcase">
 
 	<ui:composition>
 		<rich:panel styleClass="skin-chooser"> 

Modified: trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml	2010-08-24 11:28:21 UTC (rev 18946)
+++ trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml	2010-08-24 12:01:23 UTC (rev 18947)
@@ -3,16 +3,29 @@
 	xmlns:h="http://java.sun.com/jsf/html"
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:ui="http://java.sun.com/jsf/facelets"
-	xmlns:rich="http://java.sun.com/jsf/composite/rich"
+	xmlns:rich="http://java.sun.com/jsf/composite/org.richfaces.showcase"
       xmlns:a4j="http://richfaces.org/a4j">
 <f:view>
 	<ui:insert name="demoSampleParameters"/>
 	
 <h:head>
-			<title>Components Gallery</title>
+<title>Components Gallery</title>
+<script type="text/javascript">
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-7306415-3']);
+  _gaq.push(['_trackPageview']);
+  (function() {
+	  if (window.location.hostname.indexOf("appspot.com") != -1) {
+    	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+    	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+    	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+  	  }
+  })();
+
+</script>			
 </h:head>
 <h:body>
-			<h:outputStylesheet name="rich/css/page.ecss" />
+			<h:outputStylesheet library="org.richfaces.showcase" name="page.ecss" />
 			<table border="0" cellpadding="0" cellspacing="0"
 				class="rich-page header_bg #{cc.attrs.pageClass}">
 				<tbody>



More information about the richfaces-svn-commits mailing list