1 2011-09-14 Ulan Degenbaev <ulan@chromium.org>
3 [v8] Improve performance of typed array copy constructor taking Array
4 https://bugs.webkit.org/show_bug.cgi?id=68015
6 Reviewed by Kenneth Russell.
8 Invoke the 'set' method of the constructed array instead of
9 copying the elements of the source array one by one.
11 Copy constructor tests already exist.
13 * ../../Source/WebCore/WebCore.gypi:
14 * ../../Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.cpp: Added.
15 * ../../Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h:
17 2011-09-14 Csaba Osztrogonác <ossy@webkit.org>
19 [GTK] Unreviewed buildfix after r95107.
23 2011-09-13 Eric Seidel <eric@webkit.org>
25 Remove ENABLE_SVG_USE as <use> is required by HTML5
26 https://bugs.webkit.org/show_bug.cgi?id=68019
28 Reviewed by Ryosuke Niwa.
30 * Source/cmake/OptionsEfl.cmake:
31 * Source/cmake/OptionsWinCE.cmake:
32 * Source/cmakeconfig.h.cmake:
35 2011-09-13 Eric Seidel <eric@webkit.org>
37 Remove ENABLE_SVG_FOREIGN_OBJECT as it is a required part of HTML5
38 https://bugs.webkit.org/show_bug.cgi?id=68018
40 Reviewed by Ryosuke Niwa.
42 * Source/cmake/OptionsEfl.cmake:
43 * Source/cmake/OptionsWinCE.cmake:
44 * Source/cmakeconfig.h.cmake:
47 2011-09-09 Rafael Antognolli <antognolli@profusion.mobi>
49 Add replacement functions for gdk ones.
50 https://bugs.webkit.org/show_bug.cgi?id=66323
52 Reviewed by Martin Robinson.
54 * Source/cmake/FindPango.cmake:
56 2011-09-09 Laszlo Gombos <laszlo.1.gombos@nokia.com>
58 [Qt] Remove common.pri
59 https://bugs.webkit.org/show_bug.cgi?id=67814
61 Reviewed by Andreas Kling.
63 * Source/WebKit.pri: Move rules from common.pri to WebKit.pri.
64 * Source/common.pri: Removed.
66 2011-09-08 Mark Pilgrim <pilgrim@chromium.org>
68 Test how HTMLAnchorElement.getParameter reacts to too few arguments
69 https://bugs.webkit.org/show_bug.cgi?id=66522
71 Reviewed by Adam Barth.
73 * LayoutTests/fast/dom/HTMLAnchorElement/get-parameter-expected.txt: Added.
74 * LayoutTests/fast/dom/HTMLAnchorElement/get-parameter.html: Added.
76 2011-09-08 Varun Jain <varunjain@google.com>
78 Implement double tap detection in GestureRecognizerChromium
79 https://bugs.webkit.org/show_bug.cgi?id=67709
81 Reviewed by Dimitri Glazkov.
83 * Source/WebCore/page/EventHandler.cpp:
84 * Source/WebCore/platform/PlatformGestureEvent.h:
86 2011-09-08 Ulan Degenbaev <ulan@chromium.org>
88 [v8] Improve performance of typed array set() taking Array
89 https://bugs.webkit.org/show_bug.cgi?id=63644
91 Reviewed by Kenneth Russell.
93 Overwrite the native 'set' method of the type arrays with JS
94 implementation after initialization of the global context.
96 Add tests for invalid and boundary offsets. No performance tests.
98 * LayoutTests/fast/canvas/webgl/array-unit-tests-expected.txt:
99 * LayoutTests/fast/canvas/webgl/array-unit-tests.html:
100 * Source/WebCore/WebCore.gyp/WebCore.gyp:
101 * Source/WebCore/WebCore.gypi:
102 * Source/WebCore/bindings/v8/V8BindingScripts.cpp: Added.
103 * Source/WebCore/bindings/v8/V8BindingScripts.h: Added.
104 * Source/WebCore/bindings/v8/V8DOMWindowShell.cpp:
105 * Source/WebCore/bindings/v8/WorkerContextExecutionProxy.cpp:
106 * Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustomScript.js: Added.
108 2011-09-08 Varun Jain <varunjain@google.com>
110 Split Tap gesture detection into TapDown and Tap.
111 We need this distinction to highlight links when they are first touched. The link is
112 followed only if the tap is completed, otherwise, if a scroll is detected, the highlight
114 https://bugs.webkit.org/show_bug.cgi?id=67645
116 Reviewed by Dimitri Glazkov.
118 * Source/WebCore/page/EventHandler.cpp:
119 * Source/WebCore/platform/PlatformGestureEvent.h:
121 2011-09-07 Alexei Svitkine <asvitkine@chromium.org>
123 Add test infrastructure to test rubber-banding overhang drawing along with layout tests for existing Chromium Mac overhang drawing in the non-gpu path.
124 https://bugs.webkit.org/show_bug.cgi?id=67511
126 Reviewed by Dimitri Glazkov.
128 * Source/autotools/symbols.filter:
130 2011-09-06 Ryosuke Niwa <rniwa@webkit.org>
132 REGRESSION(r94274): FormManagerTest.PreviewForm and FillFormNonEmptyField fail on chromium
133 https://bugs.webkit.org/show_bug.cgi?id=67453
135 Reviewed by Kent Tamura.
137 Add symbols for internals.
139 * Source/autotools/symbols.filter:
141 2011-09-04 Robin Dunn <robin@alldunn.com>
143 [wx] Enable wxWebKit to run using the wxGC Cairo backend on platforms other than GTK.
144 https://bugs.webkit.org/show_bug.cgi?id=67577
146 Reviewed by Kevin Ollivier.
150 2011-08-30 Aaron Colwell <acolwell@chromium.org>
152 Add MediaSource API to HTMLMediaElement
153 https://bugs.webkit.org/show_bug.cgi?id=64731
155 Reviewed by Eric Carlson.
159 2011-08-30 Ryosuke Niwa <rniwa@webkit.org>
161 Cleanup after r94050 and r94054.
163 * Source/autotools/symbols.filter:
165 2011-08-30 Philippe Normand <pnormand@igalia.com>
167 Unreviewed, another attempt to fix GTK build after r94038.
169 * Source/autotools/symbols.filter:
171 2011-08-29 Ryosuke Niwa <rniwa@webkit.org>
173 Build fix attempt after r94038.
175 * Source/autotools/symbols.filter:
177 2011-08-26 Varun Jain <varunjain@google.com>
179 WebViewImpl::selectionRange should return range in the right order.
180 https://bugs.webkit.org/show_bug.cgi?id=66973
182 Reviewed by Darin Fisher.
184 * Source/WebKit/chromium/public/WebWidget.h:
185 * Source/WebKit/chromium/src/WebViewImpl.cpp:
187 2011-08-25 Martin Robinson <mrobinson@igalia.com>
189 Reviewed by Xan Lopez.
191 [GTK] Switch to GTK+ 3.x by default
192 https://bugs.webkit.org/show_bug.cgi?id=63047
194 * configure.ac: Modify the default value of the --with-gtk option to be 3.0.
196 2011-08-24 Philippe Normand <pnormand@igalia.com>
198 [GTK] bump GStreamer requirement to 0.10.30
199 https://bugs.webkit.org/show_bug.cgi?id=66860
201 Reviewed by Martin Robinson.
205 2011-08-23 Steve Block <steveblock@google.com>
207 Remove all mention of removed Android files from build scripts
208 https://bugs.webkit.org/show_bug.cgi?id=66755
210 Reviewed by Tony Gentilcore.
212 * Source/cmake/WebKitPackaging.cmake:
214 2011-08-19 MORITA Hajime <morrita@google.com>
216 Spell-checking doesn't recognize word boundaries on contests inserted by execCommand('insertHTML')
217 https://bugs.webkit.org/show_bug.cgi?id=65902
219 Reviewed by Ryosuke Niwa.
221 Add export for window.internals object.
223 * Source/autotools/symbols.filter:
225 2011-08-16 Andras Becsi <abecsi@webkit.org>
227 Reviewed by Csaba Osztrogonác.
229 Need AtomicStrings for the various font family names
230 https://bugs.webkit.org/show_bug.cgi?id=28024
232 * Source/cmake/WebKitMacros.cmake: Add new macro.
234 2011-08-11 Xan Lopez <xlopez@igalia.com>
236 [GTK] Update NEWS and configure.ac for 1.5.2 release
238 Reviewed by Gustavo Noronha.
240 * configure.ac: update for release.
242 2011-08-10 Varun Jain <varunjain@google.com>
244 WebViewImpl::selectionRange should return false if there is no selection
245 https://bugs.webkit.org/show_bug.cgi?id=66012
247 Reviewed by Darin Fisher.
249 * Source/WebKit/chromium/src/WebViewImpl.cpp:
251 2011-08-10 Kevin Ollivier <kevino@theolliviers.com>
253 [wx] Unreviewed build fix. Do not build LocaleToScriptMappingICU.cpp for now
254 as ICU on Leopard is too old to build this.
258 2011-08-08 Adrienne Walker <enne@google.com>
260 Add testing for --force-compositing-mode to windows.internal
261 https://bugs.webkit.org/show_bug.cgi?id=65777
263 Reviewed by Adam Barth.
265 Add exports for Document::settings().
267 * Source/autotools/symbols.filter:
269 2011-08-09 Sheriff Bot <webkit.review.bot@gmail.com>
271 Unreviewed, rolling out r92683.
272 http://trac.webkit.org/changeset/92683
273 https://bugs.webkit.org/show_bug.cgi?id=65921
275 "Breaks Qt --minimal build. Revert pending update of the Qt
276 minimal configuration" (Requested by simathur on #webkit).
280 2011-08-09 Siddharth Mathur <siddharth.mathur@nokia.com>
282 [Qt] Simplify code by removing QT_NO_DESKTOPSERVICES and QT_NO_NETWORKDISKCACHE
283 https://bugs.webkit.org/show_bug.cgi?id=65880
285 Reviewed by Andreas Kling.
287 QDesktopServices and QNetworkDiskCache have been around for a while now. Kill flags which
288 check for their feature flags. Assume that any reasonable Qt build provides them.
292 2011-08-06 Aron Rosenberg <arosenberg@logitech.com>
294 Reviewed by Benjamin Poulain.
296 [Qt] Fix build with Intel compiler on Windows
297 https://bugs.webkit.org/show_bug.cgi?id=65088
299 Disable Intel Compiler warning 873 - function "" has no corresponding operator
300 delete (to be called if an exception is thrown during initialization of an
305 2011-08-03 Kevin Ollivier <kevino@theolliviers.com>
307 [wx] Unreviewed build fix after gesture recognizer changes.
311 2011-08-02 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
313 [Qt] [WK2] Expose web view classes to QML
314 https://bugs.webkit.org/show_bug.cgi?id=65339
316 Reviewed by Benjamin Poulain.
318 * Source/WebKit.pro: Include QML plugin subdir in the build system for WK2.
320 2011-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
322 [GTK] Install web and plugin processes in libexecdir instead of bindir
323 https://bugs.webkit.org/show_bug.cgi?id=65600
325 Reviewed by Martin Robinson.
327 * GNUmakefile.am: Initialize libexec_PROGRAMS, only used by
328 WebKit2 in this moment.
330 2011-08-03 Carlos Garcia Campos <cgarcia@igalia.com>
332 [GTK] Reorganize pkg-config files
333 https://bugs.webkit.org/show_bug.cgi?id=65548
335 Reviewed by Martin Robinson.
337 * GNUmakefile.am: Initialize pkgconfigdir and pkgconfig_DATA which
338 are common to all libraries.
339 * configure.ac: Update pkg-config files.
341 2011-08-02 Varun Jain <varunjain@google.com>
343 Missing null check in WebViewImpl::selectionRange
344 https://bugs.webkit.org/show_bug.cgi?id=65561
346 Reviewed by Darin Fisher.
348 * Source/WebKit/chromium/src/WebViewImpl.cpp:
350 2011-08-01 Scott Graham <scottmg@chromium.org>
352 REGRESSION (r39725?): Resources removed from document can not be freed until the document is deleted
353 https://bugs.webkit.org/show_bug.cgi?id=61006
355 Reviewed by Antti Koivisto.
357 Update exports for test harness.
359 * Source/autotools/symbols.filter:
361 2011-08-01 Hayato Ito <hayato@chromium.org>
363 Add support for getting an element in shadow root by its id into a window.internals object.
364 https://bugs.webkit.org/show_bug.cgi?id=64587
366 Reviewed by Hajime Morita.
368 * Source/autotools/symbols.filter:
370 2011-08-01 Neil Roberts <neil@linux.intel.com>
372 build: Fix finding the headers for GStreamer
374 The cmake files to find the various GStreamer packages were all
375 checking for the header gst/gst.h. However if gst-plugins-base is
376 installed into a separate prefix from gstreamer then all of these
377 tests would only pick up the gstreamer include path so the build
378 would fail. This patch changes it to try and find a file
379 appropriate to each package.
381 https://bugs.webkit.org/show_bug.cgi?id=64933
383 Reviewed by Martin Robinson.
385 * Source/cmake/FindGStreamer-App.cmake:
386 * Source/cmake/FindGStreamer-Base.cmake:
387 * Source/cmake/FindGStreamer-Interfaces.cmake:
388 * Source/cmake/FindGStreamer-Pbutils.cmake:
389 * Source/cmake/FindGStreamer-Plugins-Base.cmake:
390 * Source/cmake/FindGStreamer-Video.cmake:
392 2011-07-31 Daniel Bates <dbates@webkit.org>
394 Add missing semicolons to build fix attempt in <http://trac.webkit.org/changeset/92080>.
396 * Source/autotools/symbols.filter:
398 2011-07-31 Daniel Bates <dbates@webkit.org>
400 Some more fixes to the GTK build after r92059 (https://bugs.webkit.org/show_bug.cgi?id=65419).
402 * Source/autotools/symbols.filter: Export symbols needed by Internals.
404 2011-07-27 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
406 [Qt] Fix build in Qt 5 of QDeclarativeWebView
407 https://bugs.webkit.org/show_bug.cgi?id=65258
409 Reviewed by Andreas Kling.
411 In Qt 5, the QGraphicsView-based classes for QtQuick are in the
412 qtquick1 module, including QDeclarativeItem and QDeclarativeView.
416 2011-07-26 Andras Becsi <abecsi@webkit.org>
418 [Qt] [WK2] Disable the build with Qt versions older than 5.0
419 https://bugs.webkit.org/show_bug.cgi?id=65189
421 Reviewed by Csaba Osztrogonác.
423 * Source/WebKit.pro: Abort if not using Qt5.
425 2011-07-20 Pierre Rossi <pierre.rossi@gmail.com>
427 [Qt] Qt5 Build Fix: Disable the legacy mac assert macros.
429 This is done in order to prevent collision with the recently
430 introduced function QSslCertificate::verify() in Qt5.
432 https://bugs.webkit.org/show_bug.cgi?id=64855
434 Reviewed by Simon Hausmann.
438 2011-07-19 Robert Sesek <rsesek@chromium.org>
440 [Chromium] Need to remove app/ from DEPS
441 https://bugs.webkit.org/show_bug.cgi?id=64750
443 Reviewed by Tony Chang.
445 Remove Source/WebKit/chromium/app/ from .gitignore.
449 2011-07-18 MORITA Hajime <morrita@google.com>
451 [ShadowContentElement] forwarded node should be able to access its hosting content element.
452 https://bugs.webkit.org/show_bug.cgi?id=64251
454 Reviewed by Dimitri Glazkov.
456 Added GTK symbols for new window.internals methods.
458 * Source/autotools/symbols.filter:
460 2011-07-15 Martin Robinson <mrobinson@igalia.com>
462 Build fixes for WebKit2. Ensure that all generated sources are
463 on nodist primaries, that they are on forward declared variables
464 so that BUILT_SOURCES is calculated properly and that zlib is
465 included during linking (for WOFF support).
468 * Source/autotools/webkit.m4: Include test for zlib.
470 2011-07-15 Carlos Garcia Campos <cgarcia@igalia.com>
472 [GTK] Build plugin process by default when building WebKit2
473 https://bugs.webkit.org/show_bug.cgi?id=64592
475 Reviewed by Philippe Normand.
479 2011-07-14 Carlos Garcia Campos <cgarcia@igalia.com>
481 Reviewed by Martin Robinson.
483 [GTK] Implement Plugin Process
484 https://bugs.webkit.org/show_bug.cgi?id=60546
486 * configure.ac: Always check for gtk2 when building the plugin
489 2011-07-14 MORITA Hajime <morrita@google.com>
491 Unreviewed, rolling out r90976, r90981, and r90985.
492 http://trac.webkit.org/changeset/90976
493 http://trac.webkit.org/changeset/90981
494 http://trac.webkit.org/changeset/90985
495 https://bugs.webkit.org/show_bug.cgi?id=64251
499 * Source/autotools/symbols.filter:
501 2011-07-14 MORITA Hajime <morrita@google.com>
503 Unreviewed attempt to build fix.
505 * Source/autotools/symbols.filter:
507 2011-07-13 MORITA Hajime <morrita@google.com>
509 [ShadowContentElement] forwarded node should be able to access its hosting content element.
510 https://bugs.webkit.org/show_bug.cgi?id=64251
512 Reviewed by Dimitri Glazkov.
514 Added GTK symbols for new window.internals methods.
516 * Source/autotools/symbols.filter:
518 2011-07-06 Gyuyoung Kim <gyuyoung.kim@samsung.com>
520 [EFL] Add Fullscreen API feature
521 https://bugs.webkit.org/show_bug.cgi?id=63975
523 This is just to add disabled ENABLE_FULLSCREEN_API to OptionEFl.cmake.
524 ENABLE_FULLSCREEN_API will be enabled after finishing missing implementations.
526 Reviewed by Adam Barth.
528 * Source/cmake/OptionsEfl.cmake: Add disabled ENABLE_FULLSCREEN_API feature.
529 * Source/cmakeconfig.h.cmake: ditto.
531 2011-07-05 Vsevolod Vlasov <vsevik@chromium.org>
533 Web Inspector: Show content for plugin requests in network panel.
534 https://bugs.webkit.org/show_bug.cgi?id=30080
536 Added GTK symbols for new window.internals methods.
538 Reviewed by Pavel Feldman.
540 * Source/autotools/symbols.filter:
542 2011-07-04 Sheriff Bot <webkit.review.bot@gmail.com>
544 Unreviewed, rolling out r90373.
545 http://trac.webkit.org/changeset/90373
546 https://bugs.webkit.org/show_bug.cgi?id=63917
548 Breaks Qt Linux Release minimal (Requested by vsevik on
551 * Source/autotools/symbols.filter:
553 2011-07-04 Vsevolod Vlasov <vsevik@chromium.org>
555 Web Inspector: Show content for plugin requests in network panel.
556 https://bugs.webkit.org/show_bug.cgi?id=30080
558 Reviewed by Pavel Feldman.
560 * Source/autotools/symbols.filter:
562 2011-07-01 Tony Chang <tony@chromium.org>
564 Add chromium sql directory to git ignore.
568 2011-07-01 Patrick Gansterer <paroga@webkit.org>
570 Reviewed by Daniel Bates.
572 [CMake] Add cpu detection for MIPS
573 https://bugs.webkit.org/show_bug.cgi?id=63693
575 * Source/CMakeLists.txt:
577 2011-07-01 Joone Hur <joone.hur@collabora.co.uk>
579 Reviewed by Martin Robinson.
581 [GTK] Add DeviceOrientation feature
582 https://bugs.webkit.org/show_bug.cgi?id=63720
584 Add configure option to enable/disable DeviceOrientation feature.
588 2011-06-28 Joone Hur <joone.hur@collabora.co.uk>
590 Reviewed by Martin Robinson.
592 [GTK] Rename 3D transforms to 3D rendering
593 https://bugs.webkit.org/show_bug.cgi?id=63508
595 WebKitGtk+ provides the 3D transforms feature, but it was
596 renamed to 3D Rendering. This features supports CSS 3D trasnforms.
598 * configure.ac: Rename ENABLE_3D_TRANSFORMS to ENABLE_3D_RENDERING.
600 2011-06-27 Alexis Menard <alexis.menard@openbossa.org>
602 Reviewed by Kenneth Rohde Christiansen.
604 [Qt] Remove Phonon MediaPlayer from the tree.
605 https://bugs.webkit.org/show_bug.cgi?id=63448
607 Remvove from the build.
611 2011-06-24 Dominic Cooney <dominicc@chromium.org>
613 Reviewed by Dimitri Glazkov.
615 Convert shadow DOM-related tests to use window.internals
616 https://bugs.webkit.org/show_bug.cgi?id=61671
618 * Source/autotools/symbols.filter: Export symbols for GTK.
620 2011-06-24 Carlos Garcia Campos <cgarcia@igalia.com>
622 Reviewed by Martin Robinson.
624 [GTK] Add more debug options to compilation
625 https://bugs.webkit.org/show_bug.cgi?id=63318
627 Add --enable-debug-symbols to enable/disable compilation with
628 debug symbols and --enable-debug-features to enable/disable debug
629 features. Both options are unconditionally enabled for debug
634 2011-06-23 Oliver Hunt <oliver@apple.com>
636 Qt build-fix: remove warning that no other platform appears to use.
637 Someone can add it back if they really feel it's needed.
641 2011-06-22 Ryuan Choi <ryuan.choi@samsung.com>
643 Reviewed by Antonio Gomes.
645 [EFL] Add an option to enable Device Orientation Event.
646 https://bugs.webkit.org/show_bug.cgi?id=63120
648 ADD ENABLE_DEVICE_ORIENTATION.
650 * Source/cmake/OptionsEfl.cmake:
651 * Source/cmakeconfig.h.cmake:
653 2011-06-22 Nate Chapin <japhet@chromium.org>
655 Reviewed by Adam Barth.
657 Add symbols required for window.internals.
658 https://bugs.webkit.org/show_bug.cgi?id=62066
660 * Source/autotools/symbols.filter:
662 2011-06-22 Martin Robinson <mrobinson@igalia.com>
664 Reviewed by Adam Roben.
666 [GTK] Implement pixel dump support for WebKitTestRunner
667 https://bugs.webkit.org/show_bug.cgi?id=58242
669 * GNUmakefile.am: Reference the new ImageDiff GNUmakefile.
671 2011-06-21 MORITA Hajime <morrita@google.com>
673 Unreviewed, rolling out r89401 and r89403.
674 http://trac.webkit.org/changeset/89401
675 http://trac.webkit.org/changeset/89403
676 https://bugs.webkit.org/show_bug.cgi?id=62970
678 Breaks mac build and mistakenly enables the spellcheck API
682 2011-06-20 MORITA Hajime <morrita@google.com>
684 Reviewed by Kent Tamura.
686 Spellcheck API should be build-able.
687 https://bugs.webkit.org/show_bug.cgi?id=62970
691 2011-06-20 MORITA Hajime <morrita@google.com>
693 Unreviewed GTK build fix.
694 This change corrected syntax error on symbols.filter.
696 * Source/autotools/symbols.filter:
698 2011-06-19 MORITA Hajime <morrita@google.com>
700 Unreviewed GTK build fix.
702 * Source/autotools/symbols.filter:
704 2011-06-19 MORITA Hajime <morrita@google.com>
706 Reviewed by Dimitri Glazkov.
708 The internals object should have createShadowContentElement()
709 https://bugs.webkit.org/show_bug.cgi?id=62432
711 * Source/autotools/symbols.filter: Added some more symbols necessary for
712 window.internals to function to the global symbol list.
715 2011-06-19 Adam Bergkvist <adam.bergkvist@ericsson.com>
717 Reviewed by Martin Robinson.
719 [GTK] Enable Media Stream feature and make it default on
720 https://bugs.webkit.org/show_bug.cgi?id=60394
724 2011-06-17 Joone Hur <joone.hur@collabora.co.uk>
726 Reviewed by Martin Robinson.
728 [GTK] Replace GdkRectangle by cairo_rectangle_int_t
729 https://bugs.webkit.org/show_bug.cgi?id=60687
731 Replace GdkRectangle by cairo_rectangle_int_t.
733 * configure.ac: Check whether Cairo version is higher than 1.10.
735 2011-06-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
737 Reviewed by Eric Seidel.
739 [CMAKE] Enable METER_TAG of HTML5
740 https://bugs.webkit.org/show_bug.cgi?id=62697
742 Support for meter tag of html5 in CMake build system. However, this feature is
743 only enabled on EFL port now.
745 * Source/cmake/OptionsEfl.cmake: Add ENABLE_METER_TAG.
746 * Source/cmakeconfig.h.cmake:ditto.
748 2011-06-16 Carlos Garcia Campos <cgarcia@igalia.com>
750 Reviewed by Xan Lopez.
752 [GTK] Remove support for GTK+2 in WebKit2
753 https://bugs.webkit.org/show_bug.cgi?id=62794
755 * configure.ac: Make WebKit2 require GTK+ 3.x.
757 2011-06-15 Ryuan Choi <ryuan.choi@samsung.com>
759 Rubber stamped by Eric Seidel.
761 [CMAKE][WK2] Add an option to build webkit2.
762 https://bugs.webkit.org/show_bug.cgi?id=62260
764 Add ENABLE_WEBKIT2 to build WebKit2 using CMake and ENABLE_WEBKIT to disable
767 * Source/CMakeLists.txt:
768 * Source/cmake/WebKitFS.cmake:
770 2011-06-14 Ryuan Choi <ryuan.choi@samsung.com>
772 Reviewed by Eric Seidel.
774 [CMAKE] Add ENABLE_TOUCH_ICON_LOADING feature.
775 https://bugs.webkit.org/show_bug.cgi?id=62604
777 Add feature to enable or disable ENABLE_TOUCH_ICON which supports
778 apple-touch-icon and apple-touch-icon-precomposed in link tag.
780 * Source/cmake/OptionsEfl.cmake:
781 * Source/cmakeconfig.h.cmake:
783 2011-06-13 Joone Hur <joone.hur@collabora.co.uk>
785 Reviewed by Martin Robinson.
787 [GTK] Add configure option to enable/disable register protocol handler
788 https://bugs.webkit.org/show_bug.cgi?id=62534
790 This patch just adds configure option to enable/disable register protocol handler.
791 So, it needs more code to use register protocol handler.
793 * configure.ac: Add configure option to enable/disable register protocol handler.
795 2011-06-13 Joone Hur <joone.hur@collabora.co.uk>
797 Reviewed by Martin Robinson.
799 [GTK] Need to report whether touch icon loading is enabled
800 https://bugs.webkit.org/show_bug.cgi?id=62532
802 It needs to report whether touch icon loading is enabled.
804 * configure.ac: Updated option parsing code for loading touch icons.
806 2011-06-13 Lucas De Marchi <lucas.demarchi@profusion.mobi>
808 Reviewed by Eric Seidel.
810 [CMAKE] Conditionally generate DerivedSources
811 https://bugs.webkit.org/show_bug.cgi?id=62277
813 Speedup build by not generating DerivedSources of features that are
814 disabled. This was already been done for some features like ENABLE_SVG
815 and now it's extended the following features: ENABLE_DATABASE,
816 ENABLE_INDEXED_DATABASE, ENABLE_DOM_STORAGE, ENABLE_XPATH,
817 ENABLE_OFFLINE_WEB_APPLICATIONS, ENABLE_WEB_SOCKETS,
818 ENABLE_DATA_TRANSFER_ITEMS.
820 * Source/cmakeconfig.h.cmake: add definition for INDEXED_DATABASE
822 2011-06-10 Lucas De Marchi <lucas.demarchi@profusion.mobi>
824 Reviewed by Kenneth Rohde Christiansen.
826 [CMAKE] Add generic support for building with WebGL
827 https://bugs.webkit.org/show_bug.cgi?id=62376
829 Add files that need to be compiled in every port for supporting WebGL.
830 Each port still needs to add its specific files to
831 CMakeLists${PORT}.txt. Therefore we do not enable WebGL in any port
834 * Source/CMakeLists.txt: Add files needed to support WebGL.
835 * Source/cmake/OptionsCommon.cmake: Find required OpenGL package.
836 * Source/cmakeconfig.h.cmake: define ENABLE_WEBGL this feature is
839 2011-06-09 Lucas De Marchi <lucas.demarchi@profusion.mobi>
841 Reviewed by Antonio Gomes.
843 [CMAKE] Never let USER_AGENT defined to nothing
844 https://bugs.webkit.org/show_bug.cgi?id=62410
846 This patch is similar to r88342, but sets WEBKIT_USER_AGENT_*
847 definitions only if that port defined it. A port might prefer to set it
848 in other place, e.g. a header that is part of the public API (like GTK
851 By using #cmakedefine instead of #define, if that variable is not set
852 in CMake it will expand to:
854 /* #define WEBKIT_USER_AGENT_MAJOR_VERSION */
856 * Source/cmake/OptionsEfl.cmake:
857 * Source/cmakeconfig.h.cmake:
859 2011-06-08 Gyuyoung Kim <gyuyoung.kim@samsung.com>
861 Reviewed by Antonio Gomes.
863 [EFL] Enable PROGRESS_TAG feature
864 https://bugs.webkit.org/show_bug.cgi?id=62212
866 * Source/cmake/OptionsEfl.cmake: Turn on PROGRESS_TAG by default.
868 2011-06-08 Lucas De Marchi <lucas.demarchi@profusion.mobi>
870 Reviewed by Kenneth Rohde Christiansen.
872 [CMAKE] Never let a WTF_FEATURE defined to nothing
873 https://bugs.webkit.org/show_bug.cgi?id=60820
875 If a port doesn't want to give the user some configure options,
876 nevertheless it would have to define this feature as OFF. Otherwise
877 there's a build error because the generated cmakeconfig.h is not
878 parsed correctly by ENABLE macro, which expects each feature to be
879 either undefined or defined to TRUE/FALSE.
881 * Source/cmake/WebKitFeatures.cmake: Use a variable with the same name
882 of the feature, which allows CONFIGURE_FILE() to replace it in the new
884 * Source/cmakeconfig.h.cmake: use #cmakedefine01 instead of #define
885 with another variable. This way the feature will always be 0 or 1 and
886 it will never be left undefined.
888 2011-06-07 Lucas De Marchi <lucas.demarchi@profusion.mobi>
890 Reviewed by Antonio Gomes.
892 [EFL] Remove Ecore_X bits from PlatformScreenEfl
893 https://bugs.webkit.org/show_bug.cgi?id=61649
895 Remove the need for Ecore_X and some X calls by always using
896 new functions available in EFL to get the screen size.
898 * Source/cmake/FindEFL.cmake: Bump ecore and ecore-evas versions.
900 2011-06-07 Andreas Kling <andreas.kling@nokia.com>
902 Reviewed by Laszlo Gombos.
904 [Qt] Fix Symbian build with RVCT 2.x
905 https://bugs.webkit.org/show_bug.cgi?id=62205
907 RVCT 2.x doesn't support (or need) the --signed_bitfields command-line
908 option, so restrict it to version 4.x of the compiler.
912 2011-06-06 Martin Robinson <mrobinson@igalia.com>
914 Fix the GTK+ build by ensuring that the autogenerated sources
915 necessary for libWebCoreInternals are recorded in a predeclared
916 variable before assigning to BUILT_SOURCES.
918 * GNUmakefile.am: Assign libWebCoreInternals built sources to
919 libwebcoreinternals_built_sources before adding to the source list
920 and to BUILT_SOURCES.
922 2011-06-06 Carlos Garcia Campos <cgarcia@igalia.com>
924 Unreviewed. Fix the GTK+ build.
926 * GNUmakefile.am: Add javascriptcore_cflags variable.
928 2011-06-04 Kevin Ollivier <kevino@theolliviers.com>
930 [wx] Unreviewed build fix. Restore the PPC build and allow users to specify architectures
935 2011-06-04 Adam Barth <abarth@webkit.org>
937 Configure new commit-queue instance. (Please ignore.)
939 2011-06-03 Martin Robinson <mrobinson@igalia.com>
941 Reviewed by Dimitri Glazkov.
943 Teach Gtk build about window.internals
944 https://bugs.webkit.org/show_bug.cgi?id=61071
946 * Source/autotools/symbols.filter: Added some symbols necessary for
947 window.internals to function to the global symbol list.
949 2011-06-03 Alexis Menard <alexis.menard@openbossa.org>
951 Reviewed by Benjamin Poulain.
953 [Qt] Build fix of QtWebKit 2.2 when inside Qt tree with GCC 4.6.
954 https://bugs.webkit.org/show_bug.cgi?id=61957
956 When building inside the Qt source tree, qmake always append the mkspecs
957 defines after ours. We have to workaround and make sure that we append
958 our flags after the qmake variable used inside Qt. This workaround was provided
959 by our qmake folks. We need to append in both case because qmake behave differently
960 when called with -spec or via SUBDIR+=.
964 2011-06-02 Alexis Menard <alexis.menard@openbossa.org>
966 Reviewed by Andreas Kling.
968 [Qt] Build fix of QtWebKit 2.2 when inside Qt tree with GCC 4.6.
969 https://bugs.webkit.org/show_bug.cgi?id=61957
971 When building inside the Qt source tree, qmake always append the mkspecs
972 defines after ours. We have to workaround and make sure that we append
973 our flags after the qmake variable used inside Qt. This workaround was provided
978 2011-03-30 Martin Robinson <mrobinson@igalia.com>
980 Reviewed by Adam Roben.
982 [GTK] [WebKit2] Implement a basic WebKitTestRunner
983 https://bugs.webkit.org/show_bug.cgi?id=57068
985 * GNUmakefile.am: Added reference to WebKitTestRunner GNUmakefile.
987 2011-05-31 Xan Lopez <xlopez@igalia.com>
989 Reviewed by Martin Robinson.
991 Bump version to 1.5.1.
995 2011-05-25 Gregg Tavares <gman@chromium.org>
997 Reviewed by Kenneth Russell.
999 Add 'noExtensions' option to Web/GraphicsContext3D attributes.
1000 https://bugs.webkit.org/show_bug.cgi?id=61460
1002 * Source/WebCore/html/canvas/WebGLRenderingContext.cpp:
1003 * Source/WebCore/platform/graphics/GraphicsContext3D.h:
1004 * Source/WebKit/chromium/public/WebGraphicsContext3D.h:
1005 * Source/WebKit/chromium/src/GraphicsContext3DChromium.cpp:
1007 2011-05-24 Keishi Hattori <keishi@webkit.org>
1009 Reviewed by Kent Tamura.
1011 Disable textfield implementation of <input type=color>. Add INPUT_COLOR feature flag. Add input color sanitizer.
1012 https://bugs.webkit.org/show_bug.cgi?id=61273
1014 * configure.ac: Added INPUT_COLOR feature flag.
1016 2011-05-24 Jay Civelli <jcivelli@chromium.org>
1018 Reviewed by Adam Barth.
1020 Adding MHTML reading support.
1021 https://bugs.webkit.org/show_bug.cgi?id=7168
1025 2011-05-23 Ryuan Choi <ryuan.choi@samsung.com>
1027 Rubber stamped by Eric Seidel.
1029 [CMAKE] Refactoring wtf related code.
1030 https://bugs.webkit.org/show_bug.cgi?id=60146
1032 Move WTF_INCLUDE_DIRECTORIES to Source/JavaScriptCore/wtf/CMakeLists.txt.
1034 * Source/cmake/OptionsCommon.cmake:
1035 * Source/cmake/OptionsEfl.cmake:
1037 2011-05-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1039 Unreviewed. Fix build break.
1041 * Source/cmake/WebKitMacros.cmake: Add -i option in order to include Lookup.h
1043 2011-05-16 Carlos Garcia Campos <cgarcia@igalia.com>
1045 Reviewed by Martin Robinson.
1047 [GTK] Enable building GTK port with ENABLE_PLUGIN_PROCESS=1
1048 https://bugs.webkit.org/show_bug.cgi?id=58223
1050 * configure.ac: Add configure option to enable/disable plugin
1053 2011-05-12 Gregg Tavares <gman@chromium.org>
1055 Reviewed by Kenneth Russell.
1057 Add option to select GraphicsContext3D implementation.
1058 https://bugs.webkit.org/show_bug.cgi?id=60297
1060 * Source/WebKit/chromium/DEPS:
1061 * Tools/DumpRenderTree/chromium/DumpRenderTree.cpp:
1063 2011-05-12 Lucas De Marchi <lucas.demarchi@profusion.mobi>
1065 Reviewed by Antonio Gomes.
1067 [CMAKE] Add option to unconditionally enable/disable a feature
1068 https://bugs.webkit.org/show_bug.cgi?id=60643
1070 Create an argument to be used in WEBKIT_FEATURE macro, allowing a port
1071 to enable a feature without showing to user that it can be disabled.
1072 This is useful if a port needs an option to be always ON/OFF and
1073 changing it will break the build.
1075 This way it's possible to add mandatory features to each port without
1076 touching the cmakeconfig.cmake file.
1078 * Source/cmake/WebKitFeatures.cmake:
1080 2011-05-11 Dmitry Lomov <dslomov@google.com>
1082 Reviewed by David Levin.
1084 https://bugs.webkit.org/show_bug.cgi?id=59561
1085 Switch TestWebKitAPI to GTest
1087 Fixes Makefiles and WinCairo build as well
1089 * Source/ThirdParty/gtest/README.WebKit:
1090 * Source/ThirdParty/gtest/msvc/gtest-md.vcproj:
1091 * Source/ThirdParty/gtest/xcode/Config/General.xcconfig:
1092 * Source/ThirdParty/gtest/xcode/Makefile: Added.
1094 2011-05-09 Dmitry Lomov <dslomov@google.com>
1096 Reviewed by Sam Weinig.
1098 Switch TestWebKitAPI to GTest
1099 https://bugs.webkit.org/show_bug.cgi?id=59561
1101 * Source/ThirdParty/gtest/README.WebKit:
1102 * Source/ThirdParty/gtest/msvc/gtest-md.vcproj:
1104 2011-05-09 Xan Lopez <xlopez@igalia.com>
1106 Reviewed by Gustavo Noronha.
1108 Fix logic in GCC version detection, it was reversed.
1112 2011-05-09 Alexis Menard <alexis.menard@openbossa.org>
1114 Reviewed by Andreas Kling.
1116 [Qt] Fix the build on Embedded Linux.
1117 https://bugs.webkit.org/show_bug.cgi?id=60347
1119 qpa is the name for lighthouse but the old name for Qt for Embedded Linux should
1120 still be used in order to build properly.
1122 * Source/WebKit.pri:
1124 2011-05-05 Kevin Ollivier <kevino@theolliviers.com>
1126 [wx] Unreviewed build fix. Add LocalizedDateNone.cpp to the build.
1130 2011-05-05 Prasanth Ullattil <prasanth.ullattil@nokia.com>
1132 Reviewed by Simon Hausmann.
1134 Install correct header files for webkit.
1136 Since WebKit is no longer inside Qt, we can remove the detection for
1139 [Qt] Install targets are not working correctly for modularized Qt and QtWebkit
1140 https://bugs.webkit.org/show_bug.cgi?id=57621
1142 * Source/sync.profile:
1144 2011-05-05 Adam Barth <abarth@webkit.org>
1146 Remove a couple stray mentions of WML that I missed before.
1150 2011-05-05 Alexis Menard <alexis.menard@openbossa.org>
1152 Reviewed by Benjamin Poulain.
1154 [Qt] Make QtWebKit build when using gcc 4.6.0
1155 https://bugs.webkit.org/show_bug.cgi?id=60265
1157 If QtWebKit is compiled with gcc 4.6.0 and the build is not done
1158 with c++0x support we need to deactivate warnings about compatibility.
1159 Some WebKit types have names which conflicts with upcoming c++0x
1160 types. If QtWebKit is built with c++0x support, WebKit has code to
1161 fallback to the standard type rather than the WebKit implementation.
1162 For example nullptr will be the one of the std if build options turns on
1165 * Source/WebKit.pri:
1167 2011-05-04 Xan Lopez <xlopez@igalia.com>
1169 Reviewed by Martin Robinson.
1171 [GTK] Fix warnings in webkit.m4 with autoconf 2.68
1172 https://bugs.webkit.org/show_bug.cgi?id=60189
1174 Use AC_LANG_SOURCE when passing source code to AC_COMPILE_IFELSE
1177 * Source/autotools/webkit.m4: ditto.
1179 2011-05-04 Martin Robinson <mrobinson@igalia.com>
1181 Fix the WebKitGTK+ build.
1183 * configure.ac: Added option parsing code for loading touch icons.
1185 2011-05-03 Lucas De Marchi <lucas.demarchi@profusion.mobi>
1187 Reviewed by Xan Lopez.
1189 [CMAKE] Remove C++0x compat mode warnings for GCC >= 4.6.0
1190 https://bugs.webkit.org/show_bug.cgi?id=60041
1192 Hardcode -Wno-c++0x-compat for the default compiler (if version >=
1193 4.6.0) until our codebase is ready. This is the same as done for
1196 * Source/cmake/WebKitHelpers.cmake: ditto.
1198 2011-05-03 Lucas De Marchi <lucas.demarchi@profusion.mobi>
1200 Unreviewed, rolling out r85624.
1201 http://trac.webkit.org/changeset/85624
1203 The same command is used also for make_names.pl, which breaks
1206 * Source/cmake/OptionsCommon.cmake: ditto.
1208 2011-05-03 Leandro Pereira <leandro@profusion.mobi>
1210 [EFL] Unreviewed build fix for NETWORK_BACKEND=curl.
1212 Force linking with zlib so that uncompress() exists.
1214 * Source/cmake/OptionsEfl.cmake: Find zlib.
1216 2011-05-03 Lucas De Marchi <lucas.demarchi@profusion.mobi>
1218 [CMAKE] Unreviewed build fix for gcc >= 4.6
1220 Same fix as done in r84123. CMake explicitly pass the arguments to
1221 make_names.pl, so let's make them the same.
1223 * Source/cmake/OptionsCommon.cmake: ditto.
1225 2011-05-02 Adam Klein <adamk@chromium.org>
1227 Reviewed by Tony Chang.
1229 Roll chromium DEPS to r83722, add new crypto directory to DEPS
1230 https://bugs.webkit.org/show_bug.cgi?id=59992
1233 Ignore new chromium/crypto directory.
1235 2011-05-03 Carlos Garcia Campos <cgarcia@igalia.com>
1237 Reviewed by Eric Seidel.
1239 [GTK] Build webkit1 even when webkit2 is enabled
1240 https://bugs.webkit.org/show_bug.cgi?id=59695
1245 2011-05-01 ojab <ojab@ojab.ru>
1247 Reviewed by Eric Seidel.
1249 --disable-video-track if --disable-video
1250 https://bugs.webkit.org/show_bug.cgi?id=59605
1254 2011-04-29 Dean Jackson <dino@apple.com>
1256 Reviewed by Simon Fraser.
1258 Add ENABLE macro for WebKitAnimation
1259 https://bugs.webkit.org/show_bug.cgi?id=59729
1261 Add new feature to toggle WebKit Animation API.
1265 2011-04-29 Kevin Ollivier <kevino@theolliviers.com>
1267 [wx] Unreviewed build fix. Fix library copying logic for wxMSW 2.9.x.
1271 2011-04-28 Adam Barth <abarth@webkit.org>
1273 Reviewed by Eric Seidel.
1276 https://bugs.webkit.org/show_bug.cgi?id=59678
1278 Remove WML configuration option from the CMake build system.
1280 * Source/cmake/OptionsEfl.cmake:
1281 * Source/cmake/OptionsWinCE.cmake:
1282 * Source/cmakeconfig.h.cmake:
1284 2011-04-28 Xan Lopez <xlopez@igalia.com>
1286 Reviewed by Martin Robinson.
1288 [Gtk] Split JSC and WebCore builds
1289 https://bugs.webkit.org/show_bug.cgi?id=19428
1291 Add a pkg-config file for JavaScriptCoreGTK+.
1293 * configure.ac: generate the final pkg-config file from our .in
1296 2011-04-28 Xan Lopez <xlopez@igalia.com>
1298 Reviewed by Martin Robinson.
1300 [Gtk] Split JSC and WebCore builds
1301 https://bugs.webkit.org/show_bug.cgi?id=19428
1303 Build JavaScriptCore as a libtool shared library instead of a
1304 private convenience library.
1306 * GNUmakefile.am: remove convenience library definition for jsc.
1308 2011-04-28 Xan Lopez <xlopez@igalia.com>
1310 Reviewed by Martin Robinson.
1312 [GTK] Remove C++0x compat mode warnings for GCC >= 4.6.0
1313 https://bugs.webkit.org/show_bug.cgi?id=59718
1315 Hardcode -Wno-c++0x-compat for the default compiler (if version >=
1316 4.6.0) until our codebase is ready.
1318 * configure.ac: do that.
1320 2011-04-27 Yi Shen <yi.4.shen@nokia.com>
1322 Reviewed by Kenneth Rohde Christiansen.
1324 [Qt] Upstream Symbian platform plugin
1325 https://bugs.webkit.org/show_bug.cgi?id=58435
1327 Upstream Symbian platform plugin.
1329 * Source/WebKit.pro: Add platformplugin path to the SUBDIRS.
1331 2011-04-27 Steve Block <steveblock@google.com>
1333 Reviewed by David Levin.
1335 Remove Android build system
1336 https://bugs.webkit.org/show_bug.cgi?id=48111
1338 This is to avoid the maintenance burden until the Android port is
1341 * Source/Android.mk: Removed.
1343 2011-04-26 Kevin Ollivier <kevino@theolliviers.com>
1345 Rubberstamped by Eric Seidel.
1347 Enable waf to be used to build other ports
1348 https://bugs.webkit.org/show_bug.cgi?id=58213
1352 2011-04-22 Sheriff Bot <webkit.review.bot@gmail.com>
1354 Unreviewed, rolling out r84627.
1355 http://trac.webkit.org/changeset/84627
1356 https://bugs.webkit.org/show_bug.cgi?id=59271
1358 It broke Symbian build (Requested by Ossy on #webkit).
1360 * Source/WebKit.pro:
1362 2011-04-22 Yi Shen <yi.4.shen@nokia.com>
1364 Reviewed by Kenneth Rohde Christiansen.
1366 [Qt] Upstream Symbian platform plugin
1367 https://bugs.webkit.org/show_bug.cgi?id=58435
1369 Upstream Symbian platform plugin.
1371 * Source/WebKit.pro: Add platformplugin path to the SUBDIRS.
1373 2011-04-21 Maciej Stachowiak <mjs@apple.com>
1375 Reviewed by Adam Roben.
1377 Add a feature define to allow <details> and <summary> to be disabled
1378 https://bugs.webkit.org/show_bug.cgi?id=59118
1379 <rdar://problem/9257045>
1383 2011-04-18 Evan Martin <evan@chromium.org>
1385 Reviewed by Eric Seidel.
1387 [chromium] expose title direction to webkit client
1388 https://bugs.webkit.org/show_bug.cgi?id=58823
1390 * Tools/DumpRenderTree/chromium/LayoutTestController.cpp:
1391 * Tools/DumpRenderTree/chromium/LayoutTestController.h:
1392 Adapt to new API. Expose title direction to JS so it can be tested.
1394 * Tools/DumpRenderTree/chromium/WebViewHost.cpp:
1395 * Tools/DumpRenderTree/chromium/WebViewHost.h:
1398 2011-04-18 Hans Wennborg <hans@chromium.org>
1400 Reviewed by Steve Block.
1402 LevelDB backend for IndexedDB
1403 https://bugs.webkit.org/show_bug.cgi?id=57372
1405 Add LevelDB wrappers to Android.mk.
1407 * Source/Android.mk:
1409 2011-04-18 Patrick Gansterer <paroga@webkit.org>
1411 Reviewed by Pavel Feldman.
1413 REGRESSION (r81479): generate-inspector-idl fails on native win32
1414 https://bugs.webkit.org/show_bug.cgi?id=58315
1416 Disable git autocrlf for Inspector.json.
1420 2011-04-16 Patrick Gansterer <paroga@webkit.org>
1422 Reviewed by Eric Seidel.
1424 Rename PLATFORM(CAIRO) to USE(CAIRO)
1425 https://bugs.webkit.org/show_bug.cgi?id=55192
1427 * Source/cmake/OptionsEfl.cmake:
1429 2011-04-15 Shishir Agrawal <shishir@chromium.org>
1431 Reviewed by James Robinson.
1433 Add a flag to guard Page Visibility API changes.
1434 https://bugs.webkit.org/show_bug.cgi?id=58464
1437 http://lists.w3.org/Archives/Public/public-webapps/2011JanMar/0175.html
1441 2011-04-15 Xan Lopez <xlopez@igalia.com>
1443 Reviewed by Martin Robinson.
1445 * configure.ac: bump to 1.5.0, 1.4.0 will be released from a
1446 branch and was already cut off.
1448 2011-04-15 Anna Cavender <annacc@chromium.org>
1450 Reviewed by Eric Carlson.
1452 Renaming TRACK feature define to VIDEO_TRACK
1453 https://bugs.webkit.org/show_bug.cgi?id=53556
1457 2011-04-13 Dmitry Lomov <dslomov@google.com>
1459 Reviewed by David Levin.
1461 Add GTest unit-testing framework to WebKit
1462 https://bugs.webkit.org/show_bug.cgi?id=58507
1464 * Source/ThirdParty/gtest/CHANGES: Added.
1465 * Source/ThirdParty/gtest/CMakeLists.txt: Added.
1466 * Source/ThirdParty/gtest/CONTRIBUTORS: Added.
1467 * Source/ThirdParty/gtest/COPYING: Added.
1468 * Source/ThirdParty/gtest/Makefile.am: Added.
1469 * Source/ThirdParty/gtest/README: Added.
1470 * Source/ThirdParty/gtest/README.WebKit: Added.
1471 * Source/ThirdParty/gtest/codegear/gtest.cbproj: Added.
1472 * Source/ThirdParty/gtest/codegear/gtest.groupproj: Added.
1473 * Source/ThirdParty/gtest/codegear/gtest_all.cc: Added.
1474 * Source/ThirdParty/gtest/codegear/gtest_link.cc: Added.
1475 * Source/ThirdParty/gtest/codegear/gtest_main.cbproj: Added.
1476 * Source/ThirdParty/gtest/codegear/gtest_unittest.cbproj: Added.
1477 * Source/ThirdParty/gtest/configure.ac: Added.
1478 * Source/ThirdParty/gtest/include/gtest/gtest-death-test.h: Added.
1479 * Source/ThirdParty/gtest/include/gtest/gtest-message.h: Added.
1480 * Source/ThirdParty/gtest/include/gtest/gtest-param-test.h: Added.
1481 * Source/ThirdParty/gtest/include/gtest/gtest-param-test.h.pump: Added.
1482 * Source/ThirdParty/gtest/include/gtest/gtest-spi.h: Added.
1483 * Source/ThirdParty/gtest/include/gtest/gtest-test-part.h: Added.
1484 * Source/ThirdParty/gtest/include/gtest/gtest-typed-test.h: Added.
1485 * Source/ThirdParty/gtest/include/gtest/gtest.h: Added.
1486 * Source/ThirdParty/gtest/include/gtest/gtest_pred_impl.h: Added.
1487 * Source/ThirdParty/gtest/include/gtest/gtest_prod.h: Added.
1488 * Source/ThirdParty/gtest/include/gtest/internal/gtest-death-test-internal.h: Added.
1489 * Source/ThirdParty/gtest/include/gtest/internal/gtest-filepath.h: Added.
1490 * Source/ThirdParty/gtest/include/gtest/internal/gtest-internal.h: Added.
1491 * Source/ThirdParty/gtest/include/gtest/internal/gtest-linked_ptr.h: Added.
1492 * Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util-generated.h: Added.
1493 * Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: Added.
1494 * Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util.h: Added.
1495 * Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h: Added.
1496 * Source/ThirdParty/gtest/include/gtest/internal/gtest-string.h: Added.
1497 * Source/ThirdParty/gtest/include/gtest/internal/gtest-tuple.h: Added.
1498 * Source/ThirdParty/gtest/include/gtest/internal/gtest-tuple.h.pump: Added.
1499 * Source/ThirdParty/gtest/include/gtest/internal/gtest-type-util.h: Added.
1500 * Source/ThirdParty/gtest/include/gtest/internal/gtest-type-util.h.pump: Added.
1501 * Source/ThirdParty/gtest/m4/acx_pthread.m4: Added.
1502 * Source/ThirdParty/gtest/m4/gtest.m4: Added.
1503 * Source/ThirdParty/gtest/make/Makefile: Added.
1504 * Source/ThirdParty/gtest/msvc/gtest-md.sln: Added.
1505 * Source/ThirdParty/gtest/msvc/gtest-md.vcproj: Added.
1506 * Source/ThirdParty/gtest/msvc/gtest.sln: Added.
1507 * Source/ThirdParty/gtest/msvc/gtest.vcproj: Added.
1508 * Source/ThirdParty/gtest/msvc/gtest_main-md.vcproj: Added.
1509 * Source/ThirdParty/gtest/msvc/gtest_main.vcproj: Added.
1510 * Source/ThirdParty/gtest/msvc/gtest_prod_test-md.vcproj: Added.
1511 * Source/ThirdParty/gtest/msvc/gtest_prod_test.vcproj: Added.
1512 * Source/ThirdParty/gtest/msvc/gtest_unittest-md.vcproj: Added.
1513 * Source/ThirdParty/gtest/msvc/gtest_unittest.vcproj: Added.
1514 * Source/ThirdParty/gtest/run_tests.py: Added.
1515 * Source/ThirdParty/gtest/samples/prime_tables.h: Added.
1516 * Source/ThirdParty/gtest/samples/sample1.cc: Added.
1517 * Source/ThirdParty/gtest/samples/sample1.h: Added.
1518 * Source/ThirdParty/gtest/samples/sample10_unittest.cc: Added.
1519 * Source/ThirdParty/gtest/samples/sample1_unittest.cc: Added.
1520 * Source/ThirdParty/gtest/samples/sample2.cc: Added.
1521 * Source/ThirdParty/gtest/samples/sample2.h: Added.
1522 * Source/ThirdParty/gtest/samples/sample2_unittest.cc: Added.
1523 * Source/ThirdParty/gtest/samples/sample3-inl.h: Added.
1524 * Source/ThirdParty/gtest/samples/sample3_unittest.cc: Added.
1525 * Source/ThirdParty/gtest/samples/sample4.cc: Added.
1526 * Source/ThirdParty/gtest/samples/sample4.h: Added.
1527 * Source/ThirdParty/gtest/samples/sample4_unittest.cc: Added.
1528 * Source/ThirdParty/gtest/samples/sample5_unittest.cc: Added.
1529 * Source/ThirdParty/gtest/samples/sample6_unittest.cc: Added.
1530 * Source/ThirdParty/gtest/samples/sample7_unittest.cc: Added.
1531 * Source/ThirdParty/gtest/samples/sample8_unittest.cc: Added.
1532 * Source/ThirdParty/gtest/samples/sample9_unittest.cc: Added.
1533 * Source/ThirdParty/gtest/scripts/fuse_gtest_files.py: Added.
1534 * Source/ThirdParty/gtest/scripts/gen_gtest_pred_impl.py: Added.
1535 * Source/ThirdParty/gtest/scripts/gtest-config.in: Added.
1536 * Source/ThirdParty/gtest/scripts/pump.py: Added.
1537 * Source/ThirdParty/gtest/scripts/test/Makefile: Added.
1538 * Source/ThirdParty/gtest/scripts/upload.py: Added.
1539 * Source/ThirdParty/gtest/scripts/upload_gtest.py: Added.
1540 * Source/ThirdParty/gtest/src/gtest-all.cc: Added.
1541 * Source/ThirdParty/gtest/src/gtest-death-test.cc: Added.
1542 * Source/ThirdParty/gtest/src/gtest-filepath.cc: Added.
1543 * Source/ThirdParty/gtest/src/gtest-internal-inl.h: Added.
1544 * Source/ThirdParty/gtest/src/gtest-port.cc: Added.
1545 * Source/ThirdParty/gtest/src/gtest-test-part.cc: Added.
1546 * Source/ThirdParty/gtest/src/gtest-typed-test.cc: Added.
1547 * Source/ThirdParty/gtest/src/gtest.cc: Added.
1548 * Source/ThirdParty/gtest/src/gtest_main.cc: Added.
1549 * Source/ThirdParty/gtest/test/gtest-death-test_test.cc: Added.
1550 * Source/ThirdParty/gtest/test/gtest-filepath_test.cc: Added.
1551 * Source/ThirdParty/gtest/test/gtest-linked_ptr_test.cc: Added.
1552 * Source/ThirdParty/gtest/test/gtest-listener_test.cc: Added.
1553 * Source/ThirdParty/gtest/test/gtest-message_test.cc: Added.
1554 * Source/ThirdParty/gtest/test/gtest-options_test.cc: Added.
1555 * Source/ThirdParty/gtest/test/gtest-param-test2_test.cc: Added.
1556 * Source/ThirdParty/gtest/test/gtest-param-test_test.cc: Added.
1557 * Source/ThirdParty/gtest/test/gtest-param-test_test.h: Added.
1558 * Source/ThirdParty/gtest/test/gtest-port_test.cc: Added.
1559 * Source/ThirdParty/gtest/test/gtest-test-part_test.cc: Added.
1560 * Source/ThirdParty/gtest/test/gtest-tuple_test.cc: Added.
1561 * Source/ThirdParty/gtest/test/gtest-typed-test2_test.cc: Added.
1562 * Source/ThirdParty/gtest/test/gtest-typed-test_test.cc: Added.
1563 * Source/ThirdParty/gtest/test/gtest-typed-test_test.h: Added.
1564 * Source/ThirdParty/gtest/test/gtest-unittest-api_test.cc: Added.
1565 * Source/ThirdParty/gtest/test/gtest_all_test.cc: Added.
1566 * Source/ThirdParty/gtest/test/gtest_break_on_failure_unittest.py: Added.
1567 * Source/ThirdParty/gtest/test/gtest_break_on_failure_unittest_.cc: Added.
1568 * Source/ThirdParty/gtest/test/gtest_color_test.py: Added.
1569 * Source/ThirdParty/gtest/test/gtest_color_test_.cc: Added.
1570 * Source/ThirdParty/gtest/test/gtest_env_var_test.py: Added.
1571 * Source/ThirdParty/gtest/test/gtest_env_var_test_.cc: Added.
1572 * Source/ThirdParty/gtest/test/gtest_environment_test.cc: Added.
1573 * Source/ThirdParty/gtest/test/gtest_filter_unittest.py: Added.
1574 * Source/ThirdParty/gtest/test/gtest_filter_unittest_.cc: Added.
1575 * Source/ThirdParty/gtest/test/gtest_help_test.py: Added.
1576 * Source/ThirdParty/gtest/test/gtest_help_test_.cc: Added.
1577 * Source/ThirdParty/gtest/test/gtest_list_tests_unittest.py: Added.
1578 * Source/ThirdParty/gtest/test/gtest_list_tests_unittest_.cc: Added.
1579 * Source/ThirdParty/gtest/test/gtest_main_unittest.cc: Added.
1580 * Source/ThirdParty/gtest/test/gtest_nc.cc: Added.
1581 * Source/ThirdParty/gtest/test/gtest_nc_test.py: Added.
1582 * Source/ThirdParty/gtest/test/gtest_no_test_unittest.cc: Added.
1583 * Source/ThirdParty/gtest/test/gtest_output_test.py: Added.
1584 * Source/ThirdParty/gtest/test/gtest_output_test_.cc: Added.
1585 * Source/ThirdParty/gtest/test/gtest_output_test_golden_lin.txt: Added.
1586 * Source/ThirdParty/gtest/test/gtest_output_test_golden_win.txt: Added.
1587 * Source/ThirdParty/gtest/test/gtest_pred_impl_unittest.cc: Added.
1588 * Source/ThirdParty/gtest/test/gtest_prod_test.cc: Added.
1589 * Source/ThirdParty/gtest/test/gtest_repeat_test.cc: Added.
1590 * Source/ThirdParty/gtest/test/gtest_shuffle_test.py: Added.
1591 * Source/ThirdParty/gtest/test/gtest_shuffle_test_.cc: Added.
1592 * Source/ThirdParty/gtest/test/gtest_sole_header_test.cc: Added.
1593 * Source/ThirdParty/gtest/test/gtest_stress_test.cc: Added.
1594 * Source/ThirdParty/gtest/test/gtest_test_utils.py: Added.
1595 * Source/ThirdParty/gtest/test/gtest_throw_on_failure_ex_test.cc: Added.
1596 * Source/ThirdParty/gtest/test/gtest_throw_on_failure_test.py: Added.
1597 * Source/ThirdParty/gtest/test/gtest_throw_on_failure_test_.cc: Added.
1598 * Source/ThirdParty/gtest/test/gtest_uninitialized_test.py: Added.
1599 * Source/ThirdParty/gtest/test/gtest_uninitialized_test_.cc: Added.
1600 * Source/ThirdParty/gtest/test/gtest_unittest.cc: Added.
1601 * Source/ThirdParty/gtest/test/gtest_xml_outfile1_test_.cc: Added.
1602 * Source/ThirdParty/gtest/test/gtest_xml_outfile2_test_.cc: Added.
1603 * Source/ThirdParty/gtest/test/gtest_xml_outfiles_test.py: Added.
1604 * Source/ThirdParty/gtest/test/gtest_xml_output_unittest.py: Added.
1605 * Source/ThirdParty/gtest/test/gtest_xml_output_unittest_.cc: Added.
1606 * Source/ThirdParty/gtest/test/gtest_xml_test_utils.py: Added.
1607 * Source/ThirdParty/gtest/test/production.cc: Added.
1608 * Source/ThirdParty/gtest/test/production.h: Added.
1609 * Source/ThirdParty/gtest/test/run_tests_util.py: Added.
1610 * Source/ThirdParty/gtest/test/run_tests_util_test.py: Added.
1611 * Source/ThirdParty/gtest/xcode/Config/DebugProject.xcconfig: Added.
1612 * Source/ThirdParty/gtest/xcode/Config/FrameworkTarget.xcconfig: Added.
1613 * Source/ThirdParty/gtest/xcode/Config/General.xcconfig: Added.
1614 * Source/ThirdParty/gtest/xcode/Config/ReleaseProject.xcconfig: Added.
1615 * Source/ThirdParty/gtest/xcode/Config/StaticLibraryTarget.xcconfig: Added.
1616 * Source/ThirdParty/gtest/xcode/Config/TestTarget.xcconfig: Added.
1617 * Source/ThirdParty/gtest/xcode/Resources/Info.plist: Added.
1618 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/Info.plist: Added.
1619 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: Added.
1620 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/runtests.sh: Added.
1621 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget.cc: Added.
1622 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget.h: Added.
1623 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget_test.cc: Added.
1624 * Source/ThirdParty/gtest/xcode/Scripts/runtests.sh: Added.
1625 * Source/ThirdParty/gtest/xcode/Scripts/versiongenerate.py: Added.
1626 * Source/ThirdParty/gtest/xcode/gtest.xcodeproj/project.pbxproj: Added.
1628 2011-04-13 Ryuan Choi <ryuan.choi@samsung.com>
1630 Reviewed by Kenneth Rohde Christiansen.
1632 [CMAKE] Separate DerivedSources.
1633 https://bugs.webkit.org/show_bug.cgi?id=58427
1635 Seperate DerivedSources/ to DerivedSources/WebCore and
1636 DerivedSources/JavaScriptCore.
1638 * Source/CMakeLists.txt:
1639 * Source/cmake/OptionsCommon.cmake:
1640 * Source/cmake/WebKitFS.cmake:
1641 * Source/cmake/WebKitHelpers.cmake:
1642 * Source/cmake/WebKitMacros.cmake:
1644 2011-04-13 Tony Chang <tony@chromium.org>
1646 Ignore files generated from glu.gyp.
1650 2011-03-28 Adam Barth <abarth@webkit.org>
1652 Reviewed by Kenneth Russell.
1654 Move libtess from WebCore/thirdparty to ThirdParty
1655 https://bugs.webkit.org/show_bug.cgi?id=57288
1657 We're putting third party code in Source/ThirdParty these days.
1659 * Source/ThirdParty/glu: Copied from Source/WebCore/thirdparty/glu.
1660 * Source/ThirdParty/glu/glu.gyp: Added.
1662 2011-04-12 Thouraya ANDOLSI <thouraya.andolsi@st.com>
1664 Reviewed by Eric Seidel.
1666 [QT] Enable JIT build for SH4 platforms.
1667 https://bugs.webkit.org/show_bug.cgi?id=58317
1668 add disable_uitools for SH4 platforms.
1670 * Source/WebKit.pri:
1672 2011-04-11 Anna Cavender <annacc@chromium.org>
1674 Reviewed by Eric Carlson.
1676 Setup ENABLE(TRACK) feature define
1677 https://bugs.webkit.org/show_bug.cgi?id=53556
1681 2011-04-11 Varun Jain <varunjain@chromium.org>
1683 Reviewed by Darin Fisher.
1685 Resolving FIXME to make new WebWidget method pure virtual since all downstream classes have implemented the method.
1686 https://bugs.webkit.org/show_bug.cgi?id=58245
1688 * Source/WebKit/chromium/public/WebWidget.h:
1690 2011-04-11 Thouraya ANDOLSI <thouraya.andolsi@st.com>
1692 Reviewed by Oliver Hunt.
1695 https://bugs.webkit.org/show_bug.cgi?id=44329
1697 Enable JIT support for SH4 platforms.
1701 2011-04-11 Andreas Kling <andreas.kling@nokia.com>
1703 Unreviewed Qt build fix, QT_CONFIG doesn't have uitools on bots.
1705 * Source/WebKit.pri:
1707 2011-04-09 Keith Kyzivat <keith.kyzivat@nokia.com>
1709 Reviewed by Laszlo Gombos.
1711 [Qt] Don't link against fontconfig or X11 if embedded
1712 https://bugs.webkit.org/show_bug.cgi?id=58104
1714 * Source/WebKit.pri: Add qpa=>embedded as it should be across all builds.
1716 2011-04-08 Alpha Lam <hclam@chromium.org>
1718 Unreviewed, rolling out r83335.
1719 http://trac.webkit.org/changeset/83335
1720 https://bugs.webkit.org/show_bug.cgi?id=53556
1722 GTK and QT bots are broken.
1726 2011-04-08 Kristian Amlie <kristian.amlie@nokia.com>
1728 Reviewed by Andreas Kling.
1730 [Qt] Remove modular references after support for the flag was removed.
1731 https://bugs.webkit.org/show_bug.cgi?id=57018
1733 Removed modular references after support for the flag was removed.
1735 Support was removed because the Qt Modularization project decided we
1736 don't need it. It's better to base decisions on the available
1737 information, as demonstrated in the patch by checking
1740 * Source/WebKit.pri:
1742 2011-04-07 Anna Cavender <annacc@chromium.org>
1744 Reviewed by Eric Carlson.
1746 Setup ENABLE(TRACK) feature define
1747 https://bugs.webkit.org/show_bug.cgi?id=53556
1751 2011-04-08 Varun Jain <varunjain@chromium.org>
1753 Reviewed by Darin Fisher.
1755 Need to extend WebKit chromium API to access text selection
1756 https://bugs.webkit.org/show_bug.cgi?id=57888
1758 * Source/WebKit/chromium/public/WebFrame.h:
1759 * Source/WebKit/chromium/public/WebWidget.h:
1760 * Source/WebKit/chromium/src/WebFrameImpl.cpp:
1761 * Source/WebKit/chromium/src/WebFrameImpl.h:
1762 * Source/WebKit/chromium/src/WebPopupMenuImpl.h:
1763 * Source/WebKit/chromium/src/WebViewImpl.cpp:
1764 * Source/WebKit/chromium/src/WebViewImpl.h:
1765 * Source/WebKit/chromium/tests/PopupMenuTest.cpp:
1767 2011-04-08 Jon Lee <jonlee@apple.com>
1769 Reviewed by David Levin.
1771 adding *.vcproj.*.user to .gitignore for Visual Studio development
1772 https://bugs.webkit.org/show_bug.cgi?id=58097
1776 2011-04-07 Eric Seidel <eric@webkit.org>
1778 Reviewed by Adam Barth.
1780 Add stub support for generating Gtk build system from gyp
1781 https://bugs.webkit.org/show_bug.cgi?id=58086
1783 This adds support for a new --port argument and plumbs through
1784 the necessary paths to allow generating for a port other than Mac.
1786 * Source/gyp/configure:
1788 2011-04-07 Andrew Scherkus <scherkus@chromium.org>
1790 Revert ENABLE_TRACK patch due to compile failures.
1794 2011-04-06 Dai Mikurube <dmikurube@chromium.org>
1796 Reviewed by David Levin.
1798 Add QUOTA build flag for unified quota API
1799 https://bugs.webkit.org/show_bug.cgi?id=57918
1801 * configure.ac: Added QUOTA build flag
1803 2011-04-04 Martin Robinson <mrobinson@igalia.com>
1805 Build fix for GTK+ after r82876.
1807 * Source/autotools/symbols.filter: Update the symbol filter to include new symbols
1808 from WTF that DRT uses.
1810 2011-04-04 Martin Robinson <mrobinson@igalia.com>
1812 Reviewed by Gustavo Noronha Silva.
1815 https://bugs.webkit.org/show_bug.cgi?id=31517
1817 * configure.ac: Update configure.ac to ensure that GL/GLX headers exist.
1819 2011-04-04 Jon Lee <jonlee@apple.com>
1821 Reviewed by Eric Seidel.
1823 add some directories to .gitignore (and svn:ignore) when opening projects in xcode4
1824 https://bugs.webkit.org/show_bug.cgi?id=57646
1826 * .gitignore: added xcode 4 related project and workspace directories that are not needed for checkin
1828 2011-03-31 Xan Lopez <xlopez@igalia.com>
1830 Reviewed by Martin Robinson.
1832 [GTK] Link explicitly with XRender on Linux/Unix
1833 https://bugs.webkit.org/show_bug.cgi?id=57558
1835 Some linkers, like GNU Gold, require explicit linkage of all the
1836 libraries used instead of relying on our dependencies to bring
1837 them in. In this case, the build fails because we use XRender in
1838 the plugin code but don't link directly to it.
1840 * configure.ac: check for XRender on UNIX.
1842 2011-03-31 Vamshikrishna.Yellenki <vamshi@motorola.com> and Alejandro G. Castro <alex@igalia.com>
1844 Reviewed by Martin Robinson.
1846 Implement MiniBrowser for Gtk port.
1847 https://bugs.webkit.org/show_bug.cgi?id=48512
1849 Initial implementation of the Gtk MiniBrowser.
1853 2011-03-30 Csaba Osztrogonác <ossy@webkit.org>
1855 [Qt] Typo fix, remove an accidentally added line.
1857 * Source/WebKit.pri:
1859 2011-03-30 Csaba Osztrogonác <ossy@webkit.org>
1861 [Qt] Rollout r82240 and r82232, because they broke 2 plugin tests.
1863 * Source/WebKit.pri:
1865 2011-03-29 Csaba Osztrogonác <ossy@webkit.org>
1867 Rubber-stamped by Andreas Kling.
1869 [Qt] Remove modular references after support for the flag was removed.
1870 https://bugs.webkit.org/show_bug.cgi?id=57018
1872 Symbian buildfix after r82232.
1874 * Source/WebKit.pri: Readd uitools option.
1876 2011-03-29 Kristian Amlie <kristian.amlie@nokia.com>
1878 Reviewed by Andreas Kling.
1880 Removed modular references after support for the flag was removed.
1882 Support was removed because the Qt Modularization project decided we
1883 don't need it. It's better to base decisions on the available
1884 information, as demonstrated in the patch by checking
1887 In addition, remove the reference to uitools. It has been moved to
1888 QtKernel now, and therefore is always available.
1890 [Qt] Remove modular references after support for the flag was removed.
1891 https://bugs.webkit.org/show_bug.cgi?id=57018
1893 * Source/WebKit.pri:
1895 2011-03-28 Benjamin Poulain <benjamin.poulain@nokia.com>
1897 Reviewed by Andreas Kling.
1899 [Qt] QtWebKit will not compile with QT_ASCII_CAST_WARNINGS enabled
1900 https://bugs.webkit.org/show_bug.cgi?id=57087
1902 Enable QT_ASCII_CAST_WARNINGS by default in webkit.pri to catch the errors early on.
1904 * Source/WebKit.pri:
1906 2011-03-26 Adam Barth <abarth@webkit.org>
1908 Reviewed by Eric Seidel.
1910 We shouldn't bother running GYP if the generated files are newer than the GYP files
1911 https://bugs.webkit.org/show_bug.cgi?id=57146
1913 In the common case, this check will avoid any overhead from processing
1914 the GYP files. Another approach to doing this is to add the feature to
1915 GYP directly, but GYP's approach to this problem is to compute the
1916 output in its entirety and compare it byte-for-byte against the output
1917 file. In the future, it might make sense to add this approach as an
1918 alternative approach for GYP itself.
1920 I also removed JavaScriptGlue from the script because we're not really
1921 going to change JavaScriptGlue over to GYP. We were using
1922 JavaScriptGlue as a learning experience.
1924 * Source/gyp/configure:
1926 2011-03-25 Kevin Ollivier <kevino@theolliviers.com>
1928 [wx] Build fix, don't use the new FPD implementation yet, until we can merge ours with it.
1932 2011-03-23 George Guo <George.Guo@nokia.com>
1934 Reviewed by Darin Adler.
1936 Webkit warning: converting to 'unsigned int' from 'double'
1937 https://bugs.webkit.org/show_bug.cgi?id=56865
1939 With -Werr enabled, this cause the build failure on RedHat Linux.
1942 * Source/JavaScriptCore/runtime/TimeoutChecker.cpp:
1945 2011-03-23 Adam Barth <abarth@webkit.org>
1947 Reviewed by Eric Seidel.
1949 GYP build should default to Production configuration
1950 https://bugs.webkit.org/show_bug.cgi?id=56899
1952 * Source/gyp/common.gypi:
1954 2011-03-22 Adam Barth <abarth@webkit.org>
1956 Reviewed by Eric Seidel.
1958 gyp/configure shouldn't require GYP to be in your path
1959 https://bugs.webkit.org/show_bug.cgi?id=56873
1961 Now that GYP is on Source/ThirdParty/gyp, we can just use that copy
1962 instead of requiring GYP to be in the user's path.
1964 * Source/gyp/configure:
1966 2011-03-22 Adam Barth <abarth@webkit.org>
1968 Reviewed by Eric Seidel.
1970 Add GYP to Source/ThirdParty
1971 https://bugs.webkit.org/show_bug.cgi?id=56870
1973 We probably don't need all the test files, but it seems cleaner to just
1974 check in the whole GYP tree. GYP is BSD licensed, so it is compatible
1975 with the WebKit license.
1977 * Source/ThirdParty/gyp: Added.
1979 2011-03-21 Alejandro G. Castro <alex@igalia.com>
1981 Reviewed by Martin Robinson.
1983 [GTK] 1.3.13 release bump
1984 https://bugs.webkit.org/show_bug.cgi?id=56795
1986 Version bump for 1.3.13 and updated NEWS file with release notes.
1990 2011-03-21 Ryuan Choi <ryuan.choi@samsung.com>
1992 Reviewed by Antonio Gomes.
1994 [CMAKE] Add exception handling when PORT was missing.
1995 https://bugs.webkit.org/show_bug.cgi?id=56728
1997 * Source/CMakeLists.txt:
1999 2011-03-10 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>
2001 Reviewed by Laszlo Gombos.
2003 [Qt] Text layout is broken on Symbian
2004 https://bugs.webkit.org/show_bug.cgi?id=56046
2006 Change integers included into bitfields to be signed by default on RVCT
2007 compiler as a lot of other compilers do (gcc, msvc, winsc).
2008 There are a lot of places in webkit where integers included in bitfield
2009 are assumed to be signed.
2011 * Source/WebKit.pri:
2013 2011-03-10 Alejandro G. Castro <alex@igalia.com>
2015 Unreviewed, fixed Efl compilation after r80744.
2017 * Source/cmake/OptionsEfl.cmake:
2019 2011-03-10 Martin Robinson <mrobinson@igalia.com>
2021 Fixed the help message for WebGL support on GTK+ to reflect the fact that
2022 it's turned off by default and is experimental.
2024 * configure.ac: Fix WebGL help message.
2026 2011-03-04 Dimitri Glazkov <dglazkov@chromium.org>
2028 Reviewed by Adam Barth.
2030 Add skeletal WebCore.gyp
2031 https://bugs.webkit.org/show_bug.cgi?id=55802
2033 * Source/gyp/configure: Added WebCore.
2035 2011-03-04 Adam Barth <abarth@webkit.org>
2037 Reviewed by Dimitri Glazkov.
2039 Add a basic configure script for the GYP build
2040 https://bugs.webkit.org/show_bug.cgi?id=55791
2042 This script just calls GYP on the various gyp projects. As we add more
2043 build systems, this script should be able to select which of them you'd
2044 like to generate the project for.
2046 * Source/gyp/configure: Added.
2048 2011-03-04 Adam Barth <abarth@webkit.org>
2050 Reviewed by Dimitri Glazkov.
2052 Use target_defaults to reduce boilerplate in GYP build system
2053 https://bugs.webkit.org/show_bug.cgi?id=55790
2055 This file contains GYP declarations that are shared by all the modules.
2056 Currently, we use this to set up the configurations, albeit primitively.
2058 * Source/gyp/common.gypi: Added.
2060 2011-03-03 Kevin Ollivier <kevino@theolliviers.com>
2062 [wx] Build fix. Ensure the ICU include dir comes before JavaScriptCore/wtf on Win
2063 to make sure the proper unicode/utf8.h header is included.
2067 2011-03-02 Kevin Ollivier <kevino@theolliviers.com>
2069 [wx] Build fix, don't use LocalizedNumberICU.cpp yet, headers that it needs are not
2070 included in the ICU headers used by WebKit.
2074 2011-03-02 Daniel Cheng <dcheng@chromium.org>
2076 Reviewed by David Levin.
2078 Add feature define for data transfer items
2079 https://bugs.webkit.org/show_bug.cgi?id=55510
2081 * Source/cmake/OptionsEfl.cmake:
2082 * Source/cmake/OptionsWinCE.cmake:
2083 * Source/cmakeconfig.h.cmake:
2087 2011-03-02 Andras Becsi <abecsi@webkit.org>
2089 Reviewed by Laszlo Gombos.
2091 [Qt][WK2] generate-forwarding-headers.pl should generate paths with framework names
2092 https://bugs.webkit.org/show_bug.cgi?id=55478
2094 On case insensitive systems the generated forwarding headers cause build problems.
2096 * Source/WebKit.pri: Adjust INCLUDEPATH for the project.
2098 2011-03-01 Sheriff Bot <webkit.review.bot@gmail.com>
2100 Unreviewed, rolling out r80079.
2101 http://trac.webkit.org/changeset/80079
2102 https://bugs.webkit.org/show_bug.cgi?id=55547
2104 "Broke the Win debug build?" (Requested by dcheng on #webkit).
2106 * Source/cmake/OptionsEfl.cmake:
2107 * Source/cmake/OptionsWinCE.cmake:
2108 * Source/cmakeconfig.h.cmake:
2110 2011-03-01 Daniel Cheng <dcheng@chromium.org>
2112 Reviewed by David Levin.
2114 Add feature define for data transfer items
2115 https://bugs.webkit.org/show_bug.cgi?id=55510
2117 * Source/cmake/OptionsEfl.cmake:
2118 * Source/cmake/OptionsWinCE.cmake:
2119 * Source/cmakeconfig.h.cmake:
2121 2011-03-01 Andras Becsi <abecsi@webkit.org>
2123 Reviewed by Csaba Osztrogonác.
2125 [Qt] Clean up the project files and move common options to WebKit.pri.
2127 Mac related changes suggested by Prasanth Ullattil <prasanth.ullattil@nokia.com>
2129 * Source/WebKit.pri: Common options should be here.
2130 Also move Mac options to this file to fix the Mac build.
2132 2011-03-01 Andras Becsi <abecsi@webkit.org>
2134 Unreviewed build fix.
2136 [Qt] Fix minimal build.
2138 * Source/WebKit.pri: Move the XP_UNIX define back to WebCore.pri.
2140 2011-02-28 Adam Barth <abarth@webkit.org>
2142 Reviewed by Dimitri Glazkov.
2144 Teach JavaScriptGlue gyp build about DEPTH
2145 https://bugs.webkit.org/show_bug.cgi?id=55421
2147 Moves the previously JavaScriptGlue-specific GYP helper shell scripts
2148 to the gyp directory in Source, where they can be shared by multiple
2151 * Source/gyp: Added.
2152 * Source/gyp/remove-headers-if-needed.sh: Copied from Source/JavaScriptGlue/gyp/remove-headers-if-needed.sh.
2153 * Source/gyp/run-if-exists.sh: Copied from Source/JavaScriptGlue/gyp/run-if-exists.sh.
2154 * Source/gyp/update-info-plist.sh: Copied from Source/JavaScriptGlue/gyp/update-info-plist.sh.
2156 2011-02-28 Benjamin Poulain <benjamin.poulain@nokia.com>
2158 Reviewed by Kenneth Rohde Christiansen.
2160 [Qt][WK2] Add a way to test the WebKit 2 APIs
2161 https://bugs.webkit.org/show_bug.cgi?id=55408
2163 Add the build file for test to the build system.
2165 * Source/WebKit.pri: Add the include path for WebKit 2 APIs.
2166 * Source/WebKit.pro: Add the dependency to build the new test project.
2168 2011-02-28 Balazs Kelemen <kbalazs@webkit.org>
2170 Reviewed by Anders Carlsson.
2172 [Qt][WK2] Plugin initialization
2173 https://bugs.webkit.org/show_bug.cgi?id=48127
2175 * Source/WebKit.pri: Lift the definition of the XP_UNIX macro
2176 from WebCore.pri to WebKit.pri to apply it to WebKit2 as well.
2178 2011-02-28 Kristian Amlie <kristian.amlie@nokia.com>
2180 Reviewed by Andreas Kling.
2182 Added full webkit module profile and a syncqt profile.
2184 This is for modularized Qt.
2186 [Qt] WebKit patches required to work with a modularized version of Qt
2187 https://bugs.webkit.org/show_bug.cgi?id=53916
2189 * Source/sync.profile: Added.
2191 2011-02-26 Dihan Wickremasuriya <dihan.wickremasuriya@nokia.com>
2193 Reviewed by Laszlo Gombos.
2195 [Qt] [Symbian] Disable dependency to a specific version of a Qt package for
2196 non-production builds.
2197 https://bugs.webkit.org/show_bug.cgi?id=55313
2199 * Source/WebKit.pri:
2201 2011-02-24 Alejandro G. Castro <alex@igalia.com>
2203 Rubber-stamped by Martin Robinson.
2205 Fixed compilation after r79537, added a bug to solve webkit2
2207 https://bugs.webkit.org/show_bug.cgi?id=55153
2211 2011-02-24 Christian Dywan <christian@lanedo.com>
2213 Rubber-stamped by Eric Seidel.
2215 [GTK] webkitgtk 1.3.7 build without translations
2216 https://bugs.webkit.org/show_bug.cgi?id=50612
2218 * GNUmakefile.am: Require stamp-po target for all-local so
2219 that po files are built before they install.
2221 2011-02-22 Philippe Normand <pnormand@igalia.com>
2223 Reviewed by Martin Robinson.
2225 [GTK] 1.3.12 release preparation
2226 https://bugs.webkit.org/show_bug.cgi?id=54967
2228 Version bump for 1.3.12 and updated NEWS file with release notes.
2229 Also bumped libsoup requirement to 2.33.6 as agreed with Sergio
2232 * Source/WebKit/gtk/NEWS:
2235 2011-02-22 Andras Becsi <abecsi@webkit.org>
2237 Reviewed by Laszlo Gombos.
2239 [Qt] Redesign the build system
2240 https://bugs.webkit.org/show_bug.cgi?id=51339
2244 Build WebCore as a static library, compile the WebKit API and WebKit2 API
2245 in a final step and link to WebKit2, WebCore and JSC libraries to fix
2246 linking issues resulting from stripped away symbols.
2248 * Source/WebKit.pri: Add common include paths
2249 * Source/WebKit.pro: Add new project file to SUBDIRS
2251 2011-02-20 Carlos Garcia Campos <cgarcia@igalia.com>
2253 Reviewed by Martin Robinson.
2255 [GTK] Bump GTK+3 dependency to 3.0
2256 https://bugs.webkit.org/show_bug.cgi?id=54394
2260 2011-02-19 Ryuan Choi <ryuan.choi@samsung.com>
2262 Reviewed by Martin Robinson.
2264 [GTK] Remove mandatory Enchant dependency
2265 https://bugs.webkit.org/show_bug.cgi?id=51587
2267 Add enable-spellcheck option which decides whether to use enchant.
2268 If disabled, WebKitGTK+ will not use enchant library.
2272 2011-02-18 Zan Dobersek <zandobersek@gmail.com>
2274 Reviewed by Martin Robinson.
2276 [Gtk] Re-enable meter tag support
2277 https://bugs.webkit.org/show_bug.cgi?id=54762
2279 Enable meter tag support in the configure.ac. This feature was
2280 previously enabled by default in the makefile, but should be
2281 enabled here after changes in r78981.
2285 2011-02-18 Kristian Amlie <kristian.amlie@nokia.com>
2287 Reviewed by Kenneth Rohde Christiansen.
2289 Avoided UiTools dependency if the module is not present.
2291 [Qt] WebKit patches required to work with a modularized version of Qt
2292 https://bugs.webkit.org/show_bug.cgi?id=53916
2294 * Source/WebKit.pri:
2296 2011-02-18 Ryuan Choi <ryuan.choi@samsung.com>
2298 Reviewed by Kent Tamura.
2300 [EFL] Remove GDK dependency.
2301 https://bugs.webkit.org/show_bug.cgi?id=53978
2303 Remove checking GDK library.
2305 * Source/cmake/OptionsEfl.cmake:
2307 2011-02-18 Philippe Normand <pnormand@igalia.com>
2309 Unreviewed, build fix after r78981
2311 * configure.ac: datagrid is datagrid, it is not database. Also
2312 meter is not progress. Fixed copy/paste mistakes.
2314 2011-02-18 Philippe Normand <pnormand@igalia.com>
2316 Reviewed by Martin Robinson.
2318 [GTK] minimal build unrecognized options
2319 https://bugs.webkit.org/show_bug.cgi?id=50890
2321 * configure.ac: added new configure options to enable/disable the
2322 meter element, progress element, datagrid and client-based
2323 geolocation support.
2325 2011-02-17 Kevin Ollivier <kevino@theolliviers.com>
2327 [wx] Build fix after introduction of JavaScriptCore/collector.
2331 2011-02-17 Kristian Amlie <kristian.amlie@nokia.com>
2333 Reviewed by Laszlo Gombos.
2335 Updated include paths for phonon.
2337 [Qt] WebKit patches required to work with a modularized version of Qt
2338 https://bugs.webkit.org/show_bug.cgi?id=53916
2340 * Source/WebKit.pri:
2342 2011-02-13 Hayato Ito <hayato@chromium.org>
2344 Reviewed by Kent Tamura.
2346 Update .gitignore to ignore files which Ninja build system generates.
2348 https://bugs.webkit.org/show_bug.cgi?id=54378
2352 2011-02-10 Peter Varga <pvarga@webkit.org>
2354 Reviewed by Csaba Osztrogonác.
2356 Remove PCRE source from trunk
2357 https://bugs.webkit.org/show_bug.cgi?id=54188
2359 * Source/cmake/WebKitFS.cmake:
2361 2011-02-09 Adam Barth <abarth@webkit.org>
2363 Reviewed by Steve Block.
2365 Move Android.mk into Source
2366 https://bugs.webkit.org/show_bug.cgi?id=53751
2368 A somewhat blind attempt to move Android.mk into the Source directory.
2369 I'm sure I've goofed this up in some way. The Android folks have
2370 kindly volunteered to fix this up once they merge past this revision.
2372 * Android.mk: Removed.
2373 * Source/Android.mk: Copied from Android.mk.
2375 2011-02-08 Alejandro G. Castro <alex@igalia.com>
2377 Reviewed by Martin Robinson.
2379 WebKit2 GTK Fails to Build #include nested too deeply
2380 https://bugs.webkit.org/show_bug.cgi?id=52219
2382 Removed the __STDC_FORMAT_MACROS definition, it is already defined
2383 in the file where PRIxx64 is used before the inclusion so we are
2388 2011-02-08 Kristian Amlie <kristian.amlie@nokia.com>
2390 Reviewed by Eric Seidel.
2392 Added include paths for QtScript.
2394 WebKit patches required to work with a modularized version of Qt
2395 https://bugs.webkit.org/show_bug.cgi?id=53916
2397 * Source/WebKit.pri:
2399 2011-02-03 Martin Robinson <mrobinson@igalia.com>
2401 Fix GTK+ WebGL build after r76600.
2403 * configure.ac: Make sure to respect configure.ac conventions
2404 consistently when it comes to capitalization. Remove an old
2405 reference to enable_3d_canvas.
2407 2011-02-02 Alejandro G. Castro <alex@igalia.com>
2409 Reviewed by Martin Robinson.
2411 Bump the WebKitGTK+ versions in preparation for development release.
2413 * configure.ac: Bump the library, libtool and user agent version.
2415 2011-02-02 Steve Lacey <sjl@chromium.org>
2417 Reviewed by Eric Carlson.
2419 Implement basic media statistics on media elements.
2420 https://bugs.webkit.org/show_bug.cgi?id=53322
2424 2011-02-02 Kevin Ollivier <kevino@theolliviers.com>
2426 [wx] Build fixes for wxWebKit.
2430 2010-01-28 Commit Queue <commit-queue@webkit.org>
2432 Unreviewed. Test commit for commit-queue@webkit.org.
2434 2010-01-28 Commit Queue <commit-queue@webkit.org>
2436 Unreviewed. Test commit for commit-queue@webkit.org.
2438 2010-01-28 Commit Queue <commit-queue@webkit.org>
2440 Unreviewed. Test commit for commit-queue@webkit.org.
2442 2011-01-31 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
2444 Reviewed by Xan Lopez.
2446 [GTK] REGRESSION: http/tests/media/video-{cookie,referer}.html failing
2447 https://bugs.webkit.org/show_bug.cgi?id=53379
2449 Remove left over mentions of HAVE_SOUP_2_29_90, and apply the
2450 dependency on newer soup to efl as well.
2452 * Source/cmake/OptionsEfl.cmake:
2454 2011-01-29 Daniel Bates <dbates@rim.com>
2456 Reviewed by Maciej Stachowiak.
2458 Remove reference to ${CMAKE_SOURCE_DIR}/Source in CMake files
2459 https://bugs.webkit.org/show_bug.cgi?id=53382
2461 Our file system hierarchy ensures that CMAKE_SOURCE_DIR is defined to be /Source.
2462 So, ${CMAKE_SOURCE_DIR}/Source evaluates to the non-existent directory /Source/Source.
2463 Therefore, we should remove such references.
2465 * Source/cmake/OptionsCommon.cmake:
2467 2011-01-29 Daniel Bates <dbates@rim.com>
2469 Reviewed by Eric Seidel.
2471 Move wince/mt19937ar.c to ThirdParty and make it a policy choice
2472 https://bugs.webkit.org/show_bug.cgi?id=53253
2474 Move implementation of Mersenne Twister pseudorandom number generator to
2475 ThirdParty since it is a third party library.
2477 * Source/ThirdParty/mt19937ar.c: Copied from Source/JavaScriptCore/wtf/wince/mt19937ar.c.
2479 2011-01-29 Dan Winship <danw@gnome.org>
2481 Reviewed by Xan Lopez.
2483 [GTK] Require the latest glib and libsoup, and remove conditional
2484 support for older versions
2485 https://bugs.webkit.org/show_bug.cgi?id=50675
2487 * autotools/webkit.m4: use AM_PATH_GLIB_2_0 rather than doing
2488 basically the same work by hand
2491 2011-01-28 Martin Robinson <mrobinson@igalia.com>
2493 [GTK] Build failure with --enable-indexed-database
2494 https://bugs.webkit.org/show_bug.cgi?id=50954
2496 Build fix for IndexedDB support.
2498 * configure.ac: Change the autogen.sh option --enable-indexeddb to
2499 --enable-indexed-database to match the build-webkit option.
2501 2010-01-28 Commit Queue <commit-queue@webkit.org>
2503 Unreviewed. Test commit for commit-queue@webkit.org.
2505 2010-01-28 Commit Queue <commit-queue@webkit.org>
2507 Unreviewed. Test commit for commit-queue@webkit.org.
2509 2011-01-26 Yael Aharon <yael.aharon@nokia.com>
2511 Reviewed by Laszlo Gombos.
2513 [Qt][Symbian] Fix --minimal build
2514 https://bugs.webkit.org/show_bug.cgi?id=52839
2516 Move definition of USE_SYSTEM_MALLOC out of pri file.
2517 Put it in platform.h instead.
2519 * Source/WebKit.pri:
2521 2011-01-26 Csaba Osztrogonác <ossy@webkit.org>
2523 Reviewed by Andreas Kling.
2525 [Qt] Fix qt_minimal build
2526 https://bugs.webkit.org/show_bug.cgi?id=53172
2528 * Source/WebKit.pri:
2530 2011-01-25 Patrick Gansterer <paroga@webkit.org>
2532 Reviewed by Adam Barth.
2534 Move main CMakeLists.txt into Source directory
2535 https://bugs.webkit.org/show_bug.cgi?id=52888
2537 * CMakeLists.txt: Removed.
2538 * Source/CMakeLists.txt: Copied from CMakeLists.txt.
2539 * Source/cmakeconfig.h.cmake: Copied from cmakeconfig.h.cmake.
2540 * cmakeconfig.h.cmake: Removed.
2542 2011-01-24 Chris Marrin <cmarrin@apple.com>
2544 Reviewed by Eric Seidel.
2546 Change ENABLE_3D_CANVAS to ENABLE_WEBGL
2547 https://bugs.webkit.org/show_bug.cgi?id=53041
2551 2011-01-24 Peter Gal <galpeter@inf.u-szeged.hu>
2553 Rubber-stamped by Csaba Osztrogonác.
2555 * runtime: Removed. It was accidentally created by r76457.
2557 2011-01-24 Andras Becsi <abecsi@webkit.org>
2559 Reviewed by Csaba Osztrogonác.
2561 [Qt] Move project files into Source
2562 https://bugs.webkit.org/show_bug.cgi?id=52891
2564 * Source/DerivedSources.pro: Copied from DerivedSources.pro.
2565 * Source/WebKit.pri: Renamed from WebKit.pri.
2566 * Source/WebKit.pro: Added.
2567 * Source/common.pri: Renamed from common.pri.
2568 * WebKit.pro: Removed.
2570 2011-01-20 Siddharth Mathur <siddharth.mathur@nokia.com>
2572 Reviewed by Laszlo Gombos.
2574 [Qt][Symbian] Smaller debug symbol size when using RVCT 4.x
2575 https://bugs.webkit.org/show_bug.cgi?id=52835
2577 * WebKit.pri: Use --remove_unneeded_entities for RVCT 4.x compilers
2579 2011-01-20 Alejandro G. Castro <alex@igalia.com>
2581 Reviewed by Andreas Kling.
2583 [GTK] Fix typo in the webkit2 section of the configure.ac file
2584 https://bugs.webkit.org/show_bug.cgi?id=52801
2586 Fixed typo in the GTK WebKit2 compilation.
2590 2011-01-19 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>
2592 Reviewed by Andreas Kling.
2594 Enable usage of Google ld if it exist but is not on by default.
2596 [Qt] Enable the google ld if it exist but is not on by default
2597 https://bugs.webkit.org/show_bug.cgi?id=52625
2599 * common.pri: flip the test.
2601 2011-01-18 Mihai Parparita <mihaip@chromium.org>
2603 Unreviewed. Update .gitignore to reflect that WebKit is now in Source.
2607 2011-01-18 Krithigassree Sambamurthy <krithigassree.sambamurthy@nokia.com>
2609 Reviewed by Simon Fraser.
2611 Support background-clip: content-box
2612 https://bugs.webkit.org/show_bug.cgi?id=48771
2614 Addded content-box as a valid background-clip value.
2616 * WebCore/css/CSSParser.cpp:
2617 (WebCore::parseBackgroundClip):
2619 2011-01-18 Hayato Ito <hayato@chromium.org>
2621 Reviewed by Kent Tamura.
2623 Update .gitignore file to reflect a recent WebKit directory movement.
2625 https://bugs.webkit.org/show_bug.cgi?id=52618
2629 2011-01-16 Adam Barth <abarth@webkit.org>
2631 Rubber-stamped by Eric Seidel.
2633 Move WebKit into Source
2634 https://bugs.webkit.org/show_bug.cgi?id=52530
2638 * DerivedSources.pro:
2646 2011-01-15 Adam Barth <abarth@webkit.org>
2648 Rubber-stamped by Eric Seidel.
2650 Move WebKit2 into Source
2651 https://bugs.webkit.org/show_bug.cgi?id=52438
2653 Update reference to WebKit2.
2655 * DerivedSources.pro:
2658 * Source/cmake/WebKitPackaging.cmake:
2662 2011-01-14 Ahmad Sharif <asharif.tools@gmail.com>
2664 Reviewed by Darin Fisher.
2666 When inlining is performed, the progress variable is
2667 declared as uninitialized.
2668 https://bugs.webkit.org/show_bug.cgi?id=51084
2670 * WebCore: Copied from WebCore.
2671 * WebCore/page/animation/KeyframeAnimation.cpp:
2672 (WebCore::KeyframeAnimation::animate):
2673 (WebCore::KeyframeAnimation::getAnimatedStyle):
2675 2011-01-11 Laszlo Gombos <laszlo.1.gombos@nokia.com>
2677 Reviewed by Csaba Osztrogonác.
2679 [Qt] Add QT_NO_CONCURRENT to the qt_minimal configuration
2680 https://bugs.webkit.org/show_bug.cgi?id=52223
2682 Add QT_NO_CONCURRENT to the qt_minimal configuration to make sure
2683 that QtWebKit builds with QT_NO_CONCURRENT defined.
2687 2011-01-11 Mihai Parparita <mihaip@chromium.org>
2689 Unreviewed. Update .gitignore with new Chromium dependency.
2691 ui/ was added with http://crrev.com/70743, we picked that up with a
2692 Chromium roll in r75311.
2694 Also alphabetizes the dependency list.
2698 2011-01-10 Laszlo Gombos <laszlo.1.gombos@nokia.com>
2700 Reviewed by Csaba Osztrogonác.
2702 [Qt] Baseline qt_minimal configuration
2703 https://bugs.webkit.org/show_bug.cgi?id=51313
2705 * WebKit.pri: List the supported QT_NO_FEATURE flags
2706 under qt_minimal configuration.
2708 2011-01-10 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2710 Reviewed by Eric Seidel.
2712 [EFL] Enable JIT for WebKit EFL
2713 https://bugs.webkit.org/show_bug.cgi?id=52140
2715 Enable JIT option for WebKit EFL. Enabled JIT's JS performance is
2716 3 ~ 6 times faster than before.
2718 * Source/cmake/OptionsEfl.cmake:
2720 2011-01-10 Martin Robinson <mrobinson@igalia.com>
2722 Reviewed by Gustavo Noronha.
2724 Bump the WebKitGTK+ versions in preparation for development release.
2726 * configure.ac: Bump the library, libtool and user agent version.
2728 2011-01-10 Xan Lopez <xlopez@igalia.com>
2730 Reviewed by Martin Robinson.
2732 [GTK] Create intermediate libWebCore library
2733 https://bugs.webkit.org/show_bug.cgi?id=52116
2735 * GNUmakefile.am: add XP_UNIX to the global CPP flags, since it's
2736 used by both libWebCore and libwebkitgtk now.
2738 2011-01-08 Patrick Gansterer <paroga@webkit.org>
2740 Unreviewed wx build fix for r75313.
2742 * wscript: Added missing brace.
2744 2011-01-07 Adam Barth <abarth@webkit.org>
2746 Rubber-stamped by Eric Seidel.
2748 Move WebCore to Source
2749 https://bugs.webkit.org/show_bug.cgi?id=52050
2751 Update build files and metadata to point to WebCore's new location.
2757 * DerivedSources.pro:
2760 * Source/autotools/webkit.m4:
2761 * Source/cmake/OptionsEfl.cmake:
2767 2011-01-06 Martin Robinson <mrobinson@igalia.com>
2769 Reviewed by Eric Seidel.
2771 [GTK] Initial build support for WebGL
2772 https://bugs.webkit.org/show_bug.cgi?id=51716
2774 * configure.ac: Add a configure option for WebGL.
2776 2011-01-06 Michael Saboff <msaboff@apple.com>
2778 Reviewed by Gavin Barraclough.
2780 Enhancement: Add Regexp Debug Compare between JIT and Interpreter
2781 https://bugs.webkit.org/show_bug.cgi?id=51834
2783 * JavaScriptCore: Copied from JavaScriptCore.
2785 2011-01-06 Martin Robinson <mrobinson@igalia.com>
2787 Reviewed by Xan Lopez.
2789 [GTK] Enable blob support by default
2790 https://bugs.webkit.org/show_bug.cgi?id=51994
2792 * configure.ac: Enable Blob support by default.
2794 2011-01-05 Patrick Gansterer <paroga@webkit.org>
2796 Reviewed by Andreas Kling.
2798 [CMake] Fix the usage of SOURCE_GROUP
2799 https://bugs.webkit.org/show_bug.cgi?id=51739
2801 * Source/cmake/WebKitMacros.cmake:
2803 2011-01-05 Patrick Gansterer <paroga@webkit.org>
2805 Reviewed by Andreas Kling.
2807 [WINCE] Remove CMake warning
2808 https://bugs.webkit.org/show_bug.cgi?id=51921
2810 * Source/cmake/WebKitHelpers.cmake:
2812 2011-01-04 Martin Robinson <mrobinson@igalia.com>
2814 Reviewed by David Levin.
2816 .gitignore should be updated to reflect Sources rename to Source
2817 https://bugs.webkit.org/show_bug.cgi?id=51893
2819 * .gitignore: Change all paths that reference the "Sources" directory to say "Source".
2821 2011-01-04 Dihan Wickremasuriya <dihan.wickremasuriya@nokia.com>
2823 Reviewed by Laszlo Gombos.
2825 [Qt] [Symbian] Build system cleanup
2827 After r74811 special handling for the Symbian build is no longer needed.
2828 This patch reverts r58756.
2832 2011-01-03 Xan Lopez <xlopez@igalia.com>
2834 Reviewed by Martin Robinson.
2836 * autogen.sh: also pass $ACLOCAL_FLAGS for tools that set that env
2837 variable (like jhbuild).
2839 2011-01-03 Patrick Gansterer <paroga@webkit.org>
2841 Reviewed by Darin Adler.
2843 [WINCE] Provide third party directory via environment variable
2844 https://bugs.webkit.org/show_bug.cgi?id=51643
2846 * Source/cmake/OptionsWinCE.cmake:
2848 2011-01-03 Xan Lopez <xlopez@igalia.com>
2850 Reviewed by Martin Robinson.
2852 Use autoreconf instead of calling manually all the usual commands.
2854 * autogen.sh: call autoreconf instead of
2855 aclocal/autoheader/autoconf/automake/libtoolize.
2857 2011-01-03 Xan Lopez <xlopez@igalia.com>
2859 Reviewed by Martin Robinson.
2861 [GTK] Disable superfluous GNU make built-in implicit rules
2862 https://bugs.webkit.org/show_bug.cgi?id=51826
2864 GNU make ships some superflous built-in rules that we never use
2865 and that end up adding up to a very significant portion of our
2866 total Makefile processing time. Disable them completely by
2867 defining the rule without any recipe, as suggested by the GNU make
2868 manual (10.5.6, Cancelling Implicit Rules).
2870 In my system the null-build goes from:
2872 make 43.51s user 12.77s system 99% cpu 56.628 total
2876 make 31.45s user 11.59s system 99% cpu 43.227 total
2878 * GNUmakefile.am: disable implicit built-in rules.
2880 2011-01-03 Mihai Parparita <mihaip@chromium.org>
2882 Unreviewed. Update .gitignore with new JavaScriptCore location.
2886 2011-01-02 Patrick Gansterer <paroga@webkit.org>
2888 [CMake] Unreviewed build fix.
2891 * Source/cmake/OptionsCommon.cmake:
2893 2011-01-01 Adam Barth <abarth@webkit.org>
2895 Reviewed by Eric Seidel.
2897 Move JavaScriptCore to Source
2898 https://bugs.webkit.org/show_bug.cgi?id=51604
2900 Update references to JavaScriptCore to point to the new location.
2904 * DerivedSources.pro:
2911 2011-01-01 Adam Barth <abarth@webkit.org>
2913 Reviewed by Eric Seidel.
2915 Move Sources to Source
2916 https://bugs.webkit.org/show_bug.cgi?id=51794
2918 Update build files to point to the new location.
2926 2010-12-31 Adam Barth <abarth@webkit.org>
2928 Rubber-stamped by Eric Seidel.
2930 Move HTML and XML parser benchmarks into PerformanceTests/Parser
2931 https://bugs.webkit.org/show_bug.cgi?id=51772
2933 Actually move the directory.
2935 * PerformanceTests/Parser: Copied from WebCore/benchmarks/parser.
2937 2010-12-31 Adam Barth <abarth@webkit.org>
2939 Rubber-stamped by Eric Seidel.
2941 Move PageLoadTests to PerformanceTests/PageLoad
2942 https://bugs.webkit.org/show_bug.cgi?id=51771
2944 Actually move the directory.
2946 * PageLoadTests: Removed.
2947 * PageLoadTests/svg: Removed.
2948 * PageLoadTests/svg/LICENSES: Removed.
2949 * PageLoadTests/svg/files: Removed.
2950 * PageLoadTests/svg/files/33041-Samurai.svg: Removed.
2951 * PageLoadTests/svg/files/42450-under the see.svg: Removed.
2952 * PageLoadTests/svg/files/42470-flower_from_my_garden_v2.svg: Removed.
2953 * PageLoadTests/svg/files/44057-drops on a blade.svg: Removed.
2954 * PageLoadTests/svg/files/Harvey_Rayner.svg: Removed.
2955 * PageLoadTests/svg/files/az-lizard_benji_park_01.svg: Removed.
2956 * PageLoadTests/svg/files/bamboo_01.svg: Removed.
2957 * PageLoadTests/svg/files/cacuts_01.svg: Removed.
2958 * PageLoadTests/svg/files/cowboy.svg: Removed.
2959 * PageLoadTests/svg/files/crawfish2_ganson.svg: Removed.
2960 * PageLoadTests/svg/files/deb9frac1.svg: Removed.
2961 * PageLoadTests/svg/files/food_leif_lodahl_01.svg: Removed.
2962 * PageLoadTests/svg/files/france.svg: Removed.
2963 * PageLoadTests/svg/files/francobollo_gnome_ezechi_02.svg: Removed.
2964 * PageLoadTests/svg/files/gearflowers.svg: Removed.
2965 * PageLoadTests/svg/files/hereGear4.svg: Removed.
2966 * PageLoadTests/svg/files/mtsthelens.svg: Removed.
2967 * PageLoadTests/svg/files/mtsthelens0.jpg: Removed.
2968 * PageLoadTests/svg/files/world-iso.svg: Removed.
2969 * PageLoadTests/svg/files/worldcup.svg: Removed.
2970 * PageLoadTests/svg/svg.pltsuite: Removed.
2971 * PerformanceTests/PageLoad: Copied from PageLoadTests.
2972 * Sources/cmake/WebKitPackaging.cmake:
2974 2010-12-31 Adam Barth <abarth@webkit.org>
2976 Rubber-stamped by Eric Seidel.
2978 Move SunSpider into PerformanceTests
2979 https://bugs.webkit.org/show_bug.cgi?id=51769
2981 Actually move the directory.
2983 * PerformanceTests: Added.
2984 * PerformanceTests/SunSpider: Copied from SunSpider.
2985 * Sources/cmake/WebKitPackaging.cmake:
2986 * SunSpider: Removed.
2987 * SunSpider/SunSpider.make: Removed.
2988 * SunSpider/TODO: Removed.
2989 * SunSpider/UNCOVERED: Removed.
2990 * SunSpider/hosted: Removed.
2991 * SunSpider/hosted/json2.js: Removed.
2992 * SunSpider/hosted/sunspider.css: Removed.
2993 * SunSpider/hosted/sunspider.html: Removed.
2994 * SunSpider/hosted/versions.html: Removed.
2995 * SunSpider/make-hosted: Removed.
2996 * SunSpider/resources: Removed.
2997 * SunSpider/resources/TEMPLATE.html: Removed.
2998 * SunSpider/resources/driver-TEMPLATE.html: Removed.
2999 * SunSpider/resources/results-TEMPLATE.html: Removed.
3000 * SunSpider/resources/sunspider-analyze-results.js: Removed.
3001 * SunSpider/resources/sunspider-compare-results.js: Removed.
3002 * SunSpider/resources/sunspider-standalone-compare.js: Removed.
3003 * SunSpider/resources/sunspider-standalone-driver.js: Removed.
3004 * SunSpider/sunspider: Removed.
3005 * SunSpider/sunspider-compare-results: Removed.
3006 * SunSpider/tests: Removed.
3007 * SunSpider/tests/parse-only: Removed.
3008 * SunSpider/tests/parse-only/LIST: Removed.
3009 * SunSpider/tests/parse-only/concat-jquery-mootools-prototype.js: Removed.
3010 * SunSpider/tests/parse-only/jquery-1.3.2.js: Removed.
3011 * SunSpider/tests/parse-only/mootools-1.2.2-core-nc.js: Removed.
3012 * SunSpider/tests/parse-only/prototype-1.6.0.3.js: Removed.
3013 * SunSpider/tests/sunspider-0.9: Removed.
3014 * SunSpider/tests/sunspider-0.9.1: Removed.
3015 * SunSpider/tests/sunspider-0.9.1/3d-cube.js: Removed.
3016 * SunSpider/tests/sunspider-0.9.1/3d-morph.js: Removed.
3017 * SunSpider/tests/sunspider-0.9.1/3d-raytrace.js: Removed.
3018 * SunSpider/tests/sunspider-0.9.1/LIST: Removed.
3019 * SunSpider/tests/sunspider-0.9.1/access-binary-trees.js: Removed.
3020 * SunSpider/tests/sunspider-0.9.1/access-fannkuch.js: Removed.
3021 * SunSpider/tests/sunspider-0.9.1/access-nbody.js: Removed.
3022 * SunSpider/tests/sunspider-0.9.1/access-nsieve.js: Removed.
3023 * SunSpider/tests/sunspider-0.9.1/bitops-3bit-bits-in-byte.js: Removed.
3024 * SunSpider/tests/sunspider-0.9.1/bitops-bits-in-byte.js: Removed.
3025 * SunSpider/tests/sunspider-0.9.1/bitops-bitwise-and.js: Removed.
3026 * SunSpider/tests/sunspider-0.9.1/bitops-nsieve-bits.js: Removed.
3027 * SunSpider/tests/sunspider-0.9.1/controlflow-recursive.js: Removed.
3028 * SunSpider/tests/sunspider-0.9.1/crypto-aes.js: Removed.
3029 * SunSpider/tests/sunspider-0.9.1/crypto-md5.js: Removed.
3030 * SunSpider/tests/sunspider-0.9.1/crypto-sha1.js: Removed.
3031 * SunSpider/tests/sunspider-0.9.1/date-format-tofte.js: Removed.
3032 * SunSpider/tests/sunspider-0.9.1/date-format-xparb.js: Removed.
3033 * SunSpider/tests/sunspider-0.9.1/math-cordic.js: Removed.
3034 * SunSpider/tests/sunspider-0.9.1/math-partial-sums.js: Removed.
3035 * SunSpider/tests/sunspider-0.9.1/math-spectral-norm.js: Removed.
3036 * SunSpider/tests/sunspider-0.9.1/regexp-dna.js: Removed.
3037 * SunSpider/tests/sunspider-0.9.1/string-base64.js: Removed.
3038 * SunSpider/tests/sunspider-0.9.1/string-fasta.js: Removed.
3039 * SunSpider/tests/sunspider-0.9.1/string-tagcloud.js: Removed.
3040 * SunSpider/tests/sunspider-0.9.1/string-unpack-code.js: Removed.
3041 * SunSpider/tests/sunspider-0.9.1/string-validate-input.js: Removed.
3042 * SunSpider/tests/sunspider-0.9/3d-cube.js: Removed.
3043 * SunSpider/tests/sunspider-0.9/3d-morph.js: Removed.
3044 * SunSpider/tests/sunspider-0.9/3d-raytrace.js: Removed.
3045 * SunSpider/tests/sunspider-0.9/LIST: Removed.
3046 * SunSpider/tests/sunspider-0.9/access-binary-trees.js: Removed.
3047 * SunSpider/tests/sunspider-0.9/access-fannkuch.js: Removed.
3048 * SunSpider/tests/sunspider-0.9/access-nbody.js: Removed.
3049 * SunSpider/tests/sunspider-0.9/access-nsieve.js: Removed.
3050 * SunSpider/tests/sunspider-0.9/bitops-3bit-bits-in-byte.js: Removed.
3051 * SunSpider/tests/sunspider-0.9/bitops-bits-in-byte.js: Removed.
3052 * SunSpider/tests/sunspider-0.9/bitops-bitwise-and.js: Removed.
3053 * SunSpider/tests/sunspider-0.9/bitops-nsieve-bits.js: Removed.
3054 * SunSpider/tests/sunspider-0.9/controlflow-recursive.js: Removed.
3055 * SunSpider/tests/sunspider-0.9/crypto-aes.js: Removed.
3056 * SunSpider/tests/sunspider-0.9/crypto-md5.js: Removed.
3057 * SunSpider/tests/sunspider-0.9/crypto-sha1.js: Removed.
3058 * SunSpider/tests/sunspider-0.9/date-format-tofte.js: Removed.
3059 * SunSpider/tests/sunspider-0.9/date-format-xparb.js: Removed.
3060 * SunSpider/tests/sunspider-0.9/math-cordic.js: Removed.
3061 * SunSpider/tests/sunspider-0.9/math-partial-sums.js: Removed.
3062 * SunSpider/tests/sunspider-0.9/math-spectral-norm.js: Removed.
3063 * SunSpider/tests/sunspider-0.9/regexp-dna.js: Removed.
3064 * SunSpider/tests/sunspider-0.9/string-base64.js: Removed.
3065 * SunSpider/tests/sunspider-0.9/string-fasta.js: Removed.
3066 * SunSpider/tests/sunspider-0.9/string-tagcloud.js: Removed.
3067 * SunSpider/tests/sunspider-0.9/string-unpack-code.js: Removed.
3068 * SunSpider/tests/sunspider-0.9/string-validate-input.js: Removed.
3069 * SunSpider/tests/ubench: Removed.
3070 * SunSpider/tests/ubench/LIST: Removed.
3071 * SunSpider/tests/ubench/function-closure.js: Removed.
3072 * SunSpider/tests/ubench/function-correct-args.js: Removed.
3073 * SunSpider/tests/ubench/function-empty.js: Removed.
3074 * SunSpider/tests/ubench/function-excess-args.js: Removed.
3075 * SunSpider/tests/ubench/function-missing-args.js: Removed.
3076 * SunSpider/tests/ubench/function-sum.js: Removed.
3077 * SunSpider/tests/ubench/loop-empty-resolve.js: Removed.
3078 * SunSpider/tests/ubench/loop-empty.js: Removed.
3079 * SunSpider/tests/ubench/loop-sum.js: Removed.
3080 * SunSpider/tests/v8-v4: Removed.
3081 * SunSpider/tests/v8-v4/LIST: Removed.
3082 * SunSpider/tests/v8-v4/v8-crypto.js: Removed.
3083 * SunSpider/tests/v8-v4/v8-deltablue.js: Removed.
3084 * SunSpider/tests/v8-v4/v8-earley-boyer.js: Removed.
3085 * SunSpider/tests/v8-v4/v8-raytrace.js: Removed.
3086 * SunSpider/tests/v8-v4/v8-regexp.js: Removed.
3087 * SunSpider/tests/v8-v4/v8-richards.js: Removed.
3088 * SunSpider/tests/v8-v4/v8-splay.js: Removed.
3089 * SunSpider/tests/v8-v5: Removed.
3090 * SunSpider/tests/v8-v5/LIST: Removed.
3091 * SunSpider/tests/v8-v5/v8-crypto.js: Removed.
3092 * SunSpider/tests/v8-v5/v8-deltablue.js: Removed.
3093 * SunSpider/tests/v8-v5/v8-earley-boyer.js: Removed.
3094 * SunSpider/tests/v8-v5/v8-raytrace.js: Removed.
3095 * SunSpider/tests/v8-v5/v8-regexp.js: Removed.
3096 * SunSpider/tests/v8-v5/v8-richards.js: Removed.
3097 * SunSpider/tests/v8-v5/v8-splay.js: Removed.
3098 * SunSpider/tests/v8-v6: Removed.
3099 * SunSpider/tests/v8-v6/LIST: Removed.
3100 * SunSpider/tests/v8-v6/v8-crypto.js: Removed.
3101 * SunSpider/tests/v8-v6/v8-deltablue.js: Removed.
3102 * SunSpider/tests/v8-v6/v8-earley-boyer.js: Removed.
3103 * SunSpider/tests/v8-v6/v8-raytrace.js: Removed.
3104 * SunSpider/tests/v8-v6/v8-regexp.js: Removed.
3105 * SunSpider/tests/v8-v6/v8-richards.js: Removed.
3106 * SunSpider/tests/v8-v6/v8-splay.js: Removed.
3107 * SunSpider/xcopy.excludes: Removed.
3109 2010-12-30 Konstantin Tokarev <annulen@yandex.ru>
3111 Reviewed by David Kilzer.
3113 [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
3115 https://bugs.webkit.org/show_bug.cgi?id=51672
3117 * WebKit.pri: Replaced USE_SYSTEM_MALLOC with USE_SYSTEM_MALLOC=1
3119 2010-12-29 Philippe Normand <pnormand@igalia.com>
3121 Reviewed by Martin Robinson.
3123 [GTK] minimal build fails at link time due to missing sqlite3 symbols
3124 https://bugs.webkit.org/show_bug.cgi?id=51327
3126 * configure.ac: Error out if SQLite3 wasn't found while at least
3127 one of the features depending on it has been enabled.
3129 2010-12-29 Patrick Gansterer <paroga@webkit.org>
3131 Unreviewed. Use gcc as default preprocessor.
3133 * Sources/cmake/OptionsCommon.cmake:
3135 2010-12-27 Ryuan Choi <ryuan.choi@samsung.com>
3137 Reviewed by David Levin.
3139 [EFL] Change path of eflsymbols.filter
3140 https://bugs.webkit.org/show_bug.cgi?id=51659
3142 * Sources/cmake/OptionsEfl.cmake:
3144 2010-12-26 Adam Barth <abarth@webkit.org>
3146 Reviewed by Eric Siedel.
3148 Move autotools into Sources
3149 https://bugs.webkit.org/show_bug.cgi?id=51630
3153 * Sources/autotools: Copied from autotools.
3155 * autotools: Removed.
3156 * autotools/acinclude.m4: Removed.
3157 * autotools/dolt.m4: Removed.
3158 * autotools/gsettings.m4: Removed.
3159 * autotools/symbols.filter: Removed.
3160 * autotools/webkit.m4: Removed.
3163 2010-12-26 Adam Barth <abarth@webkit.org>
3165 Reviewed by Eric Seidel.
3167 Move cmake into Sources
3168 https://bugs.webkit.org/show_bug.cgi?id=51631
3171 * Sources/cmake: Copied from cmake.
3173 * cmake/FindCFLite.cmake: Removed.
3174 * cmake/FindCairo.cmake: Removed.
3175 * cmake/FindEFL.cmake: Removed.
3176 * cmake/FindFontconfig.cmake: Removed.
3177 * cmake/FindFreetype.cmake: Removed.
3178 * cmake/FindGDK-PixBuf.cmake: Removed.
3179 * cmake/FindGDK.cmake: Removed.
3180 * cmake/FindGIO.cmake: Removed.
3181 * cmake/FindGStreamer-App.cmake: Removed.
3182 * cmake/FindGStreamer-Base.cmake: Removed.
3183 * cmake/FindGStreamer-Interfaces.cmake: Removed.
3184 * cmake/FindGStreamer-Pbutils.cmake: Removed.
3185 * cmake/FindGStreamer-Plugins-Base.cmake: Removed.
3186 * cmake/FindGStreamer-Video.cmake: Removed.
3187 * cmake/FindGStreamer.cmake: Removed.
3188 * cmake/FindGlib.cmake: Removed.
3189 * cmake/FindGperf.cmake: Removed.
3190 * cmake/FindGthread.cmake: Removed.
3191 * cmake/FindICU.cmake: Removed.
3192 * cmake/FindLibSoup2.cmake: Removed.
3193 * cmake/FindLibXlst.cmake: Removed.
3194 * cmake/FindPango.cmake: Removed.
3195 * cmake/FindSqlite.cmake: Removed.
3196 * cmake/LibFindMacros.cmake: Removed.
3197 * cmake/OptionsCommon.cmake: Removed.
3198 * cmake/OptionsEfl.cmake: Removed.
3199 * cmake/OptionsWinCE.cmake: Removed.
3200 * cmake/OptionsWindows.cmake: Removed.
3201 * cmake/WebKitEfl.cmake: Removed.
3202 * cmake/WebKitFS.cmake: Removed.
3203 * cmake/WebKitFeatures.cmake: Removed.
3204 * cmake/WebKitHelpers.cmake: Removed.
3205 * cmake/WebKitMacros.cmake: Removed.
3206 * cmake/WebKitPackaging.cmake: Removed.
3207 * cmake/eflsymbols.filter: Removed.
3209 2010-12-26 Adam Barth <abarth@webkit.org>
3211 Fix some references to the old location of the WebKit website in git
3216 2010-12-25 Adam Barth <abarth@webkit.org>
3218 Reviewed by Eric Seidel.
3220 Move ANGLE to Sources/ThirdParty
3221 https://bugs.webkit.org/show_bug.cgi?id=51605
3223 Actually move ANGLE and update the Makefile.
3226 * ANGLE/ANGLE.xcodeproj: Removed.
3227 * ANGLE/ANGLE.xcodeproj/project.pbxproj: Removed.
3228 * ANGLE/Configurations: Removed.
3229 * ANGLE/Configurations/ANGLE.xcconfig: Removed.
3230 * ANGLE/Configurations/Base.xcconfig: Removed.
3231 * ANGLE/Configurations/DebugRelease.xcconfig: Removed.
3232 * ANGLE/Makefile: Removed.
3233 * ANGLE/include: Removed.
3234 * ANGLE/include/EGL: Removed.
3235 * ANGLE/include/EGL/egl.h: Removed.
3236 * ANGLE/include/EGL/eglext.h: Removed.
3237 * ANGLE/include/EGL/eglplatform.h: Removed.
3238 * ANGLE/include/GLES2: Removed.
3239 * ANGLE/include/GLES2/gl2.h: Removed.
3240 * ANGLE/include/GLES2/gl2ext.h: Removed.
3241 * ANGLE/include/GLES2/gl2platform.h: Removed.
3242 * ANGLE/include/GLSLANG: Removed.
3243 * ANGLE/include/GLSLANG/ShaderLang.h: Removed.
3244 * ANGLE/include/KHR: Removed.
3245 * ANGLE/include/KHR/khrplatform.h: Removed.
3246 * ANGLE/src: Removed.
3247 * ANGLE/src/build_angle.xcodeproj: Removed.
3248 * ANGLE/src/build_angle.xcodeproj/project.pbxproj: Removed.
3249 * ANGLE/src/common: Removed.
3250 * ANGLE/src/common/angleutils.h: Removed.
3251 * ANGLE/src/common/debug.cpp: Removed.
3252 * ANGLE/src/common/debug.h: Removed.
3253 * ANGLE/src/compiler: Removed.
3254 * ANGLE/src/compiler/BaseTypes.h: Removed.
3255 * ANGLE/src/compiler/CodeGenGLSL.cpp: Removed.
3256 * ANGLE/src/compiler/CodeGenHLSL.cpp: Removed.
3257 * ANGLE/src/compiler/Common.h: Removed.
3258 * ANGLE/src/compiler/ConstantUnion.h: Removed.
3259 * ANGLE/src/compiler/InfoSink.cpp: Removed.
3260 * ANGLE/src/compiler/InfoSink.h: Removed.
3261 * ANGLE/src/compiler/Initialize.cpp: Removed.
3262 * ANGLE/src/compiler/Initialize.h: Removed.
3263 * ANGLE/src/compiler/InitializeDll.cpp: Removed.
3264 * ANGLE/src/compiler/InitializeDll.h: Removed.
3265 * ANGLE/src/compiler/InitializeGlobals.h: Removed.
3266 * ANGLE/src/compiler/InitializeParseContext.h: Removed.
3267 * ANGLE/src/compiler/IntermTraverse.cpp: Removed.
3268 * ANGLE/src/compiler/Intermediate.cpp: Removed.
3269 * ANGLE/src/compiler/MMap.h: Removed.
3270 * ANGLE/src/compiler/OutputGLSL.cpp: Removed.
3271 * ANGLE/src/compiler/OutputGLSL.h: Removed.
3272 * ANGLE/src/compiler/OutputHLSL.cpp: Removed.
3273 * ANGLE/src/compiler/OutputHLSL.h: Removed.
3274 * ANGLE/src/compiler/ParseHelper.cpp: Removed.
3275 * ANGLE/src/compiler/ParseHelper.h: Removed.
3276 * ANGLE/src/compiler/PoolAlloc.cpp: Removed.
3277 * ANGLE/src/compiler/PoolAlloc.h: Removed.
3278 * ANGLE/src/compiler/QualifierAlive.cpp: Removed.
3279 * ANGLE/src/compiler/QualifierAlive.h: Removed.
3280 * ANGLE/src/compiler/RemoveTree.cpp: Removed.
3281 * ANGLE/src/compiler/RemoveTree.h: Removed.
3282 * ANGLE/src/compiler/ShHandle.h: Removed.
3283 * ANGLE/src/compiler/ShaderLang.cpp: Removed.
3284 * ANGLE/src/compiler/SymbolTable.cpp: Removed.
3285 * ANGLE/src/compiler/SymbolTable.h: Removed.
3286 * ANGLE/src/compiler/TranslatorGLSL.cpp: Removed.
3287 * ANGLE/src/compiler/TranslatorGLSL.h: Removed.
3288 * ANGLE/src/compiler/TranslatorHLSL.cpp: Removed.
3289 * ANGLE/src/compiler/TranslatorHLSL.h: Removed.
3290 * ANGLE/src/compiler/Types.h: Removed.
3291 * ANGLE/src/compiler/UnfoldSelect.cpp: Removed.
3292 * ANGLE/src/compiler/UnfoldSelect.h: Removed.
3293 * ANGLE/src/compiler/debug.cpp: Removed.
3294 * ANGLE/src/compiler/debug.h: Removed.
3295 * ANGLE/src/compiler/glslang.l: Removed.
3296 * ANGLE/src/compiler/glslang.y: Removed.
3297 * ANGLE/src/compiler/intermOut.cpp: Removed.
3298 * ANGLE/src/compiler/intermediate.h: Removed.
3299 * ANGLE/src/compiler/localintermediate.h: Removed.
3300 * ANGLE/src/compiler/osinclude.h: Removed.
3301 * ANGLE/src/compiler/ossource_posix.cpp: Removed.
3302 * ANGLE/src/compiler/ossource_win.cpp: Removed.
3303 * ANGLE/src/compiler/parseConst.cpp: Removed.
3304 * ANGLE/src/compiler/preprocessor: Removed.
3305 * ANGLE/src/compiler/preprocessor/atom.c: Removed.
3306 * ANGLE/src/compiler/preprocessor/atom.h: Removed.
3307 * ANGLE/src/compiler/preprocessor/compile.h: Removed.
3308 * ANGLE/src/compiler/preprocessor/cpp.c: Removed.
3309 * ANGLE/src/compiler/preprocessor/cpp.h: Removed.
3310 * ANGLE/src/compiler/preprocessor/cppstruct.c: Removed.
3311 * ANGLE/src/compiler/preprocessor/memory.c: Removed.
3312 * ANGLE/src/compiler/preprocessor/memory.h: Removed.
3313 * ANGLE/src/compiler/preprocessor/parser.h: Removed.
3314 * ANGLE/src/compiler/preprocessor/preprocess.h: Removed.
3315 * ANGLE/src/compiler/preprocessor/scanner.c: Removed.
3316 * ANGLE/src/compiler/preprocessor/scanner.h: Removed.
3317 * ANGLE/src/compiler/preprocessor/slglobals.h: Removed.
3318 * ANGLE/src/compiler/preprocessor/symbols.c: Removed.
3319 * ANGLE/src/compiler/preprocessor/symbols.h: Removed.
3320 * ANGLE/src/compiler/preprocessor/tokens.c: Removed.
3321 * ANGLE/src/compiler/preprocessor/tokens.h: Removed.
3322 * ANGLE/src/compiler/tools: Removed.
3323 * ANGLE/src/compiler/unistd.h: Removed.
3324 * ANGLE/src/libEGL: Removed.
3325 * ANGLE/src/libEGL/Config.cpp: Removed.
3326 * ANGLE/src/libEGL/Config.h: Removed.
3327 * ANGLE/src/libEGL/Display.cpp: Removed.
3328 * ANGLE/src/libEGL/Display.h: Removed.
3329 * ANGLE/src/libEGL/Surface.cpp: Removed.
3330 * ANGLE/src/libEGL/Surface.h: Removed.
3331 * ANGLE/src/libEGL/libEGL.cpp: Removed.
3332 * ANGLE/src/libEGL/libEGL.def: Removed.
3333 * ANGLE/src/libEGL/libEGL.vcproj: Removed.
3334 * ANGLE/src/libEGL/main.cpp: Removed.
3335 * ANGLE/src/libEGL/main.h: Removed.
3336 * ANGLE/src/libGLESv2: Removed.
3337 * ANGLE/src/libGLESv2/Blit.cpp: Removed.
3338 * ANGLE/src/libGLESv2/Blit.h: Removed.
3339 * ANGLE/src/libGLESv2/Buffer.cpp: Removed.
3340 * ANGLE/src/libGLESv2/Buffer.h: Removed.
3341 * ANGLE/src/libGLESv2/Context.cpp: Removed.
3342 * ANGLE/src/libGLESv2/Context.h: Removed.
3343 * ANGLE/src/libGLESv2/Framebuffer.cpp: Removed.
3344 * ANGLE/src/libGLESv2/Framebuffer.h: Removed.
3345 * ANGLE/src/libGLESv2/Program.cpp: Removed.
3346 * ANGLE/src/libGLESv2/Program.h: Removed.
3347 * ANGLE/src/libGLESv2/RefCountObject.cpp: Removed.
3348 * ANGLE/src/libGLESv2/RefCountObject.h: Removed.
3349 * ANGLE/src/libGLESv2/Renderbuffer.cpp: Removed.
3350 * ANGLE/src/libGLESv2/Renderbuffer.h: Removed.
3351 * ANGLE/src/libGLESv2/ResourceManager.cpp: Removed.
3352 * ANGLE/src/libGLESv2/ResourceManager.h: Removed.
3353 * ANGLE/src/libGLESv2/Shader.cpp: Removed.
3354 * ANGLE/src/libGLESv2/Shader.h: Removed.
3355 * ANGLE/src/libGLESv2/Texture.cpp: Removed.
3356 * ANGLE/src/libGLESv2/Texture.h: Removed.
3357 * ANGLE/src/libGLESv2/geometry: Removed.
3358 * ANGLE/src/libGLESv2/geometry/IndexDataManager.cpp: Removed.
3359 * ANGLE/src/libGLESv2/geometry/IndexDataManager.h: Removed.
3360 * ANGLE/src/libGLESv2/geometry/VertexDataManager.cpp: Removed.
3361 * ANGLE/src/libGLESv2/geometry/VertexDataManager.h: Removed.
3362 * ANGLE/src/libGLESv2/geometry/backend.cpp: Removed.
3363 * ANGLE/src/libGLESv2/geometry/backend.h: Removed.
3364 * ANGLE/src/libGLESv2/geometry/dx9.cpp: Removed.
3365 * ANGLE/src/libGLESv2/geometry/dx9.h: Removed.
3366 * ANGLE/src/libGLESv2/geometry/vertexconversion.h: Removed.
3367 * ANGLE/src/libGLESv2/libGLESv2.cpp: Removed.
3368 * ANGLE/src/libGLESv2/libGLESv2.def: Removed.
3369 * ANGLE/src/libGLESv2/libGLESv2.vcproj: Removed.
3370 * ANGLE/src/libGLESv2/main.cpp: Removed.
3371 * ANGLE/src/libGLESv2/main.h: Removed.
3372 * ANGLE/src/libGLESv2/mathutil.h: Removed.
3373 * ANGLE/src/libGLESv2/utilities.cpp: Removed.
3374 * ANGLE/src/libGLESv2/utilities.h: Removed.
3376 * Sources/ThirdParty: Added.
3377 * Sources/ThirdParty/ANGLE: Copied from ANGLE.
3379 2010-12-26 Patrick Gansterer <paroga@webkit.org>
3381 Unreviewed WinCE buildfix after r74626.
3383 * cmake/OptionsWinCE.cmake:
3385 2010-12-24 Darin Adler <darin@apple.com>
3387 Updated makefiles used by Apple engineers to fix build with the
3388 new JavaScriptGlue location.
3390 * Makefile: Told this to build JavaScriptGlue. Some day we might
3391 want it to descend into Sources instead and use the Makefile there,
3392 but there are problems with sequencing the project builds, so that
3394 * Sources/Makefile.shared: Added.
3396 2010-12-24 Ryuan Choi <ryuan.choi@samsung.com>
3398 Reviewed by Kenneth Rohde Christiansen.
3400 [EFL] Add option to enable Touch Events.
3401 https://bugs.webkit.org/show_bug.cgi?id=49125
3403 Add ENABLE_TOUCH_EVENTS option.
3405 * cmake/OptionsEfl.cmake:
3406 * cmakeconfig.h.cmake:
3408 2010-12-23 Adam Barth <abarth@webkit.org>
3410 Rubber-stamped by Eric Seidel.
3412 Move JavaScriptGlue into Sources
3413 https://bugs.webkit.org/show_bug.cgi?id=51583
3415 Actually perform the move.
3417 * JavaScriptGlue: Removed.
3418 * JavaScriptGlue/Configurations: Removed.
3419 * JavaScriptGlue/Configurations/Base.xcconfig: Removed.
3420 * JavaScriptGlue/Configurations/DebugRelease.xcconfig: Removed.
3421 * JavaScriptGlue/Configurations/JavaScriptGlue.xcconfig: Removed.
3422 * JavaScriptGlue/Configurations/Version.xcconfig: Removed.
3423 * JavaScriptGlue/English.lproj: Removed.
3424 * JavaScriptGlue/English.lproj/InfoPlist.strings: Removed.
3425 * JavaScriptGlue/ForwardingHeaders: Removed.
3426 * JavaScriptGlue/ForwardingHeaders/masm: Removed.
3427 * JavaScriptGlue/ForwardingHeaders/masm/X86Assembler.h: Removed.
3428 * JavaScriptGlue/ForwardingHeaders/profiler: Removed.
3429 * JavaScriptGlue/ForwardingHeaders/profiler/Profiler.h: Removed.
3430 * JavaScriptGlue/ForwardingHeaders/runtime: Removed.
3431 * JavaScriptGlue/ForwardingHeaders/runtime/CallFrame.h: Removed.
3432 * JavaScriptGlue/ForwardingHeaders/wtf: Removed.
3433 * JavaScriptGlue/ForwardingHeaders/wtf/ASCIICType.h: Removed.
3434 * JavaScriptGlue/ForwardingHeaders/wtf/AlwaysInline.h: Removed.
3435 * JavaScriptGlue/ForwardingHeaders/wtf/Assertions.h: Removed.
3436 * JavaScriptGlue/ForwardingHeaders/wtf/Atomics.h: Removed.
3437 * JavaScriptGlue/ForwardingHeaders/wtf/Bitmap.h: Removed.
3438 * JavaScriptGlue/ForwardingHeaders/wtf/BumpPointerAllocator.h: Removed.
3439 * JavaScriptGlue/ForwardingHeaders/wtf/CrossThreadRefCounted.h: Removed.
3440 * JavaScriptGlue/ForwardingHeaders/wtf/CurrentTime.h: Removed.
3441 * JavaScriptGlue/ForwardingHeaders/wtf/DateInstanceCache.h: Removed.
3442 * JavaScriptGlue/ForwardingHeaders/wtf/DateMath.h: Removed.
3443 * JavaScriptGlue/ForwardingHeaders/wtf/FastAllocBase.h: Removed.
3444 * JavaScriptGlue/ForwardingHeaders/wtf/FastMalloc.h: Removed.
3445 * JavaScriptGlue/ForwardingHeaders/wtf/FixedArray.h: Removed.
3446 * JavaScriptGlue/ForwardingHeaders/wtf/Forward.h: Removed.
3447 * JavaScriptGlue/ForwardingHeaders/wtf/HashCountedSet.h: Removed.
3448 * JavaScriptGlue/ForwardingHeaders/wtf/HashFunctions.h: Removed.
3449 * JavaScriptGlue/ForwardingHeaders/wtf/HashMap.h: Removed.
3450 * JavaScriptGlue/ForwardingHeaders/wtf/HashSet.h: Removed.
3451 * JavaScriptGlue/ForwardingHeaders/wtf/HashTraits.h: Removed.
3452 * JavaScriptGlue/ForwardingHeaders/wtf/ListHashSet.h: Removed.
3453 * JavaScriptGlue/ForwardingHeaders/wtf/ListRefPtr.h: Removed.
3454 * JavaScriptGlue/ForwardingHeaders/wtf/Locker.h: Removed.
3455 * JavaScriptGlue/ForwardingHeaders/wtf/MainThread.h: Removed.
3456 * JavaScriptGlue/ForwardingHeaders/wtf/MathExtras.h: Removed.
3457 * JavaScriptGlue/ForwardingHeaders/wtf/Noncopyable.h: Removed.
3458 * JavaScriptGlue/ForwardingHeaders/wtf/NotFound.h: Removed.
3459 * JavaScriptGlue/ForwardingHeaders/wtf/OSAllocator.h: Removed.
3460 * JavaScriptGlue/ForwardingHeaders/wtf/OwnArrayPtr.h: Removed.
3461 * JavaScriptGlue/ForwardingHeaders/wtf/OwnArrayPtrCommon.h: Removed.
3462 * JavaScriptGlue/ForwardingHeaders/wtf/OwnFastMallocPtr.h: Removed.
3463 * JavaScriptGlue/ForwardingHeaders/wtf/OwnPtr.h: Removed.
3464 * JavaScriptGlue/ForwardingHeaders/wtf/OwnPtrCommon.h: Removed.
3465 * JavaScriptGlue/ForwardingHeaders/wtf/PageAllocation.h: Removed.
3466 * JavaScriptGlue/ForwardingHeaders/wtf/PageAllocationAligned.h: Removed.
3467 * JavaScriptGlue/ForwardingHeaders/wtf/PageBlock.h: Removed.
3468 * JavaScriptGlue/ForwardingHeaders/wtf/PageReservation.h: Removed.
3469 * JavaScriptGlue/ForwardingHeaders/wtf/PassOwnArrayPtr.h: Removed.
3470 * JavaScriptGlue/ForwardingHeaders/wtf/PassOwnPtr.h: Removed.
3471 * JavaScriptGlue/ForwardingHeaders/wtf/PassRefPtr.h: Removed.
3472 * JavaScriptGlue/ForwardingHeaders/wtf/Platform.h: Removed.
3473 * JavaScriptGlue/ForwardingHeaders/wtf/PossiblyNull.h: Removed.
3474 * JavaScriptGlue/ForwardingHeaders/wtf/PtrAndFlags.h: Removed.
3475 * JavaScriptGlue/ForwardingHeaders/wtf/RandomNumber.h: Removed.
3476 * JavaScriptGlue/ForwardingHeaders/wtf/RefCounted.h: Removed.
3477 * JavaScriptGlue/ForwardingHeaders/wtf/RefPtr.h: Removed.
3478 * JavaScriptGlue/ForwardingHeaders/wtf/StackBounds.h: Removed.
3479 * JavaScriptGlue/ForwardingHeaders/wtf/StdLibExtras.h: Removed.
3480 * JavaScriptGlue/ForwardingHeaders/wtf/StringHasher.h: Removed.
3481 * JavaScriptGlue/ForwardingHeaders/wtf/ThreadSafeShared.h: Removed.
3482 * JavaScriptGlue/ForwardingHeaders/wtf/ThreadSpecific.h: Removed.
3483 * JavaScriptGlue/ForwardingHeaders/wtf/Threading.h: Removed.
3484 * JavaScriptGlue/ForwardingHeaders/wtf/ThreadingPrimitives.h: Removed.
3485 * JavaScriptGlue/ForwardingHeaders/wtf/UnusedParam.h: Removed.
3486 * JavaScriptGlue/ForwardingHeaders/wtf/VMTags.h: Removed.
3487 * JavaScriptGlue/ForwardingHeaders/wtf/ValueCheck.h: Removed.
3488 * JavaScriptGlue/ForwardingHeaders/wtf/Vector.h: Removed.
3489 * JavaScriptGlue/ForwardingHeaders/wtf/VectorTraits.h: Removed.
3490 * JavaScriptGlue/ForwardingHeaders/wtf/WTFThreadData.h: Removed.
3491 * JavaScriptGlue/ForwardingHeaders/wtf/text: Removed.
3492 * JavaScriptGlue/ForwardingHeaders/wtf/text/CString.h: Removed.
3493 * JavaScriptGlue/ForwardingHeaders/wtf/text/StringHash.h: Removed.
3494 * JavaScriptGlue/ForwardingHeaders/wtf/text/StringImpl.h: Removed.
3495 * JavaScriptGlue/ForwardingHeaders/wtf/text/StringImplBase.h: Removed.
3496 * JavaScriptGlue/ForwardingHeaders/wtf/text/TextPosition.h: Removed.
3497 * JavaScriptGlue/ForwardingHeaders/wtf/text/WTFString.h: Removed.
3498 * JavaScriptGlue/ForwardingHeaders/wtf/unicode: Removed.
3499 * JavaScriptGlue/ForwardingHeaders/wtf/unicode/Unicode.h: Removed.
3500 * JavaScriptGlue/ForwardingHeaders/wtf/unicode/icu: Removed.
3501 * JavaScriptGlue/ForwardingHeaders/wtf/unicode/icu/UnicodeIcu.h: Removed.
3502 * JavaScriptGlue/Info.plist: Removed.
3503 * JavaScriptGlue/JSBase.cpp: Removed.
3504 * JavaScriptGlue/JSBase.h: Removed.
3505 * JavaScriptGlue/JSObject.cpp: Removed.
3506 * JavaScriptGlue/JSObject.h: Removed.
3507 * JavaScriptGlue/JSRun.cpp: Removed.
3508 * JavaScriptGlue/JSRun.h: Removed.
3509 * JavaScriptGlue/JSUtils.cpp: Removed.
3510 * JavaScriptGlue/JSUtils.h: Removed.
3511 * JavaScriptGlue/JSValueWrapper.cpp: Removed.
3512 * JavaScriptGlue/JSValueWrapper.h: Removed.
3513 * JavaScriptGlue/JavaScriptGlue.cpp: Removed.
3514 * JavaScriptGlue/JavaScriptGlue.exp: Removed.
3515 * JavaScriptGlue/JavaScriptGlue.h: Removed.
3516 * JavaScriptGlue/JavaScriptGlue.xcodeproj: Removed.
3517 * JavaScriptGlue/JavaScriptGlue.xcodeproj/project.pbxproj: Removed.
3518 * JavaScriptGlue/LICENSE: Removed.
3519 * JavaScriptGlue/Makefile: Removed.
3520 * JavaScriptGlue/UserObjectImp.cpp: Removed.
3521 * JavaScriptGlue/UserObjectImp.h: Removed.
3522 * JavaScriptGlue/config.h: Removed.
3523 * JavaScriptGlue/icu: Removed.
3524 * JavaScriptGlue/icu/LICENSE: Removed.
3525 * JavaScriptGlue/icu/README: Removed.
3526 * JavaScriptGlue/icu/unicode: Removed.
3527 * JavaScriptGlue/icu/unicode/platform.h: Removed.
3528 * JavaScriptGlue/icu/unicode/putil.h: Removed.
3529 * JavaScriptGlue/icu/unicode/uchar.h: Removed.
3530 * JavaScriptGlue/icu/unicode/ucnv.h: Removed.
3531 * JavaScriptGlue/icu/unicode/ucnv_err.h: Removed.
3532 * JavaScriptGlue/icu/unicode/uconfig.h: Removed.
3533 * JavaScriptGlue/icu/unicode/uenum.h: Removed.
3534 * JavaScriptGlue/icu/unicode/uiter.h: Removed.
3535 * JavaScriptGlue/icu/unicode/umachine.h: Removed.
3536 * JavaScriptGlue/icu/unicode/urename.h: Removed.
3537 * JavaScriptGlue/icu/unicode/ustring.h: Removed.
3538 * JavaScriptGlue/icu/unicode/utf.h: Removed.
3539 * JavaScriptGlue/icu/unicode/utf16.h: Removed.
3540 * JavaScriptGlue/icu/unicode/utf8.h: Removed.
3541 * JavaScriptGlue/icu/unicode/utf_old.h: Removed.
3542 * JavaScriptGlue/icu/unicode/utypes.h: Removed.
3543 * JavaScriptGlue/icu/unicode/uversion.h: Removed.
3544 * JavaScriptGlue/testjsglue.cpp: Removed.
3547 * Sources/JavaScriptGlue: Copied from JavaScriptGlue.
3548 * Sources/Makefile: Added.
3550 2010-12-23 Lucas De Marchi <lucas.demarchi@profusion.mobi>
3552 Reviewed by Kenneth Rohde Christiansen.
3554 [EFL] Fix ContextMenu removal
3555 https://bugs.webkit.org/show_bug.cgi?id=51530
3557 Fix ContextMenu removal
3559 In r74207 the support for ContextMenu was removed from EFL while the
3560 code is being ported to the new CROSS_PLATFORM_MENUS due to build
3561 breakage. However there were some missing removals in the shutdown
3562 logic that introduced a bug, leading to a segmentation fault when
3563 ContexController was destroyed.
3565 The best way to effectively disable the ContextMenu is to conditionally
3566 compile the meaningful stuff by surrounding with "#if
3567 ENABLE(CONTEXT_MENUS)" and then disabling it in CMake.
3569 * cmake/OptionsEfl.cmake: Disable ContextMenu and don't pretend we
3570 implement CROSS_PLATFORM_MENUS yet.
3572 2010-12-22 Xan Lopez <xlopez@igalia.com>
3574 Reviewed by Gustavo Noronha.
3576 * configure.ac: bump version to 1.3.9.
3578 2010-12-22 Xan Lopez <xlopez@igalia.com>
3580 Reviewed by Gustavo Noronha.
3582 [GTK] Compilation fixes with GTK+ 2.91.7
3583 https://bugs.webkit.org/show_bug.cgi?id=51487
3585 * configure.ac: depend on GTK+ 2.91.7 when using GTK+ 3.x.
3587 2010-12-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3589 Reviewed by Antonio Gomes.
3591 [EFL] Sets default user agent
3592 https://bugs.webkit.org/show_bug.cgi?id=47903
3594 Add macros for WebKit EFL and User Agent.
3596 * cmake/OptionsEfl.cmake:
3597 * cmakeconfig.h.cmake:
3599 2010-12-20 Adam Barth <abarth@webkit.org>
3601 Move web sites to Websites directory
3602 https://bugs.webkit.org/show_bug.cgi?id=51323
3604 This patch was never officially reviewed (because it was too large to
3605 upload to bugs.webkit.org), but it was discussed on webkit-dev and Mark
3606 Rowe gave me the green light.
3608 * BugsSite: Removed.
3609 * BugsSite/.cvsignore: Removed.
3610 * BugsSite/.htaccess: Removed.
3611 * BugsSite/Bugzilla: Removed.
3612 * BugsSite/Bugzilla.pm: Removed.
3613 * BugsSite/Bugzilla/.cvsignore: Removed.
3614 * BugsSite/Bugzilla/.htaccess: Removed.
3615 * BugsSite/Bugzilla/Attachment: Removed.
3616 * BugsSite/Bugzilla/Attachment.pm: Removed.
3617 * BugsSite/Bugzilla/Attachment/PatchReader.pm: Removed.
3618 * BugsSite/Bugzilla/Auth: Removed.
3619 * BugsSite/Bugzilla/Auth.pm: Removed.
3620 * BugsSite/Bugzilla/Auth/Login: Removed.
3621 * BugsSite/Bugzilla/Auth/Login.pm: Removed.
3622 * BugsSite/Bugzilla/Auth/Login/CGI.pm: Removed.
3623 * BugsSite/Bugzilla/Auth/Login/Cookie.pm: Removed.
3624 * BugsSite/Bugzilla/Auth/Login/Env.pm: Removed.
3625 * BugsSite/Bugzilla/Auth/Login/Stack.pm: Removed.
3626 * BugsSite/Bugzilla/Auth/Login/WWW: Removed.
3627 * BugsSite/Bugzilla/Auth/Login/WWW/CGI: Removed.
3628 * BugsSite/Bugzilla/Auth/Persist: Removed.
3629 * BugsSite/Bugzilla/Auth/Persist/Cookie.pm: Removed.
3630 * BugsSite/Bugzilla/Auth/Verify: Removed.
3631 * BugsSite/Bugzilla/Auth/Verify.pm: Removed.
3632 * BugsSite/Bugzilla/Auth/Verify/DB.pm: Removed.
3633 * BugsSite/Bugzilla/Auth/Verify/LDAP.pm: Removed.
3634 * BugsSite/Bugzilla/Auth/Verify/RADIUS.pm: Removed.
3635 * BugsSite/Bugzilla/Auth/Verify/Stack.pm: Removed.
3636 * BugsSite/Bugzilla/Bug.pm: Removed.
3637 * BugsSite/Bugzilla/BugMail.pm: Removed.
3638 * BugsSite/Bugzilla/CGI.pm: Removed.
3639 * BugsSite/Bugzilla/Chart.pm: Removed.
3640 * BugsSite/Bugzilla/Classification.pm: Removed.
3641 * BugsSite/Bugzilla/Component.pm: Removed.
3642 * BugsSite/Bugzilla/Config: Removed.
3643 * BugsSite/Bugzilla/Config.pm: Removed.
3644 * BugsSite/Bugzilla/Config/Admin.pm: Removed.
3645 * BugsSite/Bugzilla/Config/Attachment.pm: Removed.
3646 * BugsSite/Bugzilla/Config/Auth.pm: Removed.
3647 * BugsSite/Bugzilla/Config/BugChange.pm: Removed.
3648 * BugsSite/Bugzilla/Config/BugFields.pm: Removed.
3649 * BugsSite/Bugzilla/Config/BugMove.pm: Removed.
3650 * BugsSite/Bugzilla/Config/Common.pm: Removed.
3651 * BugsSite/Bugzilla/Config/Core.pm: Removed.
3652 * BugsSite/Bugzilla/Config/DependencyGraph.pm: Removed.
3653 * BugsSite/Bugzilla/Config/GroupSecurity.pm: Removed.
3654 * BugsSite/Bugzilla/Config/LDAP.pm: Removed.
3655 * BugsSite/Bugzilla/Config/MTA.pm: Removed.
3656 * BugsSite/Bugzilla/Config/PatchViewer.pm: Removed.
3657 * BugsSite/Bugzilla/Config/Query.pm: Removed.
3658 * BugsSite/Bugzilla/Config/RADIUS.pm: Removed.
3659 * BugsSite/Bugzilla/Config/ShadowDB.pm: Removed.
3660 * BugsSite/Bugzilla/Config/UserMatch.pm: Removed.
3661 * BugsSite/Bugzilla/Constants.pm: Removed.
3662 * BugsSite/Bugzilla/DB: Removed.
3663 * BugsSite/Bugzilla/DB.pm: Removed.
3664 * BugsSite/Bugzilla/DB/Mysql.pm: Removed.
3665 * BugsSite/Bugzilla/DB/Oracle.pm: Removed.
3666 * BugsSite/Bugzilla/DB/Pg.pm: Removed.
3667 * BugsSite/Bugzilla/DB/Schema: Removed.
3668 * BugsSite/Bugzilla/DB/Schema.pm: Removed.
3669 * BugsSite/Bugzilla/DB/Schema/Mysql.pm: Removed.
3670 * BugsSite/Bugzilla/DB/Schema/Oracle.pm: Removed.
3671 * BugsSite/Bugzilla/DB/Schema/Pg.pm: Removed.
3672 * BugsSite/Bugzilla/Error.pm: Removed.
3673 * BugsSite/Bugzilla/Field.pm: Removed.
3674 * BugsSite/Bugzilla/Flag.pm: Removed.
3675 * BugsSite/Bugzilla/FlagType.pm: Removed.
3676 * BugsSite/Bugzilla/Group.pm: Removed.
3677 * BugsSite/Bugzilla/Hook.pm: Removed.
3678 * BugsSite/Bugzilla/Install: Removed.
3679 * BugsSite/Bugzilla/Install.pm: Removed.
3680 * BugsSite/Bugzilla/Install/CPAN.pm: Removed.
3681 * BugsSite/Bugzilla/Install/DB.pm: Removed.
3682 * BugsSite/Bugzilla/Install/Filesystem.pm: Removed.
3683 * BugsSite/Bugzilla/Install/Localconfig.pm: Removed.
3684 * BugsSite/Bugzilla/Install/Requirements.pm: Removed.
3685 * BugsSite/Bugzilla/Install/Util.pm: Removed.
3686 * BugsSite/Bugzilla/Keyword.pm: Removed.
3687 * BugsSite/Bugzilla/Mailer.pm: Removed.
3688 * BugsSite/Bugzilla/Milestone.pm: Removed.
3689 * BugsSite/Bugzilla/Object.pm: Removed.
3690 * BugsSite/Bugzilla/Product.pm: Removed.
3691 * BugsSite/Bugzilla/Search: Removed.
3692 * BugsSite/Bugzilla/Search.pm: Removed.
3693 * BugsSite/Bugzilla/Search/Quicksearch.pm: Removed.
3694 * BugsSite/Bugzilla/Search/Saved.pm: Removed.
3695 * BugsSite/Bugzilla/Series.pm: Removed.
3696 * BugsSite/Bugzilla/Status.pm: Removed.
3697 * BugsSite/Bugzilla/Template: Removed.
3698 * BugsSite/Bugzilla/Template.pm: Removed.
3699 * BugsSite/Bugzilla/Template/Parser.pm: Removed.
3700 * BugsSite/Bugzilla/Template/Plugin: Removed.
3701 * BugsSite/Bugzilla/Template/Plugin/Bugzilla.pm: Removed.
3702 * BugsSite/Bugzilla/Template/Plugin/Hook.pm: Removed.
3703 * BugsSite/Bugzilla/Template/Plugin/User.pm: Removed.
3704 * BugsSite/Bugzilla/Token.pm: Removed.
3705 * BugsSite/Bugzilla/Update.pm: Removed.
3706 * BugsSite/Bugzilla/User: Removed.
3707 * BugsSite/Bugzilla/User.pm: Removed.
3708 * BugsSite/Bugzilla/User/Setting: Removed.
3709 * BugsSite/Bugzilla/User/Setting.pm: Removed.
3710 * BugsSite/Bugzilla/User/Setting/Lang.pm: Removed.
3711 * BugsSite/Bugzilla/User/Setting/Skin.pm: Removed.
3712 * BugsSite/Bugzilla/Util.pm: Removed.
3713 * BugsSite/Bugzilla/Version.pm: Removed.
3714 * BugsSite/Bugzilla/WebService: Removed.
3715 * BugsSite/Bugzilla/WebService.pm: Removed.
3716 * BugsSite/Bugzilla/WebService/Bug.pm: Removed.
3717 * BugsSite/Bugzilla/WebService/Bugzilla.pm: Removed.
3718 * BugsSite/Bugzilla/WebService/Constants.pm: Removed.
3719 * BugsSite/Bugzilla/WebService/Product.pm: Removed.
3720 * BugsSite/Bugzilla/WebService/User.pm: Removed.
3721 * BugsSite/PrettyPatch: Removed.
3722 * BugsSite/PrettyPatch/PrettyPatch.rb: Removed.
3723 * BugsSite/PrettyPatch/diff.rb: Removed.
3724 * BugsSite/PrettyPatch/prettify.rb: Removed.
3725 * BugsSite/QUICKSTART: Removed.
3726 * BugsSite/README: Removed.
3727 * BugsSite/UPGRADING: Removed.
3728 * BugsSite/UPGRADING-pre-2.8: Removed.
3729 * BugsSite/admin.cgi: Removed.
3730 * BugsSite/attachment.cgi: Removed.
3731 * BugsSite/buglist.cgi: Removed.
3732 * BugsSite/bugzilla.dtd: Removed.
3733 * BugsSite/chart.cgi: Removed.
3734 * BugsSite/checksetup.pl: Removed.
3735 * BugsSite/code-review.js: Removed.
3736 * BugsSite/colchange.cgi: Removed.
3737 * BugsSite/collectstats.pl: Removed.
3738 * BugsSite/committers-autocomplete.js: Removed.
3739 * BugsSite/config.cgi: Removed.
3740 * BugsSite/contrib: Removed.
3741 * BugsSite/contrib/README: Removed.
3742 * BugsSite/contrib/bugzilla-submit: Removed.
3743 * BugsSite/contrib/bugzilla-submit/README: Removed.
3744 * BugsSite/contrib/bugzilla-submit/bugdata.txt: Removed.
3745 * BugsSite/contrib/bugzilla-submit/bugzilla-submit: Removed.
3746 * BugsSite/contrib/bugzilla-submit/bugzilla-submit.xml: Removed.
3747 * BugsSite/contrib/bugzilla_ldapsync.rb: Removed.
3748 * BugsSite/contrib/bz_webservice_demo.pl: Removed.
3749 * BugsSite/contrib/bzdbcopy.pl: Removed.
3750 * BugsSite/contrib/cmdline: Removed.
3751 * BugsSite/contrib/cmdline/bugcount: Removed.
3752 * BugsSite/contrib/cmdline/bugids: Removed.
3753 * BugsSite/contrib/cmdline/buglist: Removed.
3754 * BugsSite/contrib/cmdline/bugs: Removed.
3755 * BugsSite/contrib/cmdline/bugslink: Removed.
3756 * BugsSite/contrib/cmdline/makequery: Removed.
3757 * BugsSite/contrib/cmdline/query.conf: Removed.
3758 * BugsSite/contrib/cvs-update.pl: Removed.
3759 * BugsSite/contrib/gnats2bz.pl: Removed.
3760 * BugsSite/contrib/gnatsparse: Removed.
3761 * BugsSite/contrib/gnatsparse/README: Removed.
3762 * BugsSite/contrib/gnatsparse/gnatsparse.py: Removed.
3763 * BugsSite/contrib/gnatsparse/magic.py: Removed.
3764 * BugsSite/contrib/gnatsparse/specialuu.py: Removed.
3765 * BugsSite/contrib/jb2bz.py: Removed.
3766 * BugsSite/contrib/merge-users.pl: Removed.
3767 * BugsSite/contrib/mysqld-watcher.pl: Removed.
3768 * BugsSite/contrib/recode-overrides.txt: Removed.
3769 * BugsSite/contrib/recode.pl: Removed.
3770 * BugsSite/contrib/sendbugmail.pl: Removed.
3771 * BugsSite/contrib/sendunsentbugmail.pl: Removed.
3772 * BugsSite/contrib/syncLDAP.pl: Removed.
3773 * BugsSite/contrib/yp_nomail.sh: Removed.
3774 * BugsSite/createaccount.cgi: Removed.
3775 * BugsSite/data: Removed.
3776 * BugsSite/data/.htaccess: Removed.
3777 * BugsSite/data/attachments: Removed.
3778 * BugsSite/data/attachments/.htaccess: Removed.
3779 * BugsSite/data/duplicates: Removed.
3780 * BugsSite/data/mail: Removed.
3781 * BugsSite/data/mimedump-tmp: Removed.
3782 * BugsSite/data/mining: Removed.
3783 * BugsSite/data/params: Removed.
3784 * BugsSite/data/template: Removed.
3785 * BugsSite/data/webdot: Removed.
3786 * BugsSite/data/webdot/.htaccess: Removed.
3787 * BugsSite/describecomponents.cgi: Removed.
3788 * BugsSite/describekeywords.cgi: Removed.
3789 * BugsSite/docs: Removed.
3790 * BugsSite/docs/en: Removed.
3791 * BugsSite/docs/en/.cvsignore: Removed.
3792 * BugsSite/docs/en/README.docs: Removed.
3793 * BugsSite/docs/en/images: Removed.
3794 * BugsSite/docs/en/images/bzLifecycle.png: Removed.
3795 * BugsSite/docs/en/images/bzLifecycle.xml: Removed.
3796 * BugsSite/docs/en/images/callouts: Removed.
3797 * BugsSite/docs/en/images/callouts/1.gif: Removed.
3798 * BugsSite/docs/en/images/callouts/2.gif: Removed.
3799 * BugsSite/docs/en/images/callouts/3.gif: Removed.
3800 * BugsSite/docs/en/images/caution.gif: Removed.
3801 * BugsSite/docs/en/images/note.gif: Removed.
3802 * BugsSite/docs/en/images/tip.gif: Removed.
3803 * BugsSite/docs/en/images/warning.gif: Removed.
3804 * BugsSite/docs/en/rel_notes.txt: Removed.
3805 * BugsSite/docs/en/xml: Removed.
3806 * BugsSite/docs/en/xml/.cvsignore: Removed.
3807 * BugsSite/docs/en/xml/Bugzilla-Guide.xml: Removed.
3808 * BugsSite/docs/en/xml/about.xml: Removed.
3809 * BugsSite/docs/en/xml/administration.xml: Removed.
3810 * BugsSite/docs/en/xml/conventions.xml: Removed.
3811 * BugsSite/docs/en/xml/customization.xml: Removed.
3812 * BugsSite/docs/en/xml/gfdl.xml: Removed.
3813 * BugsSite/docs/en/xml/glossary.xml: Removed.
3814 * BugsSite/docs/en/xml/index.xml: Removed.
3815 * BugsSite/docs/en/xml/installation.xml: Removed.
3816 * BugsSite/docs/en/xml/integration.xml: Removed.
3817 * BugsSite/docs/en/xml/introduction.xml: Removed.
3818 * BugsSite/docs/en/xml/modules.xml: Removed.
3819 * BugsSite/docs/en/xml/patches.xml: Removed.
3820 * BugsSite/docs/en/xml/requiredsoftware.xml: Removed.
3821 * BugsSite/docs/en/xml/security.xml: Removed.
3822 * BugsSite/docs/en/xml/troubleshooting.xml: Removed.
3823 * BugsSite/docs/en/xml/using.xml: Removed.
3824 * BugsSite/docs/html: Removed.
3825 * BugsSite/docs/html/api: Removed.
3826 * BugsSite/docs/images: Removed.
3827 * BugsSite/docs/images/callouts: Removed.
3828 * BugsSite/docs/lib: Removed.
3829 * BugsSite/docs/lib/Pod: Removed.
3830 * BugsSite/docs/lib/Pod/Simple: Removed.
3831 * BugsSite/docs/lib/Pod/Simple/HTML: Removed.
3832 * BugsSite/docs/lib/Pod/Simple/HTML/Bugzilla.pm: Removed.
3833 * BugsSite/docs/lib/Pod/Simple/HTMLBatch: Removed.
3834 * BugsSite/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm: Removed.
3835 * BugsSite/docs/makedocs.pl: Removed.
3836 * BugsSite/docs/pdf: Removed.
3837 * BugsSite/docs/style.css: Removed.
3838 * BugsSite/docs/txt: Removed.
3839 * BugsSite/docs/xml: Removed.
3840 * BugsSite/duplicates.cgi: Removed.
3841 * BugsSite/editclassifications.cgi: Removed.
3842 * BugsSite/editcomponents.cgi: Removed.
3843 * BugsSite/editfields.cgi: Removed.
3844 * BugsSite/editflagtypes.cgi: Removed.
3845 * BugsSite/editgroups.cgi: Removed.
3846 * BugsSite/editkeywords.cgi: Removed.
3847 * BugsSite/editmilestones.cgi: Removed.
3848 * BugsSite/editparams.cgi: Removed.
3849 * BugsSite/editproducts.cgi: Removed.
3850 * BugsSite/editsettings.cgi: Removed.
3851 * BugsSite/editusers.cgi: Removed.
3852 * BugsSite/editvalues.cgi: Removed.
3853 * BugsSite/editversions.cgi: Removed.
3854 * BugsSite/editwhines.cgi: Removed.
3855 * BugsSite/editworkflow.cgi: Removed.
3856 * BugsSite/email_in.pl: Removed.
3857 * BugsSite/enter_bug.cgi: Removed.
3858 * BugsSite/extensions: Removed.
3859 * BugsSite/extensions/example: Removed.
3860 * BugsSite/extensions/example/code: Removed.
3861 * BugsSite/extensions/example/code/bug-end_of_update.pl: Removed.
3862 * BugsSite/extensions/example/code/buglist-columns.pl: Removed.
3863 * BugsSite/extensions/example/code/colchange-columns.pl: Removed.
3864 * BugsSite/extensions/example/code/config.pl: Removed.
3865 * BugsSite/extensions/example/code/flag-end_of_update.pl: Removed.
3866 * BugsSite/extensions/example/code/install-before_final_checks.pl: Removed.
3867 * BugsSite/extensions/example/code/product-confirm_delete.pl: Removed.
3868 * BugsSite/extensions/example/code/webservice-error_codes.pl: Removed.
3869 * BugsSite/extensions/example/code/webservice.pl: Removed.
3870 * BugsSite/extensions/example/disabled: Removed.
3871 * BugsSite/extensions/example/info.pl: Removed.
3872 * BugsSite/extensions/example/lib: Removed.
3873 * BugsSite/extensions/example/lib/ConfigExample.pm: Removed.
3874 * BugsSite/extensions/example/lib/WSExample.pm: Removed.
3875 * BugsSite/extensions/example/template: Removed.
3876 * BugsSite/extensions/example/template/en: Removed.
3877 * BugsSite/extensions/example/template/en/default: Removed.
3878 * BugsSite/extensions/example/template/en/default/admin: Removed.
3879 * BugsSite/extensions/example/template/en/default/admin/params: Removed.
3880 * BugsSite/extensions/example/template/en/default/admin/params/example.html.tmpl: Removed.
3881 * BugsSite/extensions/example/template/en/global: Removed.
3882 * BugsSite/extensions/example/template/en/global/user-error-errors.html.tmpl: Removed.
3883 * BugsSite/graphs: Removed.
3884 * BugsSite/images: Removed.
3885 * BugsSite/images/favicon.ico: Removed.
3886 * BugsSite/images/padlock.png: Removed.
3887 * BugsSite/importxml.pl: Removed.
3888 * BugsSite/index.cgi: Removed.
3889 * BugsSite/install-module.pl: Removed.
3890 * BugsSite/js: Removed.
3891 * BugsSite/js/TUI.js: Removed.
3892 * BugsSite/js/attachment.js: Removed.
3893 * BugsSite/js/expanding-tree.js: Removed.
3894 * BugsSite/js/field.js: Removed.
3895 * BugsSite/js/help.js: Removed.
3896 * BugsSite/js/params.js: Removed.
3897 * BugsSite/js/productform.js: Removed.
3898 * BugsSite/js/util.js: Removed.
3899 * BugsSite/js/yui: Removed.
3900 * BugsSite/js/yui/calendar.js: Removed.
3901 * BugsSite/js/yui/yahoo-dom-event.js: Removed.
3902 * BugsSite/lib: Removed.
3903 * BugsSite/lib/.htaccess: Removed.
3904 * BugsSite/lib/README: Removed.
3905 * BugsSite/long_list.cgi: Removed.
3906 * BugsSite/mod_perl.pl: Removed.
3907 * BugsSite/page.cgi: Removed.
3908 * BugsSite/post_bug.cgi: Removed.
3909 * BugsSite/process_bug.cgi: Removed.
3910 * BugsSite/query.cgi: Removed.
3911 * BugsSite/quips.cgi: Removed.
3912 * BugsSite/relogin.cgi: Removed.
3913 * BugsSite/report.cgi: Removed.
3914 * BugsSite/reports.cgi: Removed.
3915 * BugsSite/request.cgi: Removed.
3916 * BugsSite/robots.txt: Removed.
3917 * BugsSite/runtests.pl: Removed.
3918 * BugsSite/sanitycheck.cgi: Removed.
3919 * BugsSite/sanitycheck.pl: Removed.
3920 * BugsSite/search_plugin.cgi: Removed.
3921 * BugsSite/show_activity.cgi: Removed.
3922 * BugsSite/show_bug.cgi: Removed.
3923 * BugsSite/showattachment.cgi: Removed.
3924 * BugsSite/showdependencygraph.cgi: Removed.
3925 * BugsSite/showdependencytree.cgi: Removed.
3926 * BugsSite/sidebar.cgi: Removed.
3927 * BugsSite/skins: Removed.
3928 * BugsSite/skins/.cvsignore: Removed.
3929 * BugsSite/skins/contrib: Removed.
3930 * BugsSite/skins/contrib/Dusk: Removed.
3931 * BugsSite/skins/contrib/Dusk/.cvsignore: Removed.
3932 * BugsSite/skins/contrib/Dusk/IE-fixes.css: Removed.
3933 * BugsSite/skins/contrib/Dusk/admin.css: Removed.
3934 * BugsSite/skins/contrib/Dusk/buglist.css: Removed.
3935 * BugsSite/skins/contrib/Dusk/create_attachment.css: Removed.
3936 * BugsSite/skins/contrib/Dusk/dependency-tree.css: Removed.
3937 * BugsSite/skins/contrib/Dusk/duplicates.css: Removed.
3938 * BugsSite/skins/contrib/Dusk/editusers.css: Removed.
3939 * BugsSite/skins/contrib/Dusk/global.css: Removed.
3940 * BugsSite/skins/contrib/Dusk/help.css: Removed.
3941 * BugsSite/skins/contrib/Dusk/index.css: Removed.
3942 * BugsSite/skins/contrib/Dusk/panel.css: Removed.
3943 * BugsSite/skins/contrib/Dusk/params.css: Removed.
3944 * BugsSite/skins/contrib/Dusk/release-notes.css: Removed.
3945 * BugsSite/skins/contrib/Dusk/show_bug.css: Removed.
3946 * BugsSite/skins/contrib/Dusk/show_multiple.css: Removed.
3947 * BugsSite/skins/contrib/Dusk/summarize-time.css: Removed.
3948 * BugsSite/skins/contrib/Dusk/voting.css: Removed.
3949 * BugsSite/skins/contrib/Dusk/yui: Removed.
3950 * BugsSite/skins/contrib/Dusk/yui/calendar.css: Removed.
3951 * BugsSite/skins/custom: Removed.
3952 * BugsSite/skins/custom/IE-fixes.css: Removed.
3953 * BugsSite/skins/custom/admin.css: Removed.
3954 * BugsSite/skins/custom/buglist.css: Removed.
3955 * BugsSite/skins/custom/create_attachment.css: Removed.
3956 * BugsSite/skins/custom/dependency-tree.css: Removed.
3957 * BugsSite/skins/custom/duplicates.css: Removed.
3958 * BugsSite/skins/custom/editusers.css: Removed.
3959 * BugsSite/skins/custom/global.css: Removed.
3960 * BugsSite/skins/custom/help.css: Removed.
3961 * BugsSite/skins/custom/index.css: Removed.
3962 * BugsSite/skins/custom/opendarwin.gif: Removed.
3963 * BugsSite/skins/custom/panel.css: Removed.
3964 * BugsSite/skins/custom/params.css: Removed.
3965 * BugsSite/skins/custom/release-notes.css: Removed.
3966 * BugsSite/skins/custom/show_bug.css: Removed.
3967 * BugsSite/skins/custom/show_multiple.css: Removed.
3968 * BugsSite/skins/custom/summarize-time.css: Removed.
3969 * BugsSite/skins/custom/voting.css: Removed.
3970 * BugsSite/skins/custom/yui: Removed.
3971 * BugsSite/skins/custom/yui/calendar.css: Removed.
3972 * BugsSite/skins/standard: Removed.
3973 * BugsSite/skins/standard/IE-fixes.css: Removed.
3974 * BugsSite/skins/standard/admin.css: Removed.
3975 * BugsSite/skins/standard/buglist.css: Removed.
3976 * BugsSite/skins/standard/create_attachment.css: Removed.
3977 * BugsSite/skins/standard/dependency-tree: Removed.
3978 * BugsSite/skins/standard/dependency-tree.css: Removed.
3979 * BugsSite/skins/standard/dependency-tree/bug-item.png: Removed.
3980 * BugsSite/skins/standard/dependency-tree/tree-closed.png: Removed.
3981 * BugsSite/skins/standard/dependency-tree/tree-open.png: Removed.
3982 * BugsSite/skins/standard/dependency-tree/tree.png: Removed.
3983 * BugsSite/skins/standard/duplicates.css: Removed.
3984 * BugsSite/skins/standard/editusers.css: Removed.
3985 * BugsSite/skins/standard/global: Removed.
3986 * BugsSite/skins/standard/global.css: Removed.
3987 * BugsSite/skins/standard/global/body-back.gif: Removed.
3988 * BugsSite/skins/standard/global/calendar.png: Removed.
3989 * BugsSite/skins/standard/global/header.png: Removed.
3990 * BugsSite/skins/standard/help.css: Removed.
3991 * BugsSite/skins/standard/index: Removed.
3992 * BugsSite/skins/standard/index.css: Removed.
3993 * BugsSite/skins/standard/index/front.png: Removed.
3994 * BugsSite/skins/standard/panel.css: Removed.
3995 * BugsSite/skins/standard/params.css: Removed.
3996 * BugsSite/skins/standard/release-notes.css: Removed.
3997 * BugsSite/skins/standard/show_bug.css: Removed.
3998 * BugsSite/skins/standard/show_multiple.css: Removed.
3999 * BugsSite/skins/standard/summarize-time.css: Removed.
4000 * BugsSite/skins/standard/voting.css: Removed.
4001 * BugsSite/skins/standard/yui: Removed.
4002 * BugsSite/skins/standard/yui/calendar.css: Removed.
4003 * BugsSite/skins/standard/yui/sprite.png: Removed.
4004 * BugsSite/summarize_time.cgi: Removed.
4005 * BugsSite/t: Removed.
4006 * BugsSite/t/001compile.t: Removed.
4007 * BugsSite/t/002goodperl.t: Removed.
4008 * BugsSite/t/003safesys.t: Removed.
4009 * BugsSite/t/004template.t: Removed.
4010 * BugsSite/t/005no_tabs.t: Removed.
4011 * BugsSite/t/006spellcheck.t: Removed.
4012 * BugsSite/t/007util.t: Removed.
4013 * BugsSite/t/008filter.t: Removed.
4014 * BugsSite/t/009bugwords.t: Removed.
4015 * BugsSite/t/010dependencies.t: Removed.
4016 * BugsSite/t/011pod.t: Removed.
4017 * BugsSite/t/012throwables.t: Removed.
4018 * BugsSite/t/Support: Removed.
4019 * BugsSite/t/Support/Files.pm: Removed.
4020 * BugsSite/t/Support/Systemexec.pm: Removed.
4021 * BugsSite/t/Support/Templates.pm: Removed.
4022 * BugsSite/template: Removed.
4023 * BugsSite/template/.cvsignore: Removed.
4024 * BugsSite/template/.htaccess: Removed.
4025 * BugsSite/template/en: Removed.
4026 * BugsSite/template/en/.cvsignore: Removed.
4027 * BugsSite/template/en/custom: Removed.
4028 * BugsSite/template/en/custom/account: Removed.
4029 * BugsSite/template/en/custom/account/auth: Removed.
4030 * BugsSite/template/en/custom/account/email: Removed.
4031 * BugsSite/template/en/custom/account/password: Removed.
4032 * BugsSite/template/en/custom/account/prefs: Removed.
4033 * BugsSite/template/en/custom/admin: Removed.
4034 * BugsSite/template/en/custom/admin/classifications: Removed.
4035 * BugsSite/template/en/custom/admin/components: Removed.
4036 * BugsSite/template/en/custom/admin/fieldvalues: Removed.
4037 * BugsSite/template/en/custom/admin/flag-type: Removed.
4038 * BugsSite/template/en/custom/admin/groups: Removed.
4039 * BugsSite/template/en/custom/admin/keywords: Removed.
4040 * BugsSite/template/en/custom/admin/milestones: Removed.
4041 * BugsSite/template/en/custom/admin/products: Removed.
4042 * BugsSite/template/en/custom/admin/products/groupcontrol: Removed.
4043 * BugsSite/template/en/custom/admin/settings: Removed.
4044 * BugsSite/template/en/custom/admin/users: Removed.
4045 * BugsSite/template/en/custom/admin/versions: Removed.
4046 * BugsSite/template/en/custom/attachment: Removed.
4047 * BugsSite/template/en/custom/attachment/content-types.html.tmpl: Removed.
4048 * BugsSite/template/en/custom/attachment/create.html.tmpl: Removed.
4049 * BugsSite/template/en/custom/attachment/created.html.tmpl: Removed.
4050 * BugsSite/template/en/custom/attachment/edit.html.tmpl: Removed.
4051 * BugsSite/template/en/custom/attachment/list.html.tmpl: Removed.
4052 * BugsSite/template/en/custom/attachment/review.html.tmpl: Removed.
4053 * BugsSite/template/en/custom/attachment/reviewform.html.tmpl: Removed.
4054 * BugsSite/template/en/custom/attachment/rietveldreview.html.tmpl: Removed.
4055 * BugsSite/template/en/custom/bug: Removed.
4056 * BugsSite/template/en/custom/bug/activity: Removed.
4057 * BugsSite/template/en/custom/bug/create: Removed.
4058 * BugsSite/template/en/custom/bug/edit.html.tmpl: Removed.
4059 * BugsSite/template/en/custom/bug/navigate.html.tmpl: Removed.
4060 * BugsSite/template/en/custom/bug/process: Removed.
4061 * BugsSite/template/en/custom/bug/votes: Removed.
4062 * BugsSite/template/en/custom/flag: Removed.
4063 * BugsSite/template/en/custom/flag/list.html.tmpl: Removed.
4064 * BugsSite/template/en/custom/global: Removed.
4065 * BugsSite/template/en/custom/global/choose-product.html.tmpl: Removed.
4066 * BugsSite/template/en/custom/global/header.html.tmpl: Removed.
4067 * BugsSite/template/en/custom/list: Removed.
4068 * BugsSite/template/en/custom/list/list.html.tmpl: Removed.
4069 * BugsSite/template/en/custom/pages: Removed.
4070 * BugsSite/template/en/custom/reports: Removed.
4071 * BugsSite/template/en/custom/request: Removed.
4072 * BugsSite/template/en/custom/request/email.txt.tmpl: Removed.
4073 * BugsSite/template/en/custom/request/queue.html.tmpl: Removed.
4074 * BugsSite/template/en/custom/search: Removed.
4075 * BugsSite/template/en/custom/whine: Removed.
4076 * BugsSite/template/en/default: Removed.
4077 * BugsSite/template/en/default/account: Removed.
4078 * BugsSite/template/en/default/account/auth: Removed.
4079 * BugsSite/template/en/default/account/auth/login-small.html.tmpl: Removed.
4080 * BugsSite/template/en/default/account/auth/login.html.tmpl: Removed.
4081 * BugsSite/template/en/default/account/cancel-token.txt.tmpl: Removed.
4082 * BugsSite/template/en/default/account/create.html.tmpl: Removed.
4083 * BugsSite/template/en/default/account/created.html.tmpl: Removed.
4084 * BugsSite/template/en/default/account/email: Removed.
4085 * BugsSite/template/en/default/account/email/change-new.txt.tmpl: Removed.
4086 * BugsSite/template/en/default/account/email/change-old.txt.tmpl: Removed.
4087 * BugsSite/template/en/default/account/email/confirm-new.html.tmpl: Removed.
4088 * BugsSite/template/en/default/account/email/confirm.html.tmpl: Removed.
4089 * BugsSite/template/en/default/account/email/request-new.txt.tmpl: Removed.
4090 * BugsSite/template/en/default/account/password: Removed.
4091 * BugsSite/template/en/default/account/password/forgotten-password.txt.tmpl: Removed.
4092 * BugsSite/template/en/default/account/password/set-forgotten-password.html.tmpl: Removed.
4093 * BugsSite/template/en/default/account/prefs: Removed.
4094 * BugsSite/template/en/default/account/prefs/account.html.tmpl: Removed.
4095 * BugsSite/template/en/default/account/prefs/email.html.tmpl: Removed.
4096 * BugsSite/template/en/default/account/prefs/permissions.html.tmpl: Removed.
4097 * BugsSite/template/en/default/account/prefs/prefs.html.tmpl: Removed.
4098 * BugsSite/template/en/default/account/prefs/saved-searches.html.tmpl: Removed.
4099 * BugsSite/template/en/default/account/prefs/settings.html.tmpl: Removed.
4100 * BugsSite/template/en/default/account/profile-activity.html.tmpl: Removed.
4101 * BugsSite/template/en/default/admin: Removed.
4102 * BugsSite/template/en/default/admin/admin.html.tmpl: Removed.
4103 * BugsSite/template/en/default/admin/classifications: Removed.
4104 * BugsSite/template/en/default/admin/classifications/add.html.tmpl: Removed.
4105 * BugsSite/template/en/default/admin/classifications/del.html.tmpl: Removed.
4106 * BugsSite/template/en/default/admin/classifications/edit.html.tmpl: Removed.
4107 * BugsSite/template/en/default/admin/classifications/reclassify.html.tmpl: Removed.
4108 * BugsSite/template/en/default/admin/classifications/select.html.tmpl: Removed.
4109 * BugsSite/template/en/default/admin/components: Removed.
4110 * BugsSite/template/en/default/admin/components/confirm-delete.html.tmpl: Removed.
4111 * BugsSite/template/en/default/admin/components/create.html.tmpl: Removed.
4112 * BugsSite/template/en/default/admin/components/edit.html.tmpl: Removed.
4113 * BugsSite/template/en/default/admin/components/footer.html.tmpl: Removed.
4114 * BugsSite/template/en/default/admin/components/list.html.tmpl: Removed.
4115 * BugsSite/template/en/default/admin/components/select-product.html.tmpl: Removed.
4116 * BugsSite/template/en/default/admin/confirm-action.html.tmpl: Removed.
4117 * BugsSite/template/en/default/admin/custom_fields: Removed.
4118 * BugsSite/template/en/default/admin/custom_fields/confirm-delete.html.tmpl: Removed.
4119 * BugsSite/template/en/default/admin/custom_fields/create.html.tmpl: Removed.
4120 * BugsSite/template/en/default/admin/custom_fields/edit.html.tmpl: Removed.
4121 * BugsSite/template/en/default/admin/custom_fields/list.html.tmpl: Removed.
4122 * BugsSite/template/en/default/admin/fieldvalues: Removed.
4123 * BugsSite/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl: Removed.
4124 * BugsSite/template/en/default/admin/fieldvalues/create.html.tmpl: Removed.
4125 * BugsSite/template/en/default/admin/fieldvalues/edit.html.tmpl: Removed.
4126 * BugsSite/template/en/default/admin/fieldvalues/footer.html.tmpl: Removed.
4127 * BugsSite/template/en/default/admin/fieldvalues/list.html.tmpl: Removed.
4128 * BugsSite/template/en/default/admin/fieldvalues/select-field.html.tmpl: Removed.
4129 * BugsSite/template/en/default/admin/flag-type: Removed.
4130 * BugsSite/template/en/default/admin/flag-type/confirm-delete.html.tmpl: Removed.
4131 * BugsSite/template/en/default/admin/flag-type/edit.html.tmpl: Removed.
4132 * BugsSite/template/en/default/admin/flag-type/list.html.tmpl: Removed.
4133 * BugsSite/template/en/default/admin/groups: Removed.
4134 * BugsSite/template/en/default/admin/groups/confirm-remove.html.tmpl: Removed.
4135 * BugsSite/template/en/default/admin/groups/create.html.tmpl: Removed.
4136 * BugsSite/template/en/default/admin/groups/delete.html.tmpl: Removed.
4137 * BugsSite/template/en/default/admin/groups/edit.html.tmpl: Removed.
4138 * BugsSite/template/en/default/admin/groups/list.html.tmpl: Removed.
4139 * BugsSite/template/en/default/admin/keywords: Removed.
4140 * BugsSite/template/en/default/admin/keywords/confirm-delete.html.tmpl: Removed.
4141 * BugsSite/template/en/default/admin/keywords/create.html.tmpl: Removed.
4142 * BugsSite/template/en/default/admin/keywords/edit.html.tmpl: Removed.
4143 * BugsSite/template/en/default/admin/keywords/list.html.tmpl: Removed.
4144 * BugsSite/template/en/default/admin/milestones: Removed.
4145 * BugsSite/template/en/default/admin/milestones/confirm-delete.html.tmpl: Removed.
4146 * BugsSite/template/en/default/admin/milestones/create.html.tmpl: Removed.
4147 * BugsSite/template/en/default/admin/milestones/edit.html.tmpl: Removed.
4148 * BugsSite/template/en/default/admin/milestones/footer.html.tmpl: Removed.
4149 * BugsSite/template/en/default/admin/milestones/list.html.tmpl: Removed.
4150 * BugsSite/template/en/default/admin/milestones/select-product.html.tmpl: Removed.
4151 * BugsSite/template/en/default/admin/params: Removed.
4152 * BugsSite/template/en/default/admin/params/admin.html.tmpl: Removed.
4153 * BugsSite/template/en/default/admin/params/attachment.html.tmpl: Removed.
4154 * BugsSite/template/en/default/admin/params/auth.html.tmpl: Removed.
4155 * BugsSite/template/en/default/admin/params/bugchange.html.tmpl: Removed.
4156 * BugsSite/template/en/default/admin/params/bugfields.html.tmpl: Removed.
4157 * BugsSite/template/en/default/admin/params/bugmove.html.tmpl: Removed.
4158 * BugsSite/template/en/default/admin/params/common.html.tmpl: Removed.
4159 * BugsSite/template/en/default/admin/params/core.html.tmpl: Removed.
4160 * BugsSite/template/en/default/admin/params/dependencygraph.html.tmpl: Removed.
4161 * BugsSite/template/en/default/admin/params/editparams.html.tmpl: Removed.
4162 * BugsSite/template/en/default/admin/params/groupsecurity.html.tmpl: Removed.
4163 * BugsSite/template/en/default/admin/params/index.html.tmpl: Removed.
4164 * BugsSite/template/en/default/admin/params/ldap.html.tmpl: Removed.
4165 * BugsSite/template/en/default/admin/params/mta.html.tmpl: Removed.
4166 * BugsSite/template/en/default/admin/params/patchviewer.html.tmpl: Removed.
4167 * BugsSite/template/en/default/admin/params/query.html.tmpl: Removed.
4168 * BugsSite/template/en/default/admin/params/radius.html.tmpl: Removed.
4169 * BugsSite/template/en/default/admin/params/shadowdb.html.tmpl: Removed.
4170 * BugsSite/template/en/default/admin/params/usermatch.html.tmpl: Removed.
4171 * BugsSite/template/en/default/admin/products: Removed.
4172 * BugsSite/template/en/default/admin/products/confirm-delete.html.tmpl: Removed.
4173 * BugsSite/template/en/default/admin/products/create.html.tmpl: Removed.
4174 * BugsSite/template/en/default/admin/products/edit-common.html.tmpl: Removed.
4175 * BugsSite/template/en/default/admin/products/edit.html.tmpl: Removed.
4176 * BugsSite/template/en/default/admin/products/footer.html.tmpl: Removed.
4177 * BugsSite/template/en/default/admin/products/groupcontrol: Removed.
4178 * BugsSite/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl: Removed.
4179 * BugsSite/template/en/default/admin/products/groupcontrol/edit.html.tmpl: Removed.
4180 * BugsSite/template/en/default/admin/products/groupcontrol/updated.html.tmpl: Removed.
4181 * BugsSite/template/en/default/admin/products/list-classifications.html.tmpl: Removed.
4182 * BugsSite/template/en/default/admin/products/list.html.tmpl: Removed.
4183 * BugsSite/template/en/default/admin/products/updated.html.tmpl: Removed.
4184 * BugsSite/template/en/default/admin/sanitycheck: Removed.
4185 * BugsSite/template/en/default/admin/sanitycheck/list.html.tmpl: Removed.
4186 * BugsSite/template/en/default/admin/sanitycheck/messages.html.tmpl: Removed.
4187 * BugsSite/template/en/default/admin/settings: Removed.
4188 * BugsSite/template/en/default/admin/settings/edit.html.tmpl: Removed.
4189 * BugsSite/template/en/default/admin/sudo.html.tmpl: Removed.
4190 * BugsSite/template/en/default/admin/table.html.tmpl: Removed.
4191 * BugsSite/template/en/default/admin/users: Removed.
4192 * BugsSite/template/en/default/admin/users/confirm-delete.html.tmpl: Removed.
4193 * BugsSite/template/en/default/admin/users/create.html.tmpl: Removed.
4194 * BugsSite/template/en/default/admin/users/edit.html.tmpl: Removed.
4195 * BugsSite/template/en/default/admin/users/list.html.tmpl: Removed.
4196 * BugsSite/template/en/default/admin/users/listselectvars.html.tmpl: Removed.
4197 * BugsSite/template/en/default/admin/users/responsibilities.html.tmpl: Removed.
4198 * BugsSite/template/en/default/admin/users/search.html.tmpl: Removed.
4199 * BugsSite/template/en/default/admin/users/userdata.html.tmpl: Removed.
4200 * BugsSite/template/en/default/admin/versions: Removed.
4201 * BugsSite/template/en/default/admin/versions/confirm-delete.html.tmpl: Removed.
4202 * BugsSite/template/en/default/admin/versions/create.html.tmpl: Removed.
4203 * BugsSite/template/en/default/admin/versions/edit.html.tmpl: Removed.
4204 * BugsSite/template/en/default/admin/versions/footer.html.tmpl: Removed.
4205 * BugsSite/template/en/default/admin/versions/list.html.tmpl: Removed.
4206 * BugsSite/template/en/default/admin/versions/select-product.html.tmpl: Removed.
4207 * BugsSite/template/en/default/admin/workflow: Removed.
4208 * BugsSite/template/en/default/admin/workflow/comment.html.tmpl: Removed.
4209 * BugsSite/template/en/default/admin/workflow/edit.html.tmpl: Removed.
4210 * BugsSite/template/en/default/attachment: Removed.
4211 * BugsSite/template/en/default/attachment/cancel-create-dupe.html.tmpl: Removed.
4212 * BugsSite/template/en/default/attachment/choose.html.tmpl: Removed.
4213 * BugsSite/template/en/default/attachment/confirm-delete.html.tmpl: Removed.
4214 * BugsSite/template/en/default/attachment/content-types.html.tmpl: Removed.
4215 * BugsSite/template/en/default/attachment/create.html.tmpl: Removed.
4216 * BugsSite/template/en/default/attachment/created.html.tmpl: Removed.
4217 * BugsSite/template/en/default/attachment/createformcontents.html.tmpl: Removed.
4218 * BugsSite/template/en/default/attachment/delete_reason.txt.tmpl: Removed.
4219 * BugsSite/template/en/default/attachment/diff-file.html.tmpl: Removed.
4220 * BugsSite/template/en/default/attachment/diff-footer.html.tmpl: Removed.
4221 * BugsSite/template/en/default/attachment/diff-header.html.tmpl: Removed.
4222 * BugsSite/template/en/default/attachment/edit.html.tmpl: Removed.
4223 * BugsSite/template/en/default/attachment/list.html.tmpl: Removed.
4224 * BugsSite/template/en/default/attachment/midair.html.tmpl: Removed.
4225 * BugsSite/template/en/default/attachment/show-multiple.html.tmpl: Removed.
4226 * BugsSite/template/en/default/attachment/updated.html.tmpl: Removed.
4227 * BugsSite/template/en/default/bug: Removed.
4228 * BugsSite/template/en/default/bug/activity: Removed.
4229 * BugsSite/template/en/default/bug/activity/show.html.tmpl: Removed.
4230 * BugsSite/template/en/default/bug/activity/table.html.tmpl: Removed.
4231 * BugsSite/template/en/default/bug/choose.html.tmpl: Removed.
4232 * BugsSite/template/en/default/bug/comments.html.tmpl: Removed.
4233 * BugsSite/template/en/default/bug/create: Removed.
4234 * BugsSite/template/en/default/bug/create/comment-guided.txt.tmpl: Removed.
4235 * BugsSite/template/en/default/bug/create/comment.txt.tmpl: Removed.
4236 * BugsSite/template/en/default/bug/create/confirm-create-dupe.html.tmpl: Removed.
4237 * BugsSite/template/en/default/bug/create/create-guided.html.tmpl: Removed.
4238 * BugsSite/template/en/default/bug/create/create.html.tmpl: Removed.
4239 * BugsSite/template/en/default/bug/create/created.html.tmpl: Removed.
4240 * BugsSite/template/en/default/bug/create/make-template.html.tmpl: Removed.
4241 * BugsSite/template/en/default/bug/create/user-message.html.tmpl: Removed.
4242 * BugsSite/template/en/default/bug/dependency-graph.html.tmpl: Removed.
4243 * BugsSite/template/en/default/bug/dependency-tree.html.tmpl: Removed.
4244 * BugsSite/template/en/default/bug/edit.html.tmpl: Removed.
4245 * BugsSite/template/en/default/bug/field.html.tmpl: Removed.
4246 * BugsSite/template/en/default/bug/knob.html.tmpl: Removed.
4247 * BugsSite/template/en/default/bug/navigate.html.tmpl: Removed.
4248 * BugsSite/template/en/default/bug/process: Removed.
4249 * BugsSite/template/en/default/bug/process/bugmail.html.tmpl: Removed.
4250 * BugsSite/template/en/default/bug/process/confirm-duplicate.html.tmpl: Removed.
4251 * BugsSite/template/en/default/bug/process/header.html.tmpl: Removed.
4252 * BugsSite/template/en/default/bug/process/midair.html.tmpl: Removed.
4253 * BugsSite/template/en/default/bug/process/results.html.tmpl: Removed.
4254 * BugsSite/template/en/default/bug/process/verify-new-product.html.tmpl: Removed.
4255 * BugsSite/template/en/default/bug/show-multiple.html.tmpl: Removed.
4256 * BugsSite/template/en/default/bug/show.html.tmpl: Removed.
4257 * BugsSite/template/en/default/bug/show.xml.tmpl: Removed.
4258 * BugsSite/template/en/default/bug/summarize-time.html.tmpl: Removed.
4259 * BugsSite/template/en/default/bug/time.html.tmpl: Removed.
4260 * BugsSite/template/en/default/bug/votes: Removed.
4261 * BugsSite/template/en/default/bug/votes/delete-all.html.tmpl: Removed.
4262 * BugsSite/template/en/default/bug/votes/list-for-bug.html.tmpl: Removed.
4263 * BugsSite/template/en/default/bug/votes/list-for-user.html.tmpl: Removed.
4264 * BugsSite/template/en/default/config.js.tmpl: Removed.
4265 * BugsSite/template/en/default/config.rdf.tmpl: Removed.
4266 * BugsSite/template/en/default/email: Removed.
4267 * BugsSite/template/en/default/email/newchangedmail.txt.tmpl: Removed.
4268 * BugsSite/template/en/default/email/sanitycheck.txt.tmpl: Removed.
4269 * BugsSite/template/en/default/email/sudo.txt.tmpl: Removed.
4270 * BugsSite/template/en/default/email/votes-removed.txt.tmpl: Removed.
4271 * BugsSite/template/en/default/email/whine.txt.tmpl: Removed.
4272 * BugsSite/template/en/default/filterexceptions.pl: Removed.
4273 * BugsSite/template/en/default/flag: Removed.
4274 * BugsSite/template/en/default/flag/list.html.tmpl: Removed.
4275 * BugsSite/template/en/default/global: Removed.
4276 * BugsSite/template/en/default/global/banner.html.tmpl: Removed.
4277 * BugsSite/template/en/default/global/choose-classification.html.tmpl: Removed.
4278 * BugsSite/template/en/default/global/choose-product.html.tmpl: Removed.
4279 * BugsSite/template/en/default/global/code-error.html.tmpl: Removed.
4280 * BugsSite/template/en/default/global/common-links.html.tmpl: Removed.
4281 * BugsSite/template/en/default/global/confirm-action.html.tmpl: Removed.
4282 * BugsSite/template/en/default/global/confirm-user-match.html.tmpl: Removed.
4283 * BugsSite/template/en/default/global/docslinks.html.tmpl: Removed.
4284 * BugsSite/template/en/default/global/field-descs.none.tmpl: Removed.
4285 * BugsSite/template/en/default/global/footer.html.tmpl: Removed.
4286 * BugsSite/template/en/default/global/header.html.tmpl: Removed.
4287 * BugsSite/template/en/default/global/help.html.tmpl: Removed.
4288 * BugsSite/template/en/default/global/hidden-fields.html.tmpl: Removed.
4289 * BugsSite/template/en/default/global/initialize.none.tmpl: Removed.
4290 * BugsSite/template/en/default/global/js-products.html.tmpl: Removed.
4291 * BugsSite/template/en/default/global/message.html.tmpl: Removed.
4292 * BugsSite/template/en/default/global/message.txt.tmpl: Removed.
4293 * BugsSite/template/en/default/global/messages.html.tmpl: Removed.
4294 * BugsSite/template/en/default/global/per-bug-queries.html.tmpl: Removed.
4295 * BugsSite/template/en/default/global/select-menu.html.tmpl: Removed.
4296 * BugsSite/template/en/default/global/setting-descs.none.tmpl: Removed.
4297 * BugsSite/template/en/default/global/site-navigation.html.tmpl: Removed.
4298 * BugsSite/template/en/default/global/tabs.html.tmpl: Removed.
4299 * BugsSite/template/en/default/global/textarea.html.tmpl: Removed.
4300 * BugsSite/template/en/default/global/useful-links.html.tmpl: Removed.
4301 * BugsSite/template/en/default/global/user-error.html.tmpl: Removed.
4302 * BugsSite/template/en/default/global/userselect.html.tmpl: Removed.
4303 * BugsSite/template/en/default/global/variables.none.tmpl: Removed.
4304 * BugsSite/template/en/default/index.html.tmpl: Removed.
4305 * BugsSite/template/en/default/list: Removed.
4306 * BugsSite/template/en/default/list/change-columns.html.tmpl: Removed.
4307 * BugsSite/template/en/default/list/edit-multiple.html.tmpl: Removed.
4308 * BugsSite/template/en/default/list/list-simple.html.tmpl: Removed.
4309 * BugsSite/template/en/default/list/list.atom.tmpl: Removed.
4310 * BugsSite/template/en/default/list/list.csv.tmpl: Removed.
4311 * BugsSite/template/en/default/list/list.html.tmpl: Removed.
4312 * BugsSite/template/en/default/list/list.ics.tmpl: Removed.
4313 * BugsSite/template/en/default/list/list.js.tmpl: Removed.
4314 * BugsSite/template/en/default/list/list.rdf.tmpl: Removed.
4315 * BugsSite/template/en/default/list/quips.html.tmpl: Removed.
4316 * BugsSite/template/en/default/list/server-push.html.tmpl: Removed.
4317 * BugsSite/template/en/default/list/table.html.tmpl: Removed.
4318 * BugsSite/template/en/default/pages: Removed.
4319 * BugsSite/template/en/default/pages/bug-writing.html.tmpl: Removed.
4320 * BugsSite/template/en/default/pages/fields.html.tmpl: Removed.
4321 * BugsSite/template/en/default/pages/linked.html.tmpl: Removed.
4322 * BugsSite/template/en/default/pages/linkify.html.tmpl: Removed.
4323 * BugsSite/template/en/default/pages/quicksearch.html.tmpl: Removed.
4324 * BugsSite/template/en/default/pages/quicksearchhack.html.tmpl: Removed.
4325 * BugsSite/template/en/default/pages/release-notes.html.tmpl: Removed.
4326 * BugsSite/template/en/default/pages/sudo.html.tmpl: Removed.
4327 * BugsSite/template/en/default/pages/voting.html.tmpl: Removed.
4328 * BugsSite/template/en/default/reports: Removed.
4329 * BugsSite/template/en/default/reports/chart.csv.tmpl: Removed.
4330 * BugsSite/template/en/default/reports/chart.html.tmpl: Removed.
4331 * BugsSite/template/en/default/reports/chart.png.tmpl: Removed.
4332 * BugsSite/template/en/default/reports/components.html.tmpl: Removed.
4333 * BugsSite/template/en/default/reports/create-chart.html.tmpl: Removed.
4334 * BugsSite/template/en/default/reports/duplicates-simple.html.tmpl: Removed.
4335 * BugsSite/template/en/default/reports/duplicates-table.html.tmpl: Removed.
4336 * BugsSite/template/en/default/reports/duplicates.html.tmpl: Removed.
4337 * BugsSite/template/en/default/reports/edit-series.html.tmpl: Removed.
4338 * BugsSite/template/en/default/reports/keywords.html.tmpl: Removed.
4339 * BugsSite/template/en/default/reports/menu.html.tmpl: Removed.
4340 * BugsSite/template/en/default/reports/old-charts.html.tmpl: Removed.
4341 * BugsSite/template/en/default/reports/report-bar.png.tmpl: Removed.
4342 * BugsSite/template/en/default/reports/report-line.png.tmpl: Removed.
4343 * BugsSite/template/en/default/reports/report-pie.png.tmpl: Removed.
4344 * BugsSite/template/en/default/reports/report-simple.html.tmpl: Removed.
4345 * BugsSite/template/en/default/reports/report-table.csv.tmpl: Removed.
4346 * BugsSite/template/en/default/reports/report-table.html.tmpl: Removed.
4347 * BugsSite/template/en/default/reports/report.csv.tmpl: Removed.
4348 * BugsSite/template/en/default/reports/report.html.tmpl: Removed.
4349 * BugsSite/template/en/default/reports/series-common.html.tmpl: Removed.
4350 * BugsSite/template/en/default/reports/series.html.tmpl: Removed.
4351 * BugsSite/template/en/default/request: Removed.
4352 * BugsSite/template/en/default/request/email.txt.tmpl: Removed.
4353 * BugsSite/template/en/default/request/queue.html.tmpl: Removed.
4354 * BugsSite/template/en/default/search: Removed.
4355 * BugsSite/template/en/default/search/boolean-charts.html.tmpl: Removed.
4356 * BugsSite/template/en/default/search/form.html.tmpl: Removed.
4357 * BugsSite/template/en/default/search/knob.html.tmpl: Removed.
4358 * BugsSite/template/en/default/search/search-advanced.html.tmpl: Removed.
4359 * BugsSite/template/en/default/search/search-create-series.html.tmpl: Removed.
4360 * BugsSite/template/en/default/search/search-help.html.tmpl: Removed.
4361 * BugsSite/template/en/default/search/search-plugin.xml.tmpl: Removed.
4362 * BugsSite/template/en/default/search/search-report-graph.html.tmpl: Removed.
4363 * BugsSite/template/en/default/search/search-report-select.html.tmpl: Removed.
4364 * BugsSite/template/en/default/search/search-report-table.html.tmpl: Removed.
4365 * BugsSite/template/en/default/search/search-specific.html.tmpl: Removed.
4366 * BugsSite/template/en/default/search/tabs.html.tmpl: Removed.
4367 * BugsSite/template/en/default/setup: Removed.
4368 * BugsSite/template/en/default/setup/strings.txt.pl: Removed.
4369 * BugsSite/template/en/default/sidebar.xul.tmpl: Removed.
4370 * BugsSite/template/en/default/welcome-admin.html.tmpl: Removed.
4371 * BugsSite/template/en/default/whine: Removed.
4372 * BugsSite/template/en/default/whine/mail.html.tmpl: Removed.
4373 * BugsSite/template/en/default/whine/mail.txt.tmpl: Removed.
4374 * BugsSite/template/en/default/whine/multipart-mime.txt.tmpl: Removed.
4375 * BugsSite/template/en/default/whine/schedule.html.tmpl: Removed.
4376 * BugsSite/template/en/extension: Removed.
4377 * BugsSite/template/en/extension/filterexceptions.pl: Removed.
4378 * BugsSite/testagent.cgi: Removed.
4379 * BugsSite/testserver.pl: Removed.
4380 * BugsSite/token.cgi: Removed.
4381 * BugsSite/userprefs.cgi: Removed.
4382 * BugsSite/votes.cgi: Removed.
4383 * BugsSite/whine.pl: Removed.
4384 * BugsSite/whineatnews.pl: Removed.
4385 * BugsSite/xml.cgi: Removed.
4386 * BugsSite/xmlrpc.cgi: Removed.
4387 * PlanetWebKit: Removed.
4388 * PlanetWebKit/README: Removed.
4389 * PlanetWebKit/config.ini: Removed.
4390 * PlanetWebKit/planet: Removed.
4391 * PlanetWebKit/planet/AUTHORS: Removed.
4392 * PlanetWebKit/planet/INSTALL: Removed.
4393 * PlanetWebKit/planet/LICENCE: Removed.
4394 * PlanetWebKit/planet/NEWS: Removed.
4395 * PlanetWebKit/planet/PKG-INFO: Removed.
4396 * PlanetWebKit/planet/README: Removed.
4397 * PlanetWebKit/planet/THANKS: Removed.
4398 * PlanetWebKit/planet/TODO: Removed.
4399 * PlanetWebKit/planet/examples: Removed.
4400 * PlanetWebKit/planet/examples/atom.xml.tmpl: Removed.
4401 * PlanetWebKit/planet/examples/basic: Removed.
4402 * PlanetWebKit/planet/examples/basic/config.ini: Removed.
4403 * PlanetWebKit/planet/examples/basic/index.html.tmpl: Removed.
4404 * PlanetWebKit/planet/examples/fancy: Removed.
4405 * PlanetWebKit/planet/examples/fancy/config.ini: Removed.
4406 * PlanetWebKit/planet/examples/fancy/index.html.tmpl: Removed.
4407 * PlanetWebKit/planet/examples/foafroll.xml.tmpl: Removed.
4408 * PlanetWebKit/planet/examples/opml.xml.tmpl: Removed.
4409 * PlanetWebKit/planet/examples/output: Removed.
4410 * PlanetWebKit/planet/examples/output/images: Removed.
4411 * PlanetWebKit/planet/examples/output/images/edd.png: Removed.
4412 * PlanetWebKit/planet/examples/output/images/evolution.png: Removed.
4413 * PlanetWebKit/planet/examples/output/images/feed-icon-10x10.png: Removed.
4414 * PlanetWebKit/planet/examples/output/images/jdub.png: Removed.
4415 * PlanetWebKit/planet/examples/output/images/keybuk.png: Removed.
4416 * PlanetWebKit/planet/examples/output/images/logo.png: Removed.
4417 * PlanetWebKit/planet/examples/output/images/opml.png: Removed.
4418 * PlanetWebKit/planet/examples/output/images/planet.png: Removed.
4419 * PlanetWebKit/planet/examples/output/images/thom.png: Removed.
4420 * PlanetWebKit/planet/examples/output/planet.css: Removed.
4421 * PlanetWebKit/planet/examples/rss10.xml.tmpl: Removed.
4422 * PlanetWebKit/planet/examples/rss20.xml.tmpl: Removed.
4423 * PlanetWebKit/planet/planet: Removed.
4424 * PlanetWebKit/planet/planet-cache.py: Removed.
4425 * PlanetWebKit/planet/planet.py: Removed.
4426 * PlanetWebKit/planet/planet/__init__.py: Removed.
4427 * PlanetWebKit/planet/planet/atomstyler.py: Removed.
4428 * PlanetWebKit/planet/planet/cache.py: Removed.
4429 * PlanetWebKit/planet/planet/compat_logging: Removed.
4430 * PlanetWebKit/planet/planet/compat_logging/__init__.py: Removed.
4431 * PlanetWebKit/planet/planet/compat_logging/config.py: Removed.
4432 * PlanetWebKit/planet/planet/compat_logging/handlers.py: Removed.
4433 * PlanetWebKit/planet/planet/feedparser.py: Removed.
4434 * PlanetWebKit/planet/planet/htmltmpl.py: Removed.
4435 * PlanetWebKit/planet/planet/sanitize.py: Removed.
4436 * PlanetWebKit/planet/planet/tests: Removed.
4437 * PlanetWebKit/planet/planet/tests/__init__.py: Removed.
4438 * PlanetWebKit/planet/planet/tests/data: Removed.
4439 * PlanetWebKit/planet/planet/tests/data/simple.tmpl: Removed.
4440 * PlanetWebKit/planet/planet/tests/data/simple2.tmpl: Removed.
4441 * PlanetWebKit/planet/planet/tests/test_channel.py: Removed.
4442 * PlanetWebKit/planet/planet/tests/test_main.py: Removed.
4443 * PlanetWebKit/planet/planet/tests/test_sanitize.py: Removed.
4444 * PlanetWebKit/planet/planet/tests/test_sub.py: Removed.
4445 * PlanetWebKit/planet/planet/timeoutsocket.py: Removed.
4446 * PlanetWebKit/planet/runtests.py: Removed.
4447 * PlanetWebKit/planet/setup.py: Removed.
4448 * PlanetWebKit/templates: Removed.
4449 * PlanetWebKit/templates/atom.xml.tmpl: Removed.
4450 * PlanetWebKit/templates/foafroll.xml.tmpl: Removed.
4451 * PlanetWebKit/templates/index.html.tmpl: Removed.
4452 * PlanetWebKit/templates/opml.xml.tmpl: Removed.
4453 * PlanetWebKit/templates/rss10.xml.tmpl: Removed.
4454 * PlanetWebKit/templates/rss20.xml.tmpl: Removed.
4455 * PlanetWebKit/update.pl: Removed.
4456 * PlanetWebKit/wwwroot: Removed.
4457 * PlanetWebKit/wwwroot/ie.css: Removed.
4458 * PlanetWebKit/wwwroot/images: Removed.
4459 * PlanetWebKit/wwwroot/images/feed-icon-10x10.png: Removed.
4460 * PlanetWebKit/wwwroot/images/ie-nav-blue.png: Removed.
4461 * PlanetWebKit/wwwroot/images/planet-webkit.png: Removed.
4462 * PlanetWebKit/wwwroot/images/planet.png: Removed.
4463 * PlanetWebKit/wwwroot/planet.css: Removed.
4464 * PlanetWebKit/wwwroot/planetwebkit.css: Removed.
4466 * Sites/bugs.webkit.org: Copied from BugsSite.
4467 * Sites/planet.webkit.org: Copied from PlanetWebKit.
4468 * Sites/webkit.org: Copied from WebKitSite.
4469 * WebKitSite: Removed.
4470 * WebKitSite/.htaccess: Removed.
4471 * WebKitSite/asking_questions.html: Removed.
4472 * WebKitSite/blog: Removed.
4473 * WebKitSite/blog-files: Removed.
4474 * WebKitSite/blog-files/3d-transforms: Removed.
4475 * WebKitSite/blog-files/3d-transforms/image-flip.html: Removed.
4476 * WebKitSite/blog-files/3d-transforms/mighty-cubes.png: Removed.
4477 * WebKitSite/blog-files/3d-transforms/morphing-cubes.html: Removed.
4478 * WebKitSite/blog-files/3d-transforms/perspective-by-example.html: Removed.
4479 * WebKitSite/blog-files/3d-transforms/poster-circle.html: Removed.
4480 * WebKitSite/blog-files/3d-transforms/poster-circle.png: Removed.
4481 * WebKitSite/blog-files/3d-transforms/transform-style.html: Removed.
4482 * WebKitSite/blog-files/InspectElementMenu.png: Removed.
4483 * WebKitSite/blog-files/InspectorCSSEditing.png: Removed.
4484 * WebKitSite/blog-files/InspectorDatabaseBrowser.png: Removed.
4485 * WebKitSite/blog-files/InspectorFonts.png: Removed.
4486 * WebKitSite/blog-files/acid3-100.png: Removed.
4487 * WebKitSite/blog-files/acid3-full-rendering-pass.png: Removed.
4488 * WebKitSite/blog-files/acid3-rendering-reference.png: Removed.
4489 * WebKitSite/blog-files/acid3-screenshot.png: Removed.
4490 * WebKitSite/blog-files/acid3-timing-screenshot.png: Removed.
4491 * WebKitSite/blog-files/acid3-timing.png: Removed.
4492 * WebKitSite/blog-files/animation-demo.svg: Removed.
4493 * WebKitSite/blog-files/bounce.html: Removed.
4494 * WebKitSite/blog-files/bounce.png: Removed.
4495 * WebKitSite/blog-files/circle.svg: Removed.
4496 * WebKitSite/blog-files/cubes-7.svg: Removed.
4497 * WebKitSite/blog-files/gebcnspeedtest.html: Removed.
4498 * WebKitSite/blog-files/gebcnwebkitonly.png: Removed.
4499 * WebKitSite/blog-files/inspector: Removed.
4500 * WebKitSite/blog-files/inspector-closure-scope.png: Removed.
4501 * WebKitSite/blog-files/inspector-console-autocomplete.png: Removed.
4502 * WebKitSite/blog-files/inspector-databases-panel-query-view.png: Removed.
4503 * WebKitSite/blog-files/inspector-databases-panel.png: Removed.
4504 * WebKitSite/blog-files/inspector-disabling-properties.png: Removed.
4505 * WebKitSite/blog-files/inspector-elements-panel.png: Removed.
4506 * WebKitSite/blog-files/inspector-event-scope.png: Removed.
4507 * WebKitSite/blog-files/inspector-numeric-style-stepping.gif: Removed.
4508 * WebKitSite/blog-files/inspector-profiles-panel.png: Removed.
4509 * WebKitSite/blog-files/inspector-resources-panel.png: Removed.
4510 * WebKitSite/blog-files/inspector-scripts-panel.png: Removed.
4511 * WebKitSite/blog-files/inspector-searching-elements.png: Removed.
4512 * WebKitSite/blog-files/inspector-searching-profiles.png: Removed.
4513 * WebKitSite/blog-files/inspector-status-bar-with-errors.png: Removed.
4514 * WebKitSite/blog-files/inspector-toolbar.png: Removed.
4515 * WebKitSite/blog-files/inspector-with-scope.png: Removed.
4516 * WebKitSite/blog-files/inspector/audits_launcher.png: Removed.
4517 * WebKitSite/blog-files/inspector/audits_panel.png: Removed.
4518 * WebKitSite/blog-files/inspector/breakpoints.png: Removed.
4519 * WebKitSite/blog-files/inspector/colors.png: Removed.
4520 * WebKitSite/blog-files/inspector/console_panel.png: Removed.
4521 * WebKitSite/blog-files/inspector/context_menu.png: Removed.
4522 * WebKitSite/blog-files/inspector/cookies.png: Removed.
4523 * WebKitSite/blog-files/inspector/css_highlighted_line.png: Removed.
4524 * WebKitSite/blog-files/inspector/css_line_number_snippet.png: Removed.
4525 * WebKitSite/blog-files/inspector/css_line_numbers.png: Removed.
4526 * WebKitSite/blog-files/inspector/css_selectors.png: Removed.
4527 * WebKitSite/blog-files/inspector/css_syntax_highlight.png: Removed.
4528 * WebKitSite/blog-files/inspector/deactivate_breakpoints.png: Removed.
4529 * WebKitSite/blog-files/inspector/dom_storage.png: Removed.
4530 * WebKitSite/blog-files/inspector/edit_attributes.png: Removed.
4531 * WebKitSite/blog-files/inspector/enable.png: Removed.
4532 * WebKitSite/blog-files/inspector/evaluate_on_hover.png: Removed.
4533 * WebKitSite/blog-files/inspector/evaluate_on_hover_2.png: Removed.
4534 * WebKitSite/blog-files/inspector/event_listeners.png: Removed.
4535 * WebKitSite/blog-files/inspector/form_data.png: Removed.