[richfaces-svn-commits] JBoss Rich Faces SVN: r3110 - in trunk/test-applications/facelets/src/main: webapp and 29 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Sep 25 13:31:20 EDT 2007


Author: ayanul
Date: 2007-09-25 13:31:20 -0400 (Tue, 25 Sep 2007)
New Revision: 3110

Removed:
   trunk/test-applications/facelets/src/main/webapp/EmptyPage/
   trunk/test-applications/facelets/src/main/webapp/styles/app.css
Modified:
   trunk/test-applications/facelets/src/main/java/calendar/CalendarBean.java
   trunk/test-applications/facelets/src/main/webapp/Calendar/Calendar.xhtml
   trunk/test-applications/facelets/src/main/webapp/DataFilterSlider/DataFilterSlider.xhtml
   trunk/test-applications/facelets/src/main/webapp/DataTable/DT.xhtml
   trunk/test-applications/facelets/src/main/webapp/DradAndDrop/DragAndDrop.xhtml
   trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DDMenu.xhtml
   trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml
   trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml
   trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml
   trunk/test-applications/facelets/src/main/webapp/Message/Message.xhtml
   trunk/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml
   trunk/test-applications/facelets/src/main/webapp/Paint2D/Paint2D.xhtml
   trunk/test-applications/facelets/src/main/webapp/Panel/Panel.xhtml
   trunk/test-applications/facelets/src/main/webapp/Panel/panel2.xhtml
   trunk/test-applications/facelets/src/main/webapp/PanelBar/PanelBar.xhtml
   trunk/test-applications/facelets/src/main/webapp/PanelMenu/PanelMenu.xhtml
   trunk/test-applications/facelets/src/main/webapp/Separator/Separator.xhtml
   trunk/test-applications/facelets/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.xhtml
   trunk/test-applications/facelets/src/main/webapp/Spacer/Spacer.xhtml
   trunk/test-applications/facelets/src/main/webapp/SuggestionBox/SuggestionBox.xhtml
   trunk/test-applications/facelets/src/main/webapp/TabPanel/TabPanel.xhtml
   trunk/test-applications/facelets/src/main/webapp/ToolBar/ToolBar.xhtml
   trunk/test-applications/facelets/src/main/webapp/Tooltip/Tooltip.xhtml
   trunk/test-applications/facelets/src/main/webapp/Tree/Tree.xhtml
   trunk/test-applications/facelets/src/main/webapp/VirtualEarth/VirtualEarth.xhtml
   trunk/test-applications/facelets/src/main/webapp/WEB-INF/faces-config.xml
   trunk/test-applications/facelets/src/main/webapp/inputNumberSlider/inputNumberSlider.xhtml
   trunk/test-applications/facelets/src/main/webapp/inputNumberSpinner/inputNumberSpinner.xhtml
   trunk/test-applications/facelets/src/main/webapp/pages/RichMenu/RichMenu.xhtml
   trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml
   trunk/test-applications/facelets/src/main/webapp/styles/styles.css
Log:


Modified: trunk/test-applications/facelets/src/main/java/calendar/CalendarBean.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/calendar/CalendarBean.java	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/java/calendar/CalendarBean.java	2007-09-25 17:31:20 UTC (rev 3110)
@@ -35,8 +35,8 @@
 
 	private static final String [] WEEK_DAY_SHORT = new String[] { "Sun *",
 			"Mon +", "Tue +", "Wed +", "Thu +", "Fri +", "Sat *" };
-	private static final String [] WEEK_DAY = new String[] { "Monday +",
-			"Tuesday +", "Wednesday +", "Thursday +", "Friday +", "Saturday +", "Sunday +"};
+	private static final String [] WEEK_DAY = new String[] { "Saturday *", "Monday +",
+			"Tuesday +", "Wednesday +", "Thursday +", "Friday +", "Sunday *"};
 	private static final String [] MOUNT_LABELS = new String[] { "January +",
 			"February +", "March +", "April +", "May +", "June +", "July +", "August +",
 			"September +", "October +", "November +", "December +" };
