svn commit: r208884 - in /forrest/trunk/tools/eclipse/plugins/org.apache.forrest: ./ src/org/apache/forrest/eclipse/job/ src/org/apache/forrest/eclipse/popup/actions/ src/org/apache/forrest/eclipse/vi

2005-07-02 Thread crossley
Author: crossley
Date: Sat Jul  2 21:35:50 2005
New Revision: 208884

URL: http://svn.apache.org/viewcvs?rev=208884&view=rev
Log:
Submitted by: Anil Ramnanan
Issue: FOR-566 "Option to Create a WAR file."

Added:

forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestWARBuilder.java
   (with props)

forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/popup/actions/BuildWARSite.java
   (with props)

forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/views/

forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/views/SiteXMLView.java
   (with props)
Modified:
forrest/trunk/tools/eclipse/plugins/org.apache.forrest/plugin.xml

forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestManager.java

Modified: forrest/trunk/tools/eclipse/plugins/org.apache.forrest/plugin.xml
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/plugins/org.apache.forrest/plugin.xml?rev=208884&r1=208883&r2=208884&view=diff
==
--- forrest/trunk/tools/eclipse/plugins/org.apache.forrest/plugin.xml (original)
+++ forrest/trunk/tools/eclipse/plugins/org.apache.forrest/plugin.xml Sat Jul  
2 21:35:50 2005
@@ -105,6 +105,13 @@
class="org.apache.forrest.eclipse.popup.actions.BuildSite"
menubarPath="org.apache.forrest.eclipse.siteMenu/Static"
id="org.apache.forrest.eclipse.BuildServer"/>
+ 
   

   
@@ -115,5 +122,17 @@
   class="org.eclipse.webbrowser.internal.WebBrowserEditor"
   extensions="html,htm,gif,jpg,jpeg,xhtml"
   
contributorClass="org.eclipse.webbrowser.internal.WebBrowserEditorActionBarContributor"/>
+  
+  
+ 
+ 
   
 

Modified: 
forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestManager.java
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestManager.java?rev=208884&r1=208883&r2=208884&view=diff
==
--- 
forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestManager.java
 (original)
+++ 
forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestManager.java
 Sat Jul  2 21:35:50 2005
@@ -49,7 +49,10 @@
 
 /** The command for building the static site */
 public static final String COMMAND_BUILD = "site";
-
+
+/** The command for building the static site */
+public static final String COMMAND_BUILD_WAR = "war";
+   
 /** The command for running the site server */
 public static final String COMMAND_START = "run";
 
