Improve TMW messages - bug 3121
authorPaul Beusterien <paulb@symbian.org>
Tue, 29 Jun 2010 14:08:50 -0700
changeset 401 72386743b723
parent 400 91acf7e95f86
child 403 ba20dd5983c7
Improve TMW messages - bug 3121
org.symbian.tools.wrttools.debug.core/plugin.xml
org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/launch/ResourcesChangeListener.java
org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/launch/WidgetLaunchDelegate.java
org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/ui/DebugPreferencePage.java
org.symbian.tools.wrttools.feature/feature.xml
org.symbian.tools.wrttools.previewer/plugin.xml
org.symbian.tools.wrttools.previewer/preview/wrt_preview.html
org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/PreviewerPlugin.java
org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/http/BrowserConnectionJob.java
org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preferences/WrtEditingPreferencePage.java
org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java
org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/PreviewView.java
org.symbian.tools.wrttools.product/plugin.properties
org.symbian.tools.wrttools.product/plugin.xml
org.symbian.tools.wrttools.product/wrt-ide.product
org.symbian.tools.wrttools/plugin.xml
org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/ConsoleFactory.java
org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/packager/packageMessages.properties
--- a/org.symbian.tools.wrttools.debug.core/plugin.xml	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.debug.core/plugin.xml	Tue Jun 29 14:08:50 2010 -0700
@@ -28,7 +28,7 @@
             delegate="org.symbian.tools.wrttools.debug.internal.launch.WidgetLaunchDelegate"
             id="org.symbian.tools.wrttools.debug.widget"
             modes="debug,run"
-            name="TMW Application"
+            name="Mobile Web Application"
             public="true">
       </launchConfigurationType>
    </extension>
@@ -36,7 +36,7 @@
          point="org.eclipse.debug.ui.launchConfigurationTabGroups">
       <launchConfigurationTabGroup
             class="org.symbian.tools.wrttools.debug.ui.launch.WidgetLaunchConfigurationTabGroup"
-            description="TMW Application"
+            description="Mobile Web Application"
             id="org.symbian.tools.wrttools.debug.wrtTabGroup"
             type="org.symbian.tools.wrttools.debug.widget">
       </launchConfigurationTabGroup>
@@ -55,7 +55,7 @@
             class="org.symbian.tools.wrttools.debug.ui.launch.WidgetLaunchShortcut"
             icon="icons/main16.gif"
             id="org.symbian.tools.wrttools.debug.wrtshortcut"
-            label="TMW Application"
+            label="Mobile Web Application"
             modes="run, debug">
          <configurationType
                id="org.symbian.tools.wrttools.debug.widget">
@@ -79,11 +79,11 @@
             </with>
          </enablement>
             <contextLabel
-                  label="TMW Application"
+                  label="Mobile Web Application"
                   mode="run">
             </contextLabel>
             <contextLabel
-                  label="TMW Application"
+                  label="Mobile Web Application"
                   mode="debug">
             </contextLabel></contextualLaunch>
       </shortcut>
@@ -295,9 +295,9 @@
     <extension
           point="org.eclipse.ui.actionSets">
        <actionSet
-             description="Actions for TMW debugging"
+             description="Actions for Mobile Web debugging"
              id="org.symbian.tools.wrttools.debug.core.mainActions"
-             label="TMW Debug">
+             label="Mobile Web Debug">
           <action
                 class="org.symbian.tools.wrttools.debug.ui.actions.DebugAction"
                 helpContextId="debug_last_action_context"