@@ -147,7 +147,7 @@
 		toolTipMode = "none";
 		scrollMode = "client";
 		required = false;
-		weekDay = "none";
+		weekDay = "long";
 		month = "none";
 		mode = "client";
 		timeZone = "Eastern European Time";
@@ -164,7 +164,7 @@
 			date.add(Integer.parseInt(st.nextToken()));
 		}
 		cal.set(date.get(2), date.get(1) - 1, date.get(0), 12, 0, 0);
-		System.out.println(cal.getTime());
+		System.out.println("prBegin " + cal.getTime());
 		return cal.getTime();
 	}
 
@@ -177,7 +177,7 @@
 			date.add(Integer.parseInt(st.nextToken()));
 		}
 		cal.set(date.get(2), date.get(1) - 1, date.get(0), 12, 0, 0);
-		System.out.println(cal.getTime());
+		System.out.println("prEnd " + cal.getTime());
 		return cal.getTime();
 	}
 
@@ -217,7 +217,7 @@
 	public Object getWeekDayLabels() {
 		if(weekDay.equals("long"))
 			return CalendarBean.WEEK_DAY;
-		else return null;
+	else return null;
 	}
 
 	public Object getWeekDayLabelsShort() {
@@ -232,10 +232,6 @@
 		else return null;
 	}
 	
-	public void weekDay(ValueChangeEvent event) {
-		weekDay = (String) event.getNewValue();
-	}
-	
 	public Object getMonthLabelsShort() {
 		if(month.equals("short"))
 			return CalendarBean.MOUNT_LABELS_SHORT;
@@ -243,9 +239,12 @@
 		
 	}
 
+	public String getMonth() {
+		return month;
+	}
 