@@ -187,6 +190,8 @@
 theJob = new ForrestRunner(workingDir);
 } else if (cmd.equals(COMMAND_BUILD)) {
 theJob = new ForrestBuilder(workingDir);
+} else if (cmd.equals(COMMAND_BUILD_WAR)) {
+theJob = new ForrestWARBuilder(workingDir);
 } else if (cmd.equals(COMMAND_BUILD_PLAIN)) {
 theJob = new ForrestBuilder(workingDir, SKIN_PLAIN);
 } else {

Added: 
forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestWARBuilder.java
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestWARBuilder.java?rev=208884&view=auto
==
--- 
forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestWARBuilder.java
 (added)
+++ 
forrest/trunk/tools/eclipse/plugins/org.apache.forrest/src/org/apache/forrest/eclipse/job/ForrestWARBuilder.java
 Sat Jul  2 21:35:50 2005
@@ -0,0 +1,86 @@
+/*
+ * Copyright 1999-2004 The Apache Software Foundation or its licensors,
+ * as applicable.
+ * 
+ * Licensed 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.
+ */
+package org.apache.forrest.eclipse.job;
+
+import java.io.File;
+
+import org.apache.forrest.eclipse.ForrestPlugin;
+import org.apache.forrest.eclipse.preference.ForrestPreferences;
+import org.apache.log4j.Logger;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.IStatus;
+
+
+/**

svn commit: r208843 - in /forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets: changes2document.xsl changes2rss.xsl dotdots.xsl releaseNotes2document.xsl

2005-07-02 Thread crossley
Author: crossley
Date: Sat Jul  2 08:18:16 2005
New Revision: 208843

URL: http://svn.apache.org/viewcvs?rev=208843&view=rev
Log:
Whitespace changes only. Tabs to spaces, remove trailing whitespace.

Modified:

forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2document.xsl

forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2rss.xsl

forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/dotdots.xsl

forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/releaseNotes2document.xsl

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=208843&r1=208842&r2=208843&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
 Sat Jul  2 08:18:16 2005
@@ -18,7 +18,7 @@
 
 http://www.w3.org/1999/XSL/Transform";
-version="1.0"> 
+version="1.0">
 
   
   
@@ -39,7 +39,7 @@
  
   
  
- 
+
  
   

@@ -55,7 +55,7 @@



-
+
 
 
   
@@ -63,9 +63,9 @@
   
 
   
-  
+  
 
-  
+  
 
   
   
@@ -80,7 +80,7 @@
 
  
   
-   Version  () 
+   Version  ()

 
 

Modified: 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2rss.xsl
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2rss.xsl?rev=208843&r1=208842&r2=208843&view=diff
==
--- 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2rss.xsl
 (original)
+++ 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/changes2rss.xsl
 Sat Jul  2 08:18:16 2005
@@ -51,14 +51,14 @@
   

   
-  by 
+  by
   
   
 (fixes bug )
   
   :
   
-   Thanks to . 
+   Thanks to .
 
   
 

Modified: 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/dotdots.xsl
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/dotdots.xsl?rev=208843&r1=208842&r2=208843&view=diff
==
--- 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/dotdots.xsl
 (original)
+++ 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/dotdots.xsl
 Sat Jul  2 08:18:16 2005
@@ -22,7 +22,7 @@
 '\' directory separators.
 
 Examples:
-  Input   Output 
+  Input   Output
 index.html""
 dir/index.html"../"
 dir/subdir/index.html "../../"
@@ -49,15 +49,15 @@
o Adds a trailing character to the path. This prevents us having to deal
  with the special case of ending with '/'
o Translates all directory separators to ' ', and normalize spaces,
-cunningly eliminating duplicate '//'s. We also translate any 
real
-spaces into _ to preserve them.
+ cunningly eliminating duplicate '//'s. We also translate any real
+ spaces into _ to preserve them.
 -->
 
 
   ../
   
 
-   
+
   
 
   

Modified: 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/releaseNotes2document.xsl
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/releaseNotes2document.xsl?rev=208843&r1=208842&r2=208843&view=diff
==
--- 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/releaseNotes2document.xsl
 (original)
+++ 
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/resources/stylesheets/releaseNotes2document.xsl
 Sat Jul  2 08:18:16 2005
@@ -18,7 +18,7 @@
 
 http://www.w3.org/1999/XSL/Transform";
-version="1.0"> 
+version="1.0">
 
   
   
@@ -36,9 +36,9 @@
   
 
   
-  

svn commit: r208840 - /forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml

2005-07-02 Thread crossley
Author: crossley
Date: Sat Jul  2 08:12:27 2005
New Revision: 208840

URL: http://svn.apache.org/viewcvs?rev=208840&view=rev
Log:
Minor text tweak.

Modified:
forrest/trunk/plugins/org.apache.forrest.plugin.input.projectInfo/status.xml

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=208840&r1=208839&r2=208840&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 
Sat Jul  2 08:12:27 2005
@@ -48,7 +48,8 @@
   
   
-Use the value "current" for the releaseNotes_* URI or specify a 
version number.
+Use the value "current" for the releaseNotes_* URI or specify a 
version number,
+i.e. show what is new for the latest release.
   
   
 Basic documentation on how to create release notes are now included on 
the




svn commit: r208837 - /forrest/trunk/etc/RELEASE-NOTES-0.7.txt

2005-07-02 Thread crossley
Author: crossley
Date: Sat Jul  2 07:38:00 2005
New Revision: 208837

URL: http://svn.apache.org/viewcvs?rev=208837&view=rev
Log:
Fix URL for Issue Tracker.
Fix URL for list of open issues.

Modified:
forrest/trunk/etc/RELEASE-NOTES-0.7.txt

Modified: forrest/trunk/etc/RELEASE-NOTES-0.7.txt
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/etc/RELEASE-NOTES-0.7.txt?rev=208837&r1=208836&r2=208837&view=diff
==
--- forrest/trunk/etc/RELEASE-NOTES-0.7.txt (original)
+++ forrest/trunk/etc/RELEASE-NOTES-0.7.txt Sat Jul  2 07:38:00 2005
@@ -57,10 +57,10 @@
 --
 
 If you notice what appears to be a bug, please report it via the
-Forrest issue tracker: http://issues.cocoondev.org/
+Forrest issue tracker: 
http://issues.apache.org/jira/secure/BrowseProject.jspa?id=1231 
 
 Known issues are summarized at:
-http://forrest.apache.org/0.7/forrest-issues.html
+http://forrest.apache.org/forrest-issues.html
 (a nice example of RSS syndication).
 
 Feedback




svn commit: r208836 - /forrest/trunk/site-author/status.xml

2005-07-02 Thread crossley
Author: crossley
Date: Sat Jul  2 07:35:23 2005
New Revision: 208836

URL: http://svn.apache.org/viewcvs?rev=208836&view=rev
Log:
Fix URL for Issue Tracker.
Fix URL for Forrest Issues list of open issues.

Modified:
forrest/trunk/site-author/status.xml

Modified: forrest/trunk/site-author/status.xml
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/site-author/status.xml?rev=208836&r1=208835&r2=208836&view=diff
==
--- forrest/trunk/site-author/status.xml (original)
+++ forrest/trunk/site-author/status.xml Sat Jul  2 07:35:23 2005
@@ -110,10 +110,10 @@
   Issue tracking
 
   If you notice what appears to be a bug, please report it via the
-  http://issues.apache.org/jira/";>Forrest issue 
tracker.
+  http://issues.apache.org/jira/secure/BrowseProject.jspa?id=1231";>Forrest
 issue tracker.
 
   Known issues are summarized at:
-  http://forrest.apache.org/0.7/forrest-issues.html
+  http://forrest.apache.org/forrest-issues.html
   (a nice example of RSS syndication).
 
 




svn commit: r208834 - in /forrest/trunk: main/webapp/resources/stylesheets/rssissues2document.xsl site-author/content/xdocs/site.xml

2005-07-02 Thread crossley
Author: crossley
Date: Sat Jul  2 07:28:38 2005
New Revision: 208834

URL: http://svn.apache.org/viewcvs?rev=208834&view=rev
Log:
Revert to calling the list of issues "open issues for the next release".
Changed URLs from issues.cocoondev.org

Modified:
forrest/trunk/main/webapp/resources/stylesheets/rssissues2document.xsl
forrest/trunk/site-author/content/xdocs/site.xml

Modified: forrest/trunk/main/webapp/resources/stylesheets/rssissues2document.xsl
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/resources/stylesheets/rssissues2document.xsl?rev=208834&r1=208833&r2=208834&view=diff
==
--- forrest/trunk/main/webapp/resources/stylesheets/rssissues2document.xsl 
(original)
+++ forrest/trunk/main/webapp/resources/stylesheets/rssissues2document.xsl Sat 
Jul  2 07:28:38 2005
@@ -20,13 +20,13 @@
 
   
 
-  Issues for this release
+  Open issues for the next release
 
 
-  These are the issues for this release that are scheduled in our
-   http://issues.cocoondev.org/secure/BrowseProject.jspa?id=1";>issue 
tracking system
+  These are the top 25 open issues for the next release that are 
scheduled in our
+   http://issues.apache.org/jira/secure/BrowseProject.jspa?id=1231";>issue
 tracking system
(see 
-   http://issues.cocoondev.org/secure/IssueNavigator.jspa?pid=1&resolutionIds=-1&tempMax=1000&reset=true";>all
 open issues).
+   http://issues.apache.org/jira/secure/IssueNavigator.jspa?pid=1231&resolutionIds=-1&tempMax=1000&reset=true";>all
 open issues).
   The listing below is regenerated on each Forrest run.
   
 

Modified: forrest/trunk/site-author/content/xdocs/site.xml
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/site-author/content/xdocs/site.xml?rev=208834&r1=208833&r2=208834&view=diff
==
--- forrest/trunk/site-author/content/xdocs/site.xml (original)
+++ forrest/trunk/site-author/content/xdocs/site.xml Sat Jul  2 07:28:38 2005
@@ -47,7 +47,7 @@
   
 
 http://issues.apache.org/jira/secure/BrowseProject.jspa?id=1231"/>
-
+
 http://vmgump.apache.org/gump/public/forrest/"/>