[richfaces-svn-commits] JBoss Rich Faces SVN: r5043 - in trunk/sandbox/samples: pickList-sample and 13 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Dec 27 13:34:04 EST 2007


Author: abelevich
Date: 2007-12-27 13:34:04 -0500 (Thu, 27 Dec 2007)
New Revision: 5043

Added:
   trunk/sandbox/samples/pickList-sample/
   trunk/sandbox/samples/pickList-sample/pom.xml
   trunk/sandbox/samples/pickList-sample/src/
   trunk/sandbox/samples/pickList-sample/src/main/
   trunk/sandbox/samples/pickList-sample/src/main/java/
   trunk/sandbox/samples/pickList-sample/src/main/java/org/
   trunk/sandbox/samples/pickList-sample/src/main/java/org/richfaces/
   trunk/sandbox/samples/pickList-sample/src/main/java/org/richfaces/Bean.java
   trunk/sandbox/samples/pickList-sample/src/main/resources/
   trunk/sandbox/samples/pickList-sample/src/main/webapp/
   trunk/sandbox/samples/pickList-sample/src/main/webapp/META-INF/
   trunk/sandbox/samples/pickList-sample/src/main/webapp/META-INF/MANIFEST.MF
   trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/
   trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/faces-config.xml
   trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/web.xml
   trunk/sandbox/samples/pickList-sample/src/main/webapp/index.jsp
   trunk/sandbox/samples/pickList-sample/src/main/webapp/pages/
   trunk/sandbox/samples/pickList-sample/src/main/webapp/pages/index.jsp
   trunk/sandbox/samples/pickList-sample/src/test/
   trunk/sandbox/samples/pickList-sample/src/test/java/
   trunk/sandbox/samples/pickList-sample/src/test/java/org/
   trunk/sandbox/samples/pickList-sample/src/test/java/org/richfaces/
   trunk/sandbox/samples/pickList-sample/src/test/java/org/richfaces/BeanTest.java
Log:
initial commit

Added: trunk/sandbox/samples/pickList-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/pickList-sample/pom.xml	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/pom.xml	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,64 @@
+<?xml version="1.0"?><project>
+  <parent>
+    <artifactId>samples</artifactId>
+    <groupId>org.richfaces.sandbox</groupId>
+    <version>3.2.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.richfaces</groupId>
+  <artifactId>pickList-sample</artifactId>
+  <packaging>war</packaging>
+  <name>JSF Maven Webapp</name>
+  <version>1.0-SNAPSHOT</version>
+  <build>
+    <finalName>webapp</finalName>
+    <plugins>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>6.1.1</version>
+        <configuration>
+          <scanIntervalSeconds>10</scanIntervalSeconds>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>8080</port>
+              <maxIdleTime>60000</maxIdleTime>
+            </connector>
+          </connectors>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>mortbay-repo</id>
+      <name>mortbay-repo</name>
+      <url>http://www.mortbay.org/maven2/snapshot</url>
+    </pluginRepository>
+    <pluginRepository>
+      <id>repository.jboss.com</id>
+      <name>Jboss Repository for Maven Artifacts</name>
+      <url>http://repository.jboss.com/maven2</url>
+    </pluginRepository>
+  </pluginRepositories>
+  <dependencies>
+	<dependency>
+			<groupId>org.richfaces.samples</groupId>
+			<artifactId>skins</artifactId>
+		  <version>3.2.0-SNAPSHOT</version>
+    </dependency>
+  	
+    <dependency>
+            <groupId>org.richfaces.ui</groupId>
+            <artifactId>core</artifactId>
+            <version>3.2.0-SNAPSHOT</version>
+    </dependency>
+
+   <dependency>
+     	<groupId>org.richfaces.sandbox.ui</groupId>
+	    <artifactId>pickList</artifactId>
+		 <version>3.2.0-SNAPSHOT</version>
+	 </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Added: trunk/sandbox/samples/pickList-sample/src/main/java/org/richfaces/Bean.java
===================================================================
--- trunk/sandbox/samples/pickList-sample/src/main/java/org/richfaces/Bean.java	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/src/main/java/org/richfaces/Bean.java	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,29 @@
+/**
+ * License Agreement.
+ *
+ * Ajax4jsf 1.1 - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+package org.richfaces;
+/**
+ * @author $Autor$
+ *
+ */
+public class Bean {
+	
+}
\ No newline at end of file