-	public void month(ValueChangeEvent event) {
-		month = (String) event.getNewValue();
+	public void setMonth(String month) {
+		this.month = month;
 	}
 
 	public String getCurrentDateAsText() {
@@ -448,4 +447,12 @@
 	public void setMode(String mode) {
 		this.mode = mode;
 	}
+
+	public String getWeekDay() {
+		return weekDay;
+	}
+
+	public void setWeekDay(String weekDay) {
+		this.weekDay = weekDay;
+	}
 }

Modified: trunk/test-applications/facelets/src/main/webapp/Calendar/Calendar.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Calendar/Calendar.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Calendar/Calendar.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -3,20 +3,7 @@
 	xmlns:rich="http://richfaces.org/rich"
 	xmlns:h="http://java.sun.com/jsf/html">
 
-	<style type="text/css">
-.smallText {
-	font-size: xx-small;
-}
 
-.largeText {
-	font-size: xx-large;
-}
-
-.Selecteddayclass {
-	background-color: #0087FF;
-}
-</style>
-
 	<rich:messages showDetail="true"></rich:messages>
 		
 	<f:verbatim>
@@ -29,6 +16,7 @@
 		preloadDateRangeBegin="#{calendarBean.prDateRangeBegin}"
 		preloadDateRangeEnd="#{calendarBean.prDateRangeEnd}"
 		weekDayLabels="#{calendarBean.weekDayLabels}"
+		weekDayLabelsShort="#{calendarBean.weekDayLabelsShort}"
 		monthLabels="#{calendarBean.monthLabels}"
 		monthLabelsShort="#{calendarBean.monthLabelsShort}"
 		value="#{calendarBean.selectedDate}"
@@ -53,13 +41,14 @@
 		scrollMode="#{calendarBean.scrollMode}"
 		rendered="#{calendarBean.rendered}" 
 		focus="popupModeID" 
-		mode="#{calendarBean.mode}"
+		mode="#{calendarBean.mode}" 
 		required="#{calendarBean.required}"
 		requiredMessage="Required Message">
+		
 		<f:facet name="weekDay">			
 			<f:verbatim><span style="padding: 2px;" >{weekDayLabel}</span></f:verbatim>
 		</f:facet>
-		
+			
 		<f:facet name="optionalHeader">
 			<h:outputText value="optionalHeader Facet" />
 		</f:facet>
@@ -97,19 +86,19 @@
 			onclick="submit()" />
 		
 		<h:outputText value="Custom day labels" />
-		<h:selectOneRadio valueChangeListener="#{calendarBean.weekDay}"
-			onclick="submit()" >
+		<h:selectOneRadio value="#{calendarBean.weekDay}">
 			<f:selectItem itemLabel="none" itemValue="none"/>
 			<f:selectItem itemLabel="day labels" itemValue="long"/>	
 			<f:selectItem itemLabel="day labels short" itemValue="short"/>
+			<a4j:support event="onclick" reRender="calendarID"></a4j:support>
 		</h:selectOneRadio>
 			
 		<h:outputText value="Custom month labels" />
-		<h:selectOneRadio valueChangeListener="#{calendarBean.month}"
-			onclick="submit()" >
+		<h:selectOneRadio value="#{calendarBean.month}">
 			<f:selectItem itemLabel="none" itemValue="none"/>
 			<f:selectItem itemLabel="day labels" itemValue="long"/>	
 			<f:selectItem itemLabel="day labels short" itemValue="short"/>
+			<a4j:support event="onclick" reRender="calendarID"></a4j:support>
 		</h:selectOneRadio>
 		
 		<h:outputText value="Select Date Pattern:" />
@@ -194,7 +183,7 @@
 			<f:selectItem itemLabel="batch" itemValue="batch"/>
 		</h:selectOneRadio>
 
-		<h:outputText value="Scroll Mode:" />
+		<h:outputText value="Mode:" />
 		<h:selectOneRadio value="#{calendarBean.scrollMode}" onchange="submit();">
 			<f:selectItem itemLabel="client" itemValue="client"/>
 			<f:selectItem itemLabel="ajax" itemValue="ajax"/>
@@ -239,7 +228,5 @@
 	<f:verbatim>
 		<br />
 	</f:verbatim>
-
-	<h:commandLink value="Back" action="main"></h:commandLink>
 </h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/DataFilterSlider/DataFilterSlider.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DataFilterSlider/DataFilterSlider.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/DataFilterSlider/DataFilterSlider.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -4,51 +4,7 @@
 	xmlns:h="http://java.sun.com/jsf/html"
 	xmlns:rich="http://richfaces.org/rich"
 	xmlns:ui="http://java.sun.com/jsf/facelets">
-	
-	<style type= "text/css">
 
-            body{
-                font: normal 11px tahoma, sans-serif;
-            }
-
-            .column{
-                width:75px;
-                font: normal 11px tahoma, sans-serif;
-                text-align:center;
-            }
-
-            .column-index{
-                width:75px;
-                font: normal 11px tahoma, sans-serif;
-                text-align:left;
-            }
-
-            .list-row3{
-                background-color:#ececec;
-            }
-
-            .list-row1{
-                background-color:#f1f6fd;
-            }
-
-            .list-row2{
-                background-color:#fff;
-            }
-
-            .list-header{
-                font: bold 11px tahoma, sans-serif;
-                text-align:center;
-            }
-
-            .list-table1{
-                border:1px solid #bed6f8;
-            }
-
-            .list-table2{
-                border:1px solid #bed6f8;
-            }
-        </style>
-        
 		<a4j:region id="stat1">
 
 			<a4j:outputPanel id="slider-body">
@@ -125,7 +81,5 @@
 			<h:outputText value="Rendered" />
 			<h:selectBooleanCheckbox value="#{dfs.rendered}" onclick="submit();"/>
 		</h:panelGrid>
-	<h:commandLink value="Back" action="main"></h:commandLink>
-	
 
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/DataTable/DT.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DataTable/DT.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/DataTable/DT.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -119,6 +119,5 @@
 						onclick="submit();" />
 				</h:panelGrid>
 
-			<h:commandLink value="Back" action="main"></h:commandLink>			
 		</h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/DradAndDrop/DragAndDrop.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DradAndDrop/DragAndDrop.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/DradAndDrop/DragAndDrop.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -3,22 +3,7 @@
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:rich="http://richfaces.org/rich"
 	xmlns:h="http://java.sun.com/jsf/html">
-		<style type="text/css">
-			.dropzoneDecoration {
-				width: 70px; height: 70px; border: 2px dotted navy;
-			}
-			
-			.accept {
-				border: 3px dotted green;
-				padding: 10px;
-			}
 
-			.reject {
-				border: 3px dashed red;
-				padding: 10px;
-			}
-		</style>
-
 		<h:panelGroup id="dragValueText">
 			<h:outputText value="#{dndBean.dragValue}" />
 		</h:panelGroup>

Modified: trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DDMenu.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DDMenu.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DDMenu.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -4,12 +4,7 @@
 	xmlns:h="http://java.sun.com/jsf/html"
 	xmlns:rich="http://richfaces.org/rich"
 	xmlns:c="http://java.sun.com/jsp/jstl/core">
-	<style>
-		.mousemove {
-			border: 3px dotted green;
-			padding: 5px;
-		}
-	</style>
+
 		<h:panelGrid columns="3">
 			<h:panelGrid columns="2">
 				<h:outputText value="HideDelay (ms):" />
@@ -153,8 +148,6 @@
 			</rich:panel>
 		</h:panelGrid>
 
-		<h:commandLink value="Back" action="main"></h:commandLink>
-
 		<a4j:log></a4j:log>
 	</h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -293,6 +293,5 @@
 	<rich:effect for="frm5" name="showFrm5" type="Appear" />
 
 
-		<h:commandLink value="Back" action="main"></h:commandLink>
 </h:form>
 	

Modified: trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -102,5 +102,4 @@
 	   </script>
 		</a4j:outputPanel>
 
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -42,5 +42,4 @@
 			<h:outputText value="Rendered" />
 			<h:selectBooleanCheckbox value="#{insert.rendered}"  onchange="submit();"/>
 		</h:panelGrid>
-		<h:commandLink value="Back" action="main"></h:commandLink>
-	</h:form>
\ No newline at end of file
+	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/Message/Message.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Message/Message.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Message/Message.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -161,5 +161,4 @@
 		<f:verbatim>
 			<br />
 		</f:verbatim>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -12,8 +12,10 @@
 				<h:outputText value="Heder goes here..." />
 			</f:facet>
 			<h:outputText value="This is Modal Panel example" styleClass="text1" />
+			<f:verbatim>
 			<br />
 			<br />
+			</f:verbatim>
 			<h:outputLink
 				onclick="Richfaces.hideModalPanel('MPform:MPid');return false;"
 				value="Close">
@@ -60,7 +62,5 @@
 			</h:selectBooleanCheckbox>
 
 		</h:panelGrid>
-
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/Paint2D/Paint2D.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Paint2D/Paint2D.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Paint2D/Paint2D.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -1,15 +1,9 @@
-<!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:a4j="http://richfaces.org/a4j"
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:h="http://java.sun.com/jsf/html"
 	xmlns:rich="http://richfaces.org/rich">
-	<head>
-	<link rel="stylesheet"
-		href="#{facesContext.externalContext.requestContextPath}/styles/styles.css"
-		type="text/css" />
-	</head>
-	<body>
+
 	<h:form>
 		<rich:paint2D id="paint2d" paint="#{paint2D.paint}"
 			data="#{paintData}" width="#{paint2D.width}"
@@ -95,8 +89,5 @@
 				<a4j:support event="onclick" reRender="paint2d"></a4j:support>
 			</h:selectBooleanCheckbox>
 		</h:panelGrid>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>
-	</body>
-
-</html>
+	

Modified: trunk/test-applications/facelets/src/main/webapp/Panel/Panel.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Panel/Panel.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Panel/Panel.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -65,9 +65,6 @@
 			<h:outputText value="Rendered:"></h:outputText>
 			<h:selectBooleanCheckbox value="#{panel.rendered}" onclick="submit()"></h:selectBooleanCheckbox>
 		</h:panelGrid>
-		<h:commandLink value="Sample 2" action="Sample2"></h:commandLink>
-		<br />
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>
 
 

Modified: trunk/test-applications/facelets/src/main/webapp/Panel/panel2.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Panel/panel2.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Panel/panel2.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -4,50 +4,7 @@
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:rich="http://richfaces.org/rich"
 	xmlns:a4j="http://richfaces.org/a4j">
-		<style>
-	 .panel {
-	  vertical-align:top;
-	 }
-	 .rich-panel-header {
-	  color:#F00 !important;
-	 
-	 }
-	 .top {
-	 width:200px !important;height:100px !important;
-	 }
-	 .hea {
-	  color:#FCC !important;
-	 }
-	 .bo {
-	  color:#F00 !important;
-	 }
-	 
-	 .top2 {
-	 width:200px !important;height:100px !important;
-	 border:2px solid #4C9600 !important;
-	 background-color:#E4FFC8 !important;
-	 }
-	 
-	 
-	.hea2 {
-	  background-image : url() !important;
-	  background-color : #4C9600 !important;
-	  height:18px !important;
-	  text-align:center !important;
-	  vertical-align:middle !important;
-	  color:#CFF !important;
-	  padding:4px 0 !important;
-	 }
-	 
-	 .bo2 {
-	  color:#4C9600;
-	 }
-	 .bo3 {
-	  height:100px;
-	  overflow:auto;
-	 }
-	 
-	</style>
+
 		<h:panelGrid columnClasses="panel" border="0" columns="3">
 			<rich:panel styleClass="top">
 				<f:facet name="header">
@@ -136,9 +93,5 @@
 				<h:outputText value="inside the form" />
 			</h:form>
 		</rich:panel>
-		<f:verbatim>
-			<br />
-		</f:verbatim>
-		<h:commandLink value="Back to Panel" action="BackP"></h:commandLink>
 	</h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/PanelBar/PanelBar.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/PanelBar/PanelBar.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/PanelBar/PanelBar.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -66,5 +66,4 @@
 				value="#{panelBar.btnLabel}" />
 
 		</h:panelGrid>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/PanelMenu/PanelMenu.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/PanelMenu/PanelMenu.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/PanelMenu/PanelMenu.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -533,9 +533,4 @@
 				<a4j:support event="onclick" reRender="panelMenuID"></a4j:support>
 			</h:selectOneMenu>
 		</h:panelGrid>
-
-		<f:verbatim>
-			<br />
-		</f:verbatim>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/Separator/Separator.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Separator/Separator.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Separator/Separator.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -61,5 +61,4 @@
 			<h:commandButton action="#{separator.doStyles}"
 				value="#{separator.btnLabel}" />
 		</h:panelGrid>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/SimpleTogglePanel/SimpleTogglePanel.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -3,16 +3,6 @@
 	xmlns:f="http://java.sun.com/jsf/core"
 	xmlns:h="http://java.sun.com/jsf/html"
 	xmlns:rich="http://richfaces.org/rich">
-	<style type="text/css">
-   .head
-   {
-   background-color: aqua;
-   }
-   .body
-   {
-   background-color: pink;
-   }
-   </style>
 		<rich:simpleTogglePanel id="sTP" bodyClass="body" headerClass="head"
 			label="simpleTogglePanel with some text"
 			width="#{simpleTogglePanel.width}"
@@ -97,6 +87,5 @@
 
 		</h:panelGrid>
 
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/Spacer/Spacer.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Spacer/Spacer.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Spacer/Spacer.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -52,5 +52,4 @@
 		<f:verbatim>
 			<br />
 		</f:verbatim>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/SuggestionBox/SuggestionBox.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/SuggestionBox/SuggestionBox.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/SuggestionBox/SuggestionBox.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -122,5 +122,4 @@
 			<h:outputText value="reRender"></h:outputText>
 			<h:selectBooleanCheckbox value="#{sb.reRender}"></h:selectBooleanCheckbox>
 		</h:panelGrid>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/TabPanel/TabPanel.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/TabPanel/TabPanel.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/TabPanel/TabPanel.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -5,18 +5,8 @@
 	xmlns:rich="http://richfaces.org/rich"
 	xmlns:c="http://java.sun.com/jsp/jstl/core">
 	
-<style type="text/css">
-.text
-{
-font-size: 20px
-}
-.bgc
-{
-border: thick;
-background-color: green
-}
-</style>
 
+
 	<rich:tabPanel id="tabPanelId" 
 		headerAlignment="#{tabPanel.headerAlignment}"
 		width="#{tabPanel.width}" height="#{tabPanel.height}"
@@ -120,5 +110,4 @@
 
 
 	</h:panelGrid>
-	<h:commandLink value="Back" action="main"></h:commandLink>
 </h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/ToolBar/ToolBar.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ToolBar/ToolBar.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/ToolBar/ToolBar.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -56,5 +56,4 @@
 				action="#{toolBar.doStyles}" reRender="toolBarId,slBtn">
 			</a4j:commandButton>
 		</h:panelGrid>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/Tooltip/Tooltip.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Tooltip/Tooltip.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Tooltip/Tooltip.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -138,6 +138,5 @@
 		<f:verbatim>
 			<br />
 		</f:verbatim>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/Tree/Tree.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Tree/Tree.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/Tree/Tree.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -117,6 +117,4 @@
 		</rich:tree>
 
 		<rich:spacer></rich:spacer>
-
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/VirtualEarth/VirtualEarth.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/VirtualEarth/VirtualEarth.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/VirtualEarth/VirtualEarth.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -72,8 +72,4 @@
 	   }
 	   </script>
 	</a4j:outputPanel>
