[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:39:25 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f6fc27abaa2a4dfffc28899aa23b3c0da03d2677
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Apr 30 15:22:01 2003 +0000

            Reviewed by Ken.
    
            - make change to avoid misunderstanding that led to bug report 3179394
              "Safari: Request that temp files use actual file extensions"
    
            * Plugins.subproj/WebBaseNetscapePluginStream.m:
            (-[WebBaseNetscapePluginStream finishedLoadingWithData:]):
            Don't put a dot between "SafariPlugInStream" and the the 6-digit unique number, so the number
            does not look like an extension. Also make it "WebKitPlugInStream" since this is used for
            other WebKit clients, and not just Safari.
    
            * English.lproj/StringsNotToBeLocalized.txt: Update for recent changes.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4217 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index b728c75..c83a284 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,18 @@
+2003-04-30  Darin Adler  <darin at apple.com>
+
+        Reviewed by Ken.
+
+        - make change to avoid misunderstanding that led to bug report 3179394
+          "Safari: Request that temp files use actual file extensions"
+
+        * Plugins.subproj/WebBaseNetscapePluginStream.m:
+        (-[WebBaseNetscapePluginStream finishedLoadingWithData:]):
+        Don't put a dot between "SafariPlugInStream" and the the 6-digit unique number, so the number
+        does not look like an extension. Also make it "WebKitPlugInStream" since this is used for
+        other WebKit clients, and not just Safari.
+
+        * English.lproj/StringsNotToBeLocalized.txt: Update for recent changes.
+
 2003-04-29  Richard Williamson   <rjw at apple.com>
 
         API changes from final review meeting.
diff --git a/WebKit/English.lproj/StringsNotToBeLocalized.txt b/WebKit/English.lproj/StringsNotToBeLocalized.txt
index 7ef76c0..0bd6d28 100644
--- a/WebKit/English.lproj/StringsNotToBeLocalized.txt
+++ b/WebKit/English.lproj/StringsNotToBeLocalized.txt
@@ -15,7 +15,7 @@
 "/<!--frame%d-->-->"
 "/Library/Internet Plug-Ins"
 "/favicon.ico"
-"/tmp/SafariPlugInStream.XXXXXX"
+"/tmp/WebKitPlugInStreamXXXXXX"
 "/tmp/XXXXXX.tiff"
 "0x0"
 "1.00"
@@ -104,7 +104,7 @@
 "WebElementImageAltString"
 "WebElementImageRect"
 "WebElementImageURL"
-"WebElementIsSelectedText"
+"WebElementIsSelected"
 "WebElementLinkLabel"
 "WebElementLinkTitle"
 "WebElementLinkURL"
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m
index 3b2692a..e28bc7a 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginStream.m
@@ -143,7 +143,7 @@
     
     if (transferMode == NP_ASFILE || transferMode == NP_ASFILEONLY) {
         if (!path) {
-            path = strdup("/tmp/SafariPlugInStream.XXXXXX");
+            path = strdup("/tmp/WebKitPlugInStreamXXXXXX");
             int fd = mkstemp(path);
             if (fd == -1) {
                 // This should almost never happen.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list