[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc
vestbo at webkit.org
vestbo at webkit.org
Wed Dec 22 13:43:55 UTC 2010
The following commit has been merged in the debian/experimental branch:
commit 24e857b21b036c4ea47cdc15bc4e6a1d5cd6ffb8
Author: vestbo at webkit.org <vestbo at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Sep 24 13:46:00 2010 +0000
Support Unicode-strings in committers-autocomplete script
Reviewed by Csaba Osztrogonác.
* committers-autocomplete.js:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68249 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/BugsSite/ChangeLog b/BugsSite/ChangeLog
index cfca68c..83ebe74 100644
--- a/BugsSite/ChangeLog
+++ b/BugsSite/ChangeLog
@@ -1,3 +1,11 @@
+2010-09-24 Tor Arne Vestbø <tor.arne.vestbo at nokia.com>
+
+ Reviewed by Csaba Osztrogonác.
+
+ Support Unicode-strings in committers-autocomplete script
+
+ * committers-autocomplete.js:
+
2010-09-22 Adam Barth <abarth at webkit.org>
Reviewed by John Sullivan.
diff --git a/BugsSite/committers-autocomplete.js b/BugsSite/committers-autocomplete.js
index b2e20fd..5b5bbfc 100644
--- a/BugsSite/committers-autocomplete.js
+++ b/BugsSite/committers-autocomplete.js
@@ -55,7 +55,7 @@ WebKitCommitters = (function() {
var parsedResult = {};
// full name
- var param = /^\s*((\[[^\]]+\])|("[^"]+"))\s*/g; // For emacs " to balance the quotes.
+ var param = /^\s*((\[[^\]]+\])|u?("[^"]+"))\s*/g; // For emacs " to balance the quotes.
param.lastIndex = 0;
var nameParam = param.exec(record);
if (!nameParam)
@@ -63,7 +63,7 @@ WebKitCommitters = (function() {
record = record.substring(param.lastIndex);
// Save the name without the quotes.
- parsedResult.name = nameParam[0].slice(1, nameParam[0].length - 1);
+ parsedResult.name = nameParam[3].slice(1, nameParam[3].length - 1);
var paramSeparator = /^\s*,\s*/g;
paramSeparator.lastIndex = 0;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list