-	<f:verbatim>
-		<br />
-	</f:verbatim>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/WEB-INF/faces-config.xml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/WEB-INF/faces-config.xml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -129,8 +129,8 @@
    <to-view-id>/Rich/RichTest.xhtml</to-view-id>
   </navigation-case>
   <navigation-case>
-   <from-outcome>EmptyPage</from-outcome>
-   <to-view-id>/EmptyPage/EmptyPage.xhtml</to-view-id>
+   <from-outcome>CustomizePage</from-outcome>
+   <to-view-id>/CustomizePage/CustomizePage.xhtml</to-view-id>
   </navigation-case>
  </navigation-rule>
  <navigation-rule>

Modified: trunk/test-applications/facelets/src/main/webapp/inputNumberSlider/inputNumberSlider.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/inputNumberSlider/inputNumberSlider.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/inputNumberSlider/inputNumberSlider.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -98,6 +98,5 @@
 		<f:verbatim>
 			<br />
 		</f:verbatim>
-		<h:commandLink value="Back" action="main"></h:commandLink>
 	</h:form>
 

Modified: trunk/test-applications/facelets/src/main/webapp/inputNumberSpinner/inputNumberSpinner.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/inputNumberSpinner/inputNumberSpinner.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/inputNumberSpinner/inputNumberSpinner.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -77,5 +77,4 @@
 			<h:commandButton action="#{inputNumberSpinner.doStyles}"
 				value="#{inputNumberSpinner.btnLabel}" />
 		</h:panelGrid>
