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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:40:46 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit ae12dbf23a475f5973bf2f1f1b2245f58315197f
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed May 19 19:18:53 2004 +0000

    WebKit:
            Removed extraneous tabs that were added (by XCode?).
    
            * DOM.subproj/DOM-compat.h:
            * Plugins.subproj/WebScriptObject.h:
    
    JavaScriptCore:
    	Removed extraneous tabs that were added (by XCode?).
    
            * bindings/objc/WebScriptObject.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6644 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 2f30f5f..de3e8b9 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,9 @@
+2004-05-19  Richard Williamson   <rjw at apple.com>
+
+	Removed extraneous tabs that were added (by XCode?).
+
+        * bindings/objc/WebScriptObject.h:
+
 2004-05-19  Darin Adler  <darin at apple.com>
 
         - fixed headers with licenses mangled by Xcode auto-indenting
diff --git a/JavaScriptCore/bindings/objc/WebScriptObject.h b/JavaScriptCore/bindings/objc/WebScriptObject.h
index 0ce41ee..1d51452 100644
--- a/JavaScriptCore/bindings/objc/WebScriptObject.h
+++ b/JavaScriptCore/bindings/objc/WebScriptObject.h
@@ -20,27 +20,27 @@
     automatic reflection can be overriden using the class methods defined in the WebScriptMethods
     informal protocol.
     
-	Access to the attributes of an instance is done using KVC. Specifically the following
+    Access to the attributes of an instance is done using KVC. Specifically the following
     KVC methods:
 	
-	- (void)setValue:(id)value forKey:(NSString *)key
-	- (id)valueForKey:(NSString *)key
+        - (void)setValue:(id)value forKey:(NSString *)key
+        - (id)valueForKey:(NSString *)key
 	
     Instances may also intercept property set/get operations and method invocations that are
     made by the scripting environment, but not reflected.  This is done using the KVC
     methods:
 
-	- (void)setValue:(id)value forUndefinedKey:(NSString *)key
-	- (id)valueForUndefinedKey:(NSString *)key
+        - (void)setValue:(id)value forUndefinedKey:(NSString *)key
+        - (id)valueForUndefinedKey:(NSString *)key
     
     If clients need to raise an exception in the script environment
     they can call [WebScriptObject throwException:].  Note that throwing an
     exception using this method will only succeed if the method that throws the exception
     is being called within the scope of a script invocation.
     
-	By default all attributes, as defined by KVC, will be exposed.  However, a
+    By default all attributes, as defined by KVC, will be exposed.  However, a
     class may further exclude properties that they do not want to expose
-	to web script.
+    to web script.
 	
     Not all methods are exposed.  Only those methods whose parameters and return
     type meets the export criteria will exposed.  Valid types are ObjectiveC instances
@@ -48,11 +48,11 @@
     that they do not want to expose.
     
     Types will be converted to appropriate types in the scripting environment.
-	After any KVC coercion occurs the ObjectiveC types will converted to a type
-	appropriate for the script environment.  For JavaScript NSNumber will be
+    After any KVC coercion occurs the ObjectiveC types will converted to a type
+    appropriate for the script environment.  For JavaScript NSNumber will be
     converted to numbers.  NSString will be converted to strings.  NSArray will
     be mapped to a special read-only array.  NSNull will be converted to null.  
-	WebUndefined will be converted to undefined.  WebScriptObjects will be unwrapped.
+    WebUndefined will be converted to undefined.  WebScriptObjects will be unwrapped.
     Instances of other classes will be wrapped when passed to the script environment
     and unwrapped when returned to ObjectiveC.  Similar conversion happens in the
     other direction.
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 414da76..a9f49e0 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,12 @@
 2004-05-19  Richard Williamson   <rjw at apple.com>
 
+        Removed extraneous tabs that were added (by XCode?).
+        
+        * DOM.subproj/DOM-compat.h:
+        * Plugins.subproj/WebScriptObject.h:
+
+2004-05-19  Richard Williamson   <rjw at apple.com>
+
         Updated header copy script to only copy if modified headers
         are different.
 
diff --git a/WebKit/DOM.subproj/DOM-compat.h b/WebKit/DOM.subproj/DOM-compat.h
index 499408b..d02daa7 100644
--- a/WebKit/DOM.subproj/DOM-compat.h
+++ b/WebKit/DOM.subproj/DOM-compat.h
@@ -21,4 +21,4 @@
 @end
 
 #define ELEMENT_NODE 1
-#define TEXT_NODE 3
\ No newline at end of file
+#define TEXT_NODE 3
diff --git a/WebKit/Plugins.subproj/WebScriptObject.h b/WebKit/Plugins.subproj/WebScriptObject.h
index 0ce41ee..1d51452 100644
--- a/WebKit/Plugins.subproj/WebScriptObject.h
+++ b/WebKit/Plugins.subproj/WebScriptObject.h
@@ -20,27 +20,27 @@
     automatic reflection can be overriden using the class methods defined in the WebScriptMethods
     informal protocol.
     
-	Access to the attributes of an instance is done using KVC. Specifically the following
+    Access to the attributes of an instance is done using KVC. Specifically the following
     KVC methods:
 	
-	- (void)setValue:(id)value forKey:(NSString *)key
-	- (id)valueForKey:(NSString *)key
+        - (void)setValue:(id)value forKey:(NSString *)key
+        - (id)valueForKey:(NSString *)key
 	
     Instances may also intercept property set/get operations and method invocations that are
     made by the scripting environment, but not reflected.  This is done using the KVC
     methods:
 
-	- (void)setValue:(id)value forUndefinedKey:(NSString *)key
-	- (id)valueForUndefinedKey:(NSString *)key
+        - (void)setValue:(id)value forUndefinedKey:(NSString *)key
+        - (id)valueForUndefinedKey:(NSString *)key
     
     If clients need to raise an exception in the script environment
     they can call [WebScriptObject throwException:].  Note that throwing an
     exception using this method will only succeed if the method that throws the exception
     is being called within the scope of a script invocation.
     
-	By default all attributes, as defined by KVC, will be exposed.  However, a
+    By default all attributes, as defined by KVC, will be exposed.  However, a
     class may further exclude properties that they do not want to expose
-	to web script.
+    to web script.
 	
     Not all methods are exposed.  Only those methods whose parameters and return
     type meets the export criteria will exposed.  Valid types are ObjectiveC instances
@@ -48,11 +48,11 @@
     that they do not want to expose.
     
     Types will be converted to appropriate types in the scripting environment.
-	After any KVC coercion occurs the ObjectiveC types will converted to a type
-	appropriate for the script environment.  For JavaScript NSNumber will be
+    After any KVC coercion occurs the ObjectiveC types will converted to a type
+    appropriate for the script environment.  For JavaScript NSNumber will be
     converted to numbers.  NSString will be converted to strings.  NSArray will
     be mapped to a special read-only array.  NSNull will be converted to null.  
-	WebUndefined will be converted to undefined.  WebScriptObjects will be unwrapped.
+    WebUndefined will be converted to undefined.  WebScriptObjects will be unwrapped.
     Instances of other classes will be wrapped when passed to the script environment
     and unwrapped when returned to ObjectiveC.  Similar conversion happens in the
     other direction.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list