Added: trunk/sandbox/samples/pickList-sample/src/main/webapp/META-INF/MANIFEST.MF
===================================================================
--- trunk/sandbox/samples/pickList-sample/src/main/webapp/META-INF/MANIFEST.MF	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/src/main/webapp/META-INF/MANIFEST.MF	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+

Added: trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/faces-config.xml	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/faces-config.xml	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,10 @@
+<?xml version="1.0"?>
+<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
+                              "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
+<faces-config>
+ <managed-bean>
+  <managed-bean-name>bean</managed-bean-name>
+  <managed-bean-class>org.richfaces.Bean</managed-bean-class>
+  <managed-bean-scope>request</managed-bean-scope>
+ </managed-bean>
+</faces-config>

Added: trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/web.xml	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/src/main/webapp/WEB-INF/web.xml	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
+ <display-name>Archetype Created Web Application</display-name>
+ <context-param>
+  <param-name>javax.faces.CONFIG_FILES</param-name>
+  <param-value>/WEB-INF/faces-config.xml</param-value>
+ </context-param>
+ <context-param>
+  <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+  <param-value>server</param-value>
+ </context-param>
+ <filter>
+  <display-name>Ajax4jsf Filter</display-name>
+  <filter-name>ajax4jsf</filter-name>
+  <filter-class>org.ajax4jsf.Filter</filter-class>
+ </filter>
+ <filter-mapping>
+  <filter-name>ajax4jsf</filter-name>
+  <servlet-name>Faces Servlet</servlet-name>
+  <dispatcher>REQUEST</dispatcher>
+  <dispatcher>FORWARD</dispatcher>
+  <dispatcher>INCLUDE</dispatcher>
+ </filter-mapping>
+ <servlet>
+  <servlet-name>Faces Servlet</servlet-name>
+  <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
+  <load-on-startup>1</load-on-startup>
+ </servlet>
+ <servlet-mapping>
+  <servlet-name>Faces Servlet</servlet-name>
+  <url-pattern>/faces/*</url-pattern>
+ </servlet-mapping>
+ <servlet-mapping>
+  <servlet-name>Faces Servlet</servlet-name>
+  <url-pattern>*.jsf</url-pattern>
+ </servlet-mapping>
+ <login-config>
+  <auth-method>BASIC</auth-method>
+ </login-config>
+</web-app>

Added: trunk/sandbox/samples/pickList-sample/src/main/webapp/index.jsp
===================================================================
--- trunk/sandbox/samples/pickList-sample/src/main/webapp/index.jsp	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/src/main/webapp/index.jsp	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,13 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+
+<html>
+
+<head></head>
+
+	<body>
+
+		<jsp:forward page="/pages/index.jsf" />
+
+	</body>
+
+</html>
\ No newline at end of file

Added: trunk/sandbox/samples/pickList-sample/src/main/webapp/pages/index.jsp
===================================================================
--- trunk/sandbox/samples/pickList-sample/src/main/webapp/pages/index.jsp	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/src/main/webapp/pages/index.jsp	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,17 @@
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://labs.jboss.com/jbossrichfaces/ui/ui/pickList" prefix="pickList"%>
+<html>
+	<head>
+		<title></title>
+	</head>
+	<body>
+		<f:view>
+			<pickList:pickList>
+				<f:selectItem itemValue="test" itemLabel="cats"/>
+				<f:selectItem itemValue="test" itemLabel="dogs"/>
+			</pickList:pickList>
+			
+		</f:view>
+	</body>	
+</html>  

Added: trunk/sandbox/samples/pickList-sample/src/test/java/org/richfaces/BeanTest.java
===================================================================
--- trunk/sandbox/samples/pickList-sample/src/test/java/org/richfaces/BeanTest.java	                        (rev 0)
+++ trunk/sandbox/samples/pickList-sample/src/test/java/org/richfaces/BeanTest.java	2007-12-27 18:34:04 UTC (rev 5043)
@@ -0,0 +1,46 @@
+/**
+ * License Agreement.
+ *
+ * Ajax4jsf 1.1 - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+package org.richfaces;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+*/
+public class BeanTest 
+    extends TestCase
+{
+    /**
+     * Create the test case
+     *
+     * @param testName name of the test case
+     */
+    public BeanTest( String testName )
+    {
+        super( testName );
+    }
+
+    public void testStub() throws Exception {
+    	
+    }
+}




More information about the richfaces-svn-commits mailing list