You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ho...@apache.org on 2006/04/23 23:15:54 UTC

svn commit: r396318 - in /geronimo/daytrader/trunk/modules/web/src/main/webapp: WEB-INF/web.xml accountImg.jsp header.html images/dayTraderLogo.gif images/menuHome.gif welcomeImg.jsp

Author: hogstrom
Date: Sun Apr 23 14:15:51 2006
New Revision: 396318

URL: http://svn.apache.org/viewcvs?rev=396318&view=rev
Log:
Update Web component to:

1. Use new shorter artifact names for the ejb.jar instead of daytrader-ejb-1.1-SNAPSHOT.jar
2. Modified a few cosmetic details (missing images and incorrect a refs)


Added:
    geronimo/daytrader/trunk/modules/web/src/main/webapp/images/menuHome.gif   (with props)
Modified:
    geronimo/daytrader/trunk/modules/web/src/main/webapp/WEB-INF/web.xml
    geronimo/daytrader/trunk/modules/web/src/main/webapp/accountImg.jsp
    geronimo/daytrader/trunk/modules/web/src/main/webapp/header.html
    geronimo/daytrader/trunk/modules/web/src/main/webapp/images/dayTraderLogo.gif
    geronimo/daytrader/trunk/modules/web/src/main/webapp/welcomeImg.jsp

Modified: geronimo/daytrader/trunk/modules/web/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewcvs/geronimo/daytrader/trunk/modules/web/src/main/webapp/WEB-INF/web.xml?rev=396318&r1=396317&r2=396318&view=diff
==============================================================================
--- geronimo/daytrader/trunk/modules/web/src/main/webapp/WEB-INF/web.xml (original)
+++ geronimo/daytrader/trunk/modules/web/src/main/webapp/WEB-INF/web.xml Sun Apr 23 14:15:51 2006
@@ -419,13 +419,13 @@
          <message-destination-ref-name>jms/TradeBrokerQueue</message-destination-ref-name>
          <message-destination-type>javax.jms.Queue</message-destination-type>
          <message-destination-usage>Produces</message-destination-usage>
-         <message-destination-link>daytrader-ejb-1.1-SNAPSHOT.jar#TradeBrokerQueue</message-destination-link>
+         <message-destination-link>ejb.jar#TradeBrokerQueue</message-destination-link>
       </message-destination-ref>
       <message-destination-ref>
          <message-destination-ref-name>jms/TradeStreamerTopic</message-destination-ref-name>
          <message-destination-type>javax.jms.Topic</message-destination-type>
          <message-destination-usage>Produces</message-destination-usage>
-         <message-destination-link>daytrader-ejb-1.1-SNAPSHOT.jar#TradeStreamerTopic</message-destination-link>
+         <message-destination-link>ejb.jar#TradeStreamerTopic</message-destination-link>
       </message-destination-ref>
       <service-ref>
         <description>WSDL Service Trade</description>

Modified: geronimo/daytrader/trunk/modules/web/src/main/webapp/accountImg.jsp
URL: http://svn.apache.org/viewcvs/geronimo/daytrader/trunk/modules/web/src/main/webapp/accountImg.jsp?rev=396318&r1=396317&r2=396318&view=diff
==============================================================================
--- geronimo/daytrader/trunk/modules/web/src/main/webapp/accountImg.jsp (original)
+++ geronimo/daytrader/trunk/modules/web/src/main/webapp/accountImg.jsp Sun Apr 23 14:15:51 2006
@@ -27,7 +27,7 @@
 				color="#ffffff"><B>DayTrader</B></FONT></TD>
 		</TR>
 		<TR align="left">
-			<TD><A href="app?action=home"><IMG src="images/home.gif" width="80"
+			<TD><A href="app?action=home"><IMG src="images/menuHome.gif" width="80"
 				height="20" border="0" alt=""></A></TD>
 			<TD><A href="app?action=account"><IMG src="images/account.gif"
 				width="80" height="20" border="0" alt=""></A></TD>

Modified: geronimo/daytrader/trunk/modules/web/src/main/webapp/header.html
URL: http://svn.apache.org/viewcvs/geronimo/daytrader/trunk/modules/web/src/main/webapp/header.html?rev=396318&r1=396317&r2=396318&view=diff
==============================================================================
--- geronimo/daytrader/trunk/modules/web/src/main/webapp/header.html (original)
+++ geronimo/daytrader/trunk/modules/web/src/main/webapp/header.html Sun Apr 23 14:15:51 2006
@@ -13,7 +13,7 @@
 			<table id="header" width="784" height="89" border="0" cellpadding="0" cellspacing="0">
 				<tr>
 					<td colspan="4">
