svn commit: r953601 - in /forrest/trunk: main/webapp/resources/stylesheets/ plugins/ plugins/org.apache.forrest.plugin.output.POD/ plugins/pluginTemplate/ whiteboard/plugins/ whiteboard/plugins/org.apache.forrest.plugin.Database/ whiteboard/plugins/org...

[email protected]
Newsgroups gmane.text.xml.forrest.cvs
Message-ID <[email protected]>
Author: crossley
Date: Fri Jun 11 07:59:54 2010
New Revision: 953601

URL: http://svn.apache.org/viewvc?rev=953601&view=rev
Log:
Use the "publish" attribute. In the "Plugins List" a plugin will only refer
to a published website and deployment URL if "true".
Set all plugins which have never been deployed to "false".

Modified:
    forrest/trunk/main/webapp/resources/stylesheets/plugins-to-xdoc.xsl
    forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/build.xml
    forrest/trunk/plugins/pluginTemplate/build.xml
    forrest/trunk/plugins/plugins.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Blog/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Lenya/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Resume/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.XDoc/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.doac/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.ecs/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.foaf/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.skos/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.tei/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.DevTools/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.GoogleSitemap/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.NoteTaking/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.xhtml2/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.OOo/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.iCal/build.xml
    forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.tei/build.xml
    forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml

Modified: forrest/trunk/main/webapp/resources/stylesheets/plugins-to-xdoc.xsl
URL: http://svn.apache.org/viewvc/forrest/trunk/main/webapp/resources/stylesheets/plugins-to-xdoc.xsl?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/main/webapp/resources/stylesheets/plugins-to-xdoc.xsl (original)
+++ forrest/trunk/main/webapp/resources/stylesheets/plugins-to-xdoc.xsl Fri Jun 11 07:59:54 2010
@@ -183,6 +183,16 @@
             <xsl:value-of select="@author" />
           </td>
         </tr>
+        <xsl:choose>
+          <xsl:when test="@publish and @publish='false'">
+        <tr>
+          <th width="25%">Not yet published</th>
+          <td>
+            This plugin has not yet been deployed. Only available in the development SVN repository.
+          </td>
+        </tr>
+          </xsl:when>
+          <xsl:otherwise>
         <tr>
           <th width="25%">Website</th>
           <td><a>
@@ -201,6 +211,8 @@
             <xsl:value-of select="@url" /></a>
           </td>
         </tr>
+          </xsl:otherwise>
+        </xsl:choose>
         <tr>
           <th width="25%">Latest Plugin version</th>
           <td>

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/build.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.output.POD/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.POD/"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="true"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/plugins/pluginTemplate/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/pluginTemplate/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/plugins/pluginTemplate/build.xml (original)
+++ forrest/trunk/plugins/pluginTemplate/build.xml Fri Jun 11 07:59:54 2010
@@ -24,8 +24,8 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="@plugin-docServer@/@plugin-docPath@/@plugin-name@/"/>
   <property name="downloadURL" value="@plugin-downloadServer@/@plugin-downloadPath@/"/>
-<!-- The plugin will only appear in the plugins list if publish = true
-    <property name="publish" value="true"/> -->
+<!-- The plugin will only appear in the plugins list if publish = true -->
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/plugins/plugins.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/plugins/plugins.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/plugins/plugins.xml (original)
+++ forrest/trunk/plugins/plugins.xml Fri Jun 11 07:59:54 2010
@@ -26,6 +26,7 @@
                  url  CDATA #REQUIRED
                  author CDATA #REQUIRED
                  website CDATA #IMPLIED
