Revision: 6678
Author: j...@google.com
Date: Wed Nov  4 14:30:05 2009
Log: More name changes.

http://code.google.com/p/google-web-toolkit/source/detail?r=6678

Modified:
  /changes/jat/single-xpi/plugins/xpcom/ExternalWrapper.cpp
  /changes/jat/single-xpi/plugins/xpcom/FFSessionHandler.cpp
  /changes/jat/single-xpi/plugins/xpcom/Makefile
  /changes/jat/single-xpi/plugins/xpcom/Preferences.cpp
  /changes/jat/single-xpi/plugins/xpcom/install-template.rdf
   
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff3/libgwt_dev_ff3.so
   
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff3+/libgwt_dev_ff3+.so
   
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff35/libgwt_dev_ff35.so
   
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff3/libgwt_dev_ff3.so
   
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff3+/libgwt_dev_ff3+.so
   
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff35/libgwt_dev_ff35.so
  /changes/jat/single-xpi/plugins/xpcom/xpGwtDevPlugin.rc

=======================================
--- /changes/jat/single-xpi/plugins/xpcom/ExternalWrapper.cpp   Tue Nov  3  
14:54:41 2009
+++ /changes/jat/single-xpi/plugins/xpcom/ExternalWrapper.cpp   Wed Nov  4  
14:30:05 2009
@@ -257,11 +257,11 @@
    if (!promptService) {
      return false;
    }
