Skip to content

Commit

Permalink
split conversation example out from numberguess
Browse files Browse the repository at this point in the history
  • Loading branch information
nickarls committed Mar 5, 2009
1 parent 5a8f9be commit b260719
Show file tree
Hide file tree
Showing 10 changed files with 180 additions and 1 deletion.
Empty file.
11 changes: 11 additions & 0 deletions conversations/WebContent/WEB-INF/faces-config.xml
@@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<faces-config version="1.2"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">

<application>
<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
</application>

</faces-config>
32 changes: 32 additions & 0 deletions conversations/WebContent/WEB-INF/web.xml
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>

<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<display-name>Web Beans Conversations example</display-name>

<!-- JSF -->

<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>*.jsf</url-pattern>
</servlet-mapping>

<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>

<session-config>
<session-timeout>10</session-timeout>
</session-config>

</web-app>
File renamed without changes.
5 changes: 5 additions & 0 deletions conversations/WebContent/index.html
@@ -0,0 +1,5 @@
<html>
<head>
<meta http-equiv="Refresh" content="0; URL=home.jsf">
</head>
</html>
34 changes: 34 additions & 0 deletions conversations/WebContent/template.xhtml
@@ -0,0 +1,34 @@
<!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:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Conversations</title>
<link href="style/main.css" rel="stylesheet" type="text/css"/>
<ui:insert name="head"/>
</head>

<body>

<div id="container">
<div id="header">

</div>

<div id="sidebar">

</div>

<div id="content">
<ui:insert name="content"/>
</div>

<br style="clear:both"/>
</div>

</body>
</html>

7 changes: 7 additions & 0 deletions conversations/build.xml
@@ -0,0 +1,7 @@
<project basedir="." name="Conversations Example Build" default="restart">

<property name="example.name" value="webbeans-conversations" />

<import file="../build.xml" />

</project>
90 changes: 90 additions & 0 deletions conversations/pom.xml
@@ -0,0 +1,90 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.jboss.webbeans.examples</groupId>
<artifactId>parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<groupId>org.jboss.webbeans.examples</groupId>
<artifactId>webbeans-conversations</artifactId>
<packaging>war</packaging>
<name>Web Beans Examples: Conversations</name>

<pluginRepositories>
<pluginRepository>
<id>codehaus snapshot repository</id>
<url>http://snapshots.repository.codehaus.org/</url>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>

<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>

<dependency>
<groupId>org.jboss.webbeans</groupId>
<artifactId>webbeans-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.webbeans</groupId>
<artifactId>webbeans-ri</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.sun.facelets</groupId>
<artifactId>jsf-facelets</artifactId>
</dependency>

<!-- <dependency>
<groupId>org.jboss.el</groupId>
<artifactId>jboss-el</artifactId>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
</exclusion>
</exclusions>
</dependency>-->

<dependency>
<groupId>javax.el</groupId>
<artifactId>el-ri</artifactId>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
</dependency>

</dependencies>

<build>
<finalName>webbeans-conversations</finalName>
</build>

</project>

@@ -1,4 +1,4 @@
package org.jboss.webbeans.examples.numberguess;
package org.jboss.webbeans.examples.conversations;

import java.util.ArrayList;
import java.util.List;
Expand Down
Binary file not shown.

0 comments on commit b260719

Please sign in to comment.