+                 publish CDATA #IMPLIED
                  version CDATA #IMPLIED>
   <!ELEMENT description (#PCDATA)>
   <!ELEMENT forrestVersion (#PCDATA)>
@@ -39,6 +40,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.dtdx"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Use the NekoDTD tool packaged as a Cocoon Generator to automatically
@@ -51,6 +53,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.excel/"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.3">
     <description>
       Reads (simple) Excel sheets from the Excel "Save As" (Type=XML).
@@ -62,6 +65,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.feeder"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Embed syndicated content in a Forrest site.
@@ -73,6 +77,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.listLocations"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Use lists of locations maintained in a simple xml format and transform
@@ -85,6 +90,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.OpenOffice.org"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Use various OpenOffice.org document formats as input sources.
@@ -96,6 +102,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.PhotoGallery"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.3">
     <description>
       Create a photo Gallery by simply dropping your photos into a directory.
@@ -107,6 +114,7 @@
         author="Ronald Blaschke"
 	website="http://www.rblasch.org/projects/pod-input/"
 	url="http://www.rblasch.org/projects/pod-input"
+        publish="true"
         version="0.1">
     <description>
       Embed Pod (Plain Old Documentation) documents in a Forrest site.
@@ -118,6 +126,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.projectInfo"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Generates project info such as changelog and todo list.
@@ -129,6 +138,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.simplifiedDocbook"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Enable Simplified Docbook to be used as input.
@@ -140,6 +150,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.wiki"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Embed various wiki documents in a Forrest site.
@@ -154,6 +165,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.pdf"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Enable Forrest documents to be output in PDF format.
@@ -165,6 +177,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.POD"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Enable Forrest documents to be output in Plain Old Documentation (POD)
@@ -177,6 +190,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.Text"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Enable Forrest documents to be output in Text format.
@@ -188,6 +202,7 @@
         author="Ross Gardler"
         website="http://forrest.apache.org/~rgardler/testingGround/forrestPlugins/s5"
         url="http://www.apache.org/~rgardler/testingGround/forrestPlugins/"
+        publish="true"
         version="0.1">
     <description>
       Create S5: A Simple Standards-Based Slide Show System presentations from

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.Database/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.Database/"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.OpenOffice.org-output/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.OpenOffice.org-output/"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Blog/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Blog/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Blog/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Blog/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.input.Blog"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Lenya/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Lenya/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Lenya/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Lenya/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.input.Lenya"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Resume/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Resume/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Resume/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.Resume/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.Resume"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.XDoc/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.XDoc/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.XDoc/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.XDoc/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.input.XDoc"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.doac/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.doac/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.doac/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.doac/build.xml Fri Jun 11 07:59:54 2010
@@ -24,8 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.input.doac"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-<!-- The plugin will only appear in the plugins list if pulish = true
-    <property name="publish" value="true"/> -->
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.ecs/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.ecs/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.ecs/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.ecs/build.xml Fri Jun 11 07:59:54 2010
@@ -24,7 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.ecs"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-  <property name="publish" value="true"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.foaf/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.foaf/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.foaf/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.foaf/build.xml Fri Jun 11 07:59:54 2010
@@ -24,8 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <!--property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.input.foaf"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-< The plugin will only appear in the plugins list if pulish = true
-    <property name="publish" value="true"/> -->
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.skos/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.skos/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.skos/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.skos/build.xml Fri Jun 11 07:59:54 2010
@@ -24,8 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.input.skos"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-<!-- The plugin will only appear in the plugins list if pulish = true
-    <property name="publish" value="true"/> -->
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.tei/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.tei/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.tei/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.tei/build.xml Fri Jun 11 07:59:54 2010
@@ -24,7 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/docs/plugins/org.apache.forrest.plugin.input.tei"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-  
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 
   <!-- Add any additional installation work here in the build target, for example:

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.DevTools/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.DevTools/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.DevTools/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.DevTools/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.internal.DevTools"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.GoogleSitemap/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.GoogleSitemap/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.GoogleSitemap/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.GoogleSitemap/build.xml Fri Jun 11 07:59:54 2010
@@ -24,7 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/plugins_0_70/org.apache.forrest.plugin.internal.GoogleSitemap/"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-  <property name="publish" value="true"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.NoteTaking/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.NoteTaking/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.NoteTaking/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.NoteTaking/build.xml Fri Jun 11 07:59:54 2010
@@ -24,7 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.internal.NoteTaking"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-  <property name="publish" value="true"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.xhtml2/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.xhtml2/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.xhtml2/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.xhtml2/build.xml Fri Jun 11 07:59:54 2010
@@ -24,6 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.internal.xhtml2"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.OOo/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.OOo/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.OOo/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.OOo/build.xml Fri Jun 11 07:59:54 2010
@@ -24,8 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.output.OOo"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-<!-- The plugin will only appear in the plugins list if publish = true
-    <property name="publish" value="true"/> -->
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.iCal/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.iCal/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.iCal/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.iCal/build.xml Fri Jun 11 07:59:54 2010
@@ -24,8 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/pluginDocs/org.apache.forrest.plugin.output.iCal"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-<!-- The plugin will only appear in the plugins list if pulish = true
-    <property name="publish" value="true"/> -->
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 <!-- Add any additional installation work here in the build target, for example:
   <target name="build"

Modified: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.tei/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.tei/build.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.tei/build.xml (original)
+++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.tei/build.xml Fri Jun 11 07:59:54 2010
@@ -24,7 +24,7 @@
   <property name="author" value="Apache Forrest Project"/>
   <property name="websiteURL" value="http://forrest.apache.org/docs/plugins/org.apache.forrest.plugin.output.tei"/>
   <property name="downloadURL" value="http://forrest.apache.org/plugins/"/>
-  
+  <property name="publish" value="false"/>
   <import file="../build.xml"/>
 
   <!-- Add any additional installation work here in the build target, for example:

Modified: forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml?rev=953601&r1=953600&r2=953601&view=diff
==============================================================================
--- forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml (original)
+++ forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml Fri Jun 11 07:59:54 2010
@@ -26,6 +26,7 @@
                  url  CDATA #REQUIRED
                  author CDATA #REQUIRED
                  website CDATA #IMPLIED
+                 publish CDATA #IMPLIED
                  version CDATA #IMPLIED>
   <!ELEMENT description (#PCDATA)>
   <!ELEMENT forrestVersion (#PCDATA)>
@@ -39,6 +40,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.citations/"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       List of citations.
@@ -50,6 +52,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.Daisy/"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Allow content to be included from a Daisy CMS repository.
@@ -61,6 +64,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.doac/"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Render Description-Of-A-Career (DOAC) data in forrest content objects.
@@ -72,6 +76,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.doap/"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Embed DOAP files in forrest content objects.
@@ -83,6 +88,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_90/org.apache.forrest.plugin.input.foaf/"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Embed FOAF files in forrest content objects.
@@ -94,6 +100,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.glossary/"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Enable glossary: a list of technical terms and definitions.
@@ -105,6 +112,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_70/org.apache.forrest.plugin.input.logs"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Embed log file output in Forrest sites. If Forrest is running in a dynamic
@@ -118,6 +126,7 @@
         author="OSS Watch"
         website="http://simal.osswatch.ac.uk"
         url="http://simal.google.com/files/"
+        publish="true"
         version="0.1">
     <description>
       Extracts data from OhLoh.net using their API
@@ -129,6 +138,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.odt"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Use OpenDocument Writer files (*.odt) as input sources.
@@ -140,9 +150,10 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.Resume"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
-      Basic support for Resumes, renders a single resume, or alloes sorting of a
+      Basic support for Resumes, renders a single resume, or allows sorting of a
       number of resumes on skill.
     </description>
     <forrestVersion>0.8</forrestVersion>
@@ -152,6 +163,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.serverStatus"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Provides a list of the Cocoon cache and other server status information.
@@ -163,6 +175,7 @@
         author="OSS Watch"
         website="http://simal.osswatch.ac.uk"
         url="http://simal.google.com/files/"
+        publish="true"
         version="0.1">
     <description>
       Extracts data from sourceforge.net.
@@ -174,6 +187,7 @@
 	  author="Apache Forrest Project"
 	  website="http://forrest.apache.org/pluginDocs/plugins_0_90/org.apache.forrest.plugin.input.skos/"
 	  url="http://forrest.apache.org/plugins/"
+          publish="false"
 	  version="0.1">
     <description>
        Rendering SKOS, a set of specifications to support the representation of thesauri, classification schemes, taxonomies, etc.
@@ -185,6 +199,7 @@
 	  author="Apache Forrest Project"
 	  website="http://forrest.apache.org/pluginDocs/plugins_0_90/org.apache.forrest.plugin.input.baetle/"
 	  url="http://forrest.apache.org/plugins/"
+        publish="false"
 	  version="0.1">
     <description>
       Rendering Baetle, the RDF vocabulary to describe the content of  bug databases.
@@ -196,6 +211,7 @@
         author="Apache Forrest"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.tei"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Import TEI Lite documents into Forrest content objects.
@@ -208,6 +224,7 @@
         author="OSS Watch"
         website="http://simal.osswatch.ac.uk"
         url="http://simal.google.com/files/"
+        publish="true"
         version="0.1">
     <description>
       Allow project features to be recorded and rendered as part of a content object.
@@ -222,6 +239,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.XDoc/"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Input plugin for XDoc
@@ -237,6 +255,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.Anakia/"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.2">
     <description>
       Produce output in Anakia-like "xdoc" format. Enables use of Forrest as a
@@ -250,6 +269,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_70/org.apache.forrest.plugin.output.Chart"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Charting plugin that utilises JChart.
@@ -261,6 +281,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.input.ecs/"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Process responses from Amazons E-Commerce System web services.
@@ -272,6 +293,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_70/org.apache.forrest.plugin.output.htmlArea"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       WYSIWYG editing of HTML documents (requires Forrest to be running
@@ -284,6 +306,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.voice"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Add voiceXML content to a Forrest page. This allows the page to be read by
@@ -296,6 +319,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.solr"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Generates solr documents from xdos. Further when run with the dispatcher
@@ -309,6 +333,7 @@
         author="Apache Forrest"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.tei/"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Create TEI Lite documents from Forrest content objects.
@@ -321,6 +346,7 @@
         author="Apache Forrest"
         website="http://forrest.apache.org/pluginDocs/plugins_0_90/org.apache.forrest.plugin.output.OOo/"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Creates OpenOffice 2.4+ .odt output from forrest xdoc.
@@ -333,6 +359,7 @@
         author="Apache Forrest"
         website="http://forrest.apache.org/pluginDocs/plugins_0_90/org.apache.forrest.plugin.output.iCal/"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Creates iCal .ics files from forrest xdoc.
@@ -347,6 +374,7 @@
         author="OSS Watch"
         website="http://code.google.com/p/simal"
         url="http://simal.google.com/files/"
+        publish="true"
         version="0.1">
     <description>
       A theme used by the Simal project.
@@ -361,6 +389,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_70/org.apache.forrest.plugin.internal.IMSManifest"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Use an IMS Manifest file to manage site structure. Generates site.xml and
@@ -374,6 +403,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.NoteTaking"
         url="http://forrest.apache.org/plugins/"
+        publish="false"
         version="0.1">
     <description>
       Provides facilities for adding notes to pages when Forrest is run in
@@ -386,6 +416,7 @@
         author="Apache Forrest Project"
         website="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.internal.dispatcher"
         url="http://forrest.apache.org/plugins/"
+        publish="true"
         version="0.1">
     <description>
       Enable Forrest to use page-specific views and contracts. Next generation
@@ -396,7 +427,9 @@
   <plugin name="org.apache.forrest.plugin.internal.xhtml2" type="internal"
       author="Apache Forrest Project"
       website="http://forrest.apache.org/pluginDocs/plugins_0_90/org.apache.forrest.plugin.internal.xhtml2/"
-      url="http://forrest.apache.org/plugins/" version="0.1">
+      url="http://forrest.apache.org/plugins/"
+      publish="false"
+      version="0.1">
     <description>
       Forrest versions prior to 0.10 used XDoc as their internal format, versions
       from 0.10 onwards are going to use a subset of XHTML2 instead. This plugin converts the
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.