You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2011/02/17 06:30:13 UTC

svn commit: r1071506 [2/2] - in /gump/site: ./ metadata/ python/ skin/ skin/images/

Added: gump/site/skin/skinconf.xsl
URL: http://svn.apache.org/viewvc/gump/site/skin/skinconf.xsl?rev=1071506&view=auto
==============================================================================
--- gump/site/skin/skinconf.xsl (added)
+++ gump/site/skin/skinconf.xsl Thu Feb 17 05:30:12 2011
@@ -0,0 +1,137 @@
+<?xml version="1.0"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+  <xsl:template match="skinconfig">
+    <xsl:if test="not(colors)">
+      <colors>
+<!-- Lenya -->
+        <color name="header" value="#ffffff"/>
+        <color name="tab-selected" value="#4C6C8F" link="#ffffff" vlink="#ffffff" hlink="#ffffff"/>
+        <color name="tab-unselected" value="#E5E4D9" link="#000000" vlink="#000000" hlink="#000000"/>
+        <color name="subtab-selected" value="#4C6C8F" link="#ffffff" vlink="#ffffff" hlink="#ffffff"/>
+        <color name="subtab-unselected" value="#E5E4D9" link="#000000" vlink="#000000" hlink="#000000"/>
+        <color name="heading" value="#E5E4D9"/>
+        <color name="subheading" value="#E5E4D9"/>
+        <color name="published" value="#4C6C8F" font="#FFFFFF"/>
+        <color name="feedback" value="#4C6C8F" font="#FFFFFF" align="center"/>
+        <color name="navstrip" value="#E5E4D9" font="#000000"/>
+        <color name="toolbox" value="#CFDCED" font="#000000"/>
+        <color name="border" value="#999999"/>
+        <color name="menu" value="#4C6C8F" font="#ffffff" link="#ffffff" vlink="#ffffff" hlink="#ffffff"  />
+        <color name="menuheading" value="#cfdced" font="#000000" />
+        <color name="searchbox" value="#E5E4D9" font="#000000"/>
+        <color name="dialog" value="#E5E4D9" font="#000000"/>
+        <color name="body" value="#ffffff" />
+        <color name="table" value="#ccc"/>
+        <color name="table-cell" value="#ffffff"/>
+        <color name="highlight" value="#ffff00"/>
+        <color name="fixme" value="#cc6600"/>
+        <color name="note" value="#006699"/>
+        <color name="warning" value="#990000"/>
+        <color name="code" value="#003366"/>
+        <color name="footer" value="#E5E4D9"/>
+      </colors>
+    </xsl:if>
+    <xsl:copy>
+      <xsl:copy-of select="@*"/>
+      <xsl:copy-of select="node()[not(name(.)='colors')]"/>
+      <xsl:apply-templates select="colors"/>
+    </xsl:copy>
+  </xsl:template>
+  <xsl:template match="colors">
+    <xsl:copy>
+      <xsl:copy-of select="@*"/>
+      <xsl:copy-of select="node()[name(.)='color']"/>
+      <xsl:if test="not(color[@name='header'])">
+        <color name="header" value="#FFFFFF"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='tab-selected'])">
+        <color name="tab-selected" value="#4C6C8F" link="#ffffff" vlink="#ffffff" hlink="#ffffff"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='tab-unselected'])">
+        <color name="tab-unselected" value="#E5E4D9" link="#000000" vlink="#000000" hlink="#000000"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='subtab-selected'])">
+        <color name="subtab-selected" value="#4C6C8F" link="#ffffff" vlink="#ffffff" hlink="#ffffff"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='subtab-unselected'])">
+        <color name="subtab-unselected" value="#E5E4D9" link="#000000" vlink="#000000" hlink="#000000"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='heading'])">
+        <color name="heading" value="#E5E4D9"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='subheading'])">
+        <color name="subheading" value="#E5E4D9"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='feedback'])">
+        <color name="feedback" value="#4C6C8F" font="#FFFFFF" align="center"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='published'])">
+        <color name="published" value="#4C6C8F" font="#FFFFFF"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='navstrip'])">
+        <color name="navstrip" value="#E5E4D9" font="#000000"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='toolbox'])">
+        <color name="toolbox" value="#CFDCED" font="#000000"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='border'])">
+        <color name="border" value="#999999"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='menu'])">
+        <color name="menu" value="#4C6C8F" font="#ffffff" link="#ffffff" vlink="#ffffff" hlink="#ffffff"  />
+      </xsl:if>
+      <xsl:if test="not(color[@name='menuheading'])">
+        <color name="menuheading" value="#cfdced" font="#000000" />
+      </xsl:if>
+      <xsl:if test="not(color[@name='searchbox'])">
+        <color name="searchbox" value="#E5E4D9" font="#000000"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='dialog'])">
+        <color name="dialog" value="#E5E4D9" font="#000000" link="#000000" vlink="#000000" hlink="#000000"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='body'])">
+        <color name="body" value="#ffffff" />
+      </xsl:if>
+      <xsl:if test="not(color[@name='table'])">
+        <color name="table" value="#ccc"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='table-cell'])">
+        <color name="table-cell" value="#ffffff"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='highlight'])">
+        <color name="highlight" value="#ffff00"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='fixme'])">
+        <color name="fixme" value="#c60"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='note'])">
+        <color name="note" value="#069"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='warning'])">
+        <color name="warning" value="#900"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='code'])">
+        <color name="code" value="#a5b6c6"/>
+      </xsl:if>
+      <xsl:if test="not(color[@name='footer'])">
+        <color name="footer" value="#E5E4D9"/>
+      </xsl:if>
+    </xsl:copy>
+  </xsl:template>
+</xsl:stylesheet>