-						<img src="images/dayTraderLogo.gif.gif" width="319" height="53" alt=""></td>
+						<img src="images/dayTraderLogo.gif" width="319" height="53" alt=""></td>
 					<td width="465" height="53" colspan="6">
 						<img src="images/spacer.gif" width="465" height="53" alt=""></td>
 				</tr>
@@ -46,7 +46,7 @@
 						<a href="docs/tradeFAQ.html" target="TradeMainContent">
 							<img src="images/faq.gif" width="86" height="29" border="0" alt=""></a></td>
 					<td>
-						<a href="about.html"
+						<a href="#"
 							onmouseover="window.status='About Dialogue box about DayTrader';  return true;"
 							onmouseout="window.status='';  return true;">
 							<img src="images/about.gif" width="123" height="29" border="0" alt=""></a></td>

Modified: geronimo/daytrader/trunk/modules/web/src/main/webapp/images/dayTraderLogo.gif
URL: http://svn.apache.org/viewcvs/geronimo/daytrader/trunk/modules/web/src/main/webapp/images/dayTraderLogo.gif?rev=396318&r1=396317&r2=396318&view=diff
==============================================================================
Binary files - no diff available.

Added: geronimo/daytrader/trunk/modules/web/src/main/webapp/images/menuHome.gif
URL: http://svn.apache.org/viewcvs/geronimo/daytrader/trunk/modules/web/src/main/webapp/images/menuHome.gif?rev=396318&view=auto
==============================================================================
Binary file - no diff available.

Propchange: geronimo/daytrader/trunk/modules/web/src/main/webapp/images/menuHome.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: geronimo/daytrader/trunk/modules/web/src/main/webapp/welcomeImg.jsp
URL: http://svn.apache.org/viewcvs/geronimo/daytrader/trunk/modules/web/src/main/webapp/welcomeImg.jsp?rev=396318&r1=396317&r2=396318&view=diff
==============================================================================
--- geronimo/daytrader/trunk/modules/web/src/main/webapp/welcomeImg.jsp (original)
+++ geronimo/daytrader/trunk/modules/web/src/main/webapp/welcomeImg.jsp Sun Apr 23 14:15:51 2006
@@ -9,11 +9,10 @@
 <TABLE style="font-size: smaller">
 	<TBODY>
 		<TR>
-			<TD bgcolor="#c93333" align="left" width="680" height="10"><B><FONT
+			<TD bgcolor="#c93333" align="left" width="640" height="10"><B><FONT
 				color="#ffffff">DayTrader Login</FONT></B></TD>
-			<TD align="center" bgcolor="#ffffff" width="100" height="10"><IMG
-				src="images/spacer.gif" border="0" width="45" height="19" alt="">
-			&nbsp;</TD>
+			<TD align="center" bgcolor="#000000" width="100" height="10"><FONT
+				color="#ffffff"><B>DayTrader</B></FONT></TD>
 		</TR>
 	</TBODY>
 </TABLE>
@@ -90,23 +89,15 @@
 <TABLE height="54" style="font-size: smaller">
 	<TBODY>
 		<TR>
-			<TD colspan="2">
-			<HR>
-			</TD>
-		</TR>
-		<TR>
-			<TD colspan="2" align="center"><IMG src="images/GLogo_450x50.gif"
-				width="150" height="21" border="0" alt=""><BR>
-
-			<BR>
+			<TD colspan="2" align="center"><BR>
 			<IMG src="images/ticker-anim.gif" width="385" height="22" border="0"
 				align="middle" alt=""></TD>
 		</TR>
 		<TR>
-			<TD bgcolor="#c93333" align="left" width="680" height="10"><B><FONT
+			<TD bgcolor="#c93333" align="left" width="640" height="10"><B><FONT
 				color="#ffffff">DayTrader Login</FONT></B></TD>
-			<TD align="center" bgcolor="#ffffff" width="100" height="10"><IMG
-				src="images/spacer.gif" border="0" width="45" height="19" alt=""></TD>
+			<TD align="center" bgcolor="#000000" width="100" height="10"><FONT
+				color="#ffffff"><B>DayTrader</B></FONT></TD>
 		</TR>
 	</TBODY>
 </TABLE>