[jboss-cvs] jboss-seam/examples/seambay/view ...
Shane Bryzak
sbryzak at redhat.com
Tue Jul 3 22:09:20 EDT 2007
User: sbryzak2
Date: 07/07/03 22:09:20
Modified: examples/seambay/view header.xhtml sell.xhtml sell2.xhtml
Log:
work in progress
Revision Changes Path
1.8 +1 -1 jboss-seam/examples/seambay/view/header.xhtml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: header.xhtml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/view/header.xhtml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- header.xhtml 3 May 2007 03:23:19 -0000 1.7
+++ header.xhtml 4 Jul 2007 02:09:20 -0000 1.8
@@ -41,7 +41,7 @@
<s:fragment rendered="#{identity.loggedIn}">
Hello, #{authenticatedAccount.name}.
- <span>(</span><s:link action="#{identity.logout}" value="Sign out"/><span>)</span>
+ <span>(</span><s:link action="#{identity.logout}" propagation="none" value="Sign out"/><span>)</span>
</s:fragment>
</ui:composition>
1.3 +10 -4 jboss-seam/examples/seambay/view/sell.xhtml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: sell.xhtml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/view/sell.xhtml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- sell.xhtml 1 May 2007 01:31:49 -0000 1.2
+++ sell.xhtml 4 Jul 2007 02:09:20 -0000 1.3
@@ -32,14 +32,20 @@
<s:validateAll>
<div class="formRow">
- <h:outputLabel for="title">Enter a title for your auction</h:outputLabel>
- <h:inputText id="title" value="#{auction.title}" required="true"/>
+ <h:outputLabel for="title">Enter a short description of the item you wish to sell</h:outputLabel>
+ <h:inputText id="title" value="#{auctionAction.auction.title}" required="true" class="itemDescription"/>
<div class="validationError"><h:message for="title"/></div>
</div>
</s:validateAll>
+ <div class="navBar">
+ <div class="navBarRight">
<h:commandButton action="next" value="Next >"/>
+ </div>
+
+ <br class="clear"/>
+ </div>
<hr class="thinLine"/>
1.2 +40 -13 jboss-seam/examples/seambay/view/sell2.xhtml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: sell2.xhtml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/seambay/view/sell2.xhtml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- sell2.xhtml 1 May 2007 01:31:49 -0000 1.1
+++ sell2.xhtml 4 Jul 2007 02:09:20 -0000 1.2
@@ -10,6 +10,7 @@
<title>seamBay</title>
<link href="style/home.css" rel="stylesheet" type="text/css"/>
<link href="style/common.css" rel="stylesheet" type="text/css"/>
+ <link href="style/sell.css" rel="stylesheet" type="text/css"/>
</head>
<body>
@@ -18,21 +19,47 @@
<div class="banner"></div>
+ <div class="content">
+ <div class="sellHeader">
+ Select a category
+ </div>
+
+ <div class="sellSubHeader">
+ Find the category that most closely matches the item you're selling
+ </div>
+
<h:form>
- <s:validateAll>
- <div class="formRow">
- <h:outputLabel for="description">Enter a description for your auction</h:outputLabel>
- <h:inputText id="description" value="#{auction.description}" required="true"/>
- <div class="validationError"><h:message for="description"/></div>
+ <div class="category">
+ <div class="categoryList">
+ Loading categories...
</div>
+ </div>
+
+ <!--h:inputHidden id="categoryId" value="#{auctionAction.categoryId}" /-->
- <h:commandButton action="next" value="Next"/>
+ <div class="navBar">
+ <div class="navBarLeft">
+ <h:commandButton value="< Previous" action="previous"/>
+ </div>
- </s:validateAll>
+ <div class="navBarRight">
+ <h:commandButton value="Next >" action="next"/>
+ </div>
+
+ <br class="clear"/>
+ </div>
+
+ <hr class="thinLine"/>
+
+ <hr class="baseLine"/>
</h:form>
</div>
+
+ </div>
+
+ <script type="text/javascript" src="sell2.js"></script>
</body>
</html>
More information about the jboss-cvs-commits
mailing list