[seam-commits] Seam SVN: r15284 - in branches/enterprise/WFK-2_1/examples/booking: booking-web and 1 other directories.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Thu Oct 11 10:51:01 EDT 2012
Author: manaRH
Date: 2012-10-11 10:51:01 -0400 (Thu, 11 Oct 2012)
New Revision: 15284
Modified:
branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/LoginTest.java
branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/bookingExp.html
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/confirmExp.html
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/introExp.html
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/loginExp.html
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/mainExp.html
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/registerExp.html
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/workspaceExp.html
Log:
booking example cleanup
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/LoginTest.java
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/LoginTest.java 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/java/org/jboss/seam/example/booking/test/LoginTest.java 2012-10-11 14:51:01 UTC (rev 15284)
@@ -8,7 +8,6 @@
import org.jboss.arquillian.container.test.api.OverProtocol;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.seam.Component;
-import org.jboss.seam.annotations.In;
import org.jboss.seam.contexts.Lifecycle;
import org.jboss.seam.core.Manager;
import org.jboss.seam.example.booking.User;
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/pom.xml 2012-10-11 14:51:01 UTC (rev 15284)
@@ -28,23 +28,17 @@
</dependency>
<dependency>
<groupId>org.jboss.seam</groupId>
+ <artifactId>jboss-seam</artifactId>
+ <type>ejb</type>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-ui</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- </exclusion>
- </exclusions>
</dependency>
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-debug</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.jboss.seam</groupId>
- <artifactId>jboss-seam</artifactId>
- </exclusion>
- </exclusions>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
@@ -72,6 +66,16 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-api</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.jboss.spec.javax.faces</groupId>
+ <artifactId>jboss-jsf-api_2.1_spec</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.spec.javax.servlet</groupId>
+ <artifactId>jboss-servlet-api_3.0_spec</artifactId>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/bookingExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/bookingExp.html 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/bookingExp.html 2012-10-11 14:51:01 UTC (rev 15284)
@@ -16,7 +16,7 @@
<img src="../img/header_line.gif" />
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
<p>
@@ -151,7 +151,7 @@
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
</div>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/confirmExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/confirmExp.html 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/confirmExp.html 2012-10-11 14:51:01 UTC (rev 15284)
@@ -16,7 +16,7 @@
<img src="../img/header_line.gif" />
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
<p>
@@ -94,7 +94,7 @@
</code>
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
</div>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/introExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/introExp.html 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/introExp.html 2012-10-11 14:51:01 UTC (rev 15284)
@@ -17,7 +17,7 @@
<center>
<form>
- <input type="button" value="Close Window" onclick="window.close()"></input>
+ <div><input type="button" value="Close Window" onclick="window.close()"></input></div>
</form>
</center>
@@ -58,7 +58,7 @@
<center>
<form>
- <input type="button" value="Close Window" onclick="window.close()" />
+ <div><input type="button" value="Close Window" onclick="window.close()" /></div>
</form>
</center>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/loginExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/loginExp.html 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/loginExp.html 2012-10-11 14:51:01 UTC (rev 15284)
@@ -16,7 +16,7 @@
<img src="../img/header_line.gif" />
<center>
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
</center>
<p>
@@ -30,12 +30,12 @@
<code class="block">
<div>
- <h:outputLabel for="username">Login Name</h:outputLabel>
- <h:inputText id="username" value="#{identity.username}" />
+ <h:outputLabel for="username">Login Name</h:outputLabel>
+ <h:inputText id="username" value="#{identity.username}" />
</div>
<div>
- <h:outputLabel for="password">Password</h:outputLabel>
- <h:inputSecret id="password" value="#{identity.password}" />
+ <h:outputLabel for="password">Password</h:outputLabel>
+ <h:inputSecret id="password" value="#{identity.password}" />
</div>
... ...
@@ -151,7 +151,7 @@
</p>
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
</div>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/mainExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/mainExp.html 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/mainExp.html 2012-10-11 14:51:01 UTC (rev 15284)
@@ -16,7 +16,7 @@
<img src="../img/header_line.gif" />
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
<p>
@@ -204,7 +204,7 @@
</code>
<center>
<form>
- <input type="button" value="Close Window" onclick="window.close()"></input>
+ <div><input type="button" value="Close Window" onclick="window.close()"></input></div>
</form>
</center>
</div>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/registerExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/registerExp.html 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/registerExp.html 2012-10-11 14:51:01 UTC (rev 15284)
@@ -16,7 +16,7 @@
<img src="img/header_line.gif" />
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
<p>
@@ -30,7 +30,7 @@
<s:validateAll>
<div class="entry">
<div class="label">
- <h:outputLabel for="username">Username:</h:outputLabel>
+ <h:outputLabel for="username">Username:</h:outputLabel>
</div>
<div class="input">
<h:inputText id="username" value="#{user.username}"/><br/>
@@ -39,11 +39,11 @@
</div>
<div class="entry">
<div class="label">
- <h:outputLabel for="name">Real Name:</h:outputLabel>
+ <h:outputLabel for="name">Real Name:</h:outputLabel>
</div>
<div class="input">
<h:inputText id="name" value="#{user.name}" /><br/>
- <span class="errors"><h:message for="name" /></span>
+ <span class="errors"><h:message for="name" /></span>
</div>
</div>
</s:validateAll>
@@ -219,7 +219,7 @@
</p>
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
</div>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/workspaceExp.html
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/workspaceExp.html 2012-10-11 14:50:43 UTC (rev 15283)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/exp/workspaceExp.html 2012-10-11 14:51:01 UTC (rev 15284)
@@ -17,7 +17,7 @@
<center>
<form>
- <input type="button" value="Close Window" onclick="window.close()"/>
+ <div><input type="button" value="Close Window" onclick="window.close()"/></div>
</form>
</center>
@@ -78,7 +78,7 @@
</p>
<form>
- <input type="button" value="Close Window" onclick="window.close()" />
+ <div><input type="button" value="Close Window" onclick="window.close()" /></div>
</form>
</div>
More information about the seam-commits
mailing list