-  NS_ConvertASCIItoUTF16 title("Allow GWT Development Mode Connection");
+  NS_ConvertASCIItoUTF16 title("Allow GWT Developer Plugin Connection");
    NS_ConvertASCIItoUTF16 text("This web server is requesting a GWT "
-      "development mode connection -- do you want to allow it?");
+      "developer plugin connection -- do you want to allow it?");
    NS_ConvertASCIItoUTF16 checkMsg("Remember this decision for this server "
-      "(change in GWT plugin preferences)");
+      "(change in GWT Developer Plugin preferences)");
    PRBool remember = false;
    PRBool include = true;
    if (promptService->ConfirmCheck(domWindow.get(), title.get(), text.get(),
=======================================
--- /changes/jat/single-xpi/plugins/xpcom/FFSessionHandler.cpp  Thu Sep  3  
15:22:56 2009
+++ /changes/jat/single-xpi/plugins/xpcom/FFSessionHandler.cpp  Wed Nov  4  
14:30:05 2009
@@ -48,7 +48,7 @@

    if (cx == nsnull) {
      // TODO(jat): figure out why this can be null at plugin unload time
-    Debug::log(Debug::Error) << "GWT DMP: Null JS context" << Debug::flush;
+    Debug::log(Debug::Error) << "GWT Dev Plugin: Null JS context" <<  
Debug::flush;
    }

    return cx;
=======================================
--- /changes/jat/single-xpi/plugins/xpcom/Makefile      Wed Nov  4 13:15:07 2009
+++ /changes/jat/single-xpi/plugins/xpcom/Makefile      Wed Nov  4 14:30:05 2009
@@ -146,6 +146,14 @@
  generate-install:: $(EXTENSION_OUTDIR) install-template.rdf
        sed -e s/GWT_DEV_PLUGIN_VERSION/$(VERSION)/ install-template.rdf  
>$(INSTALL_RDF)

+linuxplatforms:
+       $(MAKE) BROWSER=ff3 ARCH=x86
+       $(MAKE) BROWSER=ff3+ ARCH=x86
+       $(MAKE) BROWSER=ff35 ARCH=x86
+       $(MAKE) BROWSER=ff3 ARCH=x86_64
+       $(MAKE) BROWSER=ff3+ ARCH=x86_64
+       $(MAKE) BROWSER=ff35 ARCH=x86_64
+
  SRCS =        \
                ExternalWrapper.cpp \
                ModuleOOPHM.cpp \
=======================================
--- /changes/jat/single-xpi/plugins/xpcom/Preferences.cpp       Wed Nov  4  
13:15:07 2009
+++ /changes/jat/single-xpi/plugins/xpcom/Preferences.cpp       Wed Nov  4  
14:30:05 2009
@@ -27,8 +27,8 @@
  #include "nsIPrefBranch2.h"
  #include "nsServiceManagerUtils.h"

-#define DMP_PREFS_PREFIX "gwt-dev-plugin."
-#define DMP_ACCESS_LIST "accessList"
+#define GWT_DEV_PREFS_PREFIX "gwt-dev-plugin."
+#define GWT_DEV_ACCESS_LIST "accessList"

  NS_IMPL_ADDREF(Preferences)
  NS_IMPL_RELEASE(Preferences)
@@ -38,14 +38,15 @@
    nsCOMPtr<nsIPrefService> prefService = do_GetService(
        NS_PREFSERVICE_CONTRACTID);
    if (!prefService) {
-    Debug::log(Debug::Error) << "Unable to get preference service" <<  
Debug::flush;
+    Debug::log(Debug::Error) << "Unable to get preference service"
+        << Debug::flush;
      return;
    }
    nsCOMPtr<nsIPrefBranch> branch;
-  prefService->GetBranch(DMP_PREFS_PREFIX, getter_AddRefs(branch));
+  prefService->GetBranch(GWT_DEV_PREFS_PREFIX, getter_AddRefs(branch));
    if (!branch) {
-    Debug::log(Debug::Error) << "Unable to get gwt-dmp. preference branch"
-        << Debug::flush;
+    Debug::log(Debug::Error) << "Unable to get " GWT_DEV_PREFS_PREFIX
+        " preference branch" << Debug::flush;
      return;
    }
    prefs = do_QueryInterface(branch);
@@ -53,9 +54,10 @@
      Debug::log(Debug::Error) << "Unable to get nsIPrefBranch2" <<  
Debug::flush;
      return;
    }
-  prefs->AddObserver(DMP_ACCESS_LIST, this, PR_FALSE);
+  prefs->AddObserver(GWT_DEV_ACCESS_LIST, this, PR_FALSE);
    nsCString prefValue;
-  if (branch->GetCharPref(DMP_ACCESS_LIST, getter_Copies(prefValue)) ==  
NS_OK) {
+  if (branch->GetCharPref(GWT_DEV_ACCESS_LIST, getter_Copies(prefValue))
+      == NS_OK) {
      loadAccessList(prefValue.get());
    }
  }
@@ -74,7 +76,8 @@
    nsCOMPtr<nsIPrefBranch> prefs(do_QueryInterface(aSubject, &rv));
    NS_ENSURE_SUCCESS(rv, rv);
    nsCString prefValue;
-  if (prefs->GetCharPref(DMP_ACCESS_LIST, getter_Copies(prefValue)) ==  
NS_OK) {
+  if (prefs->GetCharPref(GWT_DEV_ACCESS_LIST, getter_Copies(prefValue))
+      == NS_OK) {
      loadAccessList(prefValue.get());
    }
    return NS_OK;
@@ -82,7 +85,8 @@

  void Preferences::addNewRule(const std::string& pattern, bool exclude) {
    nsCString prefValue;
-  if (prefs->GetCharPref(DMP_ACCESS_LIST, getter_Copies(prefValue)) !=  
NS_OK) {
+  if (prefs->GetCharPref(GWT_DEV_ACCESS_LIST, getter_Copies(prefValue))
+      != NS_OK) {
      Debug::log(Debug::Error) << "Unable to retrieve access list preference"
          << Debug::flush;
      return;
@@ -96,7 +100,7 @@
      pref += '!';
    }
    pref += pattern;
-  if (prefs->SetCharPref(DMP_ACCESS_LIST, pref.c_str()) != NS_OK) {
+  if (prefs->SetCharPref(GWT_DEV_ACCESS_LIST, pref.c_str()) != NS_OK) {
      Debug::log(Debug::Error) << "Unable to save modified access list  
preference"
          << Debug::flush;
      return;
@@ -114,6 +118,6 @@

  Preferences::~Preferences() {
    if (prefs) {
-    prefs->RemoveObserver(DMP_ACCESS_LIST, this);
+    prefs->RemoveObserver(GWT_DEV_ACCESS_LIST, this);
    }
  }
=======================================
--- /changes/jat/single-xpi/plugins/xpcom/install-template.rdf  Wed Nov  4  
13:15:07 2009
+++ /changes/jat/single-xpi/plugins/xpcom/install-template.rdf  Wed Nov  4  
14:30:05 2009
@@ -4,7 +4,7 @@

    <Description about="urn:mozilla:install-manifest">
      <em:id>gwt-dev-plu...@google.com</em:id>
-    <em:name>GWT Development Mode Plugin for Firefox</em:name>
+    <em:name>GWT Developer Plugin for Firefox</em:name>
      <em:version>GWT_DEV_PLUGIN_VERSION</em:version>
      <em:type>2</em:type>
      <em:targetApplication>
=======================================
---  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff3/libgwt_dev_ff3.so
        
Wed Nov  4 13:15:07 2009
+++  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff3/libgwt_dev_ff3.so
        
Wed Nov  4 14:30:05 2009
File is too large to display a diff.
=======================================
---  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff3+/libgwt_dev_ff3+.so
      
Wed Nov  4 13:15:07 2009
+++  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff3+/libgwt_dev_ff3+.so
      
Wed Nov  4 14:30:05 2009
File is too large to display a diff.
=======================================
---  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff35/libgwt_dev_ff35.so
      
Wed Nov  4 13:15:07 2009
+++  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86-gcc3/ff35/libgwt_dev_ff35.so
      
Wed Nov  4 14:30:05 2009
File is too large to display a diff.
=======================================
---  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff3/libgwt_dev_ff3.so
     
Wed Nov  4 13:15:07 2009
+++  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff3/libgwt_dev_ff3.so
     
Wed Nov  4 14:30:05 2009
File is too large to display a diff.
=======================================
---  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff3+/libgwt_dev_ff3+.so
   
Wed Nov  4 13:15:07 2009
+++  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff3+/libgwt_dev_ff3+.so
   
Wed Nov  4 14:30:05 2009
File is too large to display a diff.
=======================================
---  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff35/libgwt_dev_ff35.so
   
Wed Nov  4 13:15:07 2009
+++  
/changes/jat/single-xpi/plugins/xpcom/prebuilt/extension/lib/Linux_x86_64-gcc3/ff35/libgwt_dev_ff35.so
   
Wed Nov  4 14:30:05 2009
File is too large to display a diff.
=======================================
--- /changes/jat/single-xpi/plugins/xpcom/xpGwtDevPlugin.rc     Wed Nov  4  
14:08:41 2009
+++ /changes/jat/single-xpi/plugins/xpcom/xpGwtDevPlugin.rc     Wed Nov  4  
14:30:05 2009
@@ -9,8 +9,8 @@
  #endif

  1 VERSIONINFO
-  FILEVERSION 0,1,1,0
-  PRODUCTVERSION 0,1,1,0
+  FILEVERSION 0,9,0,0
+  PRODUCTVERSION 0,9,0,0
    FILEFLAGSMASK 0x3fL
  #ifdef _DEBUG
    FILEFLAGS 0x1L
@@ -26,18 +26,18 @@
        BLOCK "040904e4"
        BEGIN
          VALUE "CompanyName",          "Google Inc"
-         VALUE "FileDescription",      "GWT DevMode Plugin (XPCOM)"
+         VALUE "FileDescription",      "GWT Developer Plugin (XPCOM)"
  #if 0
          VALUE "FileExtents",          ""
  #endif
-         VALUE "FileOpenName",         "Plugin to allow debugging of GWT 
applications  
in hosted mode."
+         VALUE "FileOpenName",         "Plugin to allow debugging of GWT 
applications  
in development mode."
          VALUE "FileVersion",          "0.1a"
-         VALUE "InternalName",         "GWT DevMode Plugin (XPCOM)"
+         VALUE "InternalName",         "GWT Developer Plugin (XPCOM)"
          VALUE "LegalCopyright",       "Copyright © 2008 Google Inc.  Licensed 
under  
Apache 2.0 license."
          VALUE "MIMEType",                     "application/x-gwt-hosted-mode"
-         VALUE "OriginalFilename",     "xpGWTDMP.dll"
-         VALUE "ProductName",          "GWT DevMode Plugin (XPCOM)"
-         VALUE "ProductVersion",       "0.1a"
+         VALUE "OriginalFilename",     "xpGwtDevPlugin.dll"
+         VALUE "ProductName",          "GWT Developer Plugin (XPCOM)"
+         VALUE "ProductVersion",       "0.9.0.0"
        END
    END
    BLOCK "VarFileInfo"

--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to