# HG changeset patch # User Paul Beusterien # Date 1277845730 25200 # Node ID 72386743b72321890df7745c7b0d9fa999b224eb # Parent 91acf7e95f86a8447eff442c9e89fd787e54fa73 Improve TMW messages - bug 3121 diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.debug.core/plugin.xml --- 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"> @@ -36,7 +36,7 @@ point="org.eclipse.debug.ui.launchConfigurationTabGroups"> @@ -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"> @@ -79,11 +79,11 @@ @@ -295,9 +295,9 @@ + label="Mobile Web Debug"> diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.previewer/plugin.xml --- 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"> @@ -19,7 +19,7 @@ + name="Tools for Mobile Web"> diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.previewer/preview/wrt_preview.html --- 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 @@ - TMW Debugger + Mobile Web Debugger diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/PreviewerPlugin.java --- 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; diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/http/BrowserConnectionJob.java --- 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); diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preferences/WrtEditingPreferencePage.java --- 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); diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java --- 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()); } diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/PreviewView.java --- 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?", diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.product/plugin.properties --- 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\ diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools.product/plugin.xml --- 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"> + label="Mobile Web Element Creation"> @@ -71,7 +71,7 @@ @@ -152,7 +152,7 @@ pattern="org\.eclipse\.debug\.ui/org\.eclipse\.debug\.ui\.contextualLaunch\.debug\.submenu"> @@ -192,7 +192,7 @@ point="org.eclipse.core.runtime.products"> + name="Mobile Web IDE"> @@ -219,7 +219,7 @@ + value="Mobile Web IDE"> - + diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools/plugin.xml --- 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 @@ - + @@ -598,7 +598,7 @@ point="org.eclipse.ui.commands"> + name="Tools for Mobile Web"> @@ -823,7 +823,7 @@ diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/ConsoleFactory.java --- 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}); } diff -r 91acf7e95f86 -r 72386743b723 org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/packager/packageMessages.properties --- 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