Propchange: gump/site/skin/skinconf.xsl
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: gump/site/status.html
URL: http://svn.apache.org/viewvc/gump/site/status.html?rev=1071506&r1=1071505&r2=1071506&view=diff
==============================================================================
--- gump/site/status.html (original)
+++ gump/site/status.html Thu Feb 17 05:30:12 2011
@@ -3,8 +3,8 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
-<meta name="Forrest-skin-name" content="gump-site">
+<meta name="Forrest-version" content="0.9">
+<meta name="Forrest-skin-name" content="pelt">
 <title>Apache Gump&trade;</title>
 <link type="text/css" href="skin/basic.css" rel="stylesheet">
 <link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
@@ -174,6 +174,7 @@ document.write("Last Published: " + docu
     +-->
 <div id="content">
 <h1>Apache Gump&trade;</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -211,16 +212,17 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
 
   
-<a name="N10011"></a><a name="Recurring+build+problems"></a>
+<a name="Recurring+build+problems"></a>
 <h2 class="boxed">Recurring build problems</h2>
 <div class="section">
 <p>These represent "known problems".  In some cases, they represent a
     temporary problem that will be synched up at the point of the next
     release, in other cases they may represent an abject failure to
     communicate.</p>
-<a name="N10019"></a><a name="jakarta-taglibs"></a>
+<a name="jakarta-taglibs"></a>
 <h3 class="boxed">jakarta-taglibs</h3>
 <p>At the moment, the taglibs builds require the presence of xalan1.
       Xalan1's last release was in August of 2000.  It has been removed
@@ -232,30 +234,30 @@ document.write("Last Published: " + docu
 </div>
 
   
-<a name="N10023"></a><a name="Other+Issues"></a>
+<a name="Other+Issues"></a>
 <h2 class="boxed">Other Issues</h2>
 <div class="section">
 <p>These represent versioning issues that will not show up in any
     Apache Gump run, but you may need to be aware.</p>
-<a name="N1002B"></a><a name="jakarta-turbine"></a>
+<a name="jakarta-turbine"></a>
 <h3 class="boxed">jakarta-turbine</h3>
 <p>Based on inspection, I don't believe that turbine-2 and turbine-3 can
       coexist in a classpath.  The jakarta-jetspeed, jakarta-turbine-jyve, and
       jakarta-turbine-orgami projects depend on turbine-2.  The
       jakarta-turbine-flux project depends on turbine-3.</p>
-<a name="N10034"></a><a name="jakarta-velocity"></a>
+<a name="jakarta-velocity"></a>
 <h3 class="boxed">jakarta-velocity</h3>
 <p>The combination of Texen, Ant 1.4 or later, and placing jars on your
       classpath can result in unexpected behavior.  This has been isolated
       to a standalone 
-      <a href="http://marc.theaimsgroup.com/?l=ant-dev&m=100264908721443&w=2">test case</a> 
+      <a href="http://marc.theaimsgroup.com/?l=ant-dev&amp;m=100264908721443&amp;w=2">test case</a> 
       and being investigated by the Ant development team.  Meanwhile, an 
       undocumented attribute, reverseloader, which when set to the value "true"
       on taskdefs which defines texen may help.</p>
 </div>
 
   
-<a name="N10042"></a><a name="Recent+success+stories"></a>
+<a name="Recent+success+stories"></a>
 <h2 class="boxed">Recent success stories</h2>
 <div class="section">
 <p>This section describes cross project compatibility issues which were:
@@ -272,7 +274,7 @@ document.write("Last Published: " + docu
 <li>the changes were done prior to release.</li>
     
 </ul>
-<a name="N10059"></a><a name="dbxml"></a>
+<a name="dbxml"></a>
 <h3 class="boxed">dbxml</h3>
 <p>October 2001: The Xalan team is in the process of changing an 
       undocumented API that dbXML used.  The dbXML team determined that the
@@ -280,14 +282,14 @@ document.write("Last Published: " + docu
       This was corrected after the second beta of dbXML - meaning that the
       users of their next release will be able to upgrade smoothly to
       Xalan 2.2 once it is released.</p>
-<a name="N10062"></a><a name="jakarta-log4j"></a>
+<a name="jakarta-log4j"></a>
 <h3 class="boxed">jakarta-log4j</h3>
 <p>September 2001: in order to more closely resemble the JSR 47 API,
       the Level class replaced the Priority class, and the Logger class
       replaced the Category class.  This was originally done in a manner which
       was thought to be backwards compatible, but there was subtle reasons why
       this was not the case.</p>
-<a name="N1006B"></a><a name="jakarta-ant"></a>
+<a name="jakarta-ant"></a>
 <h3 class="boxed">jakarta-ant</h3>
 <p>December 2001: a manifest task was added to Ant which collided with
       the manifest task contained within xml-fop.  What followed was the most
@@ -323,6 +325,10 @@ document.write("Last Published: " + docu
     Apache Gump, Gump, Apache, the Apache feather logo, and the Apache Gump
     project logos are trademarks of The Apache Software Foundation.
   </div>
+<div id="feedback">
+    Send feedback about the website to:
+  <a id="feedbackto" href="mailto:webmaster@example.org?subject=Feedback%C2%A0status.html">webmaster@example.org</a>
+</div>
 <!--+
     |end bottomstrip
     +-->

Modified: gump/site/whoweare.html
URL: http://svn.apache.org/viewvc/gump/site/whoweare.html?rev=1071506&r1=1071505&r2=1071506&view=diff
==============================================================================
--- gump/site/whoweare.html (original)
+++ gump/site/whoweare.html Thu Feb 17 05:30:12 2011
@@ -3,8 +3,8 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
-<meta name="Forrest-skin-name" content="gump-site">
+<meta name="Forrest-version" content="0.9">
+<meta name="Forrest-skin-name" content="pelt">
 <title>Apache Gump Team Page</title>
 <link type="text/css" href="skin/basic.css" rel="stylesheet">
 <link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
@@ -174,6 +174,7 @@ document.write("Last Published: " + docu
     +-->
 <div id="content">
 <h1>Apache Gump Team Page</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -189,9 +190,10 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
 
     
-<a name="N10014"></a><a name="Committers"></a>
+<a name="Committers"></a>
 <h2 class="boxed">Committers</h2>
 <div class="section">
 <p>All Apache committers have commit access to the Gump
@@ -199,7 +201,7 @@ document.write("Last Published: " + docu
 </div>
 
     
-<a name="N1001D"></a><a name="Project+Managment+Committee"></a>
+<a name="Project+Managment+Committee"></a>
 <h2 class="boxed">Project Managment Committee</h2>
 <div class="section">
 <ul>
@@ -231,7 +233,7 @@ document.write("Last Published: " + docu
 </ul>
 <p>The Apache Gump Project Managment Committee can be contacted
         at private@gump.apache.org.</p>
-<a name="N1004C"></a><a name="Emeritus+PMC+members"></a>
+<a name="Emeritus+PMC+members"></a>
 <h3 class="boxed">Emeritus PMC members</h3>
 <ul>
           
@@ -267,6 +269,10 @@ document.write("Last Published: " + docu
     Apache Gump, Gump, Apache, the Apache feather logo, and the Apache Gump
     project logos are trademarks of The Apache Software Foundation.
   </div>
+<div id="feedback">
+    Send feedback about the website to:
+  <a id="feedbackto" href="mailto:webmaster@example.org?subject=Feedback%C2%A0whoweare.html">webmaster@example.org</a>
+</div>
 <!--+
     |end bottomstrip
     +-->

Modified: gump/site/why.html
URL: http://svn.apache.org/viewvc/gump/site/why.html?rev=1071506&r1=1071505&r2=1071506&view=diff
==============================================================================
--- gump/site/why.html (original)
+++ gump/site/why.html Thu Feb 17 05:30:12 2011
@@ -3,8 +3,8 @@
 <head>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <meta content="Apache Forrest" name="Generator">
-<meta name="Forrest-version" content="0.8">
-<meta name="Forrest-skin-name" content="gump-site">
+<meta name="Forrest-version" content="0.9">
+<meta name="Forrest-skin-name" content="pelt">
 <title>Why was Apache Gump written?</title>
 <link type="text/css" href="skin/basic.css" rel="stylesheet">
 <link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
@@ -210,6 +210,7 @@ document.write("Last Published: " + docu
     +-->
 <div id="content">
 <h1>Why was Apache Gump written?</h1>
+<div id="front-matter">
 <div id="minitoc-area">
 <ul class="minitoc">
 <li>
@@ -229,6 +230,7 @@ document.write("Last Published: " + docu
 </li>
 </ul>
 </div>
+</div>
 
   
 <p>
@@ -251,7 +253,7 @@ document.write("Last Published: " + docu
 </ul>
 
   
-<a name="N10024"></a><a name="1999"></a>
+<a name="1999"></a>
 <h2 class="boxed">1999</h2>
 <div class="section">
 <p>To help set the context, in 1999 the ink was hardly dry on the XML 
@@ -275,7 +277,7 @@ document.write("Last Published: " + docu
 </div>
 
   
-<a name="N10036"></a><a name="2000"></a>
+<a name="2000"></a>
 <h2 class="boxed">2000</h2>
 <div class="section">
 <p>In 2000, Ant developed the ability to control one's classpath.
@@ -295,7 +297,7 @@ document.write("Last Published: " + docu
 </div>
 
   
-<a name="N10048"></a><a name="2001"></a>
+<a name="2001"></a>
 <h2 class="boxed">2001</h2>
 <div class="section">
 <p>Now that I had a technological solution to my problems, the number of
@@ -322,7 +324,7 @@ document.write("Last Published: " + docu
 </div>
 
   
-<a name="N1005A"></a><a name="2002"></a>
+<a name="2002"></a>
 <h2 class="boxed">2002</h2>
 <div class="section">
 <p>There is a growing trend for projects to split into multiple cvs trees -
@@ -347,7 +349,7 @@ document.write("Last Published: " + docu
 </div>
 
   
-<a name="N1006F"></a><a name="2003"></a>
+<a name="2003"></a>
 <h2 class="boxed">2003</h2>
 <div class="section">
 <p>As a heavy user of OSS software, combining lots of it into deep stacks,
@@ -384,6 +386,10 @@ document.write("Last Published: " + docu
     Apache Gump, Gump, Apache, the Apache feather logo, and the Apache Gump
     project logos are trademarks of The Apache Software Foundation.
   </div>
+<div id="feedback">
+    Send feedback about the website to:
+  <a id="feedbackto" href="mailto:webmaster@example.org?subject=Feedback%C2%A0why.html">webmaster@example.org</a>
+</div>
 <!--+
     |end bottomstrip
     +-->