Major update to webkit-1.4.0.
Now comes with a gtk3 FLAVOR that can be installed alongside the non flavored package (webkit vs webkit-gtk3). The library name changed from libwebkit to libwebkit-gtk{1,3}. thanks to landry@ and jasper@ for the tests on powerpc, sparc64 and amd64. bulk testing from landry@ ok jasper@ landry@ (maintainer)
This commit is contained in:
parent
90d96e39f0
commit
71b191e76f
@ -1,10 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.45 2011/04/15 23:03:03 dhill Exp $
|
||||
# $OpenBSD: Makefile,v 1.46 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
|
||||
COMMENT = open source web browser engine
|
||||
|
||||
DISTNAME = webkit-1.2.7
|
||||
V = 1.4.0
|
||||
DISTNAME = webkit-${V}
|
||||
EPOCH = 0
|
||||
REVISION = 2
|
||||
CATEGORIES = www
|
||||
|
||||
HOMEPAGE = http://webkitgtk.org/
|
||||
@ -12,7 +12,8 @@ MASTER_SITES = ${HOMEPAGE}
|
||||
|
||||
MAINTAINER = Landry Breuil <gaston@gcu.info>
|
||||
|
||||
SHARED_LIBS = webkit-1.0 2.2 #.19.5
|
||||
SHARED_LIBS += webkitgtk-1.0 0.0 # .7.0
|
||||
SHARED_LIBS += webkitgtk-3.0 0.0 # .7.0
|
||||
|
||||
# LGPLv2 / BSD
|
||||
PERMIT_PACKAGE_CDROM = Yes
|
||||
@ -28,7 +29,11 @@ USE_GMAKE = Yes
|
||||
USE_LIBTOOL = gnu
|
||||
|
||||
MODULES = devel/gettext \
|
||||
textproc/intltool
|
||||
textproc/intltool \
|
||||
lang/python \
|
||||
devel/dconf
|
||||
|
||||
MODPY_RUNDEP = No
|
||||
|
||||
.include <bsd.own.mk>
|
||||
.if ${COMPILER_VERSION:L:Mgcc4*}
|
||||
@ -45,7 +50,10 @@ CONFIGURE_STYLE = gnu
|
||||
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include/libpng -I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib -lX11" \
|
||||
ac_cv_path_FLEX=${LOCALBASE}/bin/gflex
|
||||
CONFIGURE_ARGS+=--enable-introspection
|
||||
CONFIGURE_ARGS+=${CONFIGURE_SHARED} \
|
||||
--disable-gtk-doc \
|
||||
--enable-introspection \
|
||||
--enable-spellcheck
|
||||
|
||||
MAKE_FILE = GNUmakefile
|
||||
MAKE_FLAGS = STDCPPLIB=${STDCPPLIB}
|
||||
@ -56,29 +64,47 @@ RUN_DEPENDS = multimedia/gstreamer-0.10/plugins-ffmpeg \
|
||||
|
||||
WANTLIB = ICE SM X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext \
|
||||
Xfixes Xi Xinerama Xrandr Xrender Xt atk-1.0 c xcb-render \
|
||||
expat fontconfig freetype gcrypt gio-2.0 glib-2.0 gmodule-2.0 \
|
||||
gnutls gobject-2.0 gpg-error gthread-2.0 jpeg m \
|
||||
gtk-x11-2.0 gdk-x11-2.0 gdk_pixbuf-2.0 gailutil \
|
||||
expat fontconfig freetype gio-2.0 glib-2.0 gmodule-2.0 \
|
||||
gobject-2.0 gthread-2.0 jpeg m gstinterfaces-0.10 \
|
||||
gdk_pixbuf-2.0 \
|
||||
gstreamer-0.10 gstbase-0.10 gstvideo-0.10 gstapp-0.10 gstpbutils-0.10 \
|
||||
icudata icui18n icuuc sqlite3 xslt enchant soup-2.4 \
|
||||
pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre pthread GL Xxf86vm drm xcb-shm \
|
||||
tasn1 z cairo pixman-1 png pthread-stubs xcb xml2 ${STDCPPLIB}
|
||||
z cairo pixman-1 png pthread-stubs xcb xml2 ${STDCPPLIB}
|
||||
|
||||
LIB_DEPENDS = x11/gtk+2,-main \
|
||||
multimedia/gstreamer-0.10/core \
|
||||
LIB_DEPENDS = multimedia/gstreamer-0.10/core \
|
||||
multimedia/gstreamer-0.10/plugins-base \
|
||||
textproc/icu4c>=4.4 \
|
||||
databases/sqlite3 \
|
||||
textproc/libxslt \
|
||||
textproc/enchant \
|
||||
devel/libsoup>=2.28
|
||||
devel/libsoup>=2.34
|
||||
|
||||
BUILD_DEPENDS = devel/bison \
|
||||
devel/flex \
|
||||
devel/gperf \
|
||||
devel/gobject-introspection
|
||||
|
||||
FLAVORS = gtk3
|
||||
FLAVOR ?=
|
||||
|
||||
.if ${FLAVOR:L:Mgtk3}
|
||||
FULLPKGNAME = webkit-gtk3-${V}
|
||||
LIB_DEPENDS += x11/gtk+3,-main
|
||||
WANTLIB += cairo-gobject gailutil-3 gdk-3 gtk-3
|
||||
CONFIGURE_ARGS += --with-gtk=3.0
|
||||
.else
|
||||
WANTLIB += gailutil gdk-x11-2.0 gtk-x11-2.0
|
||||
LIB_DEPENDS += x11/gtk+2,-main
|
||||
CONFIGURE_ARGS += --with-gtk=2.0
|
||||
.endif
|
||||
|
||||
pre-configure:
|
||||
${SUBST_CMD} ${WRKSRC}/WebCore/plugins/PluginDatabase.cpp
|
||||
${SUBST_CMD} ${WRKSRC}/Source/WebCore/plugins/PluginDatabase.cpp
|
||||
|
||||
.if ${FLAVOR:L:Mgtk3}
|
||||
post-install:
|
||||
mv ${PREFIX}/bin/GtkLauncher ${PREFIX}/bin/GtkLauncher-3
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (webkit-1.2.7.tar.gz) = JcflSLZa622DwBgsMu8JJw==
|
||||
RMD160 (webkit-1.2.7.tar.gz) = 82s64FaT4O600ZNs7uUrb+FRflc=
|
||||
SHA1 (webkit-1.2.7.tar.gz) = 6a/Fc9JFl5TDdJukBPIYf53MntM=
|
||||
SHA256 (webkit-1.2.7.tar.gz) = IoqAs/ATLbE0Jwjo73c4mW8F4wOT4Bh6z0yrmHKDcYs=
|
||||
SIZE (webkit-1.2.7.tar.gz) = 6615990
|
||||
MD5 (webkit-1.4.0.tar.gz) = EMlp2ztUhMcd8aqaM4N3/w==
|
||||
RMD160 (webkit-1.4.0.tar.gz) = hu1j9cVGfdUGfzew5nO9WY7+LoQ=
|
||||
SHA1 (webkit-1.4.0.tar.gz) = mQ3ypy2slKGrwmRBKDuCKxdHNyQ=
|
||||
SHA256 (webkit-1.4.0.tar.gz) = PrD+BqmYeKMvGKd82q9aM84q827jPCUa4U9OSz+lf4g=
|
||||
SIZE (webkit-1.4.0.tar.gz) = 8474824
|
||||
|
@ -1,20 +1,20 @@
|
||||
$OpenBSD: patch-GNUmakefile_in,v 1.9 2010/07/19 12:29:50 landry Exp $
|
||||
$OpenBSD: patch-GNUmakefile_in,v 1.10 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
install GtkLauncher, remove silent build lines, fix lpthread/pthread
|
||||
--- GNUmakefile.in.orig Thu Jul 15 22:47:03 2010
|
||||
+++ GNUmakefile.in Fri Jul 16 15:53:17 2010
|
||||
@@ -82,9 +82,9 @@ PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
--- GNUmakefile.in.orig Tue Apr 26 03:30:49 2011
|
||||
+++ GNUmakefile.in Sat May 7 10:00:31 2011
|
||||
@@ -78,9 +78,9 @@ POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
-bin_PROGRAMS = Programs/jsc$(EXEEXT)
|
||||
+bin_PROGRAMS = Programs/jsc$(EXEEXT) Programs/GtkLauncher$(EXEEXT)
|
||||
noinst_PROGRAMS = Programs/minidom$(EXEEXT) \
|
||||
- Programs/GtkLauncher$(EXEEXT) Programs/DumpRenderTree$(EXEEXT) \
|
||||
+ Programs/DumpRenderTree$(EXEEXT) \
|
||||
$(am__EXEEXT_1)
|
||||
bin_PROGRAMS = Programs/jsc-@WEBKITGTK_API_MAJOR_VERSION@$(EXEEXT) \
|
||||
- $(am__EXEEXT_1)
|
||||
+ $(am__EXEEXT_1) Programs/GtkLauncher$(EXEEXT)
|
||||
noinst_PROGRAMS = Programs/jsc$(EXEEXT) Programs/minidom$(EXEEXT) \
|
||||
- $(am__EXEEXT_4)
|
||||
+ $(am__EXEEXT_4) Programs/GtkLauncher$(EXEEXT)
|
||||
|
||||
# For the Gtk port we want to use XP_UNIX both in X11 and Mac
|
||||
@@ -5901,7 +5901,7 @@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES
|
||||
@TARGET_WIN32_FALSE@am__append_1 = \
|
||||
@@ -15085,7 +15085,7 @@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
AM_V_CC = $(am__v_CC_$(V))
|
||||
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
|
||||
@ -23,7 +23,7 @@ install GtkLauncher, remove silent build lines, fix lpthread/pthread
|
||||
AM_V_at = $(am__v_at_$(V))
|
||||
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
||||
am__v_at_0 = @
|
||||
@@ -5911,22 +5911,22 @@ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAG
|
||||
@@ -15095,22 +15095,22 @@ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAG
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
AM_V_CCLD = $(am__v_CCLD_$(V))
|
||||
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
|
||||
@ -50,7 +50,7 @@ install GtkLauncher, remove silent build lines, fix lpthread/pthread
|
||||
SOURCES = $(TestNetscapePlugin_libtestnetscapeplugin_la_SOURCES) \
|
||||
$(libJavaScriptCore_la_SOURCES) \
|
||||
$(nodist_libJavaScriptCore_la_SOURCES) \
|
||||
@@ -8986,9 +8986,10 @@ libJavaScriptCore_la_SOURCES = \
|
||||
@@ -20126,9 +20126,10 @@ libJavaScriptCore_la_SOURCES = \
|
||||
|
||||
libJavaScriptCore_la_LIBADD = \
|
||||
$(UNICODE_LIBS) \
|
||||
@ -63,26 +63,27 @@ install GtkLauncher, remove silent build lines, fix lpthread/pthread
|
||||
libJavaScriptCore_la_CXXFLAGS = \
|
||||
$(global_cxxflags) \
|
||||
$(libJavaScriptCore_la_CFLAGS)
|
||||
@@ -9037,12 +9038,12 @@ libwebkit_1_0_la_CPPFLAGS = \
|
||||
$(HILDON_CPPFLAGS)
|
||||
|
||||
libwebkit_1_0_la_LDFLAGS = \
|
||||
+ -pthread \
|
||||
-version-info @LIBWEBKITGTK_VERSION@ \
|
||||
$(version_script) \
|
||||
$(no_undefined)
|
||||
|
||||
libwebkit_1_0_la_LIBADD = \
|
||||
- -lpthread \
|
||||
libJavaScriptCore.la \
|
||||
libWebCoreJS.la \
|
||||
$(webcore_ldflags) \
|
||||
@@ -9104,7 +9105,7 @@ Programs_minidom_CFLAGS = \
|
||||
Programs_minidom_LDADD = \
|
||||
@@ -20171,7 +20172,7 @@ Programs_minidom_LDADD = \
|
||||
libJavaScriptCore.la \
|
||||
$(WINMM_LIBS) \
|
||||
-lm \
|
||||
- -lstdc++
|
||||
+ -l${STDCPPLIB}
|
||||
|
||||
Programs_minidom_LDFLAGS = \
|
||||
-no-install \
|
||||
@@ -21233,12 +21234,13 @@ dist_webresources_DATA = \
|
||||
@ENABLE_WEBKIT2_FALSE@ $(XT_CFLAGS)
|
||||
|
||||
@ENABLE_WEBKIT2_FALSE@libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LDFLAGS = \
|
||||
+@ENABLE_WEBKIT2_FALSE@ -pthread \
|
||||
@ENABLE_WEBKIT2_FALSE@ -version-info @LIBWEBKITGTK_VERSION@ \
|
||||
@ENABLE_WEBKIT2_FALSE@ $(version_script) \
|
||||
@ENABLE_WEBKIT2_FALSE@ $(no_undefined)
|
||||
|
||||
@ENABLE_WEBKIT2_FALSE@libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LIBADD = \
|
||||
-@ENABLE_WEBKIT2_FALSE@ -lpthread \
|
||||
+@ENABLE_WEBKIT2_FALSE@ -pthread \
|
||||
@ENABLE_WEBKIT2_FALSE@ libWebCore.la \
|
||||
@ENABLE_WEBKIT2_FALSE@ libJavaScriptCore.la \
|
||||
@ENABLE_WEBKIT2_FALSE@ $(webcore_ldflags) \
|
||||
|
@ -1,31 +0,0 @@
|
||||
$OpenBSD: patch-JavaScriptCore_wtf_Platform_h,v 1.4 2010/11/04 21:34:25 landry Exp $
|
||||
Allow webkit to build and run on mips64
|
||||
--- JavaScriptCore/wtf/Platform.h.orig Thu Nov 4 22:29:33 2010
|
||||
+++ JavaScriptCore/wtf/Platform.h Thu Nov 4 22:29:51 2010
|
||||
@@ -115,9 +115,14 @@
|
||||
|
||||
/* CPU(MIPS) - MIPS 32-bit */
|
||||
/* Note: Only O32 ABI is tested, so we enable it for O32 ABI for now. */
|
||||
-#if (defined(mips) || defined(__mips__)) \
|
||||
- && defined(_ABIO32)
|
||||
+#if (defined(mips) || defined(__mips__) || defined(__mips64__))
|
||||
+#if defined(_ABIO32)
|
||||
#define WTF_CPU_MIPS 1
|
||||
+#endif
|
||||
+#if defined(__mips64__)
|
||||
+#define WTF_CPU_MIPS64 1
|
||||
+#define USE_SYSTEM_MALLOC 1
|
||||
+#endif
|
||||
#if defined(__MIPSEB__)
|
||||
#define WTF_CPU_BIG_ENDIAN 1
|
||||
#endif
|
||||
@@ -872,7 +877,8 @@
|
||||
#if (CPU(X86_64) && (OS(UNIX) || OS(WINDOWS))) \
|
||||
|| (CPU(IA64) && !CPU(IA64_32)) \
|
||||
|| CPU(ALPHA) \
|
||||
- || CPU(SPARC64)
|
||||
+ || CPU(SPARC64) \
|
||||
+ || CPU(MIPS64)
|
||||
#define WTF_USE_JSVALUE64 1
|
||||
#elif CPU(ARM) || CPU(PPC64) || CPU(MIPS)
|
||||
#define WTF_USE_JSVALUE32 1
|
@ -1,10 +1,10 @@
|
||||
$OpenBSD: patch-JavaScriptCore_interpreter_Interpreter_cpp,v 1.2 2011/03/09 06:59:36 landry Exp $
|
||||
$OpenBSD: patch-Source_JavaScriptCore_interpreter_Interpreter_cpp,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
Fix for mips64el, -1 was wrongly removed in
|
||||
http://trac.webkit.org/changeset/60392/trunk/JavaScriptCore/interpreter/Interpreter.cpp
|
||||
https://bugs.webkit.org/show_bug.cgi?id=55957
|
||||
--- JavaScriptCore/interpreter/Interpreter.cpp.orig Sun Mar 6 09:34:16 2011
|
||||
+++ JavaScriptCore/interpreter/Interpreter.cpp Sun Mar 6 09:35:19 2011
|
||||
@@ -3456,7 +3456,7 @@ skip_id_custom_self:
|
||||
--- Source/JavaScriptCore/interpreter/Interpreter.cpp.orig Thu May 5 14:54:18 2011
|
||||
+++ Source/JavaScriptCore/interpreter/Interpreter.cpp Thu May 5 14:54:49 2011
|
||||
@@ -3932,7 +3932,7 @@ skip_id_custom_self:
|
||||
JSValue arguments = callFrame->r(argsOffset).jsValue();
|
||||
uint32_t argCount = 0;
|
||||
if (!arguments) {
|
@ -0,0 +1,29 @@
|
||||
$OpenBSD: patch-Source_JavaScriptCore_runtime_MachineStackMarker_cpp,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
--- Source/JavaScriptCore/runtime/MachineStackMarker.cpp.orig Fri May 6 09:40:06 2011
|
||||
+++ Source/JavaScriptCore/runtime/MachineStackMarker.cpp Fri May 6 10:29:29 2011
|
||||
@@ -370,8 +370,10 @@ static size_t getPlatformThreadRegisters(const Platfor
|
||||
#elif USE(PTHREADS)
|
||||
pthread_attr_init(®s);
|
||||
#if HAVE(PTHREAD_NP_H) || OS(NETBSD)
|
||||
+# ifndef __OpenBSD__
|
||||
// e.g. on FreeBSD 5.4, neundorf@kde.org
|
||||
pthread_attr_get_np(platformThread, ®s);
|
||||
+# endif
|
||||
#else
|
||||
// FIXME: this function is non-portable; other POSIX systems may have different np alternatives
|
||||
pthread_getattr_np(platformThread, ®s);
|
||||
@@ -420,7 +422,14 @@ static inline void* otherThreadStackPointer(const Plat
|
||||
#elif USE(PTHREADS)
|
||||
void* stackBase = 0;
|
||||
size_t stackSize = 0;
|
||||
+# if defined(__OpenBSD__)
|
||||
+ stack_t ss;
|
||||
+ int rc = pthread_stackseg_np(pthread_self(), &ss);
|
||||
+ stackBase = (void*)((size_t) ss.ss_sp - ss.ss_size);
|
||||
+ stackSize = ss.ss_size;
|
||||
+#else
|
||||
int rc = pthread_attr_getstack(®s, &stackBase, &stackSize);
|
||||
+#endif
|
||||
(void)rc; // FIXME: Deal with error code somehow? Seems fatal.
|
||||
ASSERT(stackBase);
|
||||
return static_cast<char*>(stackBase) + stackSize;
|
@ -0,0 +1,31 @@
|
||||
$OpenBSD: patch-Source_JavaScriptCore_wtf_Platform_h,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
Allow webkit to build and run on mips64
|
||||
--- Source/JavaScriptCore/wtf/Platform.h.orig Thu May 5 14:56:12 2011
|
||||
+++ Source/JavaScriptCore/wtf/Platform.h Thu May 5 14:57:47 2011
|
||||
@@ -139,9 +139,14 @@
|
||||
|
||||
/* CPU(MIPS) - MIPS 32-bit */
|
||||
/* Note: Only O32 ABI is tested, so we enable it for O32 ABI for now. */
|
||||
-#if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_)) \
|
||||
- && defined(_ABIO32)
|
||||
+#if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_) || defined(__mips64__))
|
||||
+#if defined(_ABIO32)
|
||||
#define WTF_CPU_MIPS 1
|
||||
+#endif
|
||||
+#if defined(__mips64__)
|
||||
+#define WTF_CPU_MIPS64 1
|
||||
+#define USE_SYSTEM_MALLOC 1
|
||||
+#endif
|
||||
#if defined(__MIPSEB__)
|
||||
#define WTF_CPU_BIG_ENDIAN 1
|
||||
#endif
|
||||
@@ -988,7 +993,8 @@
|
||||
|| CPU(ALPHA) \
|
||||
|| CPU(SPARC64) \
|
||||
|| CPU(S390X) \
|
||||
- || CPU(PPC64)
|
||||
+ || CPU(PPC64) \
|
||||
+ || CPU(MIPS64)
|
||||
#define WTF_USE_JSVALUE64 1
|
||||
#else
|
||||
#define WTF_USE_JSVALUE32_64 1
|
@ -1,4 +1,4 @@
|
||||
$OpenBSD: patch-JavaScriptCore_wtf_TCSpinLock_h,v 1.2 2010/04/22 13:37:00 landry Exp $
|
||||
$OpenBSD: patch-Source_JavaScriptCore_wtf_TCSpinLock_h,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
workaround for a g++4 regression(?) on powerpc, reported as
|
||||
https://bugs.webkit.org/show_bug.cgi?id=33451 :
|
||||
JavaScriptCore/wtf/TCSpinLock.h:112: error: 'asm' operand requires impossible reload"
|
||||
@ -7,9 +7,9 @@ Another option is :
|
||||
.if ${MACHINE_ARCH} == "powerpc"
|
||||
CONFIGURE_ARGS += --enable-optimizations=no
|
||||
.endif
|
||||
--- JavaScriptCore/wtf/TCSpinLock.h.orig Fri Mar 19 16:20:53 2010
|
||||
+++ JavaScriptCore/wtf/TCSpinLock.h Tue Apr 20 21:09:25 2010
|
||||
@@ -33,7 +33,7 @@
|
||||
--- Source/JavaScriptCore/wtf/TCSpinLock.h.orig Mon Apr 25 21:26:06 2011
|
||||
+++ Source/JavaScriptCore/wtf/TCSpinLock.h Fri May 6 10:38:17 2011
|
||||
@@ -34,7 +34,7 @@
|
||||
#ifndef TCMALLOC_INTERNAL_SPINLOCK_H__
|
||||
#define TCMALLOC_INTERNAL_SPINLOCK_H__
|
||||
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-Source_JavaScriptCore_wtf_text_AtomicString_cpp,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
--- Source/JavaScriptCore/wtf/text/AtomicString.cpp.orig Thu May 5 14:45:21 2011
|
||||
+++ Source/JavaScriptCore/wtf/text/AtomicString.cpp Thu May 5 14:45:32 2011
|
||||
@@ -142,7 +142,7 @@ static inline bool equal(StringImpl* string, const UCh
|
||||
|
||||
// FIXME: perhaps we should have a more abstract macro that indicates when
|
||||
// going 4 bytes at a time is unsafe
|
||||
-#if CPU(ARM) || CPU(SH4) || CPU(MIPS)
|
||||
+#if CPU(ARM) || CPU(SH4) || CPU(MIPS) || CPU(SPARC64) || CPU(MIPS64)
|
||||
const UChar* stringCharacters = string->characters();
|
||||
for (unsigned i = 0; i != length; ++i) {
|
||||
if (*stringCharacters++ != *characters++)
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-Source_JavaScriptCore_wtf_text_StringHash_h,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
--- Source/JavaScriptCore/wtf/text/StringHash.h.orig Thu May 5 14:44:36 2011
|
||||
+++ Source/JavaScriptCore/wtf/text/StringHash.h Thu May 5 14:44:57 2011
|
||||
@@ -55,7 +55,7 @@ namespace WTF {
|
||||
|
||||
// FIXME: perhaps we should have a more abstract macro that indicates when
|
||||
// going 4 bytes at a time is unsafe
|
||||
-#if CPU(ARM) || CPU(SH4) || CPU(MIPS)
|
||||
+#if CPU(ARM) || CPU(SH4) || CPU(MIPS) || CPU(SPARC64) || CPU(MIPS64)
|
||||
const UChar* aChars = a->characters();
|
||||
const UChar* bChars = b->characters();
|
||||
for (unsigned i = 0; i != aLength; ++i) {
|
@ -0,0 +1,14 @@
|
||||
$OpenBSD: patch-Source_WebCore_platform_text_TextBreakIterator_h,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
https://bugs.webkit.org/show_bug.cgi?id=36381
|
||||
http://bugs.gentoo.org/show_bug.cgi?id=308699
|
||||
--- Source/WebCore/platform/text/TextBreakIterator.h.orig Thu May 5 14:43:46 2011
|
||||
+++ Source/WebCore/platform/text/TextBreakIterator.h Thu May 5 14:44:03 2011
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
namespace WebCore {
|
||||
|
||||
- class TextBreakIterator;
|
||||
+ typedef struct UBreakIterator TextBreakIterator;
|
||||
|
||||
// Note: The returned iterator is good only until you get another iterator, with the exception of acquireLineBreakIterator.
|
||||
|
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-Source_WebCore_plugins_PluginDatabase_cpp,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
--- Source/WebCore/plugins/PluginDatabase.cpp.orig Mon Apr 25 21:26:35 2011
|
||||
+++ Source/WebCore/plugins/PluginDatabase.cpp Sun May 8 10:44:03 2011
|
||||
@@ -376,7 +376,7 @@ Vector<String> PluginDatabase::defaultPluginDirectorie
|
||||
paths.append(userPluginPath);
|
||||
|
||||
paths.append("/usr/lib/browser/plugins");
|
||||
- paths.append("/usr/local/lib/mozilla/plugins");
|
||||
+ paths.append("${LOCALBASE}/lib/mozilla/plugins");
|
||||
paths.append("/usr/lib/firefox/plugins");
|
||||
paths.append("/usr/lib64/browser-plugins");
|
||||
paths.append("/usr/lib/browser-plugins");
|
@ -0,0 +1,18 @@
|
||||
$OpenBSD: patch-Source_WebKit_gtk_resources_error_html,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
--- Source/WebKit/gtk/resources/error.html.orig Thu May 5 14:40:23 2011
|
||||
+++ Source/WebKit/gtk/resources/error.html Thu May 5 14:40:34 2011
|
||||
@@ -21,12 +21,12 @@ body {
|
||||
}
|
||||
|
||||
#errorTitleText {
|
||||
- font-size: 120%;
|
||||
+ font-size: 120%%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#errorMessageText {
|
||||
- font-size: 80%;
|
||||
+ font-size: 80%%;
|
||||
}
|
||||
|
||||
</style>
|
@ -1,19 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_dom_Document_cpp,v 1.1 2011/04/15 23:03:03 dhill Exp $
|
||||
Provide a knob to enable/disable DNS prefetching.
|
||||
DNS prefetching is enabled by default.
|
||||
http://trac.webkit.org/changeset/80856
|
||||
--- WebCore/dom/Document.cpp.orig Fri Sep 10 08:20:33 2010
|
||||
+++ WebCore/dom/Document.cpp Wed Mar 16 09:48:51 2011
|
||||
@@ -4639,8 +4639,11 @@ HTMLCanvasElement* Document::getCSSCanvasElement(const
|
||||
|
||||
void Document::initDNSPrefetch()
|
||||
{
|
||||
+ Settings* settings = this->settings();
|
||||
+
|
||||
m_haveExplicitlyDisabledDNSPrefetch = false;
|
||||
- m_isDNSPrefetchEnabled = securityOrigin()->protocol() == "http";
|
||||
+ m_isDNSPrefetchEnabled = settings && settings->dnsPrefetchingEnabled() &&
|
||||
+ securityOrigin()->protocol() == "http";
|
||||
|
||||
// Inherit DNS prefetch opt-out from parent frame
|
||||
if (Document* parent = parentDocument()) {
|
@ -1,26 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_page_Settings_cpp,v 1.1 2011/04/15 23:03:03 dhill Exp $
|
||||
Provide a knob to enable/disable DNS prefetching.
|
||||
DNS prefetching is enabled by default.
|
||||
http://trac.webkit.org/changeset/80856
|
||||
--- WebCore/page/Settings.cpp.orig Fri Sep 10 08:20:33 2010
|
||||
+++ WebCore/page/Settings.cpp Wed Mar 16 13:11:08 2011
|
||||
@@ -128,6 +128,7 @@ Settings::Settings(Page* page)
|
||||
, m_webGLEnabled(false)
|
||||
, m_loadDeferringEnabled(true)
|
||||
, m_tiledBackingStoreEnabled(false)
|
||||
+ , m_dnsPrefetchingEnabled(true)
|
||||
{
|
||||
// A Frame may not have been created yet, so we initialize the AtomicString
|
||||
// hash before trying to use it.
|
||||
@@ -593,6 +594,11 @@ void Settings::setTiledBackingStoreEnabled(bool enable
|
||||
if (m_page->mainFrame())
|
||||
m_page->mainFrame()->setTiledBackingStoreEnabled(enabled);
|
||||
#endif
|
||||
+}
|
||||
+
|
||||
+void Settings::setDNSPrefetchingEnabled(bool dnsPrefetchingEnabled)
|
||||
+{
|
||||
+ m_dnsPrefetchingEnabled = dnsPrefetchingEnabled;
|
||||
}
|
||||
|
||||
} // namespace WebCore
|
@ -1,24 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_page_Settings_h,v 1.1 2011/04/15 23:03:03 dhill Exp $
|
||||
Provide a knob to enable/disable DNS prefetching.
|
||||
DNS prefetching is enabled by default.
|
||||
http://trac.webkit.org/changeset/80856
|
||||
--- WebCore/page/Settings.h.orig Fri Sep 10 08:20:33 2010
|
||||
+++ WebCore/page/Settings.h Wed Mar 16 09:50:44 2011
|
||||
@@ -299,6 +299,9 @@ namespace WebCore {
|
||||
|
||||
void setTiledBackingStoreEnabled(bool);
|
||||
bool tiledBackingStoreEnabled() const { return m_tiledBackingStoreEnabled; }
|
||||
+
|
||||
+ void setDNSPrefetchingEnabled(bool);
|
||||
+ bool dnsPrefetchingEnabled() const { return m_dnsPrefetchingEnabled; }
|
||||
|
||||
private:
|
||||
Page* m_page;
|
||||
@@ -376,6 +379,7 @@ namespace WebCore {
|
||||
bool m_webGLEnabled : 1;
|
||||
bool m_loadDeferringEnabled : 1;
|
||||
bool m_tiledBackingStoreEnabled : 1;
|
||||
+ bool m_dnsPrefetchingEnabled : 1;
|
||||
|
||||
#if USE(SAFARI_THEME)
|
||||
static bool gShouldPaintNativeControls;
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_platform_graphics_cairo_GraphicsContextCairo_cpp,v 1.1 2011/04/15 23:03:03 dhill Exp $
|
||||
Fix crash with too big box shadow areas
|
||||
http://gitorious.org/webkitgtk/stable/commit/04cd0279330ac8913b1166902d255a12a2f33481
|
||||
--- WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp.orig Fri Sep 10 08:20:33 2010
|
||||
+++ WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp Wed Mar 16 15:35:14 2011
|
||||
@@ -184,6 +184,8 @@ static inline void drawPathShadow(GraphicsContext* con
|
||||
|
||||
// Create suitably-sized ImageBuffer to hold the shadow.
|
||||
OwnPtr<ImageBuffer> shadowBuffer = ImageBuffer::create(shadowBufferSize);
|
||||
+ if (!shadowBuffer)
|
||||
+ return;
|
||||
|
||||
// Draw shadow into a new ImageBuffer.
|
||||
cairo_t* shadowContext = shadowBuffer->context()->platformContext();
|
@ -1,22 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_platform_image-decoders_gif_GIFImageDecoder_cpp,v 1.1 2011/03/08 18:56:30 landry Exp $
|
||||
Fix typo, https://bugs.webkit.org/show_bug.cgi?id=55830
|
||||
--- WebCore/platform/image-decoders/gif/GIFImageDecoder.cpp.orig Tue Mar 8 15:25:51 2011
|
||||
+++ WebCore/platform/image-decoders/gif/GIFImageDecoder.cpp Tue Mar 8 15:26:10 2011
|
||||
@@ -343,7 +343,7 @@ bool GIFImageDecoder::initFrameBuffer(unsigned frameIn
|
||||
|
||||
if ((prevMethod == RGBA32Buffer::DisposeNotSpecified) || (prevMethod == RGBA32Buffer::DisposeKeep)) {
|
||||
// Preserve the last frame as the starting state for this frame.
|
||||
- if (!buffer->copyBitmapData(*prevBuffer));
|
||||
+ if (!buffer->copyBitmapData(*prevBuffer))
|
||||
return setFailed();
|
||||
} else {
|
||||
// We want to clear the previous frame to transparent, without
|
||||
@@ -357,7 +357,7 @@ bool GIFImageDecoder::initFrameBuffer(unsigned frameIn
|
||||
return setFailed();
|
||||
} else {
|
||||
// Copy the whole previous buffer, then clear just its frame.
|
||||
- if (!buffer->copyBitmapData(*prevBuffer));
|
||||
+ if (!buffer->copyBitmapData(*prevBuffer))
|
||||
return setFailed();
|
||||
for (int y = prevRect.y(); y < prevRect.bottom(); ++y) {
|
||||
for (int x = prevRect.x(); x < prevRect.right(); ++x)
|
@ -1,15 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_platform_network_soup_DNSSoup_cpp,v 1.1 2011/03/08 18:56:30 landry Exp $
|
||||
Don't prefetch dns on an empty string
|
||||
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578019
|
||||
https://bugs.webkit.org/show_bug.cgi?id=38263
|
||||
--- WebCore/platform/network/soup/DNSSoup.cpp.orig Tue Mar 8 15:37:49 2011
|
||||
+++ WebCore/platform/network/soup/DNSSoup.cpp Tue Mar 8 15:38:28 2011
|
||||
@@ -36,6 +36,8 @@ namespace WebCore {
|
||||
void prefetchDNS(const String& hostname)
|
||||
{
|
||||
#ifdef HAVE_LIBSOUP_2_29_90
|
||||
+ if (hostname.isEmpty())
|
||||
+ return;
|
||||
String uri = "http://"+hostname;
|
||||
GOwnPtr<SoupURI> soupURI(soup_uri_new(uri.utf8().data()));
|
||||
// We may get invalid hostnames, so NULL-check here.
|
@ -1,13 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_platform_text_AtomicString_cpp,v 1.2 2010/11/04 21:34:25 landry Exp $
|
||||
Fixes SIGBUS at runtime : https://bugs.webkit.org/show_bug.cgi?id=19775
|
||||
--- WebCore/platform/text/AtomicString.cpp.orig Fri Sep 10 15:20:33 2010
|
||||
+++ WebCore/platform/text/AtomicString.cpp Thu Nov 4 22:27:33 2010
|
||||
@@ -105,7 +105,7 @@ static inline bool equal(StringImpl* string, const UCh
|
||||
|
||||
// FIXME: perhaps we should have a more abstract macro that indicates when
|
||||
// going 4 bytes at a time is unsafe
|
||||
-#if CPU(ARM) || CPU(SH4)
|
||||
+#if CPU(ARM) || CPU(SH4) || CPU(SPARC64) || CPU(MIPS64)
|
||||
const UChar* stringCharacters = string->characters();
|
||||
for (unsigned i = 0; i != length; ++i) {
|
||||
if (*stringCharacters++ != *characters++)
|
@ -1,13 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_platform_text_StringHash_h,v 1.2 2010/11/04 21:34:25 landry Exp $
|
||||
Fixes SIGBUS at runtime : https://bugs.webkit.org/show_bug.cgi?id=19775
|
||||
--- WebCore/platform/text/StringHash.h.orig Fri Sep 10 15:20:33 2010
|
||||
+++ WebCore/platform/text/StringHash.h Thu Nov 4 22:28:16 2010
|
||||
@@ -54,7 +54,7 @@ namespace WebCore {
|
||||
|
||||
// FIXME: perhaps we should have a more abstract macro that indicates when
|
||||
// going 4 bytes at a time is unsafe
|
||||
-#if CPU(ARM) || CPU(SH4)
|
||||
+#if CPU(ARM) || CPU(SH4) || CPU(SPARC64) || CPU(MIPS64)
|
||||
const UChar* aChars = a->characters();
|
||||
const UChar* bChars = b->characters();
|
||||
for (unsigned i = 0; i != aLength; ++i) {
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_platform_text_TextBreakIterator_h,v 1.1 2010/04/05 21:44:41 landry Exp $
|
||||
https://bugs.webkit.org/show_bug.cgi?id=36381
|
||||
http://bugs.gentoo.org/show_bug.cgi?id=308699
|
||||
--- WebCore/platform/text/TextBreakIterator.h.orig Wed Mar 24 22:47:11 2010
|
||||
+++ WebCore/platform/text/TextBreakIterator.h Wed Mar 24 22:47:30 2010
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
namespace WebCore {
|
||||
|
||||
- class TextBreakIterator;
|
||||
+ typedef struct UBreakIterator TextBreakIterator;
|
||||
|
||||
// Note: The returned iterator is good only until you get another iterator.
|
||||
|
@ -1,11 +0,0 @@
|
||||
$OpenBSD: patch-WebCore_plugins_PluginDatabase_cpp,v 1.4 2011/03/08 18:56:30 landry Exp $
|
||||
--- WebCore/plugins/PluginDatabase.cpp.orig Fri Sep 10 15:20:33 2010
|
||||
+++ WebCore/plugins/PluginDatabase.cpp Sun Mar 6 09:21:11 2011
|
||||
@@ -340,6 +340,7 @@ Vector<String> PluginDatabase::defaultPluginDirectorie
|
||||
userPluginPath.append(String("/.netscape/plugins"));
|
||||
paths.append(userPluginPath);
|
||||
|
||||
+ paths.append("${LOCALBASE}/lib/mozilla-plugins");
|
||||
paths.append("/usr/lib/browser/plugins");
|
||||
paths.append("/usr/local/lib/mozilla/plugins");
|
||||
paths.append("/usr/lib/firefox/plugins");
|
@ -1,26 +0,0 @@
|
||||
$OpenBSD: patch-WebKit_gtk_JSCore-1_0_gir,v 1.1 2011/04/07 19:40:10 jasper Exp $
|
||||
|
||||
Use the new syntaxis for GIR.
|
||||
|
||||
--- WebKit/gtk/JSCore-1.0.gir.orig Thu Apr 7 18:30:14 2011
|
||||
+++ WebKit/gtk/JSCore-1.0.gir Thu Apr 7 18:30:18 2011
|
||||
@@ -1,12 +1,14 @@
|
||||
<?xml version="1.0"?>
|
||||
-<repository version="1.0"
|
||||
+<repository version="1.2"
|
||||
xmlns="http://www.gtk.org/introspection/core/1.0"
|
||||
xmlns:c="http://www.gtk.org/introspection/c/1.0">
|
||||
<namespace name="JSCore" version="1.0" shared-library="webkit-1.0">
|
||||
- <alias name="GlobalContextRef"
|
||||
- target="none"
|
||||
- c:type="JSGlobalContextRef"/>
|
||||
- <alias name="ObjectRef" target="none" c:type="JSObjectRef"/>
|
||||
+ <alias name="GlobalContextRef" target="none">
|
||||
+ <type name="JSGlobalContextRef" c:type="JSGlobalContextRef"/>
|
||||
+ </alias>
|
||||
+ <alias name="ObjectRef" target="none">
|
||||
+ <type name="JSObjectRef" c:type="JSObjectRef"/>
|
||||
+ </alias>
|
||||
<function name="EvaluateScript" c:identifier="JSEvaluateScript">
|
||||
<return-value transfer-ownership="none">
|
||||
<type name="none" c:type="void"/>
|
@ -1,18 +0,0 @@
|
||||
$OpenBSD: patch-WebKit_gtk_resources_error_html,v 1.1 2010/05/17 20:16:09 ajacoutot Exp $
|
||||
--- WebKit/gtk/resources/error.html.orig Mon May 17 19:03:16 2010
|
||||
+++ WebKit/gtk/resources/error.html Mon May 17 19:03:31 2010
|
||||
@@ -21,12 +21,12 @@ body {
|
||||
}
|
||||
|
||||
#errorTitleText {
|
||||
- font-size: 120%;
|
||||
+ font-size: 120%%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#errorMessageText {
|
||||
- font-size: 80%;
|
||||
+ font-size: 80%%;
|
||||
}
|
||||
|
||||
</style>
|
@ -1,77 +0,0 @@
|
||||
$OpenBSD: patch-WebKit_gtk_webkit_webkitwebsettings_cpp,v 1.1 2011/04/15 23:03:03 dhill Exp $
|
||||
Provide a knob to enable/disable DNS prefetching.
|
||||
DNS prefetching is enabled by default.
|
||||
http://trac.webkit.org/changeset/80856
|
||||
--- WebKit/gtk/webkit/webkitwebsettings.cpp.orig Fri Sep 10 08:20:33 2010
|
||||
+++ WebKit/gtk/webkit/webkitwebsettings.cpp Wed Mar 16 09:46:17 2011
|
||||
@@ -108,6 +108,7 @@ struct _WebKitWebSettingsPrivate {
|
||||
gboolean enable_page_cache;
|
||||
gboolean auto_resize_window;
|
||||
gboolean enable_java_applet;
|
||||
+ gboolean enable_dns_prefetching;
|
||||
};
|
||||
|
||||
#define WEBKIT_WEB_SETTINGS_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), WEBKIT_TYPE_WEB_SETTINGS, WebKitWebSettingsPrivate))
|
||||
@@ -157,7 +158,8 @@ enum {
|
||||
PROP_ENABLE_SITE_SPECIFIC_QUIRKS,
|
||||
PROP_ENABLE_PAGE_CACHE,
|
||||
PROP_AUTO_RESIZE_WINDOW,
|
||||
- PROP_ENABLE_JAVA_APPLET
|
||||
+ PROP_ENABLE_JAVA_APPLET,
|
||||
+ PROP_ENABLE_DNS_PREFETCHING
|
||||
};
|
||||
|
||||
// Create a default user agent string
|
||||
@@ -858,6 +860,24 @@ static void webkit_web_settings_class_init(WebKitWebSe
|
||||
flags));
|
||||
|
||||
g_type_class_add_private(klass, sizeof(WebKitWebSettingsPrivate));
|
||||
+
|
||||
+ /**
|
||||
+ * WebKitWebSettings:enable-dns-prefetching
|
||||
+ *
|
||||
+ * Whether webkit prefetches domain names. This is a separate knob from
|
||||
+ * private browsing.
|
||||
+ * Whether private browsing should set this or not is up for debate, for
|
||||
+ * now it doesn't.
|
||||
+ *
|
||||
+ * Backport from 1.3.13.
|
||||
+ */
|
||||
+ g_object_class_install_property(gobject_class,
|
||||
+ PROP_ENABLE_DNS_PREFETCHING,
|
||||
+ g_param_spec_boolean("enable-dns-prefetching",
|
||||
+ _("WebKit prefetches domain names"),
|
||||
+ _("Whether WebKit prefetches domain names"),
|
||||
+ TRUE,
|
||||
+ flags));
|
||||
}
|
||||
|
||||
static void webkit_web_settings_init(WebKitWebSettings* web_settings)
|
||||
@@ -1077,6 +1097,9 @@ static void webkit_web_settings_set_property(GObject*
|
||||
case PROP_ENABLE_JAVA_APPLET:
|
||||
priv->enable_java_applet = g_value_get_boolean(value);
|
||||
break;
|
||||
+ case PROP_ENABLE_DNS_PREFETCHING:
|
||||
+ priv->enable_dns_prefetching = g_value_get_boolean(value);
|
||||
+ break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
||||
break;
|
||||
@@ -1218,6 +1241,9 @@ static void webkit_web_settings_get_property(GObject*
|
||||
case PROP_ENABLE_JAVA_APPLET:
|
||||
g_value_set_boolean(value, priv->enable_java_applet);
|
||||
break;
|
||||
+ case PROP_ENABLE_DNS_PREFETCHING:
|
||||
+ g_value_set_boolean(value, priv->enable_dns_prefetching);
|
||||
+ break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
||||
break;
|
||||
@@ -1291,6 +1317,7 @@ WebKitWebSettings* webkit_web_settings_copy(WebKitWebS
|
||||
"enable-page-cache", priv->enable_page_cache,
|
||||
"auto-resize-window", priv->auto_resize_window,
|
||||
"enable-java-applet", priv->enable_java_applet,
|
||||
+ "enable-dns-prefetching", priv->enable_dns_prefetching,
|
||||
NULL));
|
||||
|
||||
return copy;
|
@ -1,41 +0,0 @@
|
||||
$OpenBSD: patch-WebKit_gtk_webkit_webkitwebview_cpp,v 1.1 2011/04/15 23:03:03 dhill Exp $
|
||||
Provide a knob to enable/disable DNS prefetching.
|
||||
DNS prefetching is enabled by default.
|
||||
http://trac.webkit.org/changeset/80856
|
||||
--- WebKit/gtk/webkit/webkitwebview.cpp.orig Fri Sep 10 08:20:33 2010
|
||||
+++ WebKit/gtk/webkit/webkitwebview.cpp Wed Mar 16 09:38:45 2011
|
||||
@@ -2662,7 +2662,8 @@ static void webkit_web_view_update_settings(WebKitWebV
|
||||
javaScriptCanAccessClipboard, enableOfflineWebAppCache,
|
||||
enableUniversalAccessFromFileURI, enableFileAccessFromFileURI,
|
||||
enableDOMPaste, tabKeyCyclesThroughElements,
|
||||
- enableSiteSpecificQuirks, usePageCache, enableJavaApplet;
|
||||
+ enableSiteSpecificQuirks, usePageCache, enableJavaApplet,
|
||||
+ enableDNSPrefetching;
|
||||
|
||||
WebKitEditingBehavior editingBehavior;
|
||||
|
||||
@@ -2699,6 +2700,7 @@ static void webkit_web_view_update_settings(WebKitWebV
|
||||
"enable-site-specific-quirks", &enableSiteSpecificQuirks,
|
||||
"enable-page-cache", &usePageCache,
|
||||
"enable-java-applet", &enableJavaApplet,
|
||||
+ "enable-dns-prefetching", &enableDNSPrefetching,
|
||||
NULL);
|
||||
|
||||
settings->setDefaultTextEncodingName(defaultEncoding);
|
||||
@@ -2734,6 +2736,7 @@ static void webkit_web_view_update_settings(WebKitWebV
|
||||
settings->setNeedsSiteSpecificQuirks(enableSiteSpecificQuirks);
|
||||
settings->setUsesPageCache(usePageCache);
|
||||
settings->setJavaEnabled(enableJavaApplet);
|
||||
+ settings->setDNSPrefetchingEnabled(enableDNSPrefetching);
|
||||
|
||||
Page* page = core(webView);
|
||||
if (page)
|
||||
@@ -2845,6 +2848,8 @@ static void webkit_web_view_settings_notify(WebKitWebS
|
||||
settings->setUsesPageCache(g_value_get_boolean(&value));
|
||||
else if (name == g_intern_string("enable-java-applet"))
|
||||
settings->setJavaEnabled(g_value_get_boolean(&value));
|
||||
+ else if (name == g_intern_string("enable-dns-prefetching"))
|
||||
+ settings->setDNSPrefetchingEnabled(g_value_get_boolean(&value));
|
||||
else if (!g_object_class_find_property(G_OBJECT_GET_CLASS(webSettings), name))
|
||||
g_warning("Unexpected setting '%s'", name);
|
||||
g_value_unset(&value);
|
@ -1,9 +1,57 @@
|
||||
$OpenBSD: patch-configure,v 1.2 2010/09/19 20:43:32 landry Exp $
|
||||
$OpenBSD: patch-configure,v 1.3 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
GNOME Bug 627126 - gsettings schema files don't get installed on FreeBSD
|
||||
glib commit 136e705e8383ff8848e425ac01278102d7badc52
|
||||
|
||||
Add amd64 to x86_64 host_cpu.
|
||||
|
||||
Don't force the use of -O2, the ports infrastructure
|
||||
takes care of that
|
||||
--- configure.orig Fri Sep 3 21:30:50 2010
|
||||
+++ configure Tue Sep 14 09:09:55 2010
|
||||
@@ -19534,8 +19534,8 @@ fi
|
||||
--- configure.orig Tue Apr 26 03:30:21 2011
|
||||
+++ configure Mon May 9 07:28:58 2011
|
||||
@@ -18310,22 +18310,10 @@ install-data-am: install-gsettings-schemas
|
||||
|
||||
.SECONDARY: $(gsettings_SCHEMAS)
|
||||
|
||||
-gsettings__base_list = \
|
||||
- sed "$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g" | \
|
||||
- sed "$$!N;$$!N;$$!N;$$!N;s/\n/ /g"
|
||||
-
|
||||
-install-gsettings-schemas: $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file)
|
||||
+install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"
|
||||
- @list='\''$(gsettings__enum_file) $(gsettings_SCHEMAS)'\''; test -n "$(gsettingsschemadir)" || list=; \
|
||||
- for p in $$list; do \
|
||||
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
- echo "$$d$$p"; \
|
||||
- done | $(gsettings__base_list) | \
|
||||
- while read files; do \
|
||||
- echo " $(INSTALL_DATA) $$files '\''$(DESTDIR)$(gsettingsschemadir)'\''"; \
|
||||
- $(INSTALL_DATA) $$files "$(DESTDIR)$(gsettingsschemadir)" || exit $$?; \
|
||||
- done
|
||||
+ $(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"
|
||||
test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir)
|
||||
|
||||
uninstall-gsettings-schemas:
|
||||
@@ -20123,7 +20111,7 @@ $as_echo "#define ENABLE_YARR 1" >>confdefs.h
|
||||
$as_echo "#define ENABLE_YARR_JIT 1" >>confdefs.h
|
||||
|
||||
;;
|
||||
- i*86|x86_64)
|
||||
+ i*86|x86_64|amd64)
|
||||
|
||||
$as_echo "#define ENABLE_JIT 1" >>confdefs.h
|
||||
|
||||
@@ -20148,7 +20136,7 @@ $as_echo "#define ENABLE_JIT_OPTIMIZE_ARITHMETIC 1" >>
|
||||
$as_echo "#define WTF_USE_JIT_STUB_ARGUMENT_VA_LIST 1" >>confdefs.h
|
||||
|
||||
;;
|
||||
- x86_64)
|
||||
+ x86_64|amd64)
|
||||
|
||||
$as_echo "#define WTF_USE_JIT_STUB_ARGUMENT_REGISTER 1" >>confdefs.h
|
||||
|
||||
@@ -20366,8 +20354,8 @@ fi
|
||||
|
||||
# Add the appropriate 'O' level for optimized builds
|
||||
if test "$enable_optimizations" = "yes"; then
|
||||
|
@ -1,3 +1,6 @@
|
||||
WebKit is an open source web browser rendering engine. WebKit's HTML
|
||||
and JavaScript code began as a branch of the KHTML and KJS libraries
|
||||
from KDE.
|
||||
|
||||
Available FLAVOR:
|
||||
gtk3 - Build with gtk+3 support (instead of gtk+2)
|
||||
|
525
www/webkit/pkg/PFRAG.gtk3
Normal file
525
www/webkit/pkg/PFRAG.gtk3
Normal file
@ -0,0 +1,525 @@
|
||||
@comment $OpenBSD: PFRAG.gtk3,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
@bin bin/GtkLauncher-3
|
||||
@bin bin/jsc-3
|
||||
include/webkit-3.0/
|
||||
include/webkit-3.0/JavaScriptCore/
|
||||
include/webkit-3.0/JavaScriptCore/JSBase.h
|
||||
include/webkit-3.0/JavaScriptCore/JSContextRef.h
|
||||
include/webkit-3.0/JavaScriptCore/JSObjectRef.h
|
||||
include/webkit-3.0/JavaScriptCore/JSStringRef.h
|
||||
include/webkit-3.0/JavaScriptCore/JSStringRefBSTR.h
|
||||
include/webkit-3.0/JavaScriptCore/JSStringRefCF.h
|
||||
include/webkit-3.0/JavaScriptCore/JSValueRef.h
|
||||
include/webkit-3.0/JavaScriptCore/JavaScript.h
|
||||
include/webkit-3.0/JavaScriptCore/JavaScriptCore.h
|
||||
include/webkit-3.0/JavaScriptCore/WebKitAvailability.h
|
||||
include/webkit-3.0/webkit/
|
||||
include/webkit-3.0/webkit/WebKitDOMAttr.h
|
||||
include/webkit-3.0/webkit/WebKitDOMBarInfo.h
|
||||
include/webkit-3.0/webkit/WebKitDOMBlob.h
|
||||
include/webkit-3.0/webkit/WebKitDOMCDATASection.h
|
||||
include/webkit-3.0/webkit/WebKitDOMCSSRule.h
|
||||
include/webkit-3.0/webkit/WebKitDOMCSSRuleList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMCSSStyleDeclaration.h
|
||||
include/webkit-3.0/webkit/WebKitDOMCSSStyleSheet.h
|
||||
include/webkit-3.0/webkit/WebKitDOMCSSValue.h
|
||||
include/webkit-3.0/webkit/WebKitDOMCharacterData.h
|
||||
include/webkit-3.0/webkit/WebKitDOMComment.h
|
||||
include/webkit-3.0/webkit/WebKitDOMConsole.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMApplicationCache.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMImplementation.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMMimeType.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMMimeTypeArray.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMPlugin.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMPluginArray.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMSelection.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMSettableTokenList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMStringList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMStringMap.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMTokenList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDOMWindow.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDatabase.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDocument.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDocumentFragment.h
|
||||
include/webkit-3.0/webkit/WebKitDOMDocumentType.h
|
||||
include/webkit-3.0/webkit/WebKitDOMElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMEntityReference.h
|
||||
include/webkit-3.0/webkit/WebKitDOMEvent.h
|
||||
include/webkit-3.0/webkit/WebKitDOMEventTarget.h
|
||||
include/webkit-3.0/webkit/WebKitDOMFile.h
|
||||
include/webkit-3.0/webkit/WebKitDOMFileList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLAnchorElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLAppletElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLAreaElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLAudioElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLBRElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLBaseElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLBaseFontElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLBlockquoteElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLBodyElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLButtonElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLCanvasElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLCollection.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLDListElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLDetailsElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLDirectoryElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLDivElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLDocument.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLEmbedElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLFieldSetElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLFontElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLFormElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLFrameElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLFrameSetElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLHRElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLHeadElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLHeadingElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLHtmlElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLIFrameElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLImageElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLInputElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLIsIndexElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLKeygenElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLLIElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLLabelElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLLegendElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLLinkElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLMapElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLMarqueeElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLMediaElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLMenuElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLMetaElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLModElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLOListElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLObjectElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLOptGroupElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLOptionElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLOptionsCollection.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLParagraphElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLParamElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLPreElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLQuoteElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLScriptElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLSelectElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLStyleElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTableCaptionElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTableCellElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTableColElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTableElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTableRowElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTableSectionElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTextAreaElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLTitleElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLUListElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHTMLVideoElement.h
|
||||
include/webkit-3.0/webkit/WebKitDOMHistory.h
|
||||
include/webkit-3.0/webkit/WebKitDOMLocation.h
|
||||
include/webkit-3.0/webkit/WebKitDOMMediaError.h
|
||||
include/webkit-3.0/webkit/WebKitDOMMediaList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMMediaQueryList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMMemoryInfo.h
|
||||
include/webkit-3.0/webkit/WebKitDOMMessagePort.h
|
||||
include/webkit-3.0/webkit/WebKitDOMMouseEvent.h
|
||||
include/webkit-3.0/webkit/WebKitDOMNamedNodeMap.h
|
||||
include/webkit-3.0/webkit/WebKitDOMNavigator.h
|
||||
include/webkit-3.0/webkit/WebKitDOMNode.h
|
||||
include/webkit-3.0/webkit/WebKitDOMNodeFilter.h
|
||||
include/webkit-3.0/webkit/WebKitDOMNodeIterator.h
|
||||
include/webkit-3.0/webkit/WebKitDOMNodeList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMObject.h
|
||||
include/webkit-3.0/webkit/WebKitDOMProcessingInstruction.h
|
||||
include/webkit-3.0/webkit/WebKitDOMRange.h
|
||||
include/webkit-3.0/webkit/WebKitDOMScreen.h
|
||||
include/webkit-3.0/webkit/WebKitDOMStorage.h
|
||||
include/webkit-3.0/webkit/WebKitDOMStyleMedia.h
|
||||
include/webkit-3.0/webkit/WebKitDOMStyleSheet.h
|
||||
include/webkit-3.0/webkit/WebKitDOMStyleSheetList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMText.h
|
||||
include/webkit-3.0/webkit/WebKitDOMTimeRanges.h
|
||||
include/webkit-3.0/webkit/WebKitDOMTreeWalker.h
|
||||
include/webkit-3.0/webkit/WebKitDOMUIEvent.h
|
||||
include/webkit-3.0/webkit/WebKitDOMValidityState.h
|
||||
include/webkit-3.0/webkit/WebKitDOMWebKitAnimation.h
|
||||
include/webkit-3.0/webkit/WebKitDOMWebKitAnimationList.h
|
||||
include/webkit-3.0/webkit/WebKitDOMWebKitPoint.h
|
||||
include/webkit-3.0/webkit/WebKitDOMXPathExpression.h
|
||||
include/webkit-3.0/webkit/WebKitDOMXPathNSResolver.h
|
||||
include/webkit-3.0/webkit/WebKitDOMXPathResult.h
|
||||
include/webkit-3.0/webkit/webkit.h
|
||||
include/webkit-3.0/webkit/webkitapplicationcache.h
|
||||
include/webkit-3.0/webkit/webkitdefines.h
|
||||
include/webkit-3.0/webkit/webkitdom.h
|
||||
include/webkit-3.0/webkit/webkitdomdefines.h
|
||||
include/webkit-3.0/webkit/webkitdownload.h
|
||||
include/webkit-3.0/webkit/webkitenumtypes.h
|
||||
include/webkit-3.0/webkit/webkiterror.h
|
||||
include/webkit-3.0/webkit/webkitgeolocationpolicydecision.h
|
||||
include/webkit-3.0/webkit/webkitglobals.h
|
||||
include/webkit-3.0/webkit/webkithittestresult.h
|
||||
include/webkit-3.0/webkit/webkiticondatabase.h
|
||||
include/webkit-3.0/webkit/webkitnetworkrequest.h
|
||||
include/webkit-3.0/webkit/webkitnetworkresponse.h
|
||||
include/webkit-3.0/webkit/webkitsecurityorigin.h
|
||||
include/webkit-3.0/webkit/webkitsoupauthdialog.h
|
||||
include/webkit-3.0/webkit/webkitversion.h
|
||||
include/webkit-3.0/webkit/webkitviewportattributes.h
|
||||
include/webkit-3.0/webkit/webkitwebbackforwardlist.h
|
||||
include/webkit-3.0/webkit/webkitwebdatabase.h
|
||||
include/webkit-3.0/webkit/webkitwebdatasource.h
|
||||
include/webkit-3.0/webkit/webkitwebframe.h
|
||||
include/webkit-3.0/webkit/webkitwebhistoryitem.h
|
||||
include/webkit-3.0/webkit/webkitwebinspector.h
|
||||
include/webkit-3.0/webkit/webkitwebnavigationaction.h
|
||||
include/webkit-3.0/webkit/webkitwebplugin.h
|
||||
include/webkit-3.0/webkit/webkitwebplugindatabase.h
|
||||
include/webkit-3.0/webkit/webkitwebpolicydecision.h
|
||||
include/webkit-3.0/webkit/webkitwebresource.h
|
||||
include/webkit-3.0/webkit/webkitwebsettings.h
|
||||
include/webkit-3.0/webkit/webkitwebview.h
|
||||
include/webkit-3.0/webkit/webkitwebwindowfeatures.h
|
||||
lib/girepository-1.0/JSCore-3.0.typelib
|
||||
lib/girepository-1.0/WebKit-3.0.typelib
|
||||
lib/libwebkitgtk-3.0.a
|
||||
lib/libwebkitgtk-3.0.la
|
||||
@lib lib/libwebkitgtk-3.0.so.${LIBwebkitgtk-3.0_VERSION}
|
||||
lib/pkgconfig/webkitgtk-3.0.pc
|
||||
share/gir-1.0/JSCore-3.0.gir
|
||||
share/gir-1.0/WebKit-3.0.gir
|
||||
share/glib-2.0/schemas/org.webkitgtk-3.0.gschema.xml
|
||||
share/locale/ar/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/bg/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/cs/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/de/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/en_GB/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/es/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/et/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/eu/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/fr/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/gl/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/gr/
|
||||
share/locale/gr/LC_MESSAGES/
|
||||
share/locale/gr/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/gu/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/he/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/hu/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/id/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/it/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/ko/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/lt/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/lv/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/nb/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/nl/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/pa/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/pl/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/pt/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/ru/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/sl/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/sr/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/sr@latin/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/sv/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/uk/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/vi/LC_MESSAGES/webkit-3.0.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/webkit-3.0.mo
|
||||
share/webkit-3.0/
|
||||
share/webkit-3.0/resources/
|
||||
share/webkit-3.0/resources/error.html
|
||||
share/webkitgtk-3.0/
|
||||
share/webkitgtk-3.0/images/
|
||||
share/webkitgtk-3.0/images/deleteButton.png
|
||||
share/webkitgtk-3.0/images/inputSpeech.png
|
||||
share/webkitgtk-3.0/images/missingImage.png
|
||||
share/webkitgtk-3.0/images/nullPlugin.png
|
||||
share/webkitgtk-3.0/images/panIcon.png
|
||||
share/webkitgtk-3.0/images/textAreaResizeCorner.png
|
||||
share/webkitgtk-3.0/images/urlIcon.png
|
||||
share/webkitgtk-3.0/webinspector/
|
||||
share/webkitgtk-3.0/webinspector/ApplicationCacheItemsView.js
|
||||
share/webkitgtk-3.0/webinspector/AuditCategories.js
|
||||
share/webkitgtk-3.0/webinspector/AuditFormatters.js
|
||||
share/webkitgtk-3.0/webinspector/AuditLauncherView.js
|
||||
share/webkitgtk-3.0/webinspector/AuditResultView.js
|
||||
share/webkitgtk-3.0/webinspector/AuditRules.js
|
||||
share/webkitgtk-3.0/webinspector/AuditsPanel.js
|
||||
share/webkitgtk-3.0/webinspector/BottomUpProfileDataGridTree.js
|
||||
share/webkitgtk-3.0/webinspector/Breakpoint.js
|
||||
share/webkitgtk-3.0/webinspector/BreakpointManager.js
|
||||
share/webkitgtk-3.0/webinspector/BreakpointsSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/CSSCompletions.js
|
||||
share/webkitgtk-3.0/webinspector/CSSKeywordCompletions.js
|
||||
share/webkitgtk-3.0/webinspector/CSSStyleModel.js
|
||||
share/webkitgtk-3.0/webinspector/CallStackSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/Checkbox.js
|
||||
share/webkitgtk-3.0/webinspector/Color.js
|
||||
share/webkitgtk-3.0/webinspector/ConsolePanel.js
|
||||
share/webkitgtk-3.0/webinspector/ConsoleView.js
|
||||
share/webkitgtk-3.0/webinspector/ContextMenu.js
|
||||
share/webkitgtk-3.0/webinspector/CookieItemsView.js
|
||||
share/webkitgtk-3.0/webinspector/CookieParser.js
|
||||
share/webkitgtk-3.0/webinspector/CookiesTable.js
|
||||
share/webkitgtk-3.0/webinspector/DOMAgent.js
|
||||
share/webkitgtk-3.0/webinspector/DOMStorage.js
|
||||
share/webkitgtk-3.0/webinspector/DOMStorageItemsView.js
|
||||
share/webkitgtk-3.0/webinspector/DOMSyntaxHighlighter.js
|
||||
share/webkitgtk-3.0/webinspector/DataGrid.js
|
||||
share/webkitgtk-3.0/webinspector/Database.js
|
||||
share/webkitgtk-3.0/webinspector/DatabaseQueryView.js
|
||||
share/webkitgtk-3.0/webinspector/DatabaseTableView.js
|
||||
share/webkitgtk-3.0/webinspector/DebuggerModel.js
|
||||
share/webkitgtk-3.0/webinspector/DebuggerPresentationModel.js
|
||||
share/webkitgtk-3.0/webinspector/DetailedHeapshotGridNodes.js
|
||||
share/webkitgtk-3.0/webinspector/DetailedHeapshotView.js
|
||||
share/webkitgtk-3.0/webinspector/Drawer.js
|
||||
share/webkitgtk-3.0/webinspector/ElementsPanel.js
|
||||
share/webkitgtk-3.0/webinspector/ElementsTreeOutline.js
|
||||
share/webkitgtk-3.0/webinspector/EventListenersSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/ExtensionAPI.js
|
||||
share/webkitgtk-3.0/webinspector/ExtensionAuditCategory.js
|
||||
share/webkitgtk-3.0/webinspector/ExtensionCommon.js
|
||||
share/webkitgtk-3.0/webinspector/ExtensionPanel.js
|
||||
share/webkitgtk-3.0/webinspector/ExtensionRegistryStub.js
|
||||
share/webkitgtk-3.0/webinspector/ExtensionServer.js
|
||||
share/webkitgtk-3.0/webinspector/FontView.js
|
||||
share/webkitgtk-3.0/webinspector/GoToLineDialog.js
|
||||
share/webkitgtk-3.0/webinspector/HAREntry.js
|
||||
share/webkitgtk-3.0/webinspector/HeapSnapshot.js
|
||||
share/webkitgtk-3.0/webinspector/HeapSnapshotView.js
|
||||
share/webkitgtk-3.0/webinspector/HelpScreen.js
|
||||
share/webkitgtk-3.0/webinspector/ImageView.js
|
||||
share/webkitgtk-3.0/webinspector/Images/
|
||||
share/webkitgtk-3.0/webinspector/Images/applicationCache.png
|
||||
share/webkitgtk-3.0/webinspector/Images/auditsIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/back.png
|
||||
share/webkitgtk-3.0/webinspector/Images/breakpointBorder.png
|
||||
share/webkitgtk-3.0/webinspector/Images/breakpointConditionalBorder.png
|
||||
share/webkitgtk-3.0/webinspector/Images/breakpointConditionalCounterBorder.png
|
||||
share/webkitgtk-3.0/webinspector/Images/breakpointCounterBorder.png
|
||||
share/webkitgtk-3.0/webinspector/Images/breakpointsActivateButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/breakpointsDeactivateButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/checker.png
|
||||
share/webkitgtk-3.0/webinspector/Images/clearConsoleButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/closeButtons.png
|
||||
share/webkitgtk-3.0/webinspector/Images/consoleButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/consoleIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/cookie.png
|
||||
share/webkitgtk-3.0/webinspector/Images/database.png
|
||||
share/webkitgtk-3.0/webinspector/Images/databaseTable.png
|
||||
share/webkitgtk-3.0/webinspector/Images/debuggerContinue.png
|
||||
share/webkitgtk-3.0/webinspector/Images/debuggerPause.png
|
||||
share/webkitgtk-3.0/webinspector/Images/debuggerStepInto.png
|
||||
share/webkitgtk-3.0/webinspector/Images/debuggerStepOut.png
|
||||
share/webkitgtk-3.0/webinspector/Images/debuggerStepOver.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallDown.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallDownBlack.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallDownWhite.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRight.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightBlack.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightDown.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightDownBlack.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightDownWhite.png
|
||||
share/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightWhite.png
|
||||
share/webkitgtk-3.0/webinspector/Images/dockButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/elementsIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/enableOutlineButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/enableSolidButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/errorIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/errorMediumIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/errorRedDot.png
|
||||
share/webkitgtk-3.0/webinspector/Images/excludeButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/focusButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/forward.png
|
||||
share/webkitgtk-3.0/webinspector/Images/frame.png
|
||||
share/webkitgtk-3.0/webinspector/Images/garbageCollectButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/gearButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/glossyHeader.png
|
||||
share/webkitgtk-3.0/webinspector/Images/glossyHeaderPressed.png
|
||||
share/webkitgtk-3.0/webinspector/Images/glossyHeaderSelected.png
|
||||
share/webkitgtk-3.0/webinspector/Images/glossyHeaderSelectedPressed.png
|
||||
share/webkitgtk-3.0/webinspector/Images/goArrow.png
|
||||
share/webkitgtk-3.0/webinspector/Images/graphLabelCalloutLeft.png
|
||||
share/webkitgtk-3.0/webinspector/Images/graphLabelCalloutRight.png
|
||||
share/webkitgtk-3.0/webinspector/Images/helpButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/largerResourcesButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/localStorage.png
|
||||
share/webkitgtk-3.0/webinspector/Images/networkIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/nodeSearchButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/paneAddButtons.png
|
||||
share/webkitgtk-3.0/webinspector/Images/paneBottomGrow.png
|
||||
share/webkitgtk-3.0/webinspector/Images/paneBottomGrowActive.png
|
||||
share/webkitgtk-3.0/webinspector/Images/paneGrowHandleLine.png
|
||||
share/webkitgtk-3.0/webinspector/Images/paneSettingsButtons.png
|
||||
share/webkitgtk-3.0/webinspector/Images/pauseOnExceptionButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/percentButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/popoverArrows.png
|
||||
share/webkitgtk-3.0/webinspector/Images/popoverBackground.png
|
||||
share/webkitgtk-3.0/webinspector/Images/profileGroupIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/profileIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/profileSmallIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/profilesIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/profilesSilhouette.png
|
||||
share/webkitgtk-3.0/webinspector/Images/programCounterBorder.png
|
||||
share/webkitgtk-3.0/webinspector/Images/radioDot.png
|
||||
share/webkitgtk-3.0/webinspector/Images/recordButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/recordToggledButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/reloadButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourceCSSIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourceDocumentIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourceDocumentIconSmall.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourceJSIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourcePlainIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourcePlainIconSmall.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourcesIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourcesSizeGraphIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/resourcesTimeGraphIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/scriptsIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/scriptsSilhouette.png
|
||||
share/webkitgtk-3.0/webinspector/Images/searchSmallBlue.png
|
||||
share/webkitgtk-3.0/webinspector/Images/searchSmallBrightBlue.png
|
||||
share/webkitgtk-3.0/webinspector/Images/searchSmallGray.png
|
||||
share/webkitgtk-3.0/webinspector/Images/searchSmallWhite.png
|
||||
share/webkitgtk-3.0/webinspector/Images/segment.png
|
||||
share/webkitgtk-3.0/webinspector/Images/segmentEnd.png
|
||||
share/webkitgtk-3.0/webinspector/Images/segmentHover.png
|
||||
share/webkitgtk-3.0/webinspector/Images/segmentHoverEnd.png
|
||||
share/webkitgtk-3.0/webinspector/Images/segmentSelected.png
|
||||
share/webkitgtk-3.0/webinspector/Images/segmentSelectedEnd.png
|
||||
share/webkitgtk-3.0/webinspector/Images/sessionStorage.png
|
||||
share/webkitgtk-3.0/webinspector/Images/spinner.gif
|
||||
share/webkitgtk-3.0/webinspector/Images/splitviewDimple.png
|
||||
share/webkitgtk-3.0/webinspector/Images/splitviewDividerBackground.png
|
||||
share/webkitgtk-3.0/webinspector/Images/statusbarBackground.png
|
||||
share/webkitgtk-3.0/webinspector/Images/statusbarBottomBackground.png
|
||||
share/webkitgtk-3.0/webinspector/Images/statusbarButtons.png
|
||||
share/webkitgtk-3.0/webinspector/Images/statusbarMenuButton.png
|
||||
share/webkitgtk-3.0/webinspector/Images/statusbarMenuButtonSelected.png
|
||||
share/webkitgtk-3.0/webinspector/Images/statusbarResizerHorizontal.png
|
||||
share/webkitgtk-3.0/webinspector/Images/statusbarResizerVertical.png
|
||||
share/webkitgtk-3.0/webinspector/Images/successGreenDot.png
|
||||
share/webkitgtk-3.0/webinspector/Images/thumbActiveHoriz.png
|
||||
share/webkitgtk-3.0/webinspector/Images/thumbActiveVert.png
|
||||
share/webkitgtk-3.0/webinspector/Images/thumbHoriz.png
|
||||
share/webkitgtk-3.0/webinspector/Images/thumbHoverHoriz.png
|
||||
share/webkitgtk-3.0/webinspector/Images/thumbHoverVert.png
|
||||
share/webkitgtk-3.0/webinspector/Images/thumbVert.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineBarBlue.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineBarGray.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineBarGreen.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineBarOrange.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineBarPurple.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineBarRed.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineBarYellow.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineCheckmarks.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineDots.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineHollowPillBlue.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineHollowPillGray.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineHollowPillGreen.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineHollowPillOrange.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineHollowPillPurple.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineHollowPillRed.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineHollowPillYellow.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelineIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelinePillBlue.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelinePillGray.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelinePillGreen.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelinePillOrange.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelinePillPurple.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelinePillRed.png
|
||||
share/webkitgtk-3.0/webinspector/Images/timelinePillYellow.png
|
||||
share/webkitgtk-3.0/webinspector/Images/toolbarItemSelected.png
|
||||
share/webkitgtk-3.0/webinspector/Images/trackHoriz.png
|
||||
share/webkitgtk-3.0/webinspector/Images/trackVert.png
|
||||
share/webkitgtk-3.0/webinspector/Images/treeDownTriangleBlack.png
|
||||
share/webkitgtk-3.0/webinspector/Images/treeDownTriangleWhite.png
|
||||
share/webkitgtk-3.0/webinspector/Images/treeRightTriangleBlack.png
|
||||
share/webkitgtk-3.0/webinspector/Images/treeRightTriangleWhite.png
|
||||
share/webkitgtk-3.0/webinspector/Images/treeUpTriangleBlack.png
|
||||
share/webkitgtk-3.0/webinspector/Images/treeUpTriangleWhite.png
|
||||
share/webkitgtk-3.0/webinspector/Images/undockButtonGlyph.png
|
||||
share/webkitgtk-3.0/webinspector/Images/userInputIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/userInputPreviousIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/userInputResultIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/warningIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/warningMediumIcon.png
|
||||
share/webkitgtk-3.0/webinspector/Images/warningOrangeDot.png
|
||||
share/webkitgtk-3.0/webinspector/Images/warningsErrors.png
|
||||
share/webkitgtk-3.0/webinspector/InjectedFakeWorker.js
|
||||
share/webkitgtk-3.0/webinspector/InspectorBackendStub.js
|
||||
share/webkitgtk-3.0/webinspector/InspectorFrontendHostStub.js
|
||||
share/webkitgtk-3.0/webinspector/KeyboardShortcut.js
|
||||
share/webkitgtk-3.0/webinspector/MetricsSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/NetworkItemView.js
|
||||
share/webkitgtk-3.0/webinspector/NetworkManager.js
|
||||
share/webkitgtk-3.0/webinspector/NetworkPanel.js
|
||||
share/webkitgtk-3.0/webinspector/Object.js
|
||||
share/webkitgtk-3.0/webinspector/ObjectPropertiesSection.js
|
||||
share/webkitgtk-3.0/webinspector/Panel.js
|
||||
share/webkitgtk-3.0/webinspector/PanelEnablerView.js
|
||||
share/webkitgtk-3.0/webinspector/Placard.js
|
||||
share/webkitgtk-3.0/webinspector/PleaseWaitMessage.js
|
||||
share/webkitgtk-3.0/webinspector/Popover.js
|
||||
share/webkitgtk-3.0/webinspector/ProfileDataGridTree.js
|
||||
share/webkitgtk-3.0/webinspector/ProfileView.js
|
||||
share/webkitgtk-3.0/webinspector/ProfilesPanel.js
|
||||
share/webkitgtk-3.0/webinspector/PropertiesSection.js
|
||||
share/webkitgtk-3.0/webinspector/PropertiesSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/RemoteObject.js
|
||||
share/webkitgtk-3.0/webinspector/Resource.js
|
||||
share/webkitgtk-3.0/webinspector/ResourceCategory.js
|
||||
share/webkitgtk-3.0/webinspector/ResourceCookiesView.js
|
||||
share/webkitgtk-3.0/webinspector/ResourceHeadersView.js
|
||||
share/webkitgtk-3.0/webinspector/ResourceTimingView.js
|
||||
share/webkitgtk-3.0/webinspector/ResourceTreeModel.js
|
||||
share/webkitgtk-3.0/webinspector/ResourceView.js
|
||||
share/webkitgtk-3.0/webinspector/ResourcesPanel.js
|
||||
share/webkitgtk-3.0/webinspector/ScopeChainSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/Script.js
|
||||
share/webkitgtk-3.0/webinspector/ScriptFormatter.js
|
||||
share/webkitgtk-3.0/webinspector/ScriptFormatterWorker.js
|
||||
share/webkitgtk-3.0/webinspector/ScriptsPanel.js
|
||||
share/webkitgtk-3.0/webinspector/SearchController.js
|
||||
share/webkitgtk-3.0/webinspector/Section.js
|
||||
share/webkitgtk-3.0/webinspector/Settings.js
|
||||
share/webkitgtk-3.0/webinspector/ShortcutsHelp.js
|
||||
share/webkitgtk-3.0/webinspector/ShowMoreDataGridNode.js
|
||||
share/webkitgtk-3.0/webinspector/SidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/SidebarTreeElement.js
|
||||
share/webkitgtk-3.0/webinspector/SourceCSSTokenizer.js
|
||||
share/webkitgtk-3.0/webinspector/SourceFrame.js
|
||||
share/webkitgtk-3.0/webinspector/SourceFrameContent.js
|
||||
share/webkitgtk-3.0/webinspector/SourceHTMLTokenizer.js
|
||||
share/webkitgtk-3.0/webinspector/SourceJavaScriptTokenizer.js
|
||||
share/webkitgtk-3.0/webinspector/SourceTokenizer.js
|
||||
share/webkitgtk-3.0/webinspector/StatusBarButton.js
|
||||
share/webkitgtk-3.0/webinspector/StylesSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/SummaryBar.js
|
||||
share/webkitgtk-3.0/webinspector/TabbedPane.js
|
||||
share/webkitgtk-3.0/webinspector/TestController.js
|
||||
share/webkitgtk-3.0/webinspector/TextEditorHighlighter.js
|
||||
share/webkitgtk-3.0/webinspector/TextEditorModel.js
|
||||
share/webkitgtk-3.0/webinspector/TextPrompt.js
|
||||
share/webkitgtk-3.0/webinspector/TextViewer.js
|
||||
share/webkitgtk-3.0/webinspector/TimelineAgent.js
|
||||
share/webkitgtk-3.0/webinspector/TimelineGrid.js
|
||||
share/webkitgtk-3.0/webinspector/TimelineOverviewPane.js
|
||||
share/webkitgtk-3.0/webinspector/TimelinePanel.js
|
||||
share/webkitgtk-3.0/webinspector/Toolbar.js
|
||||
share/webkitgtk-3.0/webinspector/TopDownProfileDataGridTree.js
|
||||
share/webkitgtk-3.0/webinspector/View.js
|
||||
share/webkitgtk-3.0/webinspector/WatchExpressionsSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/WelcomeView.js
|
||||
share/webkitgtk-3.0/webinspector/WorkersSidebarPane.js
|
||||
share/webkitgtk-3.0/webinspector/audits.css
|
||||
share/webkitgtk-3.0/webinspector/goToLineDialog.css
|
||||
share/webkitgtk-3.0/webinspector/heapProfiler.css
|
||||
share/webkitgtk-3.0/webinspector/helpScreen.css
|
||||
share/webkitgtk-3.0/webinspector/inspector.css
|
||||
share/webkitgtk-3.0/webinspector/inspector.html
|
||||
share/webkitgtk-3.0/webinspector/inspector.js
|
||||
share/webkitgtk-3.0/webinspector/inspectorSyntaxHighlight.css
|
||||
share/webkitgtk-3.0/webinspector/localizedStrings.js
|
||||
share/webkitgtk-3.0/webinspector/networkPanel.css
|
||||
share/webkitgtk-3.0/webinspector/popover.css
|
||||
share/webkitgtk-3.0/webinspector/textViewer.css
|
||||
share/webkitgtk-3.0/webinspector/treeoutline.js
|
||||
share/webkitgtk-3.0/webinspector/utilities.js
|
525
www/webkit/pkg/PFRAG.no-gtk3
Normal file
525
www/webkit/pkg/PFRAG.no-gtk3
Normal file
@ -0,0 +1,525 @@
|
||||
@comment $OpenBSD: PFRAG.no-gtk3,v 1.1 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
@bin bin/GtkLauncher
|
||||
@bin bin/jsc-1
|
||||
include/webkit-1.0/
|
||||
include/webkit-1.0/JavaScriptCore/
|
||||
include/webkit-1.0/JavaScriptCore/JSBase.h
|
||||
include/webkit-1.0/JavaScriptCore/JSContextRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JSObjectRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JSStringRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JSStringRefBSTR.h
|
||||
include/webkit-1.0/JavaScriptCore/JSStringRefCF.h
|
||||
include/webkit-1.0/JavaScriptCore/JSValueRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JavaScript.h
|
||||
include/webkit-1.0/JavaScriptCore/JavaScriptCore.h
|
||||
include/webkit-1.0/JavaScriptCore/WebKitAvailability.h
|
||||
include/webkit-1.0/webkit/
|
||||
include/webkit-1.0/webkit/WebKitDOMAttr.h
|
||||
include/webkit-1.0/webkit/WebKitDOMBarInfo.h
|
||||
include/webkit-1.0/webkit/WebKitDOMBlob.h
|
||||
include/webkit-1.0/webkit/WebKitDOMCDATASection.h
|
||||
include/webkit-1.0/webkit/WebKitDOMCSSRule.h
|
||||
include/webkit-1.0/webkit/WebKitDOMCSSRuleList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMCSSStyleDeclaration.h
|
||||
include/webkit-1.0/webkit/WebKitDOMCSSStyleSheet.h
|
||||
include/webkit-1.0/webkit/WebKitDOMCSSValue.h
|
||||
include/webkit-1.0/webkit/WebKitDOMCharacterData.h
|
||||
include/webkit-1.0/webkit/WebKitDOMComment.h
|
||||
include/webkit-1.0/webkit/WebKitDOMConsole.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMApplicationCache.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMImplementation.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMMimeType.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMMimeTypeArray.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMPlugin.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMPluginArray.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMSelection.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMSettableTokenList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMStringList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMStringMap.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMTokenList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDOMWindow.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDatabase.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDocument.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDocumentFragment.h
|
||||
include/webkit-1.0/webkit/WebKitDOMDocumentType.h
|
||||
include/webkit-1.0/webkit/WebKitDOMElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMEntityReference.h
|
||||
include/webkit-1.0/webkit/WebKitDOMEvent.h
|
||||
include/webkit-1.0/webkit/WebKitDOMEventTarget.h
|
||||
include/webkit-1.0/webkit/WebKitDOMFile.h
|
||||
include/webkit-1.0/webkit/WebKitDOMFileList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLAnchorElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLAppletElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLAreaElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLAudioElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLBRElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLBaseElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLBaseFontElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLBlockquoteElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLBodyElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLButtonElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLCanvasElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLCollection.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLDListElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLDetailsElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLDirectoryElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLDivElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLDocument.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLEmbedElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLFieldSetElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLFontElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLFormElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLFrameElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLFrameSetElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLHRElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLHeadElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLHeadingElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLHtmlElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLIFrameElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLImageElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLInputElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLIsIndexElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLKeygenElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLLIElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLLabelElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLLegendElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLLinkElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLMapElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLMarqueeElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLMediaElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLMenuElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLMetaElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLModElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLOListElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLObjectElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLOptGroupElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLOptionElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLOptionsCollection.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLParagraphElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLParamElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLPreElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLQuoteElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLScriptElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLSelectElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLStyleElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTableCaptionElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTableCellElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTableColElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTableElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTableRowElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTableSectionElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTextAreaElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLTitleElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLUListElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHTMLVideoElement.h
|
||||
include/webkit-1.0/webkit/WebKitDOMHistory.h
|
||||
include/webkit-1.0/webkit/WebKitDOMLocation.h
|
||||
include/webkit-1.0/webkit/WebKitDOMMediaError.h
|
||||
include/webkit-1.0/webkit/WebKitDOMMediaList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMMediaQueryList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMMemoryInfo.h
|
||||
include/webkit-1.0/webkit/WebKitDOMMessagePort.h
|
||||
include/webkit-1.0/webkit/WebKitDOMMouseEvent.h
|
||||
include/webkit-1.0/webkit/WebKitDOMNamedNodeMap.h
|
||||
include/webkit-1.0/webkit/WebKitDOMNavigator.h
|
||||
include/webkit-1.0/webkit/WebKitDOMNode.h
|
||||
include/webkit-1.0/webkit/WebKitDOMNodeFilter.h
|
||||
include/webkit-1.0/webkit/WebKitDOMNodeIterator.h
|
||||
include/webkit-1.0/webkit/WebKitDOMNodeList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMObject.h
|
||||
include/webkit-1.0/webkit/WebKitDOMProcessingInstruction.h
|
||||
include/webkit-1.0/webkit/WebKitDOMRange.h
|
||||
include/webkit-1.0/webkit/WebKitDOMScreen.h
|
||||
include/webkit-1.0/webkit/WebKitDOMStorage.h
|
||||
include/webkit-1.0/webkit/WebKitDOMStyleMedia.h
|
||||
include/webkit-1.0/webkit/WebKitDOMStyleSheet.h
|
||||
include/webkit-1.0/webkit/WebKitDOMStyleSheetList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMText.h
|
||||
include/webkit-1.0/webkit/WebKitDOMTimeRanges.h
|
||||
include/webkit-1.0/webkit/WebKitDOMTreeWalker.h
|
||||
include/webkit-1.0/webkit/WebKitDOMUIEvent.h
|
||||
include/webkit-1.0/webkit/WebKitDOMValidityState.h
|
||||
include/webkit-1.0/webkit/WebKitDOMWebKitAnimation.h
|
||||
include/webkit-1.0/webkit/WebKitDOMWebKitAnimationList.h
|
||||
include/webkit-1.0/webkit/WebKitDOMWebKitPoint.h
|
||||
include/webkit-1.0/webkit/WebKitDOMXPathExpression.h
|
||||
include/webkit-1.0/webkit/WebKitDOMXPathNSResolver.h
|
||||
include/webkit-1.0/webkit/WebKitDOMXPathResult.h
|
||||
include/webkit-1.0/webkit/webkit.h
|
||||
include/webkit-1.0/webkit/webkitapplicationcache.h
|
||||
include/webkit-1.0/webkit/webkitdefines.h
|
||||
include/webkit-1.0/webkit/webkitdom.h
|
||||
include/webkit-1.0/webkit/webkitdomdefines.h
|
||||
include/webkit-1.0/webkit/webkitdownload.h
|
||||
include/webkit-1.0/webkit/webkitenumtypes.h
|
||||
include/webkit-1.0/webkit/webkiterror.h
|
||||
include/webkit-1.0/webkit/webkitgeolocationpolicydecision.h
|
||||
include/webkit-1.0/webkit/webkitglobals.h
|
||||
include/webkit-1.0/webkit/webkithittestresult.h
|
||||
include/webkit-1.0/webkit/webkiticondatabase.h
|
||||
include/webkit-1.0/webkit/webkitnetworkrequest.h
|
||||
include/webkit-1.0/webkit/webkitnetworkresponse.h
|
||||
include/webkit-1.0/webkit/webkitsecurityorigin.h
|
||||
include/webkit-1.0/webkit/webkitsoupauthdialog.h
|
||||
include/webkit-1.0/webkit/webkitversion.h
|
||||
include/webkit-1.0/webkit/webkitviewportattributes.h
|
||||
include/webkit-1.0/webkit/webkitwebbackforwardlist.h
|
||||
include/webkit-1.0/webkit/webkitwebdatabase.h
|
||||
include/webkit-1.0/webkit/webkitwebdatasource.h
|
||||
include/webkit-1.0/webkit/webkitwebframe.h
|
||||
include/webkit-1.0/webkit/webkitwebhistoryitem.h
|
||||
include/webkit-1.0/webkit/webkitwebinspector.h
|
||||
include/webkit-1.0/webkit/webkitwebnavigationaction.h
|
||||
include/webkit-1.0/webkit/webkitwebplugin.h
|
||||
include/webkit-1.0/webkit/webkitwebplugindatabase.h
|
||||
include/webkit-1.0/webkit/webkitwebpolicydecision.h
|
||||
include/webkit-1.0/webkit/webkitwebresource.h
|
||||
include/webkit-1.0/webkit/webkitwebsettings.h
|
||||
include/webkit-1.0/webkit/webkitwebview.h
|
||||
include/webkit-1.0/webkit/webkitwebwindowfeatures.h
|
||||
lib/girepository-1.0/JSCore-1.0.typelib
|
||||
lib/girepository-1.0/WebKit-1.0.typelib
|
||||
lib/libwebkitgtk-1.0.a
|
||||
lib/libwebkitgtk-1.0.la
|
||||
@lib lib/libwebkitgtk-1.0.so.${LIBwebkitgtk-1.0_VERSION}
|
||||
lib/pkgconfig/webkit-1.0.pc
|
||||
share/gir-1.0/JSCore-1.0.gir
|
||||
share/gir-1.0/WebKit-1.0.gir
|
||||
share/glib-2.0/schemas/org.webkitgtk-1.0.gschema.xml
|
||||
share/locale/ar/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/bg/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/cs/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/de/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/en_GB/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/es/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/et/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/eu/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/fr/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/gl/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/gr/
|
||||
share/locale/gr/LC_MESSAGES/
|
||||
share/locale/gr/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/gu/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/he/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/hu/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/id/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/it/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/ko/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/lt/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/lv/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/nb/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/nl/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/pa/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/pl/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/pt/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/ru/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/sl/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/sr/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/sr@latin/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/sv/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/uk/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/vi/LC_MESSAGES/webkit-2.0.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/webkit-2.0.mo
|
||||
share/webkit-1.0/
|
||||
share/webkit-1.0/resources/
|
||||
share/webkit-1.0/resources/error.html
|
||||
share/webkitgtk-1.0/
|
||||
share/webkitgtk-1.0/images/
|
||||
share/webkitgtk-1.0/images/deleteButton.png
|
||||
share/webkitgtk-1.0/images/inputSpeech.png
|
||||
share/webkitgtk-1.0/images/missingImage.png
|
||||
share/webkitgtk-1.0/images/nullPlugin.png
|
||||
share/webkitgtk-1.0/images/panIcon.png
|
||||
share/webkitgtk-1.0/images/textAreaResizeCorner.png
|
||||
share/webkitgtk-1.0/images/urlIcon.png
|
||||
share/webkitgtk-1.0/webinspector/
|
||||
share/webkitgtk-1.0/webinspector/ApplicationCacheItemsView.js
|
||||
share/webkitgtk-1.0/webinspector/AuditCategories.js
|
||||
share/webkitgtk-1.0/webinspector/AuditFormatters.js
|
||||
share/webkitgtk-1.0/webinspector/AuditLauncherView.js
|
||||
share/webkitgtk-1.0/webinspector/AuditResultView.js
|
||||
share/webkitgtk-1.0/webinspector/AuditRules.js
|
||||
share/webkitgtk-1.0/webinspector/AuditsPanel.js
|
||||
share/webkitgtk-1.0/webinspector/BottomUpProfileDataGridTree.js
|
||||
share/webkitgtk-1.0/webinspector/Breakpoint.js
|
||||
share/webkitgtk-1.0/webinspector/BreakpointManager.js
|
||||
share/webkitgtk-1.0/webinspector/BreakpointsSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/CSSCompletions.js
|
||||
share/webkitgtk-1.0/webinspector/CSSKeywordCompletions.js
|
||||
share/webkitgtk-1.0/webinspector/CSSStyleModel.js
|
||||
share/webkitgtk-1.0/webinspector/CallStackSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/Checkbox.js
|
||||
share/webkitgtk-1.0/webinspector/Color.js
|
||||
share/webkitgtk-1.0/webinspector/ConsolePanel.js
|
||||
share/webkitgtk-1.0/webinspector/ConsoleView.js
|
||||
share/webkitgtk-1.0/webinspector/ContextMenu.js
|
||||
share/webkitgtk-1.0/webinspector/CookieItemsView.js
|
||||
share/webkitgtk-1.0/webinspector/CookieParser.js
|
||||
share/webkitgtk-1.0/webinspector/CookiesTable.js
|
||||
share/webkitgtk-1.0/webinspector/DOMAgent.js
|
||||
share/webkitgtk-1.0/webinspector/DOMStorage.js
|
||||
share/webkitgtk-1.0/webinspector/DOMStorageItemsView.js
|
||||
share/webkitgtk-1.0/webinspector/DOMSyntaxHighlighter.js
|
||||
share/webkitgtk-1.0/webinspector/DataGrid.js
|
||||
share/webkitgtk-1.0/webinspector/Database.js
|
||||
share/webkitgtk-1.0/webinspector/DatabaseQueryView.js
|
||||
share/webkitgtk-1.0/webinspector/DatabaseTableView.js
|
||||
share/webkitgtk-1.0/webinspector/DebuggerModel.js
|
||||
share/webkitgtk-1.0/webinspector/DebuggerPresentationModel.js
|
||||
share/webkitgtk-1.0/webinspector/DetailedHeapshotGridNodes.js
|
||||
share/webkitgtk-1.0/webinspector/DetailedHeapshotView.js
|
||||
share/webkitgtk-1.0/webinspector/Drawer.js
|
||||
share/webkitgtk-1.0/webinspector/ElementsPanel.js
|
||||
share/webkitgtk-1.0/webinspector/ElementsTreeOutline.js
|
||||
share/webkitgtk-1.0/webinspector/EventListenersSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/ExtensionAPI.js
|
||||
share/webkitgtk-1.0/webinspector/ExtensionAuditCategory.js
|
||||
share/webkitgtk-1.0/webinspector/ExtensionCommon.js
|
||||
share/webkitgtk-1.0/webinspector/ExtensionPanel.js
|
||||
share/webkitgtk-1.0/webinspector/ExtensionRegistryStub.js
|
||||
share/webkitgtk-1.0/webinspector/ExtensionServer.js
|
||||
share/webkitgtk-1.0/webinspector/FontView.js
|
||||
share/webkitgtk-1.0/webinspector/GoToLineDialog.js
|
||||
share/webkitgtk-1.0/webinspector/HAREntry.js
|
||||
share/webkitgtk-1.0/webinspector/HeapSnapshot.js
|
||||
share/webkitgtk-1.0/webinspector/HeapSnapshotView.js
|
||||
share/webkitgtk-1.0/webinspector/HelpScreen.js
|
||||
share/webkitgtk-1.0/webinspector/ImageView.js
|
||||
share/webkitgtk-1.0/webinspector/Images/
|
||||
share/webkitgtk-1.0/webinspector/Images/applicationCache.png
|
||||
share/webkitgtk-1.0/webinspector/Images/auditsIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/back.png
|
||||
share/webkitgtk-1.0/webinspector/Images/breakpointBorder.png
|
||||
share/webkitgtk-1.0/webinspector/Images/breakpointConditionalBorder.png
|
||||
share/webkitgtk-1.0/webinspector/Images/breakpointConditionalCounterBorder.png
|
||||
share/webkitgtk-1.0/webinspector/Images/breakpointCounterBorder.png
|
||||
share/webkitgtk-1.0/webinspector/Images/breakpointsActivateButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/breakpointsDeactivateButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/checker.png
|
||||
share/webkitgtk-1.0/webinspector/Images/clearConsoleButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/closeButtons.png
|
||||
share/webkitgtk-1.0/webinspector/Images/consoleButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/consoleIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/cookie.png
|
||||
share/webkitgtk-1.0/webinspector/Images/database.png
|
||||
share/webkitgtk-1.0/webinspector/Images/databaseTable.png
|
||||
share/webkitgtk-1.0/webinspector/Images/debuggerContinue.png
|
||||
share/webkitgtk-1.0/webinspector/Images/debuggerPause.png
|
||||
share/webkitgtk-1.0/webinspector/Images/debuggerStepInto.png
|
||||
share/webkitgtk-1.0/webinspector/Images/debuggerStepOut.png
|
||||
share/webkitgtk-1.0/webinspector/Images/debuggerStepOver.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallDown.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallDownBlack.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallDownWhite.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRight.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightBlack.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightDown.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightDownBlack.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightDownWhite.png
|
||||
share/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightWhite.png
|
||||
share/webkitgtk-1.0/webinspector/Images/dockButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/elementsIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/enableOutlineButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/enableSolidButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/errorIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/errorMediumIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/errorRedDot.png
|
||||
share/webkitgtk-1.0/webinspector/Images/excludeButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/focusButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/forward.png
|
||||
share/webkitgtk-1.0/webinspector/Images/frame.png
|
||||
share/webkitgtk-1.0/webinspector/Images/garbageCollectButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/gearButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/glossyHeader.png
|
||||
share/webkitgtk-1.0/webinspector/Images/glossyHeaderPressed.png
|
||||
share/webkitgtk-1.0/webinspector/Images/glossyHeaderSelected.png
|
||||
share/webkitgtk-1.0/webinspector/Images/glossyHeaderSelectedPressed.png
|
||||
share/webkitgtk-1.0/webinspector/Images/goArrow.png
|
||||
share/webkitgtk-1.0/webinspector/Images/graphLabelCalloutLeft.png
|
||||
share/webkitgtk-1.0/webinspector/Images/graphLabelCalloutRight.png
|
||||
share/webkitgtk-1.0/webinspector/Images/helpButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/largerResourcesButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/localStorage.png
|
||||
share/webkitgtk-1.0/webinspector/Images/networkIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/nodeSearchButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/paneAddButtons.png
|
||||
share/webkitgtk-1.0/webinspector/Images/paneBottomGrow.png
|
||||
share/webkitgtk-1.0/webinspector/Images/paneBottomGrowActive.png
|
||||
share/webkitgtk-1.0/webinspector/Images/paneGrowHandleLine.png
|
||||
share/webkitgtk-1.0/webinspector/Images/paneSettingsButtons.png
|
||||
share/webkitgtk-1.0/webinspector/Images/pauseOnExceptionButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/percentButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/popoverArrows.png
|
||||
share/webkitgtk-1.0/webinspector/Images/popoverBackground.png
|
||||
share/webkitgtk-1.0/webinspector/Images/profileGroupIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/profileIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/profileSmallIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/profilesIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/profilesSilhouette.png
|
||||
share/webkitgtk-1.0/webinspector/Images/programCounterBorder.png
|
||||
share/webkitgtk-1.0/webinspector/Images/radioDot.png
|
||||
share/webkitgtk-1.0/webinspector/Images/recordButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/recordToggledButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/reloadButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourceCSSIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourceDocumentIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourceDocumentIconSmall.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourceJSIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourcePlainIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourcePlainIconSmall.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourcesIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourcesSizeGraphIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/resourcesTimeGraphIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/scriptsIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/scriptsSilhouette.png
|
||||
share/webkitgtk-1.0/webinspector/Images/searchSmallBlue.png
|
||||
share/webkitgtk-1.0/webinspector/Images/searchSmallBrightBlue.png
|
||||
share/webkitgtk-1.0/webinspector/Images/searchSmallGray.png
|
||||
share/webkitgtk-1.0/webinspector/Images/searchSmallWhite.png
|
||||
share/webkitgtk-1.0/webinspector/Images/segment.png
|
||||
share/webkitgtk-1.0/webinspector/Images/segmentEnd.png
|
||||
share/webkitgtk-1.0/webinspector/Images/segmentHover.png
|
||||
share/webkitgtk-1.0/webinspector/Images/segmentHoverEnd.png
|
||||
share/webkitgtk-1.0/webinspector/Images/segmentSelected.png
|
||||
share/webkitgtk-1.0/webinspector/Images/segmentSelectedEnd.png
|
||||
share/webkitgtk-1.0/webinspector/Images/sessionStorage.png
|
||||
share/webkitgtk-1.0/webinspector/Images/spinner.gif
|
||||
share/webkitgtk-1.0/webinspector/Images/splitviewDimple.png
|
||||
share/webkitgtk-1.0/webinspector/Images/splitviewDividerBackground.png
|
||||
share/webkitgtk-1.0/webinspector/Images/statusbarBackground.png
|
||||
share/webkitgtk-1.0/webinspector/Images/statusbarBottomBackground.png
|
||||
share/webkitgtk-1.0/webinspector/Images/statusbarButtons.png
|
||||
share/webkitgtk-1.0/webinspector/Images/statusbarMenuButton.png
|
||||
share/webkitgtk-1.0/webinspector/Images/statusbarMenuButtonSelected.png
|
||||
share/webkitgtk-1.0/webinspector/Images/statusbarResizerHorizontal.png
|
||||
share/webkitgtk-1.0/webinspector/Images/statusbarResizerVertical.png
|
||||
share/webkitgtk-1.0/webinspector/Images/successGreenDot.png
|
||||
share/webkitgtk-1.0/webinspector/Images/thumbActiveHoriz.png
|
||||
share/webkitgtk-1.0/webinspector/Images/thumbActiveVert.png
|
||||
share/webkitgtk-1.0/webinspector/Images/thumbHoriz.png
|
||||
share/webkitgtk-1.0/webinspector/Images/thumbHoverHoriz.png
|
||||
share/webkitgtk-1.0/webinspector/Images/thumbHoverVert.png
|
||||
share/webkitgtk-1.0/webinspector/Images/thumbVert.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineBarBlue.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineBarGray.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineBarGreen.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineBarOrange.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineBarPurple.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineBarRed.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineBarYellow.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineCheckmarks.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineDots.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineHollowPillBlue.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineHollowPillGray.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineHollowPillGreen.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineHollowPillOrange.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineHollowPillPurple.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineHollowPillRed.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineHollowPillYellow.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelineIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelinePillBlue.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelinePillGray.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelinePillGreen.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelinePillOrange.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelinePillPurple.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelinePillRed.png
|
||||
share/webkitgtk-1.0/webinspector/Images/timelinePillYellow.png
|
||||
share/webkitgtk-1.0/webinspector/Images/toolbarItemSelected.png
|
||||
share/webkitgtk-1.0/webinspector/Images/trackHoriz.png
|
||||
share/webkitgtk-1.0/webinspector/Images/trackVert.png
|
||||
share/webkitgtk-1.0/webinspector/Images/treeDownTriangleBlack.png
|
||||
share/webkitgtk-1.0/webinspector/Images/treeDownTriangleWhite.png
|
||||
share/webkitgtk-1.0/webinspector/Images/treeRightTriangleBlack.png
|
||||
share/webkitgtk-1.0/webinspector/Images/treeRightTriangleWhite.png
|
||||
share/webkitgtk-1.0/webinspector/Images/treeUpTriangleBlack.png
|
||||
share/webkitgtk-1.0/webinspector/Images/treeUpTriangleWhite.png
|
||||
share/webkitgtk-1.0/webinspector/Images/undockButtonGlyph.png
|
||||
share/webkitgtk-1.0/webinspector/Images/userInputIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/userInputPreviousIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/userInputResultIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/warningIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/warningMediumIcon.png
|
||||
share/webkitgtk-1.0/webinspector/Images/warningOrangeDot.png
|
||||
share/webkitgtk-1.0/webinspector/Images/warningsErrors.png
|
||||
share/webkitgtk-1.0/webinspector/InjectedFakeWorker.js
|
||||
share/webkitgtk-1.0/webinspector/InspectorBackendStub.js
|
||||
share/webkitgtk-1.0/webinspector/InspectorFrontendHostStub.js
|
||||
share/webkitgtk-1.0/webinspector/KeyboardShortcut.js
|
||||
share/webkitgtk-1.0/webinspector/MetricsSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/NetworkItemView.js
|
||||
share/webkitgtk-1.0/webinspector/NetworkManager.js
|
||||
share/webkitgtk-1.0/webinspector/NetworkPanel.js
|
||||
share/webkitgtk-1.0/webinspector/Object.js
|
||||
share/webkitgtk-1.0/webinspector/ObjectPropertiesSection.js
|
||||
share/webkitgtk-1.0/webinspector/Panel.js
|
||||
share/webkitgtk-1.0/webinspector/PanelEnablerView.js
|
||||
share/webkitgtk-1.0/webinspector/Placard.js
|
||||
share/webkitgtk-1.0/webinspector/PleaseWaitMessage.js
|
||||
share/webkitgtk-1.0/webinspector/Popover.js
|
||||
share/webkitgtk-1.0/webinspector/ProfileDataGridTree.js
|
||||
share/webkitgtk-1.0/webinspector/ProfileView.js
|
||||
share/webkitgtk-1.0/webinspector/ProfilesPanel.js
|
||||
share/webkitgtk-1.0/webinspector/PropertiesSection.js
|
||||
share/webkitgtk-1.0/webinspector/PropertiesSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/RemoteObject.js
|
||||
share/webkitgtk-1.0/webinspector/Resource.js
|
||||
share/webkitgtk-1.0/webinspector/ResourceCategory.js
|
||||
share/webkitgtk-1.0/webinspector/ResourceCookiesView.js
|
||||
share/webkitgtk-1.0/webinspector/ResourceHeadersView.js
|
||||
share/webkitgtk-1.0/webinspector/ResourceTimingView.js
|
||||
share/webkitgtk-1.0/webinspector/ResourceTreeModel.js
|
||||
share/webkitgtk-1.0/webinspector/ResourceView.js
|
||||
share/webkitgtk-1.0/webinspector/ResourcesPanel.js
|
||||
share/webkitgtk-1.0/webinspector/ScopeChainSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/Script.js
|
||||
share/webkitgtk-1.0/webinspector/ScriptFormatter.js
|
||||
share/webkitgtk-1.0/webinspector/ScriptFormatterWorker.js
|
||||
share/webkitgtk-1.0/webinspector/ScriptsPanel.js
|
||||
share/webkitgtk-1.0/webinspector/SearchController.js
|
||||
share/webkitgtk-1.0/webinspector/Section.js
|
||||
share/webkitgtk-1.0/webinspector/Settings.js
|
||||
share/webkitgtk-1.0/webinspector/ShortcutsHelp.js
|
||||
share/webkitgtk-1.0/webinspector/ShowMoreDataGridNode.js
|
||||
share/webkitgtk-1.0/webinspector/SidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/SidebarTreeElement.js
|
||||
share/webkitgtk-1.0/webinspector/SourceCSSTokenizer.js
|
||||
share/webkitgtk-1.0/webinspector/SourceFrame.js
|
||||
share/webkitgtk-1.0/webinspector/SourceFrameContent.js
|
||||
share/webkitgtk-1.0/webinspector/SourceHTMLTokenizer.js
|
||||
share/webkitgtk-1.0/webinspector/SourceJavaScriptTokenizer.js
|
||||
share/webkitgtk-1.0/webinspector/SourceTokenizer.js
|
||||
share/webkitgtk-1.0/webinspector/StatusBarButton.js
|
||||
share/webkitgtk-1.0/webinspector/StylesSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/SummaryBar.js
|
||||
share/webkitgtk-1.0/webinspector/TabbedPane.js
|
||||
share/webkitgtk-1.0/webinspector/TestController.js
|
||||
share/webkitgtk-1.0/webinspector/TextEditorHighlighter.js
|
||||
share/webkitgtk-1.0/webinspector/TextEditorModel.js
|
||||
share/webkitgtk-1.0/webinspector/TextPrompt.js
|
||||
share/webkitgtk-1.0/webinspector/TextViewer.js
|
||||
share/webkitgtk-1.0/webinspector/TimelineAgent.js
|
||||
share/webkitgtk-1.0/webinspector/TimelineGrid.js
|
||||
share/webkitgtk-1.0/webinspector/TimelineOverviewPane.js
|
||||
share/webkitgtk-1.0/webinspector/TimelinePanel.js
|
||||
share/webkitgtk-1.0/webinspector/Toolbar.js
|
||||
share/webkitgtk-1.0/webinspector/TopDownProfileDataGridTree.js
|
||||
share/webkitgtk-1.0/webinspector/View.js
|
||||
share/webkitgtk-1.0/webinspector/WatchExpressionsSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/WelcomeView.js
|
||||
share/webkitgtk-1.0/webinspector/WorkersSidebarPane.js
|
||||
share/webkitgtk-1.0/webinspector/audits.css
|
||||
share/webkitgtk-1.0/webinspector/goToLineDialog.css
|
||||
share/webkitgtk-1.0/webinspector/heapProfiler.css
|
||||
share/webkitgtk-1.0/webinspector/helpScreen.css
|
||||
share/webkitgtk-1.0/webinspector/inspector.css
|
||||
share/webkitgtk-1.0/webinspector/inspector.html
|
||||
share/webkitgtk-1.0/webinspector/inspector.js
|
||||
share/webkitgtk-1.0/webinspector/inspectorSyntaxHighlight.css
|
||||
share/webkitgtk-1.0/webinspector/localizedStrings.js
|
||||
share/webkitgtk-1.0/webinspector/networkPanel.css
|
||||
share/webkitgtk-1.0/webinspector/popover.css
|
||||
share/webkitgtk-1.0/webinspector/textViewer.css
|
||||
share/webkitgtk-1.0/webinspector/treeoutline.js
|
||||
share/webkitgtk-1.0/webinspector/utilities.js
|
@ -1,2 +0,0 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2008/07/25 12:51:10 landry Exp $
|
||||
@lib lib/libwebkit-1.0.so.${LIBwebkit-1.0_VERSION}
|
@ -1,332 +1,5 @@
|
||||
@comment $OpenBSD: PLIST,v 1.14 2011/04/07 19:40:10 jasper Exp $
|
||||
%%SHARED%%
|
||||
@bin bin/GtkLauncher
|
||||
@bin bin/jsc
|
||||
include/webkit-1.0/
|
||||
include/webkit-1.0/JavaScriptCore/
|
||||
include/webkit-1.0/JavaScriptCore/JSBase.h
|
||||
include/webkit-1.0/JavaScriptCore/JSContextRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JSObjectRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JSStringRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JSStringRefBSTR.h
|
||||
include/webkit-1.0/JavaScriptCore/JSStringRefCF.h
|
||||
include/webkit-1.0/JavaScriptCore/JSValueRef.h
|
||||
include/webkit-1.0/JavaScriptCore/JavaScript.h
|
||||
include/webkit-1.0/JavaScriptCore/JavaScriptCore.h
|
||||
include/webkit-1.0/JavaScriptCore/WebKitAvailability.h
|
||||
include/webkit-1.0/webkit/
|
||||
include/webkit-1.0/webkit/webkit.h
|
||||
include/webkit-1.0/webkit/webkitdefines.h
|
||||
include/webkit-1.0/webkit/webkitdownload.h
|
||||
include/webkit-1.0/webkit/webkitenumtypes.h
|
||||
include/webkit-1.0/webkit/webkiterror.h
|
||||
include/webkit-1.0/webkit/webkitgeolocationpolicydecision.h
|
||||
include/webkit-1.0/webkit/webkithittestresult.h
|
||||
include/webkit-1.0/webkit/webkitnetworkrequest.h
|
||||
include/webkit-1.0/webkit/webkitnetworkresponse.h
|
||||
include/webkit-1.0/webkit/webkitsecurityorigin.h
|
||||
include/webkit-1.0/webkit/webkitsoupauthdialog.h
|
||||
include/webkit-1.0/webkit/webkitversion.h
|
||||
include/webkit-1.0/webkit/webkitwebbackforwardlist.h
|
||||
include/webkit-1.0/webkit/webkitwebdatabase.h
|
||||
include/webkit-1.0/webkit/webkitwebdatasource.h
|
||||
include/webkit-1.0/webkit/webkitwebframe.h
|
||||
include/webkit-1.0/webkit/webkitwebhistoryitem.h
|
||||
include/webkit-1.0/webkit/webkitwebinspector.h
|
||||
include/webkit-1.0/webkit/webkitwebnavigationaction.h
|
||||
include/webkit-1.0/webkit/webkitwebpolicydecision.h
|
||||
include/webkit-1.0/webkit/webkitwebresource.h
|
||||
include/webkit-1.0/webkit/webkitwebsettings.h
|
||||
include/webkit-1.0/webkit/webkitwebview.h
|
||||
include/webkit-1.0/webkit/webkitwebwindowfeatures.h
|
||||
lib/girepository-1.0/JSCore-1.0.typelib
|
||||
lib/girepository-1.0/WebKit-1.0.typelib
|
||||
lib/libwebkit-1.0.a
|
||||
lib/libwebkit-1.0.la
|
||||
lib/pkgconfig/webkit-1.0.pc
|
||||
share/gir-1.0/JSCore-1.0.gir
|
||||
share/gir-1.0/WebKit-1.0.gir
|
||||
share/locale/cs/LC_MESSAGES/webkit.mo
|
||||
share/locale/de/LC_MESSAGES/webkit.mo
|
||||
share/locale/en_GB/LC_MESSAGES/webkit.mo
|
||||
share/locale/es/LC_MESSAGES/webkit.mo
|
||||
share/locale/et/LC_MESSAGES/webkit.mo
|
||||
share/locale/gu/LC_MESSAGES/webkit.mo
|
||||
share/locale/he/LC_MESSAGES/webkit.mo
|
||||
share/locale/it/LC_MESSAGES/webkit.mo
|
||||
share/locale/lt/LC_MESSAGES/webkit.mo
|
||||
share/locale/lv/LC_MESSAGES/webkit.mo
|
||||
share/locale/nl/LC_MESSAGES/webkit.mo
|
||||
share/locale/pa/LC_MESSAGES/webkit.mo
|
||||
share/locale/pt/LC_MESSAGES/webkit.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/webkit.mo
|
||||
share/locale/ru/LC_MESSAGES/webkit.mo
|
||||
share/locale/sl/LC_MESSAGES/webkit.mo
|
||||
share/locale/sr/LC_MESSAGES/webkit.mo
|
||||
share/locale/sr@latin/LC_MESSAGES/webkit.mo
|
||||
share/locale/sv/LC_MESSAGES/webkit.mo
|
||||
share/locale/uk/LC_MESSAGES/webkit.mo
|
||||
share/locale/vi/LC_MESSAGES/webkit.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/webkit.mo
|
||||
share/webkit-1.0/
|
||||
share/webkit-1.0/images/
|
||||
share/webkit-1.0/images/deleteButton.png
|
||||
share/webkit-1.0/images/missingImage.png
|
||||
share/webkit-1.0/images/nullPlugin.png
|
||||
share/webkit-1.0/images/panIcon.png
|
||||
share/webkit-1.0/images/textAreaResizeCorner.png
|
||||
share/webkit-1.0/images/urlIcon.png
|
||||
share/webkit-1.0/resources/
|
||||
share/webkit-1.0/resources/error.html
|
||||
share/webkit-1.0/webinspector/
|
||||
share/webkit-1.0/webinspector/AbstractTimelinePanel.js
|
||||
share/webkit-1.0/webinspector/AuditCategories.js
|
||||
share/webkit-1.0/webinspector/AuditLauncherView.js
|
||||
share/webkit-1.0/webinspector/AuditResultView.js
|
||||
share/webkit-1.0/webinspector/AuditRules.js
|
||||
share/webkit-1.0/webinspector/AuditsPanel.js
|
||||
share/webkit-1.0/webinspector/BottomUpProfileDataGridTree.js
|
||||
share/webkit-1.0/webinspector/Breakpoint.js
|
||||
share/webkit-1.0/webinspector/BreakpointsSidebarPane.js
|
||||
share/webkit-1.0/webinspector/CallStackSidebarPane.js
|
||||
share/webkit-1.0/webinspector/Callback.js
|
||||
share/webkit-1.0/webinspector/ChangesView.js
|
||||
share/webkit-1.0/webinspector/Checkbox.js
|
||||
share/webkit-1.0/webinspector/Color.js
|
||||
share/webkit-1.0/webinspector/ConsolePanel.js
|
||||
share/webkit-1.0/webinspector/ConsoleView.js
|
||||
share/webkit-1.0/webinspector/ContextMenu.js
|
||||
share/webkit-1.0/webinspector/CookieItemsView.js
|
||||
share/webkit-1.0/webinspector/DOMAgent.js
|
||||
share/webkit-1.0/webinspector/DOMStorage.js
|
||||
share/webkit-1.0/webinspector/DOMStorageItemsView.js
|
||||
share/webkit-1.0/webinspector/DOMSyntaxHighlighter.js
|
||||
share/webkit-1.0/webinspector/DataGrid.js
|
||||
share/webkit-1.0/webinspector/Database.js
|
||||
share/webkit-1.0/webinspector/DatabaseQueryView.js
|
||||
share/webkit-1.0/webinspector/DatabaseTableView.js
|
||||
share/webkit-1.0/webinspector/Drawer.js
|
||||
share/webkit-1.0/webinspector/ElementsPanel.js
|
||||
share/webkit-1.0/webinspector/ElementsTreeOutline.js
|
||||
share/webkit-1.0/webinspector/EventListenersSidebarPane.js
|
||||
share/webkit-1.0/webinspector/FontView.js
|
||||
share/webkit-1.0/webinspector/ImageView.js
|
||||
share/webkit-1.0/webinspector/Images/
|
||||
share/webkit-1.0/webinspector/Images/auditsIcon.png
|
||||
share/webkit-1.0/webinspector/Images/back.png
|
||||
share/webkit-1.0/webinspector/Images/breakpointBorder.png
|
||||
share/webkit-1.0/webinspector/Images/breakpointConditionalBorder.png
|
||||
share/webkit-1.0/webinspector/Images/breakpointConditionalCounterBorder.png
|
||||
share/webkit-1.0/webinspector/Images/breakpointCounterBorder.png
|
||||
share/webkit-1.0/webinspector/Images/breakpointsActivateButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/breakpointsDeactivateButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/checker.png
|
||||
share/webkit-1.0/webinspector/Images/clearConsoleButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/closeButtons.png
|
||||
share/webkit-1.0/webinspector/Images/consoleButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/consoleIcon.png
|
||||
share/webkit-1.0/webinspector/Images/cookie.png
|
||||
share/webkit-1.0/webinspector/Images/database.png
|
||||
share/webkit-1.0/webinspector/Images/databaseTable.png
|
||||
share/webkit-1.0/webinspector/Images/debuggerContinue.png
|
||||
share/webkit-1.0/webinspector/Images/debuggerPause.png
|
||||
share/webkit-1.0/webinspector/Images/debuggerStepInto.png
|
||||
share/webkit-1.0/webinspector/Images/debuggerStepOut.png
|
||||
share/webkit-1.0/webinspector/Images/debuggerStepOver.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallDown.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallDownBlack.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallDownWhite.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallRight.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallRightBlack.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallRightDown.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallRightDownBlack.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallRightDownWhite.png
|
||||
share/webkit-1.0/webinspector/Images/disclosureTriangleSmallRightWhite.png
|
||||
share/webkit-1.0/webinspector/Images/dockButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/elementsIcon.png
|
||||
share/webkit-1.0/webinspector/Images/enableOutlineButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/enableSolidButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/errorIcon.png
|
||||
share/webkit-1.0/webinspector/Images/errorMediumIcon.png
|
||||
share/webkit-1.0/webinspector/Images/errorRedDot.png
|
||||
share/webkit-1.0/webinspector/Images/excludeButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/focusButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/forward.png
|
||||
share/webkit-1.0/webinspector/Images/gearButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/glossyHeader.png
|
||||
share/webkit-1.0/webinspector/Images/glossyHeaderPressed.png
|
||||
share/webkit-1.0/webinspector/Images/glossyHeaderSelected.png
|
||||
share/webkit-1.0/webinspector/Images/glossyHeaderSelectedPressed.png
|
||||
share/webkit-1.0/webinspector/Images/goArrow.png
|
||||
share/webkit-1.0/webinspector/Images/graphLabelCalloutLeft.png
|
||||
share/webkit-1.0/webinspector/Images/graphLabelCalloutRight.png
|
||||
share/webkit-1.0/webinspector/Images/grayConnectorPoint.png
|
||||
share/webkit-1.0/webinspector/Images/largerResourcesButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/localStorage.png
|
||||
share/webkit-1.0/webinspector/Images/nodeSearchButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/paneBottomGrow.png
|
||||
share/webkit-1.0/webinspector/Images/paneBottomGrowActive.png
|
||||
share/webkit-1.0/webinspector/Images/paneGrowHandleLine.png
|
||||
share/webkit-1.0/webinspector/Images/paneSettingsButtons.png
|
||||
share/webkit-1.0/webinspector/Images/pauseOnExceptionButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/percentButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/popoverArrows.png
|
||||
share/webkit-1.0/webinspector/Images/popoverBackground.png
|
||||
share/webkit-1.0/webinspector/Images/profileGroupIcon.png
|
||||
share/webkit-1.0/webinspector/Images/profileIcon.png
|
||||
share/webkit-1.0/webinspector/Images/profileSmallIcon.png
|
||||
share/webkit-1.0/webinspector/Images/profilesIcon.png
|
||||
share/webkit-1.0/webinspector/Images/profilesSilhouette.png
|
||||
share/webkit-1.0/webinspector/Images/programCounterBorder.png
|
||||
share/webkit-1.0/webinspector/Images/radioDot.png
|
||||
share/webkit-1.0/webinspector/Images/recordButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/recordToggledButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/reloadButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/resourceCSSIcon.png
|
||||
share/webkit-1.0/webinspector/Images/resourceDocumentIcon.png
|
||||
share/webkit-1.0/webinspector/Images/resourceDocumentIconSmall.png
|
||||
share/webkit-1.0/webinspector/Images/resourceJSIcon.png
|
||||
share/webkit-1.0/webinspector/Images/resourcePlainIcon.png
|
||||
share/webkit-1.0/webinspector/Images/resourcePlainIconSmall.png
|
||||
share/webkit-1.0/webinspector/Images/resourcesIcon.png
|
||||
share/webkit-1.0/webinspector/Images/resourcesSilhouette.png
|
||||
share/webkit-1.0/webinspector/Images/resourcesSizeGraphIcon.png
|
||||
share/webkit-1.0/webinspector/Images/resourcesTimeGraphIcon.png
|
||||
share/webkit-1.0/webinspector/Images/scriptsIcon.png
|
||||
share/webkit-1.0/webinspector/Images/scriptsSilhouette.png
|
||||
share/webkit-1.0/webinspector/Images/searchSmallBlue.png
|
||||
share/webkit-1.0/webinspector/Images/searchSmallBrightBlue.png
|
||||
share/webkit-1.0/webinspector/Images/searchSmallGray.png
|
||||
share/webkit-1.0/webinspector/Images/searchSmallWhite.png
|
||||
share/webkit-1.0/webinspector/Images/segment.png
|
||||
share/webkit-1.0/webinspector/Images/segmentEnd.png
|
||||
share/webkit-1.0/webinspector/Images/segmentHover.png
|
||||
share/webkit-1.0/webinspector/Images/segmentHoverEnd.png
|
||||
share/webkit-1.0/webinspector/Images/segmentSelected.png
|
||||
share/webkit-1.0/webinspector/Images/segmentSelectedEnd.png
|
||||
share/webkit-1.0/webinspector/Images/sessionStorage.png
|
||||
share/webkit-1.0/webinspector/Images/spinner.gif
|
||||
share/webkit-1.0/webinspector/Images/splitviewDimple.png
|
||||
share/webkit-1.0/webinspector/Images/splitviewDividerBackground.png
|
||||
share/webkit-1.0/webinspector/Images/statusbarBackground.png
|
||||
share/webkit-1.0/webinspector/Images/statusbarBottomBackground.png
|
||||
share/webkit-1.0/webinspector/Images/statusbarButtons.png
|
||||
share/webkit-1.0/webinspector/Images/statusbarMenuButton.png
|
||||
share/webkit-1.0/webinspector/Images/statusbarMenuButtonSelected.png
|
||||
share/webkit-1.0/webinspector/Images/statusbarResizerHorizontal.png
|
||||
share/webkit-1.0/webinspector/Images/statusbarResizerVertical.png
|
||||
share/webkit-1.0/webinspector/Images/storageIcon.png
|
||||
share/webkit-1.0/webinspector/Images/successGreenDot.png
|
||||
share/webkit-1.0/webinspector/Images/thumbActiveHoriz.png
|
||||
share/webkit-1.0/webinspector/Images/thumbActiveVert.png
|
||||
share/webkit-1.0/webinspector/Images/thumbHoriz.png
|
||||
share/webkit-1.0/webinspector/Images/thumbHoverHoriz.png
|
||||
share/webkit-1.0/webinspector/Images/thumbHoverVert.png
|
||||
share/webkit-1.0/webinspector/Images/thumbVert.png
|
||||
share/webkit-1.0/webinspector/Images/timelineBarBlue.png
|
||||
share/webkit-1.0/webinspector/Images/timelineBarGray.png
|
||||
share/webkit-1.0/webinspector/Images/timelineBarGreen.png
|
||||
share/webkit-1.0/webinspector/Images/timelineBarOrange.png
|
||||
share/webkit-1.0/webinspector/Images/timelineBarPurple.png
|
||||
share/webkit-1.0/webinspector/Images/timelineBarRed.png
|
||||
share/webkit-1.0/webinspector/Images/timelineBarYellow.png
|
||||
share/webkit-1.0/webinspector/Images/timelineCheckmarks.png
|
||||
share/webkit-1.0/webinspector/Images/timelineDots.png
|
||||
share/webkit-1.0/webinspector/Images/timelineHollowPillBlue.png
|
||||
share/webkit-1.0/webinspector/Images/timelineHollowPillGray.png
|
||||
share/webkit-1.0/webinspector/Images/timelineHollowPillGreen.png
|
||||
share/webkit-1.0/webinspector/Images/timelineHollowPillOrange.png
|
||||
share/webkit-1.0/webinspector/Images/timelineHollowPillPurple.png
|
||||
share/webkit-1.0/webinspector/Images/timelineHollowPillRed.png
|
||||
share/webkit-1.0/webinspector/Images/timelineHollowPillYellow.png
|
||||
share/webkit-1.0/webinspector/Images/timelineIcon.png
|
||||
share/webkit-1.0/webinspector/Images/timelinePillBlue.png
|
||||
share/webkit-1.0/webinspector/Images/timelinePillGray.png
|
||||
share/webkit-1.0/webinspector/Images/timelinePillGreen.png
|
||||
share/webkit-1.0/webinspector/Images/timelinePillOrange.png
|
||||
share/webkit-1.0/webinspector/Images/timelinePillPurple.png
|
||||
share/webkit-1.0/webinspector/Images/timelinePillRed.png
|
||||
share/webkit-1.0/webinspector/Images/timelinePillYellow.png
|
||||
share/webkit-1.0/webinspector/Images/toolbarItemSelected.png
|
||||
share/webkit-1.0/webinspector/Images/trackHoriz.png
|
||||
share/webkit-1.0/webinspector/Images/trackVert.png
|
||||
share/webkit-1.0/webinspector/Images/treeDownTriangleBlack.png
|
||||
share/webkit-1.0/webinspector/Images/treeDownTriangleWhite.png
|
||||
share/webkit-1.0/webinspector/Images/treeRightTriangleBlack.png
|
||||
share/webkit-1.0/webinspector/Images/treeRightTriangleWhite.png
|
||||
share/webkit-1.0/webinspector/Images/treeUpTriangleBlack.png
|
||||
share/webkit-1.0/webinspector/Images/treeUpTriangleWhite.png
|
||||
share/webkit-1.0/webinspector/Images/undockButtonGlyph.png
|
||||
share/webkit-1.0/webinspector/Images/userInputIcon.png
|
||||
share/webkit-1.0/webinspector/Images/userInputPreviousIcon.png
|
||||
share/webkit-1.0/webinspector/Images/userInputResultIcon.png
|
||||
share/webkit-1.0/webinspector/Images/warningIcon.png
|
||||
share/webkit-1.0/webinspector/Images/warningMediumIcon.png
|
||||
share/webkit-1.0/webinspector/Images/warningOrangeDot.png
|
||||
share/webkit-1.0/webinspector/Images/warningsErrors.png
|
||||
share/webkit-1.0/webinspector/Images/whiteConnectorPoint.png
|
||||
share/webkit-1.0/webinspector/InjectedFakeWorker.js
|
||||
share/webkit-1.0/webinspector/InjectedScript.js
|
||||
share/webkit-1.0/webinspector/InjectedScriptAccess.js
|
||||
share/webkit-1.0/webinspector/InspectorBackendStub.js
|
||||
share/webkit-1.0/webinspector/InspectorFrontendHostStub.js
|
||||
share/webkit-1.0/webinspector/KeyboardShortcut.js
|
||||
share/webkit-1.0/webinspector/MetricsSidebarPane.js
|
||||
share/webkit-1.0/webinspector/Object.js
|
||||
share/webkit-1.0/webinspector/ObjectPropertiesSection.js
|
||||
share/webkit-1.0/webinspector/ObjectProxy.js
|
||||
share/webkit-1.0/webinspector/Panel.js
|
||||
share/webkit-1.0/webinspector/PanelEnablerView.js
|
||||
share/webkit-1.0/webinspector/Placard.js
|
||||
share/webkit-1.0/webinspector/Popover.js
|
||||
share/webkit-1.0/webinspector/ProfileDataGridTree.js
|
||||
share/webkit-1.0/webinspector/ProfileView.js
|
||||
share/webkit-1.0/webinspector/ProfilesPanel.js
|
||||
share/webkit-1.0/webinspector/PropertiesSection.js
|
||||
share/webkit-1.0/webinspector/PropertiesSidebarPane.js
|
||||
share/webkit-1.0/webinspector/Resource.js
|
||||
share/webkit-1.0/webinspector/ResourceCategory.js
|
||||
share/webkit-1.0/webinspector/ResourceView.js
|
||||
share/webkit-1.0/webinspector/ResourcesPanel.js
|
||||
share/webkit-1.0/webinspector/ScopeChainSidebarPane.js
|
||||
share/webkit-1.0/webinspector/Script.js
|
||||
share/webkit-1.0/webinspector/ScriptView.js
|
||||
share/webkit-1.0/webinspector/ScriptsPanel.js
|
||||
share/webkit-1.0/webinspector/Section.js
|
||||
share/webkit-1.0/webinspector/Settings.js
|
||||
share/webkit-1.0/webinspector/SidebarPane.js
|
||||
share/webkit-1.0/webinspector/SidebarTreeElement.js
|
||||
share/webkit-1.0/webinspector/SourceCSSTokenizer.js
|
||||
share/webkit-1.0/webinspector/SourceFrame.js
|
||||
share/webkit-1.0/webinspector/SourceHTMLTokenizer.js
|
||||
share/webkit-1.0/webinspector/SourceJavaScriptTokenizer.js
|
||||
share/webkit-1.0/webinspector/SourceTokenizer.js
|
||||
share/webkit-1.0/webinspector/SourceView.js
|
||||
share/webkit-1.0/webinspector/StatusBarButton.js
|
||||
share/webkit-1.0/webinspector/StoragePanel.js
|
||||
share/webkit-1.0/webinspector/StylesSidebarPane.js
|
||||
share/webkit-1.0/webinspector/SummaryBar.js
|
||||
share/webkit-1.0/webinspector/TestController.js
|
||||
share/webkit-1.0/webinspector/TextEditorHighlighter.js
|
||||
share/webkit-1.0/webinspector/TextEditorModel.js
|
||||
share/webkit-1.0/webinspector/TextPrompt.js
|
||||
share/webkit-1.0/webinspector/TextViewer.js
|
||||
share/webkit-1.0/webinspector/TimelineAgent.js
|
||||
share/webkit-1.0/webinspector/TimelineGrid.js
|
||||
share/webkit-1.0/webinspector/TimelineOverviewPane.js
|
||||
share/webkit-1.0/webinspector/TimelinePanel.js
|
||||
share/webkit-1.0/webinspector/TopDownProfileDataGridTree.js
|
||||
share/webkit-1.0/webinspector/View.js
|
||||
share/webkit-1.0/webinspector/WatchExpressionsSidebarPane.js
|
||||
share/webkit-1.0/webinspector/WelcomeView.js
|
||||
share/webkit-1.0/webinspector/WorkersSidebarPane.js
|
||||
share/webkit-1.0/webinspector/audits.css
|
||||
share/webkit-1.0/webinspector/inspector.css
|
||||
share/webkit-1.0/webinspector/inspector.html
|
||||
share/webkit-1.0/webinspector/inspector.js
|
||||
share/webkit-1.0/webinspector/inspectorSyntaxHighlight.css
|
||||
share/webkit-1.0/webinspector/localizedStrings.js
|
||||
share/webkit-1.0/webinspector/popover.css
|
||||
share/webkit-1.0/webinspector/textViewer.css
|
||||
share/webkit-1.0/webinspector/treeoutline.js
|
||||
share/webkit-1.0/webinspector/utilities.js
|
||||
@comment $OpenBSD: PLIST,v 1.15 2011/05/11 06:00:08 ajacoutot Exp $
|
||||
%%gtk3%%
|
||||
!%%gtk3%%
|
||||
@exec %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas
|
||||
@unexec-delete %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas
|
||||
|
Loading…
x
Reference in New Issue
Block a user