-		<h:commandLink value="Back" action="main"></h:commandLink>
-	</h:form>
\ No newline at end of file
+	</h:form>

Modified: trunk/test-applications/facelets/src/main/webapp/pages/RichMenu/RichMenu.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/pages/RichMenu/RichMenu.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/pages/RichMenu/RichMenu.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -39,6 +39,7 @@
 					<f:selectItem itemValue="/Tooltip/Tooltip.xhtml" itemLabel="Tooltip" />
 					<f:selectItem itemValue="/Tree/Tree.xhtml" itemLabel="Tree" />
 					<f:selectItem itemValue="/VirtualEarth/VirtualEarth.xhtml" itemLabel="Virtual Earth" />
+					<f:selectItem itemValue="/ScrollableDataTable/ScrollableDataTable.xhtml" itemLabel="Calendar" />
 				</h:selectOneMenu>
 			</h:panelGrid>
 			<h:commandLink value="Back" action="main"></h:commandLink>

Modified: trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/pages/main.xhtml	2007-09-25 17:31:20 UTC (rev 3110)
@@ -19,7 +19,7 @@
 				<h:commandLink value="Div" action="TestDiv"></h:commandLink>
 				<h:commandLink value="Select" action="Map"></h:commandLink>
 				<h:commandLink value="temp" action="RichTest"></h:commandLink>
