You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by ch...@apache.org on 2005/06/07 18:34:58 UTC

svn commit: r188810 - in /forrest/trunk: main/webapp/resources/schema/dtd/ plugins/org.apache.forrest.plugin.input.OpenOffice.org/ plugins/org.apache.forrest.plugin.input.excel/ plugins/org.apache.forrest.plugin.input.feeder/ plugins/org.apache.forrest.plugin.input.listLocations/ plugins/org.apache.forrest.plugin.input.projectInfo/ plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/ plugins/org.apache.forrest.plugin.input.simplified-docbook/ plugins/org.apache.forrest.plugin.internal.IMSManifest/ plugins/org.apache.forrest.plugin.output.POD/ plugins/org.apache.forrest.plugin.output.Text/ plugins/org.apache.forrest.plugin.output.pdf/ plugins/pluginTemplate/ site-author/ whiteboard/plugins/org.apache.forrest.plugin.Chart/ whiteboard/plugins/org.apache.forrest.plugin.Database/ whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/ whiteboard/plugins/org.apache.forrest.plugin.input.Daisy/ whiteboard/plugins/org.apache.forrest.plugin.input.logs/ whiteboard/plugins/org.apache.forrest.plugin.internal.view/ whiteboard/plugins/org.apache.forrest.plugin.output.htmlArea/ whiteboard/plugins/org.apache.forrest.plugin.output.viewHelper.xhtml/ whiteboard/plugins/rtf-output/ whiteboard/tests/basic/ whiteboard/tests/whole-site/ whiteboard/tests/xsltunit/

Author: cheche
Date: Tue Jun  7 09:34:56 2005
New Revision: 188810

URL: http://svn.apache.org/viewcvs?rev=188810&view=rev
Log:
<action context="code" dev="JJP" due-to="Cyriaque Dupoirieux" fixes-bug="FOR-514">
Do not limit status.xml contexts in project info plugin


Modified:
    forrest/trunk/main/webapp/resources/schema/dtd/common-elems-v10.mod
    forrest/trunk/main/webapp/resources/schema/dtd/status-v13.mod
    forrest/trunk/plugins/org.apache.forrest.plugin.input.OpenOffice.org/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.excel/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.feeder/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2document.xsl
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.simplified-docbook/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.internal.IMSManifest/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.output.Text/status.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml
    forrest/trunk/plugins/pluginTemplate/status.xml
    forrest/trunk/site-author/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Chart/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Daisy/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.logs/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.view/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.htmlArea/status.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.viewHelper.xhtml/status.xml
    forrest/trunk/whiteboard/plugins/rtf-output/status.xml
    forrest/trunk/whiteboard/tests/basic/status.xml
    forrest/trunk/whiteboard/tests/whole-site/status.xml
    forrest/trunk/whiteboard/tests/xsltunit/status.xml

Modified: forrest/trunk/main/webapp/resources/schema/dtd/common-elems-v10.mod
URL: http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/resources/schema/dtd/common-elems-v10.mod?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/main/webapp/resources/schema/dtd/common-elems-v10.mod (original)
+++ forrest/trunk/main/webapp/resources/schema/dtd/common-elems-v10.mod Tue Jun  7 09:34:56 2005
@@ -47,7 +47,6 @@
 <!-- =============================================================== -->
 
 <!ENTITY % types "add|remove|update|fix">
-<!ENTITY % contexts "build|docs|code|admin|design">
 <!ENTITY % importances "high|medium|low">
 
 <!-- =============================================================== -->
@@ -61,7 +60,7 @@
 <!ATTLIST action %common.att;
           dev  IDREF  #REQUIRED
           type (%types;)  #IMPLIED
-          context (%contexts;) #IMPLIED
+          context  IDREF  #REQUIRED
           importance (%importances;) "medium"
           due-to CDATA #IMPLIED
           due-to-email CDATA #IMPLIED

Modified: forrest/trunk/main/webapp/resources/schema/dtd/status-v13.mod
URL: http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/resources/schema/dtd/status-v13.mod?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/main/webapp/resources/schema/dtd/status-v13.mod (original)
+++ forrest/trunk/main/webapp/resources/schema/dtd/status-v13.mod Tue Jun  7 09:34:56 2005
@@ -39,10 +39,15 @@
 <!-- =============================================================== -->
 <!-- Document Type Definition -->
 <!-- =============================================================== -->
-<!ELEMENT status (developers, changes, todo)>
+<!ELEMENT status (developers, contexts?, changes, todo)>
 
 <!ELEMENT developers (person+)>
 <!ATTLIST developers %common.att;>
+
+<!ELEMENT contexts (context+)>
+<!ELEMENT context EMPTY>
+<!ATTLIST context %common-idreq.att;
+                  %title.att;>
 
 <!-- =============================================================== -->
 <!-- End of DTD -->

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.OpenOffice.org/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.OpenOffice.org/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.OpenOffice.org/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.OpenOffice.org/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="RDG" type="update" context="code" 

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.excel/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.excel/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.excel/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.excel/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.3-dev" date="unreleased">
       <action type="update" context="admin" dev="RDG">

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.feeder/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.feeder/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.feeder/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.feeder/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="RDG" type="update" context="admin">

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml Tue Jun  7 09:34:56 2005
@@ -21,6 +21,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2document.xsl
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2document.xsl?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2document.xsl (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2document.xsl Tue Jun  7 09:34:56 2005
@@ -69,59 +69,32 @@
   </document>
  </xsl:template>
 
+ <xsl:key name="contextes" match="changes/release/action" use="concat(../@version, '_', @context)"/>
+
  <xsl:template match="release">
   <section id="version_{@version}">
-   <title>Version <xsl:value-of select="@version"/> (<xsl:value-of select="@date"/>)</title>
-     <xsl:if test="action[@context='code']">
-       <section>
-         <title>Changes to Code Base</title>
-         <ul>
-          <xsl:apply-templates select="action[@context='code']">
-            <xsl:sort select="@type"/>
-          </xsl:apply-templates>
-         </ul>
-       </section>
-     </xsl:if>
-     <xsl:if test="action[@context='docs']">
-       <section>
-         <title>Changes to Documentation</title>
-         <ul>
-          <xsl:apply-templates select="action[@context='docs']">
-            <xsl:sort select="@type"/>
-          </xsl:apply-templates>
-        </ul>
-       </section>
-     </xsl:if>
-     <xsl:if test="action[@context='admin']">
-       <section>
-         <title>Changes to Project Administration</title>
-         <ul>
-           <xsl:apply-templates select="action[@context='admin']">
-            <xsl:sort select="@type"/>
-          </xsl:apply-templates>
-         </ul>
-       </section>
-     </xsl:if>
-     <xsl:if test="action[@context='design']">
-       <section>
-         <title>Changes to Design</title>
-         <ul>
-          <xsl:apply-templates select="action[@context='design']">
-            <xsl:sort select="@type"/>
-          </xsl:apply-templates>
-         </ul>
-       </section>
-     </xsl:if>
-     <xsl:if test="action[@context='build']">
-       <section>
-         <title>Changes to Build</title>
-         <ul>
-           <xsl:apply-templates select="action[@context='build']">
-            <xsl:sort select="@type"/>
-          </xsl:apply-templates>
-         </ul>
-       </section>
-     </xsl:if>
+   <title>Version <xsl:value-of select="@version"/> (<xsl:value-of select="@date"/>)</title> 
+   <xsl:for-each select="action[generate-id()=generate-id(key('contextes',concat(../@version, '_', @context)))]">
+    <xsl:sort select="@context"/>
+    <section>
+    <xsl:variable name="context" select="@context"/>
+    <title>
+    <xsl:choose>
+      <xsl:when test="//contexts/context[@id=$context]">
+       <xsl:value-of select="//contexts/context[@id=$context]/@title"/>
+      </xsl:when>
+      <xsl:otherwise>
+       <xsl:value-of select="@context"/>
+      </xsl:otherwise>
+    </xsl:choose>
+    </title>
+     <ul>
+      <xsl:apply-templates select="key('contextes',concat(../@version, '_', @context) )">
+       <xsl:sort select="@type"/>
+      </xsl:apply-templates>
+     </ul>
+    </section>
+   </xsl:for-each>
   </section>
  </xsl:template>
 

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="25 May 2005">
@@ -90,7 +102,7 @@
       </action>
     </actions>
     
-    <actions priority="med">
+    <actions priority="medium">
       <action context="admin" dev="open">
         Move DTD's to this plugin from core (depends on having a catalog 
         extension mechanism for plugins).

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.simplified-docbook/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.simplified-docbook/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.simplified-docbook/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.simplified-docbook/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="DB" type="add" context="code" due-to="Aaron Isotton" fixes-bug="FOR-449">

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.internal.IMSManifest/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.internal.IMSManifest/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.internal.IMSManifest/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.internal.IMSManifest/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="RDG" type="update" context="admin">

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="RDG" type="update" context="admin">

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.Text/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.output.Text/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.output.Text/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.output.Text/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.output.pdf/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="RDG" type="add" context="admin">