--- a/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/launch/ResourcesChangeListener.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/launch/ResourcesChangeListener.java	Tue Jun 29 14:08:50 2010 -0700
@@ -48,7 +48,7 @@
                     public void run() {
                         String message = "Debug browser is not updated when the files are updated. You may notice discrepancies between your workspace contents and debug session. You should either refresh the browser or restart debugging session to see the latest changes made to the workspace.";
                         MessageDialogWithToggle.openWarning(PlatformUI.getWorkbench().getActiveWorkbenchWindow()
-                                .getShell(), "TMW Debugger", message,
+                                .getShell(), "Mobile Web Debugger", message,
                                 "Do not show this warning on code changes", false, Activator.getDefault()
                                         .getPreferenceStore(), IConstants.PREF_SHOW_RESOURCE_CHANGE_ERROR);
                         ResourcesPlugin.getWorkspace().removeResourceChangeListener(ResourcesChangeListener.this);
--- a/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/launch/WidgetLaunchDelegate.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/internal/launch/WidgetLaunchDelegate.java	Tue Jun 29 14:08:50 2010 -0700
@@ -40,7 +40,7 @@
 
 	public void launch(ILaunchConfiguration configuration, String mode, final ILaunch launch, IProgressMonitor monitor)
 			throws CoreException {
-		monitor.beginTask("Preparing TMW Debugger", IProgressMonitor.UNKNOWN);
+		monitor.beginTask("Preparing Mobile Web Debugger", IProgressMonitor.UNKNOWN);
 		ILaunchManager launchManager = DebugPlugin.getDefault().getLaunchManager();
         final IWorkbench workbench = PlatformUI.getWorkbench();
         final IWorkbenchWindow window = workbench.getWorkbenchWindows()[0];
--- a/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/ui/DebugPreferencePage.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.debug.core/src/org/symbian/tools/wrttools/debug/ui/DebugPreferencePage.java	Tue Jun 29 14:08:50 2010 -0700
@@ -37,7 +37,7 @@
     public DebugPreferencePage() {
 		super(GRID);
 		setPreferenceStore(Activator.getDefault().getPreferenceStore());
-		setDescription("TMW debugger settings");
+		setDescription("Mobile Web debugger settings");
 	}
 
 	@Override
--- a/org.symbian.tools.wrttools.feature/feature.xml	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.feature/feature.xml	Tue Jun 29 14:08:50 2010 -0700
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <feature
       id="org.symbian.tools.wrttools"
-      label="TMW Tools Feature"
+      label="Mobile Web Tools Feature"
       version="1.0.0.qualifier"
       provider-name="Symbian Foundation">
 
--- a/org.symbian.tools.wrttools.previewer/plugin.xml	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.previewer/plugin.xml	Tue Jun 29 14:08:50 2010 -0700
@@ -10,7 +10,7 @@
             class="org.symbian.tools.wrttools.previewer.preview.PreviewView"
             icon="icons/obj16/preview_view.gif"
             id="org.symbian.tools.wrttools.editing.wrtpreview"
-            name="TMW Preview"
+            name="Preview"
             restorable="true">
       </view>
    </extension>
@@ -19,7 +19,7 @@
       <page
             class="org.symbian.tools.wrttools.previewer.preferences.WrtEditingPreferencePage"
             id="org.symbian.tools.wrttools.editing.preferences.WrtEditingPreferencePage"
-            name="TMW">
+            name="Tools for Mobile Web">
          <keywordReference
                id="org.symbian.tools.wrttools.wrtwords">
          </keywordReference>
--- a/org.symbian.tools.wrttools.previewer/preview/wrt_preview.html	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.previewer/preview/wrt_preview.html	Tue Jun 29 14:08:50 2010 -0700
@@ -16,7 +16,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-	<title>TMW Debugger</title>
+	<title>Mobile Web Debugger</title>
 	<!-- jQuery-ui Begins -->
 		<link type="text/css" rel="stylesheet"  href="preview/script/jquery-ui/css/ui-darkness/jquery-ui-1.8.2.custom.css"/>	
 		<script type="text/javascript" src="preview/script/jquery-ui/js/jquery-1.4.2.min.js"></script>
--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/PreviewerPlugin.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/PreviewerPlugin.java	Tue Jun 29 14:08:50 2010 -0700
@@ -134,7 +134,7 @@
 
     public MessageConsole getConsole() {
         if (console == null) {
-            console = new MessageConsole("TMW Console", null);
+            console = new MessageConsole("Console", null);
             ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[] { console });
         }
         return console;
--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/http/BrowserConnectionJob.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/http/BrowserConnectionJob.java	Tue Jun 29 14:08:50 2010 -0700
@@ -18,7 +18,7 @@
     private String sId = null;
 
 	public BrowserConnectionJob(IPreviewStartupListener listener, URI uri) {
-		super("Connecting to TMW debugger browser");
+		super("Connecting to Mobile Web debugger browser");
 		this.listener = listener;
 		this.uri = uri;
 		setUser(false);
--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preferences/WrtEditingPreferencePage.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preferences/WrtEditingPreferencePage.java	Tue Jun 29 14:08:50 2010 -0700
@@ -53,7 +53,7 @@
 				{ "Prompt", MessageDialogWithToggle.PROMPT } };
 		enableAutorefresh = new RadioGroupFieldEditor(
 				IWrtEditingPreferences.PREF_AUTO_REFRESH,
-				"Initial auto-refresh setting for TMW Preview window",
+				"Initial auto-refresh setting for Mobile Web Preview window",
 				namesAndValues.length, namesAndValues, projectComposite, true);
 		enableAutorefresh.setPreferenceStore(getPreferenceStore());
 		enableAutorefresh.setPage(this);
--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java	Tue Jun 29 14:08:50 2010 -0700
@@ -38,7 +38,7 @@
         public ClearPreferencesAction() {
             setText("Clear");
             setImageDescriptor(PreviewerPlugin.getImageDescriptor(Images.CLEAR_PREFS));
-            setDescription("Forget all TMW application preference values");
+            setDescription("Forget all Mobile Web application preference values");
             setToolTipText(getDescription());
         }
 
--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/PreviewView.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/PreviewView.java	Tue Jun 29 14:08:50 2010 -0700
@@ -53,7 +53,7 @@
 	@Override
 	protected IPage createDefaultPage(PageBook book) {
 		MessagePage messagePage = new MessagePage();
-		messagePage.setMessage("Open an editor to preview TMW widget");
+		messagePage.setMessage("Open an editor to preview Mobile Web App");
 		initPage(messagePage);
 		messagePage.createControl(book);
 		return messagePage;
@@ -243,7 +243,7 @@
 							.open(
 									MessageDialogWithToggle.QUESTION,
 									getSite().getShell(),
-									"TMW Preview",
+									"Preview",
 									"The preview window can refresh (reinitialize and restart) whenever a project file is saved.\n" +
 									"This setting for each project can be toggled from the preview toolbar.\n\n" +
 									"Do you want to enable automatic refresh for this project?",
--- a/org.symbian.tools.wrttools.product/plugin.properties	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.product/plugin.properties	Tue Jun 29 14:08:50 2010 -0700
@@ -1,4 +1,4 @@
-pluginName=WebRuntime Toolkit IDE
+pluginName=Mobile Web IDE
 providerName=Symbian Foundation
 productName=Web Runtime Toolkit IDE 
 productBlurb=Symbian Foundation's Open Source Web Runtime Toolkit IDE based on Eclipse Platform for developing and deploying Web applications\n\
--- a/org.symbian.tools.wrttools.product/plugin.xml	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.product/plugin.xml	Tue Jun 29 14:08:50 2010 -0700
@@ -14,7 +14,7 @@
          point="org.eclipse.ui.actionSets">
       <actionSet
             id="org.symbian.tools.wrttools.product.creationActionSet"
-            label="TMW Element Creation">
+            label="Mobile Web Element Creation">
          <action
                class="org.symbian.tools.wrttools.product.actions.NewCSSFileAction"
                icon="icons/newcss_wiz.gif"
@@ -43,7 +43,7 @@
                class="org.symbian.tools.wrttools.product.actions.NewWRTProjectAction"
                icon="icons/newWRT_app_icon_16px.png"
                id="org.symbian.tools.wrttools.product.newWRTProjectAction"
-               label="New TMW Application..."
+               label="New Mobile Web Application..."
                style="push"
                toolbarPath="wrtwizards">
          </action>
@@ -71,7 +71,7 @@
    <extension
          point="org.eclipse.ui.activities">
       <activity
-            description="WTP functionality not used in TMW IDE"
+            description="WTP functionality not used in Mobile Web IDE"
             id="org.symbian.tools.wrttools.product.wtp"
             name="Web Tools Platform (WTP)">
       </activity>
@@ -152,7 +152,7 @@
             pattern="org\.eclipse\.debug\.ui/org\.eclipse\.debug\.ui\.contextualLaunch\.debug\.submenu">
       </activityPatternBinding>
       <category
-            description="WTP UI elements that are not compatible with TMW app development"
+            description="WTP UI elements that are not compatible with Mobile Web app development"
             id="org.symbian.tools.wrttools.product.wtp"
             name="Web Tools Platform (WTP)">
       </category>
@@ -192,7 +192,7 @@
          point="org.eclipse.core.runtime.products">
       <product
             application="org.eclipse.ui.ide.workbench"
-            name="WebRuntime Toolkit IDE">
+            name="Mobile Web IDE">
          <property
                name="windowImages"
                value="icons/ico/WRT_main-icon_16px.png,icons/ico/WRT_main-icon_32px.png,icons/ico/WRT_main-icon_48px.png,icons/ico/WRT_main-icon_64px.png,icons/ico/WRT_main-icon_128px.png">
@@ -219,7 +219,7 @@
          </property>
          <property
                name="appName"
-               value="WebRuntime Toolkit IDE">
+               value="Mobile Web IDE">
          </property>
          <property
                name="preferenceCustomization"
--- a/org.symbian.tools.wrttools.product/wrt-ide.product	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools.product/wrt-ide.product	Tue Jun 29 14:08:50 2010 -0700
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <?pde version="3.5"?>
 
-<product name="WebRuntime Toolkit IDE" uid="org.symbian.wrtide" id="org.symbian.tools.wrttools.product.product" application="org.eclipse.ui.ide.workbench" version="0.9.1.qualifier" useFeatures="false" includeLaunchers="true">
+<product name="Mobile Web IDE" uid="org.symbian.wrtide" id="org.symbian.tools.wrttools.product.product" application="org.eclipse.ui.ide.workbench" version="0.9.1.qualifier" useFeatures="false" includeLaunchers="true">
 
    <aboutInfo>
       <image path="icons/WRT_blurb_image.png"/>
--- a/org.symbian.tools.wrttools/plugin.xml	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools/plugin.xml	Tue Jun 29 14:08:50 2010 -0700
@@ -246,10 +246,10 @@
 	<extension point="org.eclipse.ui.views">
 		<view allowMultiple="false" category="org.symbian.tools.wrttools.views"
 			class="org.eclipse.ui.navigator.CommonNavigator" icon="icons/main16.gif"
-			id="org.symbian.tools.wrttools.wrtnavigator" name="TMW Navigator"
+			id="org.symbian.tools.wrttools.wrtnavigator" name="Projects"
 			restorable="true">
 		</view>
-		<category id="org.symbian.tools.wrttools.views" name="TMW Tools">
+		<category id="org.symbian.tools.wrttools.views" name="Tools for Mobile Web">
 		</category>
 	</extension>
 	<extension point="org.eclipse.ui.navigator.viewer">
@@ -598,7 +598,7 @@
        point="org.eclipse.ui.commands">
     <category
           id="org.symbian.tools.wrttools.commands.maincategory"
-          name="TMW Tools">
+          name="Tools for Mobile Web">
     </category>
     <command
           categoryId="org.symbian.tools.wrttools.commands.maincategory"
@@ -615,7 +615,7 @@
     <command
           categoryId="org.symbian.tools.wrttools.commands.maincategory"
           defaultHandler="org.symbian.tools.wrttools.handlers.AddJSLibrary"
-          description="Adds JavaScript libraries to TMW projects"
+          description="Adds JavaScript libraries to Mobile Web projects"
           id="org.symbian.tools.wrttools.addlibrary"
           name="Add JavaScript Libraries...">
     </command>
@@ -823,7 +823,7 @@
  </extension>
  <extension
        id="org.symbian.tools.wrttools.excluded"
-       name="Excluded from TMW packaging marker"
+       name="Excluded from Mobile Web packaging marker"
        point="org.eclipse.core.resources.markers">
     <persistent
           value="true">
--- a/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/ConsoleFactory.java	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/ConsoleFactory.java	Tue Jun 29 14:08:50 2010 -0700
@@ -46,7 +46,7 @@
 	
 	private synchronized static MessageConsole getConsole() {
 		if (console == null) {
-			console = new MessageConsole("TMW Console", null, true);
+			console = new MessageConsole("Mobile Web Console", null, true);
 			IConsoleManager consoleManager = ConsolePlugin.getDefault().getConsoleManager();
 			consoleManager.addConsoles(new IConsole[]{console});
 		}
--- a/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/packager/packageMessages.properties	Mon Jun 28 10:47:32 2010 -0700
+++ b/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/packager/packageMessages.properties	Tue Jun 29 14:08:50 2010 -0700
@@ -10,7 +10,7 @@
 WRTPackagerConstants.directoryCreateErr=Can not create output directory
 WRTPackagerConstants.checkPermission=Can not create specified directory at the destination.
 WRTPackagerConstants.unSupportedInput=Any input other then a folder is not supported
-WRTPackagerConstants.InputNotSupported=Input type not supported by TMW Packager
+WRTPackagerConstants.InputNotSupported=Input type not supported by Mobile Web Packager
 WRTPackagerConstants.renameFailed=Packager failed while renaming a .zip file
 WRTPackagerConstants.failureGenerate=Packager failed while generating package files
 WRTPackagerConstants.srcNotFound=Source folder not found