-				<h:commandLink value="Customize page" action="EmptyPage"></h:commandLink>
+				<h:commandLink value="Customize page" action="CustomizePage"></h:commandLink>
 			</h:panelGrid>
 		</rich:panel>
 	</h:form>

Deleted: trunk/test-applications/facelets/src/main/webapp/styles/app.css
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/styles/app.css	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/styles/app.css	2007-09-25 17:31:20 UTC (rev 3110)
@@ -1,29 +0,0 @@
-.rich-message-label{
-	padding: 0px 10px;
-}
-
-.rich-messages-label{
-	padding: 0px 10px
-}	
-
-.rich-message-marker{
-}
-
-.rich-message{
-}
-
-.errorLabel{
-	color: #FF0000; 
-}
-
-.warnLabel{
-	color: #0000FF; 
-}
-
-.infoLabel{
-	color: #00FF00;
-}
-
-.fatalLabel{
-	color: #FF1493;
-}

Modified: trunk/test-applications/facelets/src/main/webapp/styles/styles.css
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/styles/styles.css	2007-09-25 16:10:46 UTC (rev 3109)
+++ trunk/test-applications/facelets/src/main/webapp/styles/styles.css	2007-09-25 17:31:20 UTC (rev 3110)
@@ -1,92 +1,247 @@
-.rich-message-label{
+/* Message and messages */
+.rich-message-label {
 	padding: 0px 10px;
 }
 
-.rich-messages-label{
+.rich-messages-label {
 	padding: 0px 10px
-}	
+}
 
-.rich-message-marker{
+.rich-message-marker {
+	
 }
 
-.rich-message{
+.rich-message {
+	
 }
 
-.errorLabel{
-	color: #FF0000; 
+.errorLabel {
+	color: #FF0000;
 }
 
-.warnLabel{
-	color: #0000FF; 
+.warnLabel {
+	color: #0000FF;
 }
 
-.infoLabel{
+.infoLabel {
 	color: #00FF00;
 }
 
-.fatalLabel{
+.fatalLabel {
 	color: #FF1493;
 }
+
 .maintext {
 	font-size: 30px !important;
 }
-.text1{
+
+.text1 {
 	font-size: 14px !important;
 }
-.style{
-background: teal;
-border: solid 3px red;
-font: bold 14px;
+
+.style {
+	background: teal;
+	border: solid 3px red;
+	font: bold 14px;
 }
+
 /* inputNumderSlider Styles */
-.barStyle{
-background-color: purple !important;
-border: red 3px solid;
+.barStyle {
+	background-color: purple !important;
+	border: red 3px solid;
 }
-.inputStyle
-{
-background-color: lime !important;
-border: red 3px solid;
-font-family: monospace;
+
+.inputStyle {
+	background-color: lime !important;
+	border: red 3px solid;
+	font-family: monospace;
 }
-.tipStyle{
-border: green 3px solid;
-background-color: yellow;
-font: italic bold 14px;
+
+.tipStyle {
+	border: green 3px solid;
+	background-color: yellow;
+	font: italic bold 14px;
 }
-.handleStyle{
-border: green 3px solid;
-background-color: yellow;
+
+.handleStyle {
+	border: green 3px solid;
+	background-color: yellow;
 }
+
 /* TabPanel Styles */
-.activeTabStyle{
-background: lime;
-border: solid 3px black;
-font: italic 14px;
+.activeTabStyle {
+	background: lime;
+	border: solid 3px black;
+	font: italic 14px;
 }
-.inactiveTabStyle{
-background: gray;
-border: solid 3px blue;
-font: bold 14px;
+
+.inactiveTabStyle {
+	background: gray;
+	border: solid 3px blue;
+	font: bold 14px;
 }
-.disabledTabStyle{
-background: silver;
-border: dotted 3px blue;
-font: small-caps 14px;
+
+.disabledTabStyle {
+	background: silver;
+	border: dotted 3px blue;
+	font: small-caps 14px;
 }
-.contentStyle{
-background: silver;
-border: 1px red;
-font: 20px;
+
+.contentStyle {
+	background: silver;
+	border: 1px red;
+	font: 20px;
 }
+
 /* inputNumerSpinner Styles*/
-.inputStyle{
-background: aqua ;
-border: thin red;
-font: fantasy 15px;
+.inputStyle {
+	background: aqua;
+	border: thin red;
+	font: fantasy 15px;
 }
+
 /* ToolBar Styles*/
-.separatorStyle{
-border: 3px solid red;
-background: lime;
+.separatorStyle {
+	border: 3px solid red;
+	background: lime;
 }
+
+/*Calendar*/
+.smallText {
+	font-size: xx-small;
+}
+
+.largeText {
+	font-size: xx-large;
+}
+
+.Selecteddayclass {
+	background-color: #0087FF;
+}
+
+/*Data FilterSlider*/
+.column {
+	width: 75px;
+	font: normal 11px tahoma, sans-serif;
+	text-align: center;
+}
+
+.column-index {
+	width: 75px;
+	font: normal 11px tahoma, sans-serif;
+	text-align: left;
+}
+
+.list-row3 {
+	background-color: #ececec;
+}
+
+.list-row1 {
+	background-color: #f1f6fd;
+}
+
+.list-row2 {
+	background-color: #fff;
+}
+
+.list-header {
+	font: bold 11px tahoma, sans-serif;
+	text-align: center;
+}
+
+.list-table1 {
+	border: 1px solid #bed6f8;
+}
+
+.list-table2 {
+	border: 1px solid #bed6f8;
+}
+
+/*Drag and drop*/
+.dropzoneDecoration {
+	width: 70px;
+	height: 70px;
+	border: 2px dotted navy;
+}
+
+.accept {
+	border: 3px dotted green;
+	padding: 10px;
+}
+
+.reject {
+	border: 3px dashed red;
+	padding: 10px;
+}
+
+.mousemove {
+	border: 3px dotted green;
+	padding: 5px;
+}
+
+/*Panel2*/
+.panel {
+	vertical-align: top;
+}
+
+.rich-panel-header {
+	color: #F00 !important;
+}
+
+.top {
+	width: 200px !important;
+	height: 100px !important;
+}
+
+.hea {
+	color: #FCC !important;
+}
+
+.bo {
+	color: #F00 !important;
+}
+
+.top2 {
+	width: 200px !important;
+	height: 100px !important;
+	border: 2px solid #4C9600 !important;
+	background-color: #E4FFC8 !important;
+}
+
+.hea2 {
+	background-image: url() !important;
+	background-color: #4C9600 !important;
+	height: 18px !important;
+	text-align: center !important;
+	vertical-align: middle !important;
+	color: #CFF !important;
+	padding: 4px 0 !important;
+}
+
+.bo2 {
+	color: #4C9600;
+}
+
+.bo3 {
+	height: 100px;
+	overflow: auto;
+}
+
+/*TabPanel*/
+.text {
+	font-size: 20px
+}
+
+.bgc {
+	border: thick;
+	background-color: green
+}
+
+/*SimpleTogglePanel*/
+.head {
+	background-color: aqua;
+}
+
+.body {
+	background-color: pink;
+}
\ No newline at end of file




More information about the richfaces-svn-commits mailing list