[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75
abarth at webkit.org
abarth at webkit.org
Thu Oct 29 20:48:29 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 1119e6498587ac6d69f6034baa5371bce8124373
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Oct 20 04:37:09 2009 +0000
2009-10-19 Jungshik Shin <jshin at chromium.org>
Reviewed by Eric Seidel.
https://bugs.webkit.org/show_bug.cgi?id=20797
Make generic font family getters/setters accept an additional
argument (script code). It has a default value so that if an embedder
does not have/want a per-script font family setting, call-sites
don't have to be changed.
This is to prepare for fixing bug 10874 (font selection is not
language-dependent) and bug 18085.
There should be no change in layout and no new layout test
is added.
* WebCore.base.exp:
* page/Settings.cpp:
* page/Settings.h:
* platform/text/UScriptCode.h: Added. This is for ports that
do not use ICU. the part of ICU's common/unicode/uscript.h
that defines script code enum was copied. To keep enums compatible
with those in ICU, we don't generate the list out of Scripts.txt
of the Unicode Data base or CLDR's data.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49837 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 573aa03..6c0f495 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,28 @@
+2009-10-19 Jungshik Shin <jshin at chromium.org>
+
+ Reviewed by Eric Seidel.
+
+ https://bugs.webkit.org/show_bug.cgi?id=20797
+
+ Make generic font family getters/setters accept an additional
+ argument (script code). It has a default value so that if an embedder
+ does not have/want a per-script font family setting, call-sites
+ don't have to be changed.
+ This is to prepare for fixing bug 10874 (font selection is not
+ language-dependent) and bug 18085.
+
+ There should be no change in layout and no new layout test
+ is added.
+
+ * WebCore.base.exp:
+ * page/Settings.cpp:
+ * page/Settings.h:
+ * platform/text/UScriptCode.h: Added. This is for ports that
+ do not use ICU. the part of ICU's common/unicode/uscript.h
+ that defines script code enum was copied. To keep enums compatible
+ with those in ICU, we don't generate the list out of Scripts.txt
+ of the Unicode Data base or CLDR's data.
+
2009-10-19 Evan Stade <estade at chromium.org>
Reviewed by Darin Adler.
diff --git a/WebCore/page/Settings.cpp b/WebCore/page/Settings.cpp
index dddbf05..0d0c9bb 100644
--- a/WebCore/page/Settings.cpp
+++ b/WebCore/page/Settings.cpp
@@ -44,6 +44,20 @@ static void setNeedsReapplyStylesInAllFrames(Page* page)
frame->setNeedsReapplyStyles();
}
+static inline void setGenericFontFamilyMap(ScriptFontFamilyMap& fontMap, const AtomicString& family, UScriptCode script, Page* page)
+{
+ if (fontMap.set(static_cast<int>(script), family).second)
+ setNeedsReapplyStylesInAllFrames(page);
+}
+
+static inline const AtomicString& getGenericFontFamilyForScript(const ScriptFontFamilyMap& fontMap, UScriptCode script)
+{
+ ScriptFontFamilyMap::const_iterator it = fontMap.find(static_cast<int>(script));
+ if (it != fontMap.end())
+ return it->second;
+ return emptyAtom;
+}
+
#if USE(SAFARI_THEME)
bool Settings::gShouldPaintNativeControls = true;
#endif
@@ -129,58 +143,63 @@ Settings::Settings(Page* page)
AtomicString::init();
}
-void Settings::setStandardFontFamily(const AtomicString& standardFontFamily)
+const AtomicString& Settings::standardFontFamily(UScriptCode script) const
{
- if (standardFontFamily == m_standardFontFamily)
- return;
+ return getGenericFontFamilyForScript(m_standardFontFamilyMap, script);
+}
- m_standardFontFamily = standardFontFamily;
- setNeedsReapplyStylesInAllFrames(m_page);
+void Settings::setStandardFontFamily(const AtomicString& family, UScriptCode script)
+{
+ setGenericFontFamilyMap(m_standardFontFamilyMap, family, script, m_page);
}
-void Settings::setFixedFontFamily(const AtomicString& fixedFontFamily)
+const AtomicString& Settings::fixedFontFamily(UScriptCode script) const
{
- if (m_fixedFontFamily == fixedFontFamily)
- return;
-
- m_fixedFontFamily = fixedFontFamily;
- setNeedsReapplyStylesInAllFrames(m_page);
+ return getGenericFontFamilyForScript(m_fixedFontFamilyMap, script);
}
-void Settings::setSerifFontFamily(const AtomicString& serifFontFamily)
+void Settings::setFixedFontFamily(const AtomicString& family, UScriptCode script)
{
- if (m_serifFontFamily == serifFontFamily)
- return;
-
- m_serifFontFamily = serifFontFamily;
- setNeedsReapplyStylesInAllFrames(m_page);
+ setGenericFontFamilyMap(m_fixedFontFamilyMap, family, script, m_page);
}
-void Settings::setSansSerifFontFamily(const AtomicString& sansSerifFontFamily)
+const AtomicString& Settings::serifFontFamily(UScriptCode script) const
{
- if (m_sansSerifFontFamily == sansSerifFontFamily)
- return;
-
- m_sansSerifFontFamily = sansSerifFontFamily;
- setNeedsReapplyStylesInAllFrames(m_page);
+ return getGenericFontFamilyForScript(m_serifFontFamilyMap, script);
}
-void Settings::setCursiveFontFamily(const AtomicString& cursiveFontFamily)
+void Settings::setSerifFontFamily(const AtomicString& family, UScriptCode script)
{
- if (m_cursiveFontFamily == cursiveFontFamily)
- return;
-
- m_cursiveFontFamily = cursiveFontFamily;
- setNeedsReapplyStylesInAllFrames(m_page);
+ setGenericFontFamilyMap(m_serifFontFamilyMap, family, script, m_page);
}
-void Settings::setFantasyFontFamily(const AtomicString& fantasyFontFamily)
+const AtomicString& Settings::sansSerifFontFamily(UScriptCode script) const {
+ return getGenericFontFamilyForScript(m_sansSerifFontFamilyMap, script);
+}
+
+void Settings::setSansSerifFontFamily(const AtomicString& family, UScriptCode script)
{
- if (m_fantasyFontFamily == fantasyFontFamily)
- return;
-
- m_fantasyFontFamily = fantasyFontFamily;
- setNeedsReapplyStylesInAllFrames(m_page);
+ setGenericFontFamilyMap(m_sansSerifFontFamilyMap, family, script, m_page);
+}
+
+const AtomicString& Settings::cursiveFontFamily(UScriptCode script) const
+{
+ return getGenericFontFamilyForScript(m_cursiveFontFamilyMap, script);
+}
+
+void Settings::setCursiveFontFamily(const AtomicString& family, UScriptCode script)
+{
+ setGenericFontFamilyMap(m_cursiveFontFamilyMap, family, script, m_page);
+}
+
+const AtomicString& Settings::fantasyFontFamily(UScriptCode script) const
+{
+ return getGenericFontFamilyForScript(m_fantasyFontFamilyMap, script);
+}
+
+void Settings::setFantasyFontFamily(const AtomicString& family, UScriptCode script)
+{
+ setGenericFontFamilyMap(m_fantasyFontFamilyMap, family, script, m_page);
}
void Settings::setMinimumFontSize(int minimumFontSize)
diff --git a/WebCore/page/Settings.h b/WebCore/page/Settings.h
index f066da4..066e4f8 100644
--- a/WebCore/page/Settings.h
+++ b/WebCore/page/Settings.h
@@ -28,8 +28,15 @@
#define Settings_h
#include "AtomicString.h"
+#include "AtomicStringHash.h"
#include "FontRenderingMode.h"
#include "KURL.h"
+#if USE(ICU_UNICODE)
+#include "unicode/uscript.h"
+#else
+#include "UScriptCode.h"
+#endif
+#include <wtf/HashMap.h>
namespace WebCore {
@@ -64,27 +71,29 @@ namespace WebCore {
// if possible in the future.
enum EditingBehavior { EditingMacBehavior, EditingWindowsBehavior };
+ typedef HashMap<int, AtomicString> ScriptFontFamilyMap;
+
class Settings {
public:
Settings(Page*);
- void setStandardFontFamily(const AtomicString&);
- const AtomicString& standardFontFamily() const { return m_standardFontFamily; }
+ void setStandardFontFamily(const AtomicString&, UScriptCode script=USCRIPT_COMMON);
+ const AtomicString& standardFontFamily(UScriptCode script=USCRIPT_COMMON) const;
- void setFixedFontFamily(const AtomicString&);
- const AtomicString& fixedFontFamily() const { return m_fixedFontFamily; }
+ void setFixedFontFamily(const AtomicString&, UScriptCode script=USCRIPT_COMMON);
+ const AtomicString& fixedFontFamily(UScriptCode script=USCRIPT_COMMON) const;
- void setSerifFontFamily(const AtomicString&);
- const AtomicString& serifFontFamily() const { return m_serifFontFamily; }
+ void setSerifFontFamily(const AtomicString&, UScriptCode script=USCRIPT_COMMON);
+ const AtomicString& serifFontFamily(UScriptCode script=USCRIPT_COMMON) const;
- void setSansSerifFontFamily(const AtomicString&);
- const AtomicString& sansSerifFontFamily() const { return m_sansSerifFontFamily; }
+ void setSansSerifFontFamily(const AtomicString&, UScriptCode script=USCRIPT_COMMON);
+ const AtomicString& sansSerifFontFamily(UScriptCode script=USCRIPT_COMMON) const;
- void setCursiveFontFamily(const AtomicString&);
- const AtomicString& cursiveFontFamily() const { return m_cursiveFontFamily; }
+ void setCursiveFontFamily(const AtomicString&, UScriptCode script=USCRIPT_COMMON);
+ const AtomicString& cursiveFontFamily(UScriptCode script=USCRIPT_COMMON) const;
- void setFantasyFontFamily(const AtomicString&);
- const AtomicString& fantasyFontFamily() const { return m_fantasyFontFamily; }
+ void setFantasyFontFamily(const AtomicString&, UScriptCode script=USCRIPT_COMMON);
+ const AtomicString& fantasyFontFamily(UScriptCode script=USCRIPT_COMMON) const;
void setMinimumFontSize(int);
int minimumFontSize() const { return m_minimumFontSize; }
@@ -288,12 +297,14 @@ namespace WebCore {
String m_ftpDirectoryTemplatePath;
String m_localStorageDatabasePath;
KURL m_userStyleSheetLocation;
- AtomicString m_standardFontFamily;
- AtomicString m_fixedFontFamily;
- AtomicString m_serifFontFamily;
- AtomicString m_sansSerifFontFamily;
- AtomicString m_cursiveFontFamily;
- AtomicString m_fantasyFontFamily;
+
+ ScriptFontFamilyMap m_fixedFontFamilyMap;
+ ScriptFontFamilyMap m_serifFontFamilyMap;
+ ScriptFontFamilyMap m_sansSerifFontFamilyMap;
+ ScriptFontFamilyMap m_cursiveFontFamilyMap;
+ ScriptFontFamilyMap m_fantasyFontFamilyMap;
+ ScriptFontFamilyMap m_standardFontFamilyMap;
+
EditableLinkBehavior m_editableLinkBehavior;
TextDirectionSubmenuInclusionBehavior m_textDirectionSubmenuInclusionBehavior;
int m_minimumFontSize;
diff --git a/WebCore/platform/text/UScriptCode.h b/WebCore/platform/text/UScriptCode.h
new file mode 100644
index 0000000..8c46eea
--- /dev/null
+++ b/WebCore/platform/text/UScriptCode.h
@@ -0,0 +1,200 @@
+/*
+ * Copyright (C) 1997-2009, International Business Machines
+ * Corporation and others. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, provided that the above copyright notice(s) and this
+ * permission notice appear in all copies of the Software and that both the
+ * above copyright notice(s) and this permission notice appear in supporting
+ * documentation.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+ * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+ * HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
+ * SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
+ * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ * Except as contained in this notice, the name of a copyright
+ * holder shall not be used in advertising or otherwise to promote the
+ * sale, use or other dealings in this Software without prior written
+ * authorization of the copyright holder.
+*/
+
+#ifndef USCRIPT_CODE_H
+#define USCRIPT_CODE_H
+
+/**
+ * Constants for Unicode script values from ScriptNames.txt .
+ */
+
+/**
+ * The Unicode standard database does not have ScriptNames.txt any more.
+ * Instead, it has Scripts.txt, from which the list of script names can be
+ * derived. The list can also be derived from the CLDR (Common Locale Data
+ * Repository).
+ * However, the order of the list derived from either source will be different
+ * from the order in this file, which is the same as ICU's
+ * common/unicode/uscript.h. To keep the backward compatibility, ICU's
+ * uscript.h add new script codes at the end of existing entries
+ * instead of sorting them everytime it's updated.
+ */
+typedef enum UScriptCode {
+ USCRIPT_INVALID_CODE = -1,
+ USCRIPT_COMMON = 0 , /* Zyyy */
+ USCRIPT_INHERITED = 1, /* Qaai */
+ USCRIPT_ARABIC = 2, /* Arab */
+ USCRIPT_ARMENIAN = 3, /* Armn */
+ USCRIPT_BENGALI = 4, /* Beng */
+ USCRIPT_BOPOMOFO = 5, /* Bopo */
+ USCRIPT_CHEROKEE = 6, /* Cher */
+ USCRIPT_COPTIC = 7, /* Copt */
+ USCRIPT_CYRILLIC = 8, /* Cyrl (Cyrs) */
+ USCRIPT_DESERET = 9, /* Dsrt */
+ USCRIPT_DEVANAGARI = 10, /* Deva */
+ USCRIPT_ETHIOPIC = 11, /* Ethi */
+ USCRIPT_GEORGIAN = 12, /* Geor (Geon, Geoa) */
+ USCRIPT_GOTHIC = 13, /* Goth */
+ USCRIPT_GREEK = 14, /* Grek */
+ USCRIPT_GUJARATI = 15, /* Gujr */
+ USCRIPT_GURMUKHI = 16, /* Guru */
+ USCRIPT_HAN = 17, /* Hani */
+ USCRIPT_HANGUL = 18, /* Hang */
+ USCRIPT_HEBREW = 19, /* Hebr */
+ USCRIPT_HIRAGANA = 20, /* Hira */
+ USCRIPT_KANNADA = 21, /* Knda */
+ USCRIPT_KATAKANA = 22, /* Kana */
+ USCRIPT_KHMER = 23, /* Khmr */
+ USCRIPT_LAO = 24, /* Laoo */
+ USCRIPT_LATIN = 25, /* Latn (Latf, Latg) */
+ USCRIPT_MALAYALAM = 26, /* Mlym */
+ USCRIPT_MONGOLIAN = 27, /* Mong */
+ USCRIPT_MYANMAR = 28, /* Mymr */
+ USCRIPT_OGHAM = 29, /* Ogam */
+ USCRIPT_OLD_ITALIC = 30, /* Ital */
+ USCRIPT_ORIYA = 31, /* Orya */
+ USCRIPT_RUNIC = 32, /* Runr */
+ USCRIPT_SINHALA = 33, /* Sinh */
+ USCRIPT_SYRIAC = 34, /* Syrc (Syrj, Syrn, Syre) */
+ USCRIPT_TAMIL = 35, /* Taml */
+ USCRIPT_TELUGU = 36, /* Telu */
+ USCRIPT_THAANA = 37, /* Thaa */
+ USCRIPT_THAI = 38, /* Thai */
+ USCRIPT_TIBETAN = 39, /* Tibt */
+ /** Canadian_Aboriginal script. @stable ICU 2.6 */
+ USCRIPT_CANADIAN_ABORIGINAL = 40, /* Cans */
+ /** Canadian_Aboriginal script (alias). @stable ICU 2.2 */
+ USCRIPT_UCAS = USCRIPT_CANADIAN_ABORIGINAL,
+ USCRIPT_YI = 41, /* Yiii */
+ USCRIPT_TAGALOG = 42, /* Tglg */
+ USCRIPT_HANUNOO = 43, /* Hano */
+ USCRIPT_BUHID = 44, /* Buhd */
+ USCRIPT_TAGBANWA = 45, /* Tagb */
+
+ /* New scripts in Unicode 4 @stable ICU 2.6 */
+ USCRIPT_BRAILLE = 46, /* Brai */
+ USCRIPT_CYPRIOT = 47, /* Cprt */
+ USCRIPT_LIMBU = 48, /* Limb */
+ USCRIPT_LINEAR_B = 49, /* Linb */
+ USCRIPT_OSMANYA = 50, /* Osma */
+ USCRIPT_SHAVIAN = 51, /* Shaw */
+ USCRIPT_TAI_LE = 52, /* Tale */
+ USCRIPT_UGARITIC = 53, /* Ugar */
+
+ /** New script code in Unicode 4.0.1 @stable ICU 3.0 */
+ USCRIPT_KATAKANA_OR_HIRAGANA = 54,/*Hrkt */
+
+ /* New scripts in Unicode 4.1 @stable ICU 3.4 */
+ USCRIPT_BUGINESE = 55, /* Bugi */
+ USCRIPT_GLAGOLITIC = 56, /* Glag */
+ USCRIPT_KHAROSHTHI = 57, /* Khar */
+ USCRIPT_SYLOTI_NAGRI = 58, /* Sylo */
+ USCRIPT_NEW_TAI_LUE = 59, /* Talu */
+ USCRIPT_TIFINAGH = 60, /* Tfng */
+ USCRIPT_OLD_PERSIAN = 61, /* Xpeo */
+
+ /* New script codes from ISO 15924 @stable ICU 3.6 */
+ USCRIPT_BALINESE = 62, /* Bali */
+ USCRIPT_BATAK = 63, /* Batk */
+ USCRIPT_BLISSYMBOLS = 64, /* Blis */
+ USCRIPT_BRAHMI = 65, /* Brah */
+ USCRIPT_CHAM = 66, /* Cham */
+ USCRIPT_CIRTH = 67, /* Cirt */
+ USCRIPT_OLD_CHURCH_SLAVONIC_CYRILLIC = 68, /* Cyrs */
+ USCRIPT_DEMOTIC_EGYPTIAN = 69, /* Egyd */
+ USCRIPT_HIERATIC_EGYPTIAN = 70, /* Egyh */
+ USCRIPT_EGYPTIAN_HIEROGLYPHS = 71, /* Egyp */
+ USCRIPT_KHUTSURI = 72, /* Geok */
+ USCRIPT_SIMPLIFIED_HAN = 73, /* Hans */
+ USCRIPT_TRADITIONAL_HAN = 74, /* Hant */
+ USCRIPT_PAHAWH_HMONG = 75, /* Hmng */
+ USCRIPT_OLD_HUNGARIAN = 76, /* Hung */
+ USCRIPT_HARAPPAN_INDUS = 77, /* Inds */
+ USCRIPT_JAVANESE = 78, /* Java */
+ USCRIPT_KAYAH_LI = 79, /* Kali */
+ USCRIPT_LATIN_FRAKTUR = 80, /* Latf */
+ USCRIPT_LATIN_GAELIC = 81, /* Latg */
+ USCRIPT_LEPCHA = 82, /* Lepc */
+ USCRIPT_LINEAR_A = 83, /* Lina */
+ USCRIPT_MANDAEAN = 84, /* Mand */
+ USCRIPT_MAYAN_HIEROGLYPHS = 85, /* Maya */
+ USCRIPT_MEROITIC = 86, /* Mero */
+ USCRIPT_NKO = 87, /* Nkoo */
+ USCRIPT_ORKHON = 88, /* Orkh */
+ USCRIPT_OLD_PERMIC = 89, /* Perm */
+ USCRIPT_PHAGS_PA = 90, /* Phag */
+ USCRIPT_PHOENICIAN = 91, /* Phnx */
+ USCRIPT_PHONETIC_POLLARD = 92, /* Plrd */
+ USCRIPT_RONGORONGO = 93, /* Roro */
+ USCRIPT_SARATI = 94, /* Sara */
+ USCRIPT_ESTRANGELO_SYRIAC = 95, /* Syre */
+ USCRIPT_WESTERN_SYRIAC = 96, /* Syrj */
+ USCRIPT_EASTERN_SYRIAC = 97, /* Syrn */
+ USCRIPT_TENGWAR = 98, /* Teng */
+ USCRIPT_VAI = 99, /* Vaii */
+ USCRIPT_VISIBLE_SPEECH = 100, /* Visp */
+ USCRIPT_CUNEIFORM = 101,/* Xsux */
+ USCRIPT_UNWRITTEN_LANGUAGES = 102,/* Zxxx */
+ USCRIPT_UNKNOWN = 103,/* Zzzz */ /* Unknown="Code for uncoded script", for unassigned code points */
+
+ /* New script codes from ISO 15924 @stable ICU 3.8 */
+ USCRIPT_CARIAN = 104,/* Cari */
+ USCRIPT_JAPANESE = 105,/* Jpan */
+ USCRIPT_LANNA = 106,/* Lana */
+ USCRIPT_LYCIAN = 107,/* Lyci */
+ USCRIPT_LYDIAN = 108,/* Lydi */
+ USCRIPT_OL_CHIKI = 109,/* Olck */
+ USCRIPT_REJANG = 110,/* Rjng */
+ USCRIPT_SAURASHTRA = 111,/* Saur */
+ USCRIPT_SIGN_WRITING = 112,/* Sgnw */
+ USCRIPT_SUNDANESE = 113,/* Sund */
+ USCRIPT_MOON = 114,/* Moon */
+ USCRIPT_MEITEI_MAYEK = 115,/* Mtei */
+
+ /* New script codes from ISO 15924 @stable ICU 4.0 */
+ USCRIPT_IMPERIAL_ARAMAIC = 116,/* Armi */
+ USCRIPT_AVESTAN = 117,/* Avst */
+ USCRIPT_CHAKMA = 118,/* Cakm */
+ USCRIPT_KOREAN = 119,/* Kore */
+ USCRIPT_KAITHI = 120,/* Kthi */
+ USCRIPT_MANICHAEAN = 121,/* Mani */
+ USCRIPT_INSCRIPTIONAL_PAHLAVI = 122,/* Phli */
+ USCRIPT_PSALTER_PAHLAVI = 123,/* Phlp */
+ USCRIPT_BOOK_PAHLAVI = 124,/* Phlv */
+ USCRIPT_INSCRIPTIONAL_PARTHIAN = 125,/* Prti */
+ USCRIPT_SAMARITAN = 126,/* Samr */
+ USCRIPT_TAI_VIET = 127,/* Tavt */
+ USCRIPT_MATHEMATICAL_NOTATION = 128,/* Zmth */
+ USCRIPT_SYMBOLS = 129,/* Zsym */
+
+ /* Private use codes from Qaaa - Qabx are not supported*/
+ USCRIPT_CODE_LIMIT = 130
+} UScriptCode;
+
+#endif
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list