[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

ojan at chromium.org ojan at chromium.org
Mon Feb 21 00:36:02 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit a30c59cce1d67f605c9b29f16356fd6497210b93
Author: ojan at chromium.org <ojan at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Feb 2 01:12:45 2011 +0000

    2011-02-01  Ojan Vafai  <ojan at chromium.org>
    
            Reviewed by Mihai Parparita.
    
            [codereviewtool] extra space at the beginning of lines in side-by-side view
            https://bugs.webkit.org/show_bug.cgi?id=53550
    
            The newline between the spans turns into user-visible space in side-by-side mode.
    
            * PrettyPatch/PrettyPatch.rb:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77340 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Websites/bugs.webkit.org/ChangeLog b/Websites/bugs.webkit.org/ChangeLog
index 039a36d..9f01a70 100644
--- a/Websites/bugs.webkit.org/ChangeLog
+++ b/Websites/bugs.webkit.org/ChangeLog
@@ -1,5 +1,16 @@
 2011-02-01  Ojan Vafai  <ojan at chromium.org>
 
+        Reviewed by Mihai Parparita.
+
+        [codereviewtool] extra space at the beginning of lines in side-by-side view
+        https://bugs.webkit.org/show_bug.cgi?id=53550
+
+        The newline between the spans turns into user-visible space in side-by-side mode.
+
+        * PrettyPatch/PrettyPatch.rb:
+
+2011-02-01  Ojan Vafai  <ojan at chromium.org>
+
         Increment version number to cache-bust code-review.js.
 
         * PrettyPatch/PrettyPatch.rb:
diff --git a/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb b/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb
index 4e353fc..553dded 100644
--- a/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb
+++ b/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb
@@ -417,7 +417,7 @@ body {
 }
 </style>
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> 
-<script src="code-review.js?version=30"></script>
+<script src="code-review.js?version=31"></script>
 EOF
 
     def self.revisionOrDescription(string)
@@ -759,7 +759,7 @@ END
         def to_html
             markedUpText = self.text_as_html
             str = "<div class='%s'>\n" % self.classes.join(' ')
-            str += "<span class='from lineNumber'>%s</span><span class='to lineNumber'>%s</span>\n" %
+            str += "<span class='from lineNumber'>%s</span><span class='to lineNumber'>%s</span>" %
                    [@fromLineNumber.nil? ? '&nbsp;' : @fromLineNumber,
                     @toLineNumber.nil? ? '&nbsp;' : @toLineNumber] unless @fromLineNumber.nil? and @toLineNumber.nil?
             str += "<span class='text'>%s</span>\n" % markedUpText

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list