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 2004/07/30 14:21:46 UTC

svn commit: rev 30993 - forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions

Author: rgardler
Date: Fri Jul 30 05:21:46 2004
New Revision: 30993

Modified:
   forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StartForrest.java
   forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StopForrest.java
Log:
Remove reference to Burrokeet project

Modified: forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StartForrest.java
==============================================================================
--- forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StartForrest.java	(original)
+++ forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StartForrest.java	Fri Jul 30 05:21:46 2004
@@ -103,10 +103,10 @@
 			return;
 		}
 
-		dialog.setText("Burrokeet Application");
+		dialog.setText("Forrest Server");
 		dialog.setSize(500, 250);
 		Label statusMsg = new Label(dialog, SWT.NONE);
-		StringBuffer sb = new StringBuffer("Forrest application is starting.\n");
+		StringBuffer sb = new StringBuffer("Forrest server is starting.\n");
 		sb.append("\n\nPlease wait...");
 		statusMsg.setText(sb.toString());
 		statusMsg.setLocation(30, 25);

Modified: forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StopForrest.java
==============================================================================
--- forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StopForrest.java	(original)
+++ forrest/trunk/scratchpad/eclipsePlugin/src/org/apache/forrest/eclipse/actions/StopForrest.java	Fri Jul 30 05:21:46 2004
@@ -56,8 +56,8 @@
 			e.printStackTrace();
 		}
 
-		MessageDialog.openInformation(window.getShell(), "Burrokeet",
-				"Burrokeet Application Stopped");
+		MessageDialog.openInformation(window.getShell(), "Forrest",
+				"Forrest server stopped");
 	}
 
 	/**