rubys 01/03/17 13:15:02
Modified: proposal/gump/stylesheet build.xsl jakarta.xsl
Log:
Add back in note support
Revision Changes Path
1.5 +2 -0 jakarta-alexandria/proposal/gump/stylesheet/build.xsl
Index: build.xsl
===================================================================
RCS file: /home/cvs/jakarta-alexandria/proposal/gump/stylesheet/build.xsl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- build.xsl 2001/03/11 13:26:55 1.4
+++ build.xsl 2001/03/17 21:15:01 1.5
@@ -95,6 +95,8 @@
</xsl:if>
</title>
+ <xsl:copy-of select="note"/>
+
<sidebar>
<strong><a href="index.html">Build logs</a></strong>
<ul>
1.6 +24 -3 jakarta-alexandria/proposal/gump/stylesheet/jakarta.xsl
Index: jakarta.xsl
===================================================================
RCS file: /home/cvs/jakarta-alexandria/proposal/gump/stylesheet/jakarta.xsl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- jakarta.xsl 2001/03/11 13:26:55 1.5
+++ jakarta.xsl 2001/03/17 21:15:01 1.6
@@ -18,18 +18,23 @@
<style type="text/css">
body {
background-color: #ffffff;
- color: #000000;
- font-family: arial, helvetica, sanserif }
+ color: #000000 }
:link { color: #525D76 }
div.copyright {
color: #525D76;
font-size: 80%;
text-align: center;
font-weight: bold; }
+ td.sidebar {
+ font-family: arial, helvetica, sanserif }
td.title {
background-color: #525D76;
color: #ffffff;
font-weight: bold; }
+ td.note {
+ background-color: #B1B7C1;
+ color: #000000;
+ font-family: arial, helvetica, sanserif }
td.fail {
background-color: red;
font-weight: bold; }
@@ -58,7 +63,7 @@
</td>
</tr>
<tr>
- <td valign="top" nowrap="true">
+ <td valign="top" nowrap="true" class="sidebar">
<xsl:apply-templates select="sidebar/*"/>
</td>
<td align="left" valign="top">
@@ -69,7 +74,23 @@
</td>
</tr>
</table>
+
<xsl:apply-templates select="menu/*|menu/text()"/>
+
+ <xsl:if test="note">
+ <p/>
+ <table border="0" cellspacing="0" cellpadding="2" width="100%">
+ <tr>
+ <td class="note">
+ <strong>
+ Note:
+ </strong>
+ <xsl:apply-templates select="note/text()"/>
+ </td>
+ </tr>
+ </table>
+ </xsl:if>
+
<xsl:apply-templates select="content/*"/>
</td>
</tr>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]