Modified: forrest/trunk/plugins/pluginTemplate/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/pluginTemplate/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/plugins/pluginTemplate/status.xml (original)
+++ forrest/trunk/plugins/pluginTemplate/status.xml Tue Jun  7 09:34:56 2005
@@ -18,8 +18,22 @@
 <status>
 
   <developers>
+    <!-- Add new developers here -->
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
+
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <!-- Add new contexts here -->
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
 
   <changes>
     <!-- Add new releases here -->

Modified: forrest/trunk/site-author/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/site-author/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/site-author/status.xml (original)
+++ forrest/trunk/site-author/status.xml Tue Jun  7 09:34:56 2005
@@ -40,6 +40,13 @@
 
     <person name="Volunteer needed"   email="dev@forrest.apache.org" id="open"/>
   </developers>
+  <contexts>
+    <context id="code" title="Changes to the Code Base"/>
+    <context id="docs" title="Changes to Documentation"/>
+    <context id="admin" title="Changes to Project Administration"/>
+    <context id="design" title="Changes to Design"/>
+    <context id="build" title="Changes to Build"/>
+  </contexts> 
 
   <!-- ===================================================================== -->
   <!-- CHANGES                                                               -->
@@ -122,6 +129,9 @@
         Added document to facilitate
         <link href="site:upgrading_07">upgrading to v0.7</link>
       </action>
+      <action context="code" dev="JJP" due-to="Cyriaque Dupoirieux" fixes-bug="FOR-514">
+          Do not limit status.xml contexts in project info plugin
+       </action>
       <action dev="DC" type="fix" context="code">
         The "extra-css" from skinconf.xml is now inserted at the very end
         of the CSS. That enables it to properly override other elements.

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Chart/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Chart/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Chart/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Chart/status.xml Tue Jun  7 09:34:56 2005
@@ -21,6 +21,18 @@
     <!-- Add more people here -->
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/status.xml Tue Jun  7 09:34:56 2005
@@ -21,6 +21,18 @@
     <!-- Add more people here -->
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/status.xml Tue Jun  7 09:34:56 2005
@@ -21,6 +21,18 @@
     <!-- Add more people here -->
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Daisy/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Daisy/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Daisy/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Daisy/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.logs/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.logs/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.logs/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.logs/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="RDG" type="update" context="admin">

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.view/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.view/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.view/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.view/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.htmlArea/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.htmlArea/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.htmlArea/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.htmlArea/status.xml Tue Jun  7 09:34:56 2005
@@ -17,6 +17,18 @@
 -->
 <status>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.viewHelper.xhtml/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.viewHelper.xhtml/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.viewHelper.xhtml/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.viewHelper.xhtml/status.xml Tue Jun  7 09:34:56 2005
@@ -21,6 +21,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">

Modified: forrest/trunk/whiteboard/plugins/rtf-output/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/rtf-output/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/rtf-output/status.xml (original)
+++ forrest/trunk/whiteboard/plugins/rtf-output/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="RDG" type="add" context="code">

Modified: forrest/trunk/whiteboard/tests/basic/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/tests/basic/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/tests/basic/status.xml (original)
+++ forrest/trunk/whiteboard/tests/basic/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="DB" type="add" context="admin">

Modified: forrest/trunk/whiteboard/tests/whole-site/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/tests/whole-site/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/tests/whole-site/status.xml (original)
+++ forrest/trunk/whiteboard/tests/whole-site/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="DB" type="add" context="admin">

Modified: forrest/trunk/whiteboard/tests/xsltunit/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/tests/xsltunit/status.xml?rev=188810&r1=188809&r2=188810&view=diff
==============================================================================
--- forrest/trunk/whiteboard/tests/xsltunit/status.xml (original)
+++ forrest/trunk/whiteboard/tests/xsltunit/status.xml Tue Jun  7 09:34:56 2005
@@ -22,6 +22,18 @@
     <person name="Volunteer needed" email="dev@forrest.apache.org" id="open"/>
   </developers>
 
+  <!-- Define here the Title of the Context you want to display in the Changes pages.
+       id = the context value of actions
+       title = Title of the Context
+  -->  
+  <contexts>
+   <context id="code" title="Changes to the Code Base"/>
+   <context id="docs" title="Changes to Documentation"/>
+   <context id="admin" title="Changes to Project Administration"/>
+   <context id="design" title="Changes to Design"/>
+   <context id="build" title="Changes to Build"/>
+  </contexts> 
+
   <changes>
     <release version="0.1" date="unreleased">
       <action dev="JJP" type="add" context="core">