You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2005/10/19 22:18:19 UTC

svn commit: r326681 - in /forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo: build.xml input.xmap locationmap.xml src/documentation/content/xdocs/index.xml status.xml

Author: rgardler
Date: Wed Oct 19 13:18:04 2005
New Revision: 326681

URL: http://svn.apache.org/viewcvs?rev=326681&view=rev
Log:
remove loose '.'

Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/build.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/input.xmap
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/locationmap.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/src/documentation/content/xdocs/index.xml
    forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/build.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/build.xml?rev=326681&r1=326680&r2=326681&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/build.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/build.xml Wed Oct 19 13:18:04 2005
@@ -20,7 +20,7 @@
   <property name="plugin-name" value="org.apache.forrest.plugin.input.projectInfo"/>
   <property name="forrest.version" value="0.8"/>
   <property name="type" value="input"/>
-  <property name="plugin-version" value="0.2-dev"/>
+  <property name="plugin-version" value="0.2"/>
   <property name="description" value="Generates project info such as changelog and todo list. "/>
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/docs/plugins/org.apache.forrest.plugin.input.projectInfo/"/>

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/input.xmap
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/input.xmap?rev=326681&r1=326680&r2=326681&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/input.xmap (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/input.xmap Wed Oct 19 13:18:04 2005
@@ -39,8 +39,8 @@
       </map:match>
     
       <map:match type="regexp" pattern="^(.*?)([^/]*)changes_(.*).xml$">
-        <map:generate type="file" src="{project:status}" />
-        <map:transform src="resources/stylesheets/changes2document.xsl" >
+        <map:generate type="file" src="{lm:project.status}" />
+        <map:transform src="{lm:projectInfo.transform.changes.document}" >
           <map:parameter name="bugtracking-url" value="{defaults:bugtracking-url}"/>
           <map:parameter name="path" value="{1}{2}"/>
           <map:parameter name="versionNumber" value="{3}"/>
@@ -74,13 +74,13 @@
 
       <map:match pattern="projectDetails.xml">
         <map:generate type="file" src="{lm:project.descriptor}" />
-        <map:transform src="{lm:transform.descriptor.html}"/>
+        <map:transform src="{lm:projectInfotransform.doap.html}"/>
         <map:transform src="{lm:transform.html.document}"/>
         <map:serialize type="xml-document"/>
       </map:match>
       
       <map:match pattern="projectDetails.source.xml">
-        <map:generate type="file" src="{lm:project.descriptor}" />
+        <map:generate type="file" src="{lm:projectInfo.project.descriptor}" />
         <map:transform src="{lm:transform.descriptor.html}"/>
         <map:serialize type="xml-document"/>
       </map:match>

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/locationmap.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/locationmap.xml?rev=326681&r1=326680&r2=326681&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/locationmap.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/locationmap.xml Wed Oct 19 13:18:04 2005
@@ -34,6 +34,10 @@
   
   <locator>
 
+    <match pattern="project.status">
+      <location src="{project:sratus}" />
+    </match>    
+
     <match pattern="project.descriptor">
       <location src="doap.rdf" />
     </match>    
@@ -42,8 +46,8 @@
       <location src="http://svn.apache.org/repos/asf/forrest/trunk/site-author/content/doap.xml"/>
     </match>    
     
-    <match pattern="transform.descriptor.html">
-      <location src="resources/stylesheets/doap-to-html.xsl"/>
+    <match pattern="projectInfo.transform.*.*">
+      <location src="resources/stylesheets/{1}-to-{2}.xsl"/>
     </match>    
   </locator>
 </locationmap>

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/src/documentation/content/xdocs/index.xml?rev=326681&r1=326680&r2=326681&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/src/documentation/content/xdocs/index.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/src/documentation/content/xdocs/index.xml Wed Oct 19 13:18:04 2005
@@ -93,7 +93,7 @@
         <p>You can use the projectInfo plugin to pull together project 
         information for multiple projects. For example, take a look at
         the project details for 
-        <a href="projectDetails.forrest.html">Apache Forrest</a>.</p>.
+        <a href="projectDetails.forrest.html">Apache Forrest</a>.</p>
         
         <p>Using the locatoinmap you can retrieve this content from 
         anywhere you want, for example, the DOAP file for the Forrest 

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=326681&r1=326680&r2=326681&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 Wed Oct 19 13:18:04 2005
@@ -36,6 +36,19 @@
 
   <changes>
     <!-- Add new releases here -->
+    <release version="0.2" date="unreleased">
+      <notes>
+        <p>This plugin provides various mechanisms for extracting and
+        displaying information about a given project.</p>
+      </notes>
+      <action dev="RDG" type="add" context="code" importance="high">
+        Use locationmap to expose plugin resources.
+      </action>
+      <action dev="RDG" type="add" context="code" importance="high">
+        Add projectDetails page using the DOAP.xml descriptor.
+      </action>
+    </release>
+    
     <release version="0.1" date="25 May 2005">
       <notes>
         <p>This plugin encapsulates and extends functionality that was originally in
@@ -46,6 +59,9 @@
         <p>In fact, we have already extended the functionality in a couple of important
         ways. See the changelog for more details.</p>
       </notes>
+      <action dev="RDG" type="add" context="code" importance="high">
+        Add projectDetails page using the DOAP.xml descriptor.
+      </action>
       <action dev="DC" type="fix" context="code"
        fixes-bug="FOR-564" due-to="Cyriaque Dupoirieux">
         Use the value "current" for the releaseNotes_* URI or specify a version number,