1 2011-05-09 Dmitry Lomov <dslomov@google.com>
3 Reviewed by Sam Weinig.
5 Switch TestWebKitAPI to GTest
6 https://bugs.webkit.org/show_bug.cgi?id=59561
8 * Source/ThirdParty/gtest/README.WebKit:
9 * Source/ThirdParty/gtest/msvc/gtest-md.vcproj:
11 2011-05-09 Xan Lopez <xlopez@igalia.com>
13 Reviewed by Gustavo Noronha.
15 Fix logic in GCC version detection, it was reversed.
19 2011-05-09 Alexis Menard <alexis.menard@openbossa.org>
21 Reviewed by Andreas Kling.
23 [Qt] Fix the build on Embedded Linux.
24 https://bugs.webkit.org/show_bug.cgi?id=60347
26 qpa is the name for lighthouse but the old name for Qt for Embedded Linux should
27 still be used in order to build properly.
31 2011-05-05 Kevin Ollivier <kevino@theolliviers.com>
33 [wx] Unreviewed build fix. Add LocalizedDateNone.cpp to the build.
37 2011-05-05 Prasanth Ullattil <prasanth.ullattil@nokia.com>
39 Reviewed by Simon Hausmann.
41 Install correct header files for webkit.
43 Since WebKit is no longer inside Qt, we can remove the detection for
46 [Qt] Install targets are not working correctly for modularized Qt and QtWebkit
47 https://bugs.webkit.org/show_bug.cgi?id=57621
49 * Source/sync.profile:
51 2011-05-05 Adam Barth <abarth@webkit.org>
53 Remove a couple stray mentions of WML that I missed before.
57 2011-05-05 Alexis Menard <alexis.menard@openbossa.org>
59 Reviewed by Benjamin Poulain.
61 [Qt] Make QtWebKit build when using gcc 4.6.0
62 https://bugs.webkit.org/show_bug.cgi?id=60265
64 If QtWebKit is compiled with gcc 4.6.0 and the build is not done
65 with c++0x support we need to deactivate warnings about compatibility.
66 Some WebKit types have names which conflicts with upcoming c++0x
67 types. If QtWebKit is built with c++0x support, WebKit has code to
68 fallback to the standard type rather than the WebKit implementation.
69 For example nullptr will be the one of the std if build options turns on
74 2011-05-04 Xan Lopez <xlopez@igalia.com>
76 Reviewed by Martin Robinson.
78 [GTK] Fix warnings in webkit.m4 with autoconf 2.68
79 https://bugs.webkit.org/show_bug.cgi?id=60189
81 Use AC_LANG_SOURCE when passing source code to AC_COMPILE_IFELSE
84 * Source/autotools/webkit.m4: ditto.
86 2011-05-04 Martin Robinson <mrobinson@igalia.com>
88 Fix the WebKitGTK+ build.
90 * configure.ac: Added option parsing code for loading touch icons.
92 2011-05-03 Lucas De Marchi <lucas.demarchi@profusion.mobi>
94 Reviewed by Xan Lopez.
96 [CMAKE] Remove C++0x compat mode warnings for GCC >= 4.6.0
97 https://bugs.webkit.org/show_bug.cgi?id=60041
99 Hardcode -Wno-c++0x-compat for the default compiler (if version >=
100 4.6.0) until our codebase is ready. This is the same as done for
103 * Source/cmake/WebKitHelpers.cmake: ditto.
105 2011-05-03 Lucas De Marchi <lucas.demarchi@profusion.mobi>
107 Unreviewed, rolling out r85624.
108 http://trac.webkit.org/changeset/85624
110 The same command is used also for make_names.pl, which breaks
113 * Source/cmake/OptionsCommon.cmake: ditto.
115 2011-05-03 Leandro Pereira <leandro@profusion.mobi>
117 [EFL] Unreviewed build fix for NETWORK_BACKEND=curl.
119 Force linking with zlib so that uncompress() exists.
121 * Source/cmake/OptionsEfl.cmake: Find zlib.
123 2011-05-03 Lucas De Marchi <lucas.demarchi@profusion.mobi>
125 [CMAKE] Unreviewed build fix for gcc >= 4.6
127 Same fix as done in r84123. CMake explicitly pass the arguments to
128 make_names.pl, so let's make them the same.
130 * Source/cmake/OptionsCommon.cmake: ditto.
132 2011-05-02 Adam Klein <adamk@chromium.org>
134 Reviewed by Tony Chang.
136 Roll chromium DEPS to r83722, add new crypto directory to DEPS
137 https://bugs.webkit.org/show_bug.cgi?id=59992
140 Ignore new chromium/crypto directory.
142 2011-05-03 Carlos Garcia Campos <cgarcia@igalia.com>
144 Reviewed by Eric Seidel.
146 [GTK] Build webkit1 even when webkit2 is enabled
147 https://bugs.webkit.org/show_bug.cgi?id=59695
152 2011-05-01 ojab <ojab@ojab.ru>
154 Reviewed by Eric Seidel.
156 --disable-video-track if --disable-video
157 https://bugs.webkit.org/show_bug.cgi?id=59605
161 2011-04-29 Dean Jackson <dino@apple.com>
163 Reviewed by Simon Fraser.
165 Add ENABLE macro for WebKitAnimation
166 https://bugs.webkit.org/show_bug.cgi?id=59729
168 Add new feature to toggle WebKit Animation API.
172 2011-04-29 Kevin Ollivier <kevino@theolliviers.com>
174 [wx] Unreviewed build fix. Fix library copying logic for wxMSW 2.9.x.
178 2011-04-28 Adam Barth <abarth@webkit.org>
180 Reviewed by Eric Seidel.
183 https://bugs.webkit.org/show_bug.cgi?id=59678
185 Remove WML configuration option from the CMake build system.
187 * Source/cmake/OptionsEfl.cmake:
188 * Source/cmake/OptionsWinCE.cmake:
189 * Source/cmakeconfig.h.cmake:
191 2011-04-28 Xan Lopez <xlopez@igalia.com>
193 Reviewed by Martin Robinson.
195 [Gtk] Split JSC and WebCore builds
196 https://bugs.webkit.org/show_bug.cgi?id=19428
198 Add a pkg-config file for JavaScriptCoreGTK+.
200 * configure.ac: generate the final pkg-config file from our .in
203 2011-04-28 Xan Lopez <xlopez@igalia.com>
205 Reviewed by Martin Robinson.
207 [Gtk] Split JSC and WebCore builds
208 https://bugs.webkit.org/show_bug.cgi?id=19428
210 Build JavaScriptCore as a libtool shared library instead of a
211 private convenience library.
213 * GNUmakefile.am: remove convenience library definition for jsc.
215 2011-04-28 Xan Lopez <xlopez@igalia.com>
217 Reviewed by Martin Robinson.
219 [GTK] Remove C++0x compat mode warnings for GCC >= 4.6.0
220 https://bugs.webkit.org/show_bug.cgi?id=59718
222 Hardcode -Wno-c++0x-compat for the default compiler (if version >=
223 4.6.0) until our codebase is ready.
225 * configure.ac: do that.
227 2011-04-27 Yi Shen <yi.4.shen@nokia.com>
229 Reviewed by Kenneth Rohde Christiansen.
231 [Qt] Upstream Symbian platform plugin
232 https://bugs.webkit.org/show_bug.cgi?id=58435
234 Upstream Symbian platform plugin.
236 * Source/WebKit.pro: Add platformplugin path to the SUBDIRS.
238 2011-04-27 Steve Block <steveblock@google.com>
240 Reviewed by David Levin.
242 Remove Android build system
243 https://bugs.webkit.org/show_bug.cgi?id=48111
245 This is to avoid the maintenance burden until the Android port is
248 * Source/Android.mk: Removed.
250 2011-04-26 Kevin Ollivier <kevino@theolliviers.com>
252 Rubberstamped by Eric Seidel.
254 Enable waf to be used to build other ports
255 https://bugs.webkit.org/show_bug.cgi?id=58213
259 2011-04-22 Sheriff Bot <webkit.review.bot@gmail.com>
261 Unreviewed, rolling out r84627.
262 http://trac.webkit.org/changeset/84627
263 https://bugs.webkit.org/show_bug.cgi?id=59271
265 It broke Symbian build (Requested by Ossy on #webkit).
269 2011-04-22 Yi Shen <yi.4.shen@nokia.com>
271 Reviewed by Kenneth Rohde Christiansen.
273 [Qt] Upstream Symbian platform plugin
274 https://bugs.webkit.org/show_bug.cgi?id=58435
276 Upstream Symbian platform plugin.
278 * Source/WebKit.pro: Add platformplugin path to the SUBDIRS.
280 2011-04-21 Maciej Stachowiak <mjs@apple.com>
282 Reviewed by Adam Roben.
284 Add a feature define to allow <details> and <summary> to be disabled
285 https://bugs.webkit.org/show_bug.cgi?id=59118
286 <rdar://problem/9257045>
290 2011-04-18 Evan Martin <evan@chromium.org>
292 Reviewed by Eric Seidel.
294 [chromium] expose title direction to webkit client
295 https://bugs.webkit.org/show_bug.cgi?id=58823
297 * Tools/DumpRenderTree/chromium/LayoutTestController.cpp:
298 * Tools/DumpRenderTree/chromium/LayoutTestController.h:
299 Adapt to new API. Expose title direction to JS so it can be tested.
301 * Tools/DumpRenderTree/chromium/WebViewHost.cpp:
302 * Tools/DumpRenderTree/chromium/WebViewHost.h:
305 2011-04-18 Hans Wennborg <hans@chromium.org>
307 Reviewed by Steve Block.
309 LevelDB backend for IndexedDB
310 https://bugs.webkit.org/show_bug.cgi?id=57372
312 Add LevelDB wrappers to Android.mk.
316 2011-04-18 Patrick Gansterer <paroga@webkit.org>
318 Reviewed by Pavel Feldman.
320 REGRESSION (r81479): generate-inspector-idl fails on native win32
321 https://bugs.webkit.org/show_bug.cgi?id=58315
323 Disable git autocrlf for Inspector.json.
327 2011-04-16 Patrick Gansterer <paroga@webkit.org>
329 Reviewed by Eric Seidel.
331 Rename PLATFORM(CAIRO) to USE(CAIRO)
332 https://bugs.webkit.org/show_bug.cgi?id=55192
334 * Source/cmake/OptionsEfl.cmake:
336 2011-04-15 Shishir Agrawal <shishir@chromium.org>
338 Reviewed by James Robinson.
340 Add a flag to guard Page Visibility API changes.
341 https://bugs.webkit.org/show_bug.cgi?id=58464
344 http://lists.w3.org/Archives/Public/public-webapps/2011JanMar/0175.html
348 2011-04-15 Xan Lopez <xlopez@igalia.com>
350 Reviewed by Martin Robinson.
352 * configure.ac: bump to 1.5.0, 1.4.0 will be released from a
353 branch and was already cut off.
355 2011-04-15 Anna Cavender <annacc@chromium.org>
357 Reviewed by Eric Carlson.
359 Renaming TRACK feature define to VIDEO_TRACK
360 https://bugs.webkit.org/show_bug.cgi?id=53556
364 2011-04-13 Dmitry Lomov <dslomov@google.com>
366 Reviewed by David Levin.
368 Add GTest unit-testing framework to WebKit
369 https://bugs.webkit.org/show_bug.cgi?id=58507
371 * Source/ThirdParty/gtest/CHANGES: Added.
372 * Source/ThirdParty/gtest/CMakeLists.txt: Added.
373 * Source/ThirdParty/gtest/CONTRIBUTORS: Added.
374 * Source/ThirdParty/gtest/COPYING: Added.
375 * Source/ThirdParty/gtest/Makefile.am: Added.
376 * Source/ThirdParty/gtest/README: Added.
377 * Source/ThirdParty/gtest/README.WebKit: Added.
378 * Source/ThirdParty/gtest/codegear/gtest.cbproj: Added.
379 * Source/ThirdParty/gtest/codegear/gtest.groupproj: Added.
380 * Source/ThirdParty/gtest/codegear/gtest_all.cc: Added.
381 * Source/ThirdParty/gtest/codegear/gtest_link.cc: Added.
382 * Source/ThirdParty/gtest/codegear/gtest_main.cbproj: Added.
383 * Source/ThirdParty/gtest/codegear/gtest_unittest.cbproj: Added.
384 * Source/ThirdParty/gtest/configure.ac: Added.
385 * Source/ThirdParty/gtest/include/gtest/gtest-death-test.h: Added.
386 * Source/ThirdParty/gtest/include/gtest/gtest-message.h: Added.
387 * Source/ThirdParty/gtest/include/gtest/gtest-param-test.h: Added.
388 * Source/ThirdParty/gtest/include/gtest/gtest-param-test.h.pump: Added.
389 * Source/ThirdParty/gtest/include/gtest/gtest-spi.h: Added.
390 * Source/ThirdParty/gtest/include/gtest/gtest-test-part.h: Added.
391 * Source/ThirdParty/gtest/include/gtest/gtest-typed-test.h: Added.
392 * Source/ThirdParty/gtest/include/gtest/gtest.h: Added.
393 * Source/ThirdParty/gtest/include/gtest/gtest_pred_impl.h: Added.
394 * Source/ThirdParty/gtest/include/gtest/gtest_prod.h: Added.
395 * Source/ThirdParty/gtest/include/gtest/internal/gtest-death-test-internal.h: Added.
396 * Source/ThirdParty/gtest/include/gtest/internal/gtest-filepath.h: Added.
397 * Source/ThirdParty/gtest/include/gtest/internal/gtest-internal.h: Added.
398 * Source/ThirdParty/gtest/include/gtest/internal/gtest-linked_ptr.h: Added.
399 * Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util-generated.h: Added.
400 * Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: Added.
401 * Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util.h: Added.
402 * Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h: Added.
403 * Source/ThirdParty/gtest/include/gtest/internal/gtest-string.h: Added.
404 * Source/ThirdParty/gtest/include/gtest/internal/gtest-tuple.h: Added.
405 * Source/ThirdParty/gtest/include/gtest/internal/gtest-tuple.h.pump: Added.
406 * Source/ThirdParty/gtest/include/gtest/internal/gtest-type-util.h: Added.
407 * Source/ThirdParty/gtest/include/gtest/internal/gtest-type-util.h.pump: Added.
408 * Source/ThirdParty/gtest/m4/acx_pthread.m4: Added.
409 * Source/ThirdParty/gtest/m4/gtest.m4: Added.
410 * Source/ThirdParty/gtest/make/Makefile: Added.
411 * Source/ThirdParty/gtest/msvc/gtest-md.sln: Added.
412 * Source/ThirdParty/gtest/msvc/gtest-md.vcproj: Added.
413 * Source/ThirdParty/gtest/msvc/gtest.sln: Added.
414 * Source/ThirdParty/gtest/msvc/gtest.vcproj: Added.
415 * Source/ThirdParty/gtest/msvc/gtest_main-md.vcproj: Added.
416 * Source/ThirdParty/gtest/msvc/gtest_main.vcproj: Added.
417 * Source/ThirdParty/gtest/msvc/gtest_prod_test-md.vcproj: Added.
418 * Source/ThirdParty/gtest/msvc/gtest_prod_test.vcproj: Added.
419 * Source/ThirdParty/gtest/msvc/gtest_unittest-md.vcproj: Added.
420 * Source/ThirdParty/gtest/msvc/gtest_unittest.vcproj: Added.
421 * Source/ThirdParty/gtest/run_tests.py: Added.
422 * Source/ThirdParty/gtest/samples/prime_tables.h: Added.
423 * Source/ThirdParty/gtest/samples/sample1.cc: Added.
424 * Source/ThirdParty/gtest/samples/sample1.h: Added.
425 * Source/ThirdParty/gtest/samples/sample10_unittest.cc: Added.
426 * Source/ThirdParty/gtest/samples/sample1_unittest.cc: Added.
427 * Source/ThirdParty/gtest/samples/sample2.cc: Added.
428 * Source/ThirdParty/gtest/samples/sample2.h: Added.
429 * Source/ThirdParty/gtest/samples/sample2_unittest.cc: Added.
430 * Source/ThirdParty/gtest/samples/sample3-inl.h: Added.
431 * Source/ThirdParty/gtest/samples/sample3_unittest.cc: Added.
432 * Source/ThirdParty/gtest/samples/sample4.cc: Added.
433 * Source/ThirdParty/gtest/samples/sample4.h: Added.
434 * Source/ThirdParty/gtest/samples/sample4_unittest.cc: Added.
435 * Source/ThirdParty/gtest/samples/sample5_unittest.cc: Added.
436 * Source/ThirdParty/gtest/samples/sample6_unittest.cc: Added.
437 * Source/ThirdParty/gtest/samples/sample7_unittest.cc: Added.
438 * Source/ThirdParty/gtest/samples/sample8_unittest.cc: Added.
439 * Source/ThirdParty/gtest/samples/sample9_unittest.cc: Added.
440 * Source/ThirdParty/gtest/scripts/fuse_gtest_files.py: Added.
441 * Source/ThirdParty/gtest/scripts/gen_gtest_pred_impl.py: Added.
442 * Source/ThirdParty/gtest/scripts/gtest-config.in: Added.
443 * Source/ThirdParty/gtest/scripts/pump.py: Added.
444 * Source/ThirdParty/gtest/scripts/test/Makefile: Added.
445 * Source/ThirdParty/gtest/scripts/upload.py: Added.
446 * Source/ThirdParty/gtest/scripts/upload_gtest.py: Added.
447 * Source/ThirdParty/gtest/src/gtest-all.cc: Added.
448 * Source/ThirdParty/gtest/src/gtest-death-test.cc: Added.
449 * Source/ThirdParty/gtest/src/gtest-filepath.cc: Added.
450 * Source/ThirdParty/gtest/src/gtest-internal-inl.h: Added.
451 * Source/ThirdParty/gtest/src/gtest-port.cc: Added.
452 * Source/ThirdParty/gtest/src/gtest-test-part.cc: Added.
453 * Source/ThirdParty/gtest/src/gtest-typed-test.cc: Added.
454 * Source/ThirdParty/gtest/src/gtest.cc: Added.
455 * Source/ThirdParty/gtest/src/gtest_main.cc: Added.
456 * Source/ThirdParty/gtest/test/gtest-death-test_test.cc: Added.
457 * Source/ThirdParty/gtest/test/gtest-filepath_test.cc: Added.
458 * Source/ThirdParty/gtest/test/gtest-linked_ptr_test.cc: Added.
459 * Source/ThirdParty/gtest/test/gtest-listener_test.cc: Added.
460 * Source/ThirdParty/gtest/test/gtest-message_test.cc: Added.
461 * Source/ThirdParty/gtest/test/gtest-options_test.cc: Added.
462 * Source/ThirdParty/gtest/test/gtest-param-test2_test.cc: Added.
463 * Source/ThirdParty/gtest/test/gtest-param-test_test.cc: Added.
464 * Source/ThirdParty/gtest/test/gtest-param-test_test.h: Added.
465 * Source/ThirdParty/gtest/test/gtest-port_test.cc: Added.
466 * Source/ThirdParty/gtest/test/gtest-test-part_test.cc: Added.
467 * Source/ThirdParty/gtest/test/gtest-tuple_test.cc: Added.
468 * Source/ThirdParty/gtest/test/gtest-typed-test2_test.cc: Added.
469 * Source/ThirdParty/gtest/test/gtest-typed-test_test.cc: Added.
470 * Source/ThirdParty/gtest/test/gtest-typed-test_test.h: Added.
471 * Source/ThirdParty/gtest/test/gtest-unittest-api_test.cc: Added.
472 * Source/ThirdParty/gtest/test/gtest_all_test.cc: Added.
473 * Source/ThirdParty/gtest/test/gtest_break_on_failure_unittest.py: Added.
474 * Source/ThirdParty/gtest/test/gtest_break_on_failure_unittest_.cc: Added.
475 * Source/ThirdParty/gtest/test/gtest_color_test.py: Added.
476 * Source/ThirdParty/gtest/test/gtest_color_test_.cc: Added.
477 * Source/ThirdParty/gtest/test/gtest_env_var_test.py: Added.
478 * Source/ThirdParty/gtest/test/gtest_env_var_test_.cc: Added.
479 * Source/ThirdParty/gtest/test/gtest_environment_test.cc: Added.
480 * Source/ThirdParty/gtest/test/gtest_filter_unittest.py: Added.
481 * Source/ThirdParty/gtest/test/gtest_filter_unittest_.cc: Added.
482 * Source/ThirdParty/gtest/test/gtest_help_test.py: Added.
483 * Source/ThirdParty/gtest/test/gtest_help_test_.cc: Added.
484 * Source/ThirdParty/gtest/test/gtest_list_tests_unittest.py: Added.
485 * Source/ThirdParty/gtest/test/gtest_list_tests_unittest_.cc: Added.
486 * Source/ThirdParty/gtest/test/gtest_main_unittest.cc: Added.
487 * Source/ThirdParty/gtest/test/gtest_nc.cc: Added.
488 * Source/ThirdParty/gtest/test/gtest_nc_test.py: Added.
489 * Source/ThirdParty/gtest/test/gtest_no_test_unittest.cc: Added.
490 * Source/ThirdParty/gtest/test/gtest_output_test.py: Added.
491 * Source/ThirdParty/gtest/test/gtest_output_test_.cc: Added.
492 * Source/ThirdParty/gtest/test/gtest_output_test_golden_lin.txt: Added.
493 * Source/ThirdParty/gtest/test/gtest_output_test_golden_win.txt: Added.
494 * Source/ThirdParty/gtest/test/gtest_pred_impl_unittest.cc: Added.
495 * Source/ThirdParty/gtest/test/gtest_prod_test.cc: Added.
496 * Source/ThirdParty/gtest/test/gtest_repeat_test.cc: Added.
497 * Source/ThirdParty/gtest/test/gtest_shuffle_test.py: Added.
498 * Source/ThirdParty/gtest/test/gtest_shuffle_test_.cc: Added.
499 * Source/ThirdParty/gtest/test/gtest_sole_header_test.cc: Added.
500 * Source/ThirdParty/gtest/test/gtest_stress_test.cc: Added.
501 * Source/ThirdParty/gtest/test/gtest_test_utils.py: Added.
502 * Source/ThirdParty/gtest/test/gtest_throw_on_failure_ex_test.cc: Added.
503 * Source/ThirdParty/gtest/test/gtest_throw_on_failure_test.py: Added.
504 * Source/ThirdParty/gtest/test/gtest_throw_on_failure_test_.cc: Added.
505 * Source/ThirdParty/gtest/test/gtest_uninitialized_test.py: Added.
506 * Source/ThirdParty/gtest/test/gtest_uninitialized_test_.cc: Added.
507 * Source/ThirdParty/gtest/test/gtest_unittest.cc: Added.
508 * Source/ThirdParty/gtest/test/gtest_xml_outfile1_test_.cc: Added.
509 * Source/ThirdParty/gtest/test/gtest_xml_outfile2_test_.cc: Added.
510 * Source/ThirdParty/gtest/test/gtest_xml_outfiles_test.py: Added.
511 * Source/ThirdParty/gtest/test/gtest_xml_output_unittest.py: Added.
512 * Source/ThirdParty/gtest/test/gtest_xml_output_unittest_.cc: Added.
513 * Source/ThirdParty/gtest/test/gtest_xml_test_utils.py: Added.
514 * Source/ThirdParty/gtest/test/production.cc: Added.
515 * Source/ThirdParty/gtest/test/production.h: Added.
516 * Source/ThirdParty/gtest/test/run_tests_util.py: Added.
517 * Source/ThirdParty/gtest/test/run_tests_util_test.py: Added.
518 * Source/ThirdParty/gtest/xcode/Config/DebugProject.xcconfig: Added.
519 * Source/ThirdParty/gtest/xcode/Config/FrameworkTarget.xcconfig: Added.
520 * Source/ThirdParty/gtest/xcode/Config/General.xcconfig: Added.
521 * Source/ThirdParty/gtest/xcode/Config/ReleaseProject.xcconfig: Added.
522 * Source/ThirdParty/gtest/xcode/Config/StaticLibraryTarget.xcconfig: Added.
523 * Source/ThirdParty/gtest/xcode/Config/TestTarget.xcconfig: Added.
524 * Source/ThirdParty/gtest/xcode/Resources/Info.plist: Added.
525 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/Info.plist: Added.
526 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: Added.
527 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/runtests.sh: Added.
528 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget.cc: Added.
529 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget.h: Added.
530 * Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget_test.cc: Added.
531 * Source/ThirdParty/gtest/xcode/Scripts/runtests.sh: Added.
532 * Source/ThirdParty/gtest/xcode/Scripts/versiongenerate.py: Added.
533 * Source/ThirdParty/gtest/xcode/gtest.xcodeproj/project.pbxproj: Added.
535 2011-04-13 Ryuan Choi <ryuan.choi@samsung.com>
537 Reviewed by Kenneth Rohde Christiansen.
539 [CMAKE] Separate DerivedSources.
540 https://bugs.webkit.org/show_bug.cgi?id=58427
542 Seperate DerivedSources/ to DerivedSources/WebCore and
543 DerivedSources/JavaScriptCore.
545 * Source/CMakeLists.txt:
546 * Source/cmake/OptionsCommon.cmake:
547 * Source/cmake/WebKitFS.cmake:
548 * Source/cmake/WebKitHelpers.cmake:
549 * Source/cmake/WebKitMacros.cmake:
551 2011-04-13 Tony Chang <tony@chromium.org>
553 Ignore files generated from glu.gyp.
557 2011-03-28 Adam Barth <abarth@webkit.org>
559 Reviewed by Kenneth Russell.
561 Move libtess from WebCore/thirdparty to ThirdParty
562 https://bugs.webkit.org/show_bug.cgi?id=57288
564 We're putting third party code in Source/ThirdParty these days.
566 * Source/ThirdParty/glu: Copied from Source/WebCore/thirdparty/glu.
567 * Source/ThirdParty/glu/glu.gyp: Added.
569 2011-04-12 Thouraya ANDOLSI <thouraya.andolsi@st.com>
571 Reviewed by Eric Seidel.
573 [QT] Enable JIT build for SH4 platforms.
574 https://bugs.webkit.org/show_bug.cgi?id=58317
575 add disable_uitools for SH4 platforms.
579 2011-04-11 Anna Cavender <annacc@chromium.org>
581 Reviewed by Eric Carlson.
583 Setup ENABLE(TRACK) feature define
584 https://bugs.webkit.org/show_bug.cgi?id=53556
588 2011-04-11 Varun Jain <varunjain@chromium.org>
590 Reviewed by Darin Fisher.
592 Resolving FIXME to make new WebWidget method pure virtual since all downstream classes have implemented the method.
593 https://bugs.webkit.org/show_bug.cgi?id=58245
595 * Source/WebKit/chromium/public/WebWidget.h:
597 2011-04-11 Thouraya ANDOLSI <thouraya.andolsi@st.com>
599 Reviewed by Oliver Hunt.
602 https://bugs.webkit.org/show_bug.cgi?id=44329
604 Enable JIT support for SH4 platforms.
608 2011-04-11 Andreas Kling <andreas.kling@nokia.com>
610 Unreviewed Qt build fix, QT_CONFIG doesn't have uitools on bots.
614 2011-04-09 Keith Kyzivat <keith.kyzivat@nokia.com>
616 Reviewed by Laszlo Gombos.
618 [Qt] Don't link against fontconfig or X11 if embedded
619 https://bugs.webkit.org/show_bug.cgi?id=58104
621 * Source/WebKit.pri: Add qpa=>embedded as it should be across all builds.
623 2011-04-08 Alpha Lam <hclam@chromium.org>
625 Unreviewed, rolling out r83335.
626 http://trac.webkit.org/changeset/83335
627 https://bugs.webkit.org/show_bug.cgi?id=53556
629 GTK and QT bots are broken.
633 2011-04-08 Kristian Amlie <kristian.amlie@nokia.com>
635 Reviewed by Andreas Kling.
637 [Qt] Remove modular references after support for the flag was removed.
638 https://bugs.webkit.org/show_bug.cgi?id=57018
640 Removed modular references after support for the flag was removed.
642 Support was removed because the Qt Modularization project decided we
643 don't need it. It's better to base decisions on the available
644 information, as demonstrated in the patch by checking
649 2011-04-07 Anna Cavender <annacc@chromium.org>
651 Reviewed by Eric Carlson.
653 Setup ENABLE(TRACK) feature define
654 https://bugs.webkit.org/show_bug.cgi?id=53556
658 2011-04-08 Varun Jain <varunjain@chromium.org>
660 Reviewed by Darin Fisher.
662 Need to extend WebKit chromium API to access text selection
663 https://bugs.webkit.org/show_bug.cgi?id=57888
665 * Source/WebKit/chromium/public/WebFrame.h:
666 * Source/WebKit/chromium/public/WebWidget.h:
667 * Source/WebKit/chromium/src/WebFrameImpl.cpp:
668 * Source/WebKit/chromium/src/WebFrameImpl.h:
669 * Source/WebKit/chromium/src/WebPopupMenuImpl.h:
670 * Source/WebKit/chromium/src/WebViewImpl.cpp:
671 * Source/WebKit/chromium/src/WebViewImpl.h:
672 * Source/WebKit/chromium/tests/PopupMenuTest.cpp:
674 2011-04-08 Jon Lee <jonlee@apple.com>
676 Reviewed by David Levin.
678 adding *.vcproj.*.user to .gitignore for Visual Studio development
679 https://bugs.webkit.org/show_bug.cgi?id=58097
683 2011-04-07 Eric Seidel <eric@webkit.org>
685 Reviewed by Adam Barth.
687 Add stub support for generating Gtk build system from gyp
688 https://bugs.webkit.org/show_bug.cgi?id=58086
690 This adds support for a new --port argument and plumbs through
691 the necessary paths to allow generating for a port other than Mac.
693 * Source/gyp/configure:
695 2011-04-07 Andrew Scherkus <scherkus@chromium.org>
697 Revert ENABLE_TRACK patch due to compile failures.
701 2011-04-06 Dai Mikurube <dmikurube@chromium.org>
703 Reviewed by David Levin.
705 Add QUOTA build flag for unified quota API
706 https://bugs.webkit.org/show_bug.cgi?id=57918
708 * configure.ac: Added QUOTA build flag
710 2011-04-04 Martin Robinson <mrobinson@igalia.com>
712 Build fix for GTK+ after r82876.
714 * Source/autotools/symbols.filter: Update the symbol filter to include new symbols
715 from WTF that DRT uses.
717 2011-04-04 Martin Robinson <mrobinson@igalia.com>
719 Reviewed by Gustavo Noronha Silva.
722 https://bugs.webkit.org/show_bug.cgi?id=31517
724 * configure.ac: Update configure.ac to ensure that GL/GLX headers exist.
726 2011-04-04 Jon Lee <jonlee@apple.com>
728 Reviewed by Eric Seidel.
730 add some directories to .gitignore (and svn:ignore) when opening projects in xcode4
731 https://bugs.webkit.org/show_bug.cgi?id=57646
733 * .gitignore: added xcode 4 related project and workspace directories that are not needed for checkin
735 2011-03-31 Xan Lopez <xlopez@igalia.com>
737 Reviewed by Martin Robinson.
739 [GTK] Link explicitly with XRender on Linux/Unix
740 https://bugs.webkit.org/show_bug.cgi?id=57558
742 Some linkers, like GNU Gold, require explicit linkage of all the
743 libraries used instead of relying on our dependencies to bring
744 them in. In this case, the build fails because we use XRender in
745 the plugin code but don't link directly to it.
747 * configure.ac: check for XRender on UNIX.
749 2011-03-31 Vamshikrishna.Yellenki <vamshi@motorola.com> and Alejandro G. Castro <alex@igalia.com>
751 Reviewed by Martin Robinson.
753 Implement MiniBrowser for Gtk port.
754 https://bugs.webkit.org/show_bug.cgi?id=48512
756 Initial implementation of the Gtk MiniBrowser.
760 2011-03-30 Csaba Osztrogonác <ossy@webkit.org>
762 [Qt] Typo fix, remove an accidentally added line.
766 2011-03-30 Csaba Osztrogonác <ossy@webkit.org>
768 [Qt] Rollout r82240 and r82232, because they broke 2 plugin tests.
772 2011-03-29 Csaba Osztrogonác <ossy@webkit.org>
774 Rubber-stamped by Andreas Kling.
776 [Qt] Remove modular references after support for the flag was removed.
777 https://bugs.webkit.org/show_bug.cgi?id=57018
779 Symbian buildfix after r82232.
781 * Source/WebKit.pri: Readd uitools option.
783 2011-03-29 Kristian Amlie <kristian.amlie@nokia.com>
785 Reviewed by Andreas Kling.
787 Removed modular references after support for the flag was removed.
789 Support was removed because the Qt Modularization project decided we
790 don't need it. It's better to base decisions on the available
791 information, as demonstrated in the patch by checking
794 In addition, remove the reference to uitools. It has been moved to
795 QtKernel now, and therefore is always available.
797 [Qt] Remove modular references after support for the flag was removed.
798 https://bugs.webkit.org/show_bug.cgi?id=57018
802 2011-03-28 Benjamin Poulain <benjamin.poulain@nokia.com>
804 Reviewed by Andreas Kling.
806 [Qt] QtWebKit will not compile with QT_ASCII_CAST_WARNINGS enabled
807 https://bugs.webkit.org/show_bug.cgi?id=57087
809 Enable QT_ASCII_CAST_WARNINGS by default in webkit.pri to catch the errors early on.
813 2011-03-26 Adam Barth <abarth@webkit.org>
815 Reviewed by Eric Seidel.
817 We shouldn't bother running GYP if the generated files are newer than the GYP files
818 https://bugs.webkit.org/show_bug.cgi?id=57146
820 In the common case, this check will avoid any overhead from processing
821 the GYP files. Another approach to doing this is to add the feature to
822 GYP directly, but GYP's approach to this problem is to compute the
823 output in its entirety and compare it byte-for-byte against the output
824 file. In the future, it might make sense to add this approach as an
825 alternative approach for GYP itself.
827 I also removed JavaScriptGlue from the script because we're not really
828 going to change JavaScriptGlue over to GYP. We were using
829 JavaScriptGlue as a learning experience.
831 * Source/gyp/configure:
833 2011-03-25 Kevin Ollivier <kevino@theolliviers.com>
835 [wx] Build fix, don't use the new FPD implementation yet, until we can merge ours with it.
839 2011-03-23 George Guo <George.Guo@nokia.com>
841 Reviewed by Darin Adler.
843 Webkit warning: converting to 'unsigned int' from 'double'
844 https://bugs.webkit.org/show_bug.cgi?id=56865
846 With -Werr enabled, this cause the build failure on RedHat Linux.
849 * Source/JavaScriptCore/runtime/TimeoutChecker.cpp:
852 2011-03-23 Adam Barth <abarth@webkit.org>
854 Reviewed by Eric Seidel.
856 GYP build should default to Production configuration
857 https://bugs.webkit.org/show_bug.cgi?id=56899
859 * Source/gyp/common.gypi:
861 2011-03-22 Adam Barth <abarth@webkit.org>
863 Reviewed by Eric Seidel.
865 gyp/configure shouldn't require GYP to be in your path
866 https://bugs.webkit.org/show_bug.cgi?id=56873
868 Now that GYP is on Source/ThirdParty/gyp, we can just use that copy
869 instead of requiring GYP to be in the user's path.
871 * Source/gyp/configure:
873 2011-03-22 Adam Barth <abarth@webkit.org>
875 Reviewed by Eric Seidel.
877 Add GYP to Source/ThirdParty
878 https://bugs.webkit.org/show_bug.cgi?id=56870
880 We probably don't need all the test files, but it seems cleaner to just
881 check in the whole GYP tree. GYP is BSD licensed, so it is compatible
882 with the WebKit license.
884 * Source/ThirdParty/gyp: Added.
886 2011-03-21 Alejandro G. Castro <alex@igalia.com>
888 Reviewed by Martin Robinson.
890 [GTK] 1.3.13 release bump
891 https://bugs.webkit.org/show_bug.cgi?id=56795
893 Version bump for 1.3.13 and updated NEWS file with release notes.
897 2011-03-21 Ryuan Choi <ryuan.choi@samsung.com>
899 Reviewed by Antonio Gomes.
901 [CMAKE] Add exception handling when PORT was missing.
902 https://bugs.webkit.org/show_bug.cgi?id=56728
904 * Source/CMakeLists.txt:
906 2011-03-10 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>
908 Reviewed by Laszlo Gombos.
910 [Qt] Text layout is broken on Symbian
911 https://bugs.webkit.org/show_bug.cgi?id=56046
913 Change integers included into bitfields to be signed by default on RVCT
914 compiler as a lot of other compilers do (gcc, msvc, winsc).
915 There are a lot of places in webkit where integers included in bitfield
916 are assumed to be signed.
920 2011-03-10 Alejandro G. Castro <alex@igalia.com>
922 Unreviewed, fixed Efl compilation after r80744.
924 * Source/cmake/OptionsEfl.cmake:
926 2011-03-10 Martin Robinson <mrobinson@igalia.com>
928 Fixed the help message for WebGL support on GTK+ to reflect the fact that
929 it's turned off by default and is experimental.
931 * configure.ac: Fix WebGL help message.
933 2011-03-04 Dimitri Glazkov <dglazkov@chromium.org>
935 Reviewed by Adam Barth.
937 Add skeletal WebCore.gyp
938 https://bugs.webkit.org/show_bug.cgi?id=55802
940 * Source/gyp/configure: Added WebCore.
942 2011-03-04 Adam Barth <abarth@webkit.org>
944 Reviewed by Dimitri Glazkov.
946 Add a basic configure script for the GYP build
947 https://bugs.webkit.org/show_bug.cgi?id=55791
949 This script just calls GYP on the various gyp projects. As we add more
950 build systems, this script should be able to select which of them you'd
951 like to generate the project for.
953 * Source/gyp/configure: Added.
955 2011-03-04 Adam Barth <abarth@webkit.org>
957 Reviewed by Dimitri Glazkov.
959 Use target_defaults to reduce boilerplate in GYP build system
960 https://bugs.webkit.org/show_bug.cgi?id=55790
962 This file contains GYP declarations that are shared by all the modules.
963 Currently, we use this to set up the configurations, albeit primitively.
965 * Source/gyp/common.gypi: Added.
967 2011-03-03 Kevin Ollivier <kevino@theolliviers.com>
969 [wx] Build fix. Ensure the ICU include dir comes before JavaScriptCore/wtf on Win
970 to make sure the proper unicode/utf8.h header is included.
974 2011-03-02 Kevin Ollivier <kevino@theolliviers.com>
976 [wx] Build fix, don't use LocalizedNumberICU.cpp yet, headers that it needs are not
977 included in the ICU headers used by WebKit.
981 2011-03-02 Daniel Cheng <dcheng@chromium.org>
983 Reviewed by David Levin.
985 Add feature define for data transfer items
986 https://bugs.webkit.org/show_bug.cgi?id=55510
988 * Source/cmake/OptionsEfl.cmake:
989 * Source/cmake/OptionsWinCE.cmake:
990 * Source/cmakeconfig.h.cmake:
994 2011-03-02 Andras Becsi <abecsi@webkit.org>
996 Reviewed by Laszlo Gombos.
998 [Qt][WK2] generate-forwarding-headers.pl should generate paths with framework names
999 https://bugs.webkit.org/show_bug.cgi?id=55478
1001 On case insensitive systems the generated forwarding headers cause build problems.
1003 * Source/WebKit.pri: Adjust INCLUDEPATH for the project.
1005 2011-03-01 Sheriff Bot <webkit.review.bot@gmail.com>
1007 Unreviewed, rolling out r80079.
1008 http://trac.webkit.org/changeset/80079
1009 https://bugs.webkit.org/show_bug.cgi?id=55547
1011 "Broke the Win debug build?" (Requested by dcheng on #webkit).
1013 * Source/cmake/OptionsEfl.cmake:
1014 * Source/cmake/OptionsWinCE.cmake:
1015 * Source/cmakeconfig.h.cmake:
1017 2011-03-01 Daniel Cheng <dcheng@chromium.org>
1019 Reviewed by David Levin.
1021 Add feature define for data transfer items
1022 https://bugs.webkit.org/show_bug.cgi?id=55510
1024 * Source/cmake/OptionsEfl.cmake:
1025 * Source/cmake/OptionsWinCE.cmake:
1026 * Source/cmakeconfig.h.cmake:
1028 2011-03-01 Andras Becsi <abecsi@webkit.org>
1030 Reviewed by Csaba Osztrogonác.
1032 [Qt] Clean up the project files and move common options to WebKit.pri.
1034 Mac related changes suggested by Prasanth Ullattil <prasanth.ullattil@nokia.com>
1036 * Source/WebKit.pri: Common options should be here.
1037 Also move Mac options to this file to fix the Mac build.
1039 2011-03-01 Andras Becsi <abecsi@webkit.org>
1041 Unreviewed build fix.
1043 [Qt] Fix minimal build.
1045 * Source/WebKit.pri: Move the XP_UNIX define back to WebCore.pri.
1047 2011-02-28 Adam Barth <abarth@webkit.org>
1049 Reviewed by Dimitri Glazkov.
1051 Teach JavaScriptGlue gyp build about DEPTH
1052 https://bugs.webkit.org/show_bug.cgi?id=55421
1054 Moves the previously JavaScriptGlue-specific GYP helper shell scripts
1055 to the gyp directory in Source, where they can be shared by multiple
1058 * Source/gyp: Added.
1059 * Source/gyp/remove-headers-if-needed.sh: Copied from Source/JavaScriptGlue/gyp/remove-headers-if-needed.sh.
1060 * Source/gyp/run-if-exists.sh: Copied from Source/JavaScriptGlue/gyp/run-if-exists.sh.
1061 * Source/gyp/update-info-plist.sh: Copied from Source/JavaScriptGlue/gyp/update-info-plist.sh.
1063 2011-02-28 Benjamin Poulain <benjamin.poulain@nokia.com>
1065 Reviewed by Kenneth Rohde Christiansen.
1067 [Qt][WK2] Add a way to test the WebKit 2 APIs
1068 https://bugs.webkit.org/show_bug.cgi?id=55408
1070 Add the build file for test to the build system.
1072 * Source/WebKit.pri: Add the include path for WebKit 2 APIs.
1073 * Source/WebKit.pro: Add the dependency to build the new test project.
1075 2011-02-28 Balazs Kelemen <kbalazs@webkit.org>
1077 Reviewed by Anders Carlsson.
1079 [Qt][WK2] Plugin initialization
1080 https://bugs.webkit.org/show_bug.cgi?id=48127
1082 * Source/WebKit.pri: Lift the definition of the XP_UNIX macro
1083 from WebCore.pri to WebKit.pri to apply it to WebKit2 as well.
1085 2011-02-28 Kristian Amlie <kristian.amlie@nokia.com>
1087 Reviewed by Andreas Kling.
1089 Added full webkit module profile and a syncqt profile.
1091 This is for modularized Qt.
1093 [Qt] WebKit patches required to work with a modularized version of Qt
1094 https://bugs.webkit.org/show_bug.cgi?id=53916
1096 * Source/sync.profile: Added.
1098 2011-02-26 Dihan Wickremasuriya <dihan.wickremasuriya@nokia.com>
1100 Reviewed by Laszlo Gombos.
1102 [Qt] [Symbian] Disable dependency to a specific version of a Qt package for
1103 non-production builds.
1104 https://bugs.webkit.org/show_bug.cgi?id=55313
1106 * Source/WebKit.pri:
1108 2011-02-24 Alejandro G. Castro <alex@igalia.com>
1110 Rubber-stamped by Martin Robinson.
1112 Fixed compilation after r79537, added a bug to solve webkit2
1114 https://bugs.webkit.org/show_bug.cgi?id=55153
1118 2011-02-24 Christian Dywan <christian@lanedo.com>
1120 Rubber-stamped by Eric Seidel.
1122 [GTK] webkitgtk 1.3.7 build without translations
1123 https://bugs.webkit.org/show_bug.cgi?id=50612
1125 * GNUmakefile.am: Require stamp-po target for all-local so
1126 that po files are built before they install.
1128 2011-02-22 Philippe Normand <pnormand@igalia.com>
1130 Reviewed by Martin Robinson.
1132 [GTK] 1.3.12 release preparation
1133 https://bugs.webkit.org/show_bug.cgi?id=54967
1135 Version bump for 1.3.12 and updated NEWS file with release notes.
1136 Also bumped libsoup requirement to 2.33.6 as agreed with Sergio
1139 * Source/WebKit/gtk/NEWS:
1142 2011-02-22 Andras Becsi <abecsi@webkit.org>
1144 Reviewed by Laszlo Gombos.
1146 [Qt] Redesign the build system
1147 https://bugs.webkit.org/show_bug.cgi?id=51339
1151 Build WebCore as a static library, compile the WebKit API and WebKit2 API
1152 in a final step and link to WebKit2, WebCore and JSC libraries to fix
1153 linking issues resulting from stripped away symbols.
1155 * Source/WebKit.pri: Add common include paths
1156 * Source/WebKit.pro: Add new project file to SUBDIRS
1158 2011-02-20 Carlos Garcia Campos <cgarcia@igalia.com>
1160 Reviewed by Martin Robinson.
1162 [GTK] Bump GTK+3 dependency to 3.0
1163 https://bugs.webkit.org/show_bug.cgi?id=54394
1167 2011-02-19 Ryuan Choi <ryuan.choi@samsung.com>
1169 Reviewed by Martin Robinson.
1171 [GTK] Remove mandatory Enchant dependency
1172 https://bugs.webkit.org/show_bug.cgi?id=51587
1174 Add enable-spellcheck option which decides whether to use enchant.
1175 If disabled, WebKitGTK+ will not use enchant library.
1179 2011-02-18 Zan Dobersek <zandobersek@gmail.com>
1181 Reviewed by Martin Robinson.
1183 [Gtk] Re-enable meter tag support
1184 https://bugs.webkit.org/show_bug.cgi?id=54762
1186 Enable meter tag support in the configure.ac. This feature was
1187 previously enabled by default in the makefile, but should be
1188 enabled here after changes in r78981.
1192 2011-02-18 Kristian Amlie <kristian.amlie@nokia.com>
1194 Reviewed by Kenneth Rohde Christiansen.
1196 Avoided UiTools dependency if the module is not present.
1198 [Qt] WebKit patches required to work with a modularized version of Qt
1199 https://bugs.webkit.org/show_bug.cgi?id=53916
1201 * Source/WebKit.pri:
1203 2011-02-18 Ryuan Choi <ryuan.choi@samsung.com>
1205 Reviewed by Kent Tamura.
1207 [EFL] Remove GDK dependency.
1208 https://bugs.webkit.org/show_bug.cgi?id=53978
1210 Remove checking GDK library.
1212 * Source/cmake/OptionsEfl.cmake:
1214 2011-02-18 Philippe Normand <pnormand@igalia.com>
1216 Unreviewed, build fix after r78981
1218 * configure.ac: datagrid is datagrid, it is not database. Also
1219 meter is not progress. Fixed copy/paste mistakes.
1221 2011-02-18 Philippe Normand <pnormand@igalia.com>
1223 Reviewed by Martin Robinson.
1225 [GTK] minimal build unrecognized options
1226 https://bugs.webkit.org/show_bug.cgi?id=50890
1228 * configure.ac: added new configure options to enable/disable the
1229 meter element, progress element, datagrid and client-based
1230 geolocation support.
1232 2011-02-17 Kevin Ollivier <kevino@theolliviers.com>
1234 [wx] Build fix after introduction of JavaScriptCore/collector.
1238 2011-02-17 Kristian Amlie <kristian.amlie@nokia.com>
1240 Reviewed by Laszlo Gombos.
1242 Updated include paths for phonon.
1244 [Qt] WebKit patches required to work with a modularized version of Qt
1245 https://bugs.webkit.org/show_bug.cgi?id=53916
1247 * Source/WebKit.pri:
1249 2011-02-13 Hayato Ito <hayato@chromium.org>
1251 Reviewed by Kent Tamura.
1253 Update .gitignore to ignore files which Ninja build system generates.
1255 https://bugs.webkit.org/show_bug.cgi?id=54378
1259 2011-02-10 Peter Varga <pvarga@webkit.org>
1261 Reviewed by Csaba Osztrogonác.
1263 Remove PCRE source from trunk
1264 https://bugs.webkit.org/show_bug.cgi?id=54188
1266 * Source/cmake/WebKitFS.cmake:
1268 2011-02-09 Adam Barth <abarth@webkit.org>
1270 Reviewed by Steve Block.
1272 Move Android.mk into Source
1273 https://bugs.webkit.org/show_bug.cgi?id=53751
1275 A somewhat blind attempt to move Android.mk into the Source directory.
1276 I'm sure I've goofed this up in some way. The Android folks have
1277 kindly volunteered to fix this up once they merge past this revision.
1279 * Android.mk: Removed.
1280 * Source/Android.mk: Copied from Android.mk.
1282 2011-02-08 Alejandro G. Castro <alex@igalia.com>
1284 Reviewed by Martin Robinson.
1286 WebKit2 GTK Fails to Build #include nested too deeply
1287 https://bugs.webkit.org/show_bug.cgi?id=52219
1289 Removed the __STDC_FORMAT_MACROS definition, it is already defined
1290 in the file where PRIxx64 is used before the inclusion so we are
1295 2011-02-08 Kristian Amlie <kristian.amlie@nokia.com>
1297 Reviewed by Eric Seidel.
1299 Added include paths for QtScript.
1301 WebKit patches required to work with a modularized version of Qt
1302 https://bugs.webkit.org/show_bug.cgi?id=53916
1304 * Source/WebKit.pri:
1306 2011-02-03 Martin Robinson <mrobinson@igalia.com>
1308 Fix GTK+ WebGL build after r76600.
1310 * configure.ac: Make sure to respect configure.ac conventions
1311 consistently when it comes to capitalization. Remove an old
1312 reference to enable_3d_canvas.
1314 2011-02-02 Alejandro G. Castro <alex@igalia.com>
1316 Reviewed by Martin Robinson.
1318 Bump the WebKitGTK+ versions in preparation for development release.
1320 * configure.ac: Bump the library, libtool and user agent version.
1322 2011-02-02 Steve Lacey <sjl@chromium.org>
1324 Reviewed by Eric Carlson.
1326 Implement basic media statistics on media elements.
1327 https://bugs.webkit.org/show_bug.cgi?id=53322
1331 2011-02-02 Kevin Ollivier <kevino@theolliviers.com>
1333 [wx] Build fixes for wxWebKit.
1337 2010-01-28 Commit Queue <commit-queue@webkit.org>
1339 Unreviewed. Test commit for commit-queue@webkit.org.
1341 2010-01-28 Commit Queue <commit-queue@webkit.org>
1343 Unreviewed. Test commit for commit-queue@webkit.org.
1345 2010-01-28 Commit Queue <commit-queue@webkit.org>
1347 Unreviewed. Test commit for commit-queue@webkit.org.
1349 2011-01-31 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
1351 Reviewed by Xan Lopez.
1353 [GTK] REGRESSION: http/tests/media/video-{cookie,referer}.html failing
1354 https://bugs.webkit.org/show_bug.cgi?id=53379
1356 Remove left over mentions of HAVE_SOUP_2_29_90, and apply the
1357 dependency on newer soup to efl as well.
1359 * Source/cmake/OptionsEfl.cmake:
1361 2011-01-29 Daniel Bates <dbates@rim.com>
1363 Reviewed by Maciej Stachowiak.
1365 Remove reference to ${CMAKE_SOURCE_DIR}/Source in CMake files
1366 https://bugs.webkit.org/show_bug.cgi?id=53382
1368 Our file system hierarchy ensures that CMAKE_SOURCE_DIR is defined to be /Source.
1369 So, ${CMAKE_SOURCE_DIR}/Source evaluates to the non-existent directory /Source/Source.
1370 Therefore, we should remove such references.
1372 * Source/cmake/OptionsCommon.cmake:
1374 2011-01-29 Daniel Bates <dbates@rim.com>
1376 Reviewed by Eric Seidel.
1378 Move wince/mt19937ar.c to ThirdParty and make it a policy choice
1379 https://bugs.webkit.org/show_bug.cgi?id=53253
1381 Move implementation of Mersenne Twister pseudorandom number generator to
1382 ThirdParty since it is a third party library.
1384 * Source/ThirdParty/mt19937ar.c: Copied from Source/JavaScriptCore/wtf/wince/mt19937ar.c.
1386 2011-01-29 Dan Winship <danw@gnome.org>
1388 Reviewed by Xan Lopez.
1390 [GTK] Require the latest glib and libsoup, and remove conditional
1391 support for older versions
1392 https://bugs.webkit.org/show_bug.cgi?id=50675
1394 * autotools/webkit.m4: use AM_PATH_GLIB_2_0 rather than doing
1395 basically the same work by hand
1398 2011-01-28 Martin Robinson <mrobinson@igalia.com>
1400 [GTK] Build failure with --enable-indexed-database
1401 https://bugs.webkit.org/show_bug.cgi?id=50954
1403 Build fix for IndexedDB support.
1405 * configure.ac: Change the autogen.sh option --enable-indexeddb to
1406 --enable-indexed-database to match the build-webkit option.
1408 2010-01-28 Commit Queue <commit-queue@webkit.org>
1410 Unreviewed. Test commit for commit-queue@webkit.org.
1412 2010-01-28 Commit Queue <commit-queue@webkit.org>
1414 Unreviewed. Test commit for commit-queue@webkit.org.
1416 2011-01-26 Yael Aharon <yael.aharon@nokia.com>
1418 Reviewed by Laszlo Gombos.
1420 [Qt][Symbian] Fix --minimal build
1421 https://bugs.webkit.org/show_bug.cgi?id=52839
1423 Move definition of USE_SYSTEM_MALLOC out of pri file.
1424 Put it in platform.h instead.
1426 * Source/WebKit.pri:
1428 2011-01-26 Csaba Osztrogonác <ossy@webkit.org>
1430 Reviewed by Andreas Kling.
1432 [Qt] Fix qt_minimal build
1433 https://bugs.webkit.org/show_bug.cgi?id=53172
1435 * Source/WebKit.pri:
1437 2011-01-25 Patrick Gansterer <paroga@webkit.org>
1439 Reviewed by Adam Barth.
1441 Move main CMakeLists.txt into Source directory
1442 https://bugs.webkit.org/show_bug.cgi?id=52888
1444 * CMakeLists.txt: Removed.
1445 * Source/CMakeLists.txt: Copied from CMakeLists.txt.
1446 * Source/cmakeconfig.h.cmake: Copied from cmakeconfig.h.cmake.
1447 * cmakeconfig.h.cmake: Removed.
1449 2011-01-24 Chris Marrin <cmarrin@apple.com>
1451 Reviewed by Eric Seidel.
1453 Change ENABLE_3D_CANVAS to ENABLE_WEBGL
1454 https://bugs.webkit.org/show_bug.cgi?id=53041
1458 2011-01-24 Peter Gal <galpeter@inf.u-szeged.hu>
1460 Rubber-stamped by Csaba Osztrogonác.
1462 * runtime: Removed. It was accidentally created by r76457.
1464 2011-01-24 Andras Becsi <abecsi@webkit.org>
1466 Reviewed by Csaba Osztrogonác.
1468 [Qt] Move project files into Source
1469 https://bugs.webkit.org/show_bug.cgi?id=52891
1471 * Source/DerivedSources.pro: Copied from DerivedSources.pro.
1472 * Source/WebKit.pri: Renamed from WebKit.pri.
1473 * Source/WebKit.pro: Added.
1474 * Source/common.pri: Renamed from common.pri.
1475 * WebKit.pro: Removed.
1477 2011-01-20 Siddharth Mathur <siddharth.mathur@nokia.com>
1479 Reviewed by Laszlo Gombos.
1481 [Qt][Symbian] Smaller debug symbol size when using RVCT 4.x
1482 https://bugs.webkit.org/show_bug.cgi?id=52835
1484 * WebKit.pri: Use --remove_unneeded_entities for RVCT 4.x compilers
1486 2011-01-20 Alejandro G. Castro <alex@igalia.com>
1488 Reviewed by Andreas Kling.
1490 [GTK] Fix typo in the webkit2 section of the configure.ac file
1491 https://bugs.webkit.org/show_bug.cgi?id=52801
1493 Fixed typo in the GTK WebKit2 compilation.
1497 2011-01-19 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>
1499 Reviewed by Andreas Kling.
1501 Enable usage of Google ld if it exist but is not on by default.
1503 [Qt] Enable the google ld if it exist but is not on by default
1504 https://bugs.webkit.org/show_bug.cgi?id=52625
1506 * common.pri: flip the test.
1508 2011-01-18 Mihai Parparita <mihaip@chromium.org>
1510 Unreviewed. Update .gitignore to reflect that WebKit is now in Source.
1514 2011-01-18 Krithigassree Sambamurthy <krithigassree.sambamurthy@nokia.com>
1516 Reviewed by Simon Fraser.
1518 Support background-clip: content-box
1519 https://bugs.webkit.org/show_bug.cgi?id=48771
1521 Addded content-box as a valid background-clip value.
1523 * WebCore/css/CSSParser.cpp:
1524 (WebCore::parseBackgroundClip):
1526 2011-01-18 Hayato Ito <hayato@chromium.org>
1528 Reviewed by Kent Tamura.
1530 Update .gitignore file to reflect a recent WebKit directory movement.
1532 https://bugs.webkit.org/show_bug.cgi?id=52618
1536 2011-01-16 Adam Barth <abarth@webkit.org>
1538 Rubber-stamped by Eric Seidel.
1540 Move WebKit into Source
1541 https://bugs.webkit.org/show_bug.cgi?id=52530
1545 * DerivedSources.pro:
1553 2011-01-15 Adam Barth <abarth@webkit.org>
1555 Rubber-stamped by Eric Seidel.
1557 Move WebKit2 into Source
1558 https://bugs.webkit.org/show_bug.cgi?id=52438
1560 Update reference to WebKit2.
1562 * DerivedSources.pro:
1565 * Source/cmake/WebKitPackaging.cmake:
1569 2011-01-14 Ahmad Sharif <asharif.tools@gmail.com>
1571 Reviewed by Darin Fisher.
1573 When inlining is performed, the progress variable is
1574 declared as uninitialized.
1575 https://bugs.webkit.org/show_bug.cgi?id=51084
1577 * WebCore: Copied from WebCore.
1578 * WebCore/page/animation/KeyframeAnimation.cpp:
1579 (WebCore::KeyframeAnimation::animate):
1580 (WebCore::KeyframeAnimation::getAnimatedStyle):
1582 2011-01-11 Laszlo Gombos <laszlo.1.gombos@nokia.com>
1584 Reviewed by Csaba Osztrogonác.
1586 [Qt] Add QT_NO_CONCURRENT to the qt_minimal configuration
1587 https://bugs.webkit.org/show_bug.cgi?id=52223
1589 Add QT_NO_CONCURRENT to the qt_minimal configuration to make sure
1590 that QtWebKit builds with QT_NO_CONCURRENT defined.
1594 2011-01-11 Mihai Parparita <mihaip@chromium.org>
1596 Unreviewed. Update .gitignore with new Chromium dependency.
1598 ui/ was added with http://crrev.com/70743, we picked that up with a
1599 Chromium roll in r75311.
1601 Also alphabetizes the dependency list.
1605 2011-01-10 Laszlo Gombos <laszlo.1.gombos@nokia.com>
1607 Reviewed by Csaba Osztrogonác.
1609 [Qt] Baseline qt_minimal configuration
1610 https://bugs.webkit.org/show_bug.cgi?id=51313
1612 * WebKit.pri: List the supported QT_NO_FEATURE flags
1613 under qt_minimal configuration.
1615 2011-01-10 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1617 Reviewed by Eric Seidel.
1619 [EFL] Enable JIT for WebKit EFL
1620 https://bugs.webkit.org/show_bug.cgi?id=52140
1622 Enable JIT option for WebKit EFL. Enabled JIT's JS performance is
1623 3 ~ 6 times faster than before.
1625 * Source/cmake/OptionsEfl.cmake:
1627 2011-01-10 Martin Robinson <mrobinson@igalia.com>
1629 Reviewed by Gustavo Noronha.
1631 Bump the WebKitGTK+ versions in preparation for development release.
1633 * configure.ac: Bump the library, libtool and user agent version.
1635 2011-01-10 Xan Lopez <xlopez@igalia.com>
1637 Reviewed by Martin Robinson.
1639 [GTK] Create intermediate libWebCore library
1640 https://bugs.webkit.org/show_bug.cgi?id=52116
1642 * GNUmakefile.am: add XP_UNIX to the global CPP flags, since it's
1643 used by both libWebCore and libwebkitgtk now.
1645 2011-01-08 Patrick Gansterer <paroga@webkit.org>
1647 Unreviewed wx build fix for r75313.
1649 * wscript: Added missing brace.
1651 2011-01-07 Adam Barth <abarth@webkit.org>
1653 Rubber-stamped by Eric Seidel.
1655 Move WebCore to Source
1656 https://bugs.webkit.org/show_bug.cgi?id=52050
1658 Update build files and metadata to point to WebCore's new location.
1664 * DerivedSources.pro:
1667 * Source/autotools/webkit.m4:
1668 * Source/cmake/OptionsEfl.cmake:
1674 2011-01-06 Martin Robinson <mrobinson@igalia.com>
1676 Reviewed by Eric Seidel.
1678 [GTK] Initial build support for WebGL
1679 https://bugs.webkit.org/show_bug.cgi?id=51716
1681 * configure.ac: Add a configure option for WebGL.
1683 2011-01-06 Michael Saboff <msaboff@apple.com>
1685 Reviewed by Gavin Barraclough.
1687 Enhancement: Add Regexp Debug Compare between JIT and Interpreter
1688 https://bugs.webkit.org/show_bug.cgi?id=51834
1690 * JavaScriptCore: Copied from JavaScriptCore.
1692 2011-01-06 Martin Robinson <mrobinson@igalia.com>
1694 Reviewed by Xan Lopez.
1696 [GTK] Enable blob support by default
1697 https://bugs.webkit.org/show_bug.cgi?id=51994
1699 * configure.ac: Enable Blob support by default.
1701 2011-01-05 Patrick Gansterer <paroga@webkit.org>
1703 Reviewed by Andreas Kling.
1705 [CMake] Fix the usage of SOURCE_GROUP
1706 https://bugs.webkit.org/show_bug.cgi?id=51739
1708 * Source/cmake/WebKitMacros.cmake:
1710 2011-01-05 Patrick Gansterer <paroga@webkit.org>
1712 Reviewed by Andreas Kling.
1714 [WINCE] Remove CMake warning
1715 https://bugs.webkit.org/show_bug.cgi?id=51921
1717 * Source/cmake/WebKitHelpers.cmake:
1719 2011-01-04 Martin Robinson <mrobinson@igalia.com>
1721 Reviewed by David Levin.
1723 .gitignore should be updated to reflect Sources rename to Source
1724 https://bugs.webkit.org/show_bug.cgi?id=51893
1726 * .gitignore: Change all paths that reference the "Sources" directory to say "Source".
1728 2011-01-04 Dihan Wickremasuriya <dihan.wickremasuriya@nokia.com>
1730 Reviewed by Laszlo Gombos.
1732 [Qt] [Symbian] Build system cleanup
1734 After r74811 special handling for the Symbian build is no longer needed.
1735 This patch reverts r58756.
1739 2011-01-03 Xan Lopez <xlopez@igalia.com>
1741 Reviewed by Martin Robinson.
1743 * autogen.sh: also pass $ACLOCAL_FLAGS for tools that set that env
1744 variable (like jhbuild).
1746 2011-01-03 Patrick Gansterer <paroga@webkit.org>
1748 Reviewed by Darin Adler.
1750 [WINCE] Provide third party directory via environment variable
1751 https://bugs.webkit.org/show_bug.cgi?id=51643
1753 * Source/cmake/OptionsWinCE.cmake:
1755 2011-01-03 Xan Lopez <xlopez@igalia.com>
1757 Reviewed by Martin Robinson.
1759 Use autoreconf instead of calling manually all the usual commands.
1761 * autogen.sh: call autoreconf instead of
1762 aclocal/autoheader/autoconf/automake/libtoolize.
1764 2011-01-03 Xan Lopez <xlopez@igalia.com>
1766 Reviewed by Martin Robinson.
1768 [GTK] Disable superfluous GNU make built-in implicit rules
1769 https://bugs.webkit.org/show_bug.cgi?id=51826
1771 GNU make ships some superflous built-in rules that we never use
1772 and that end up adding up to a very significant portion of our
1773 total Makefile processing time. Disable them completely by
1774 defining the rule without any recipe, as suggested by the GNU make
1775 manual (10.5.6, Cancelling Implicit Rules).
1777 In my system the null-build goes from:
1779 make 43.51s user 12.77s system 99% cpu 56.628 total
1783 make 31.45s user 11.59s system 99% cpu 43.227 total
1785 * GNUmakefile.am: disable implicit built-in rules.
1787 2011-01-03 Mihai Parparita <mihaip@chromium.org>
1789 Unreviewed. Update .gitignore with new JavaScriptCore location.
1793 2011-01-02 Patrick Gansterer <paroga@webkit.org>
1795 [CMake] Unreviewed build fix.
1798 * Source/cmake/OptionsCommon.cmake:
1800 2011-01-01 Adam Barth <abarth@webkit.org>
1802 Reviewed by Eric Seidel.
1804 Move JavaScriptCore to Source
1805 https://bugs.webkit.org/show_bug.cgi?id=51604
1807 Update references to JavaScriptCore to point to the new location.
1811 * DerivedSources.pro:
1818 2011-01-01 Adam Barth <abarth@webkit.org>
1820 Reviewed by Eric Seidel.
1822 Move Sources to Source
1823 https://bugs.webkit.org/show_bug.cgi?id=51794
1825 Update build files to point to the new location.
1833 2010-12-31 Adam Barth <abarth@webkit.org>
1835 Rubber-stamped by Eric Seidel.
1837 Move HTML and XML parser benchmarks into PerformanceTests/Parser
1838 https://bugs.webkit.org/show_bug.cgi?id=51772
1840 Actually move the directory.
1842 * PerformanceTests/Parser: Copied from WebCore/benchmarks/parser.
1844 2010-12-31 Adam Barth <abarth@webkit.org>
1846 Rubber-stamped by Eric Seidel.
1848 Move PageLoadTests to PerformanceTests/PageLoad
1849 https://bugs.webkit.org/show_bug.cgi?id=51771
1851 Actually move the directory.
1853 * PageLoadTests: Removed.
1854 * PageLoadTests/svg: Removed.
1855 * PageLoadTests/svg/LICENSES: Removed.
1856 * PageLoadTests/svg/files: Removed.
1857 * PageLoadTests/svg/files/33041-Samurai.svg: Removed.
1858 * PageLoadTests/svg/files/42450-under the see.svg: Removed.
1859 * PageLoadTests/svg/files/42470-flower_from_my_garden_v2.svg: Removed.
1860 * PageLoadTests/svg/files/44057-drops on a blade.svg: Removed.
1861 * PageLoadTests/svg/files/Harvey_Rayner.svg: Removed.
1862 * PageLoadTests/svg/files/az-lizard_benji_park_01.svg: Removed.
1863 * PageLoadTests/svg/files/bamboo_01.svg: Removed.
1864 * PageLoadTests/svg/files/cacuts_01.svg: Removed.
1865 * PageLoadTests/svg/files/cowboy.svg: Removed.
1866 * PageLoadTests/svg/files/crawfish2_ganson.svg: Removed.
1867 * PageLoadTests/svg/files/deb9frac1.svg: Removed.
1868 * PageLoadTests/svg/files/food_leif_lodahl_01.svg: Removed.
1869 * PageLoadTests/svg/files/france.svg: Removed.
1870 * PageLoadTests/svg/files/francobollo_gnome_ezechi_02.svg: Removed.
1871 * PageLoadTests/svg/files/gearflowers.svg: Removed.
1872 * PageLoadTests/svg/files/hereGear4.svg: Removed.
1873 * PageLoadTests/svg/files/mtsthelens.svg: Removed.
1874 * PageLoadTests/svg/files/mtsthelens0.jpg: Removed.
1875 * PageLoadTests/svg/files/world-iso.svg: Removed.
1876 * PageLoadTests/svg/files/worldcup.svg: Removed.
1877 * PageLoadTests/svg/svg.pltsuite: Removed.
1878 * PerformanceTests/PageLoad: Copied from PageLoadTests.
1879 * Sources/cmake/WebKitPackaging.cmake:
1881 2010-12-31 Adam Barth <abarth@webkit.org>
1883 Rubber-stamped by Eric Seidel.
1885 Move SunSpider into PerformanceTests
1886 https://bugs.webkit.org/show_bug.cgi?id=51769
1888 Actually move the directory.
1890 * PerformanceTests: Added.
1891 * PerformanceTests/SunSpider: Copied from SunSpider.
1892 * Sources/cmake/WebKitPackaging.cmake:
1893 * SunSpider: Removed.
1894 * SunSpider/SunSpider.make: Removed.
1895 * SunSpider/TODO: Removed.
1896 * SunSpider/UNCOVERED: Removed.
1897 * SunSpider/hosted: Removed.
1898 * SunSpider/hosted/json2.js: Removed.
1899 * SunSpider/hosted/sunspider.css: Removed.
1900 * SunSpider/hosted/sunspider.html: Removed.
1901 * SunSpider/hosted/versions.html: Removed.
1902 * SunSpider/make-hosted: Removed.
1903 * SunSpider/resources: Removed.
1904 * SunSpider/resources/TEMPLATE.html: Removed.
1905 * SunSpider/resources/driver-TEMPLATE.html: Removed.
1906 * SunSpider/resources/results-TEMPLATE.html: Removed.
1907 * SunSpider/resources/sunspider-analyze-results.js: Removed.
1908 * SunSpider/resources/sunspider-compare-results.js: Removed.
1909 * SunSpider/resources/sunspider-standalone-compare.js: Removed.
1910 * SunSpider/resources/sunspider-standalone-driver.js: Removed.
1911 * SunSpider/sunspider: Removed.
1912 * SunSpider/sunspider-compare-results: Removed.
1913 * SunSpider/tests: Removed.
1914 * SunSpider/tests/parse-only: Removed.
1915 * SunSpider/tests/parse-only/LIST: Removed.
1916 * SunSpider/tests/parse-only/concat-jquery-mootools-prototype.js: Removed.
1917 * SunSpider/tests/parse-only/jquery-1.3.2.js: Removed.
1918 * SunSpider/tests/parse-only/mootools-1.2.2-core-nc.js: Removed.
1919 * SunSpider/tests/parse-only/prototype-1.6.0.3.js: Removed.
1920 * SunSpider/tests/sunspider-0.9: Removed.
1921 * SunSpider/tests/sunspider-0.9.1: Removed.
1922 * SunSpider/tests/sunspider-0.9.1/3d-cube.js: Removed.
1923 * SunSpider/tests/sunspider-0.9.1/3d-morph.js: Removed.
1924 * SunSpider/tests/sunspider-0.9.1/3d-raytrace.js: Removed.
1925 * SunSpider/tests/sunspider-0.9.1/LIST: Removed.
1926 * SunSpider/tests/sunspider-0.9.1/access-binary-trees.js: Removed.
1927 * SunSpider/tests/sunspider-0.9.1/access-fannkuch.js: Removed.
1928 * SunSpider/tests/sunspider-0.9.1/access-nbody.js: Removed.
1929 * SunSpider/tests/sunspider-0.9.1/access-nsieve.js: Removed.
1930 * SunSpider/tests/sunspider-0.9.1/bitops-3bit-bits-in-byte.js: Removed.
1931 * SunSpider/tests/sunspider-0.9.1/bitops-bits-in-byte.js: Removed.
1932 * SunSpider/tests/sunspider-0.9.1/bitops-bitwise-and.js: Removed.
1933 * SunSpider/tests/sunspider-0.9.1/bitops-nsieve-bits.js: Removed.
1934 * SunSpider/tests/sunspider-0.9.1/controlflow-recursive.js: Removed.
1935 * SunSpider/tests/sunspider-0.9.1/crypto-aes.js: Removed.
1936 * SunSpider/tests/sunspider-0.9.1/crypto-md5.js: Removed.
1937 * SunSpider/tests/sunspider-0.9.1/crypto-sha1.js: Removed.
1938 * SunSpider/tests/sunspider-0.9.1/date-format-tofte.js: Removed.
1939 * SunSpider/tests/sunspider-0.9.1/date-format-xparb.js: Removed.
1940 * SunSpider/tests/sunspider-0.9.1/math-cordic.js: Removed.
1941 * SunSpider/tests/sunspider-0.9.1/math-partial-sums.js: Removed.
1942 * SunSpider/tests/sunspider-0.9.1/math-spectral-norm.js: Removed.
1943 * SunSpider/tests/sunspider-0.9.1/regexp-dna.js: Removed.
1944 * SunSpider/tests/sunspider-0.9.1/string-base64.js: Removed.
1945 * SunSpider/tests/sunspider-0.9.1/string-fasta.js: Removed.
1946 * SunSpider/tests/sunspider-0.9.1/string-tagcloud.js: Removed.
1947 * SunSpider/tests/sunspider-0.9.1/string-unpack-code.js: Removed.
1948 * SunSpider/tests/sunspider-0.9.1/string-validate-input.js: Removed.
1949 * SunSpider/tests/sunspider-0.9/3d-cube.js: Removed.
1950 * SunSpider/tests/sunspider-0.9/3d-morph.js: Removed.
1951 * SunSpider/tests/sunspider-0.9/3d-raytrace.js: Removed.
1952 * SunSpider/tests/sunspider-0.9/LIST: Removed.
1953 * SunSpider/tests/sunspider-0.9/access-binary-trees.js: Removed.
1954 * SunSpider/tests/sunspider-0.9/access-fannkuch.js: Removed.
1955 * SunSpider/tests/sunspider-0.9/access-nbody.js: Removed.
1956 * SunSpider/tests/sunspider-0.9/access-nsieve.js: Removed.
1957 * SunSpider/tests/sunspider-0.9/bitops-3bit-bits-in-byte.js: Removed.
1958 * SunSpider/tests/sunspider-0.9/bitops-bits-in-byte.js: Removed.
1959 * SunSpider/tests/sunspider-0.9/bitops-bitwise-and.js: Removed.
1960 * SunSpider/tests/sunspider-0.9/bitops-nsieve-bits.js: Removed.
1961 * SunSpider/tests/sunspider-0.9/controlflow-recursive.js: Removed.
1962 * SunSpider/tests/sunspider-0.9/crypto-aes.js: Removed.
1963 * SunSpider/tests/sunspider-0.9/crypto-md5.js: Removed.
1964 * SunSpider/tests/sunspider-0.9/crypto-sha1.js: Removed.
1965 * SunSpider/tests/sunspider-0.9/date-format-tofte.js: Removed.
1966 * SunSpider/tests/sunspider-0.9/date-format-xparb.js: Removed.
1967 * SunSpider/tests/sunspider-0.9/math-cordic.js: Removed.
1968 * SunSpider/tests/sunspider-0.9/math-partial-sums.js: Removed.
1969 * SunSpider/tests/sunspider-0.9/math-spectral-norm.js: Removed.
1970 * SunSpider/tests/sunspider-0.9/regexp-dna.js: Removed.
1971 * SunSpider/tests/sunspider-0.9/string-base64.js: Removed.
1972 * SunSpider/tests/sunspider-0.9/string-fasta.js: Removed.
1973 * SunSpider/tests/sunspider-0.9/string-tagcloud.js: Removed.
1974 * SunSpider/tests/sunspider-0.9/string-unpack-code.js: Removed.
1975 * SunSpider/tests/sunspider-0.9/string-validate-input.js: Removed.
1976 * SunSpider/tests/ubench: Removed.
1977 * SunSpider/tests/ubench/LIST: Removed.
1978 * SunSpider/tests/ubench/function-closure.js: Removed.
1979 * SunSpider/tests/ubench/function-correct-args.js: Removed.
1980 * SunSpider/tests/ubench/function-empty.js: Removed.
1981 * SunSpider/tests/ubench/function-excess-args.js: Removed.
1982 * SunSpider/tests/ubench/function-missing-args.js: Removed.
1983 * SunSpider/tests/ubench/function-sum.js: Removed.
1984 * SunSpider/tests/ubench/loop-empty-resolve.js: Removed.
1985 * SunSpider/tests/ubench/loop-empty.js: Removed.
1986 * SunSpider/tests/ubench/loop-sum.js: Removed.
1987 * SunSpider/tests/v8-v4: Removed.
1988 * SunSpider/tests/v8-v4/LIST: Removed.
1989 * SunSpider/tests/v8-v4/v8-crypto.js: Removed.
1990 * SunSpider/tests/v8-v4/v8-deltablue.js: Removed.
1991 * SunSpider/tests/v8-v4/v8-earley-boyer.js: Removed.
1992 * SunSpider/tests/v8-v4/v8-raytrace.js: Removed.
1993 * SunSpider/tests/v8-v4/v8-regexp.js: Removed.
1994 * SunSpider/tests/v8-v4/v8-richards.js: Removed.
1995 * SunSpider/tests/v8-v4/v8-splay.js: Removed.
1996 * SunSpider/tests/v8-v5: Removed.
1997 * SunSpider/tests/v8-v5/LIST: Removed.
1998 * SunSpider/tests/v8-v5/v8-crypto.js: Removed.
1999 * SunSpider/tests/v8-v5/v8-deltablue.js: Removed.
2000 * SunSpider/tests/v8-v5/v8-earley-boyer.js: Removed.
2001 * SunSpider/tests/v8-v5/v8-raytrace.js: Removed.
2002 * SunSpider/tests/v8-v5/v8-regexp.js: Removed.
2003 * SunSpider/tests/v8-v5/v8-richards.js: Removed.
2004 * SunSpider/tests/v8-v5/v8-splay.js: Removed.
2005 * SunSpider/tests/v8-v6: Removed.
2006 * SunSpider/tests/v8-v6/LIST: Removed.
2007 * SunSpider/tests/v8-v6/v8-crypto.js: Removed.
2008 * SunSpider/tests/v8-v6/v8-deltablue.js: Removed.
2009 * SunSpider/tests/v8-v6/v8-earley-boyer.js: Removed.
2010 * SunSpider/tests/v8-v6/v8-raytrace.js: Removed.
2011 * SunSpider/tests/v8-v6/v8-regexp.js: Removed.
2012 * SunSpider/tests/v8-v6/v8-richards.js: Removed.
2013 * SunSpider/tests/v8-v6/v8-splay.js: Removed.
2014 * SunSpider/xcopy.excludes: Removed.
2016 2010-12-30 Konstantin Tokarev <annulen@yandex.ru>
2018 Reviewed by David Kilzer.
2020 [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
2022 https://bugs.webkit.org/show_bug.cgi?id=51672
2024 * WebKit.pri: Replaced USE_SYSTEM_MALLOC with USE_SYSTEM_MALLOC=1
2026 2010-12-29 Philippe Normand <pnormand@igalia.com>
2028 Reviewed by Martin Robinson.
2030 [GTK] minimal build fails at link time due to missing sqlite3 symbols
2031 https://bugs.webkit.org/show_bug.cgi?id=51327
2033 * configure.ac: Error out if SQLite3 wasn't found while at least
2034 one of the features depending on it has been enabled.
2036 2010-12-29 Patrick Gansterer <paroga@webkit.org>
2038 Unreviewed. Use gcc as default preprocessor.
2040 * Sources/cmake/OptionsCommon.cmake:
2042 2010-12-27 Ryuan Choi <ryuan.choi@samsung.com>
2044 Reviewed by David Levin.
2046 [EFL] Change path of eflsymbols.filter
2047 https://bugs.webkit.org/show_bug.cgi?id=51659
2049 * Sources/cmake/OptionsEfl.cmake:
2051 2010-12-26 Adam Barth <abarth@webkit.org>
2053 Reviewed by Eric Siedel.
2055 Move autotools into Sources
2056 https://bugs.webkit.org/show_bug.cgi?id=51630
2060 * Sources/autotools: Copied from autotools.
2062 * autotools: Removed.
2063 * autotools/acinclude.m4: Removed.
2064 * autotools/dolt.m4: Removed.
2065 * autotools/gsettings.m4: Removed.
2066 * autotools/symbols.filter: Removed.
2067 * autotools/webkit.m4: Removed.
2070 2010-12-26 Adam Barth <abarth@webkit.org>
2072 Reviewed by Eric Seidel.
2074 Move cmake into Sources
2075 https://bugs.webkit.org/show_bug.cgi?id=51631
2078 * Sources/cmake: Copied from cmake.
2080 * cmake/FindCFLite.cmake: Removed.
2081 * cmake/FindCairo.cmake: Removed.
2082 * cmake/FindEFL.cmake: Removed.
2083 * cmake/FindFontconfig.cmake: Removed.
2084 * cmake/FindFreetype.cmake: Removed.
2085 * cmake/FindGDK-PixBuf.cmake: Removed.
2086 * cmake/FindGDK.cmake: Removed.
2087 * cmake/FindGIO.cmake: Removed.
2088 * cmake/FindGStreamer-App.cmake: Removed.
2089 * cmake/FindGStreamer-Base.cmake: Removed.
2090 * cmake/FindGStreamer-Interfaces.cmake: Removed.
2091 * cmake/FindGStreamer-Pbutils.cmake: Removed.
2092 * cmake/FindGStreamer-Plugins-Base.cmake: Removed.
2093 * cmake/FindGStreamer-Video.cmake: Removed.
2094 * cmake/FindGStreamer.cmake: Removed.
2095 * cmake/FindGlib.cmake: Removed.
2096 * cmake/FindGperf.cmake: Removed.
2097 * cmake/FindGthread.cmake: Removed.
2098 * cmake/FindICU.cmake: Removed.
2099 * cmake/FindLibSoup2.cmake: Removed.
2100 * cmake/FindLibXlst.cmake: Removed.
2101 * cmake/FindPango.cmake: Removed.
2102 * cmake/FindSqlite.cmake: Removed.
2103 * cmake/LibFindMacros.cmake: Removed.
2104 * cmake/OptionsCommon.cmake: Removed.
2105 * cmake/OptionsEfl.cmake: Removed.
2106 * cmake/OptionsWinCE.cmake: Removed.
2107 * cmake/OptionsWindows.cmake: Removed.
2108 * cmake/WebKitEfl.cmake: Removed.
2109 * cmake/WebKitFS.cmake: Removed.
2110 * cmake/WebKitFeatures.cmake: Removed.
2111 * cmake/WebKitHelpers.cmake: Removed.
2112 * cmake/WebKitMacros.cmake: Removed.
2113 * cmake/WebKitPackaging.cmake: Removed.
2114 * cmake/eflsymbols.filter: Removed.
2116 2010-12-26 Adam Barth <abarth@webkit.org>
2118 Fix some references to the old location of the WebKit website in git
2123 2010-12-25 Adam Barth <abarth@webkit.org>
2125 Reviewed by Eric Seidel.
2127 Move ANGLE to Sources/ThirdParty
2128 https://bugs.webkit.org/show_bug.cgi?id=51605
2130 Actually move ANGLE and update the Makefile.
2133 * ANGLE/ANGLE.xcodeproj: Removed.
2134 * ANGLE/ANGLE.xcodeproj/project.pbxproj: Removed.
2135 * ANGLE/Configurations: Removed.
2136 * ANGLE/Configurations/ANGLE.xcconfig: Removed.
2137 * ANGLE/Configurations/Base.xcconfig: Removed.
2138 * ANGLE/Configurations/DebugRelease.xcconfig: Removed.
2139 * ANGLE/Makefile: Removed.
2140 * ANGLE/include: Removed.
2141 * ANGLE/include/EGL: Removed.
2142 * ANGLE/include/EGL/egl.h: Removed.
2143 * ANGLE/include/EGL/eglext.h: Removed.
2144 * ANGLE/include/EGL/eglplatform.h: Removed.
2145 * ANGLE/include/GLES2: Removed.
2146 * ANGLE/include/GLES2/gl2.h: Removed.
2147 * ANGLE/include/GLES2/gl2ext.h: Removed.
2148 * ANGLE/include/GLES2/gl2platform.h: Removed.
2149 * ANGLE/include/GLSLANG: Removed.
2150 * ANGLE/include/GLSLANG/ShaderLang.h: Removed.
2151 * ANGLE/include/KHR: Removed.
2152 * ANGLE/include/KHR/khrplatform.h: Removed.
2153 * ANGLE/src: Removed.
2154 * ANGLE/src/build_angle.xcodeproj: Removed.
2155 * ANGLE/src/build_angle.xcodeproj/project.pbxproj: Removed.
2156 * ANGLE/src/common: Removed.
2157 * ANGLE/src/common/angleutils.h: Removed.
2158 * ANGLE/src/common/debug.cpp: Removed.
2159 * ANGLE/src/common/debug.h: Removed.
2160 * ANGLE/src/compiler: Removed.
2161 * ANGLE/src/compiler/BaseTypes.h: Removed.
2162 * ANGLE/src/compiler/CodeGenGLSL.cpp: Removed.
2163 * ANGLE/src/compiler/CodeGenHLSL.cpp: Removed.
2164 * ANGLE/src/compiler/Common.h: Removed.
2165 * ANGLE/src/compiler/ConstantUnion.h: Removed.
2166 * ANGLE/src/compiler/InfoSink.cpp: Removed.
2167 * ANGLE/src/compiler/InfoSink.h: Removed.
2168 * ANGLE/src/compiler/Initialize.cpp: Removed.
2169 * ANGLE/src/compiler/Initialize.h: Removed.
2170 * ANGLE/src/compiler/InitializeDll.cpp: Removed.
2171 * ANGLE/src/compiler/InitializeDll.h: Removed.
2172 * ANGLE/src/compiler/InitializeGlobals.h: Removed.
2173 * ANGLE/src/compiler/InitializeParseContext.h: Removed.
2174 * ANGLE/src/compiler/IntermTraverse.cpp: Removed.
2175 * ANGLE/src/compiler/Intermediate.cpp: Removed.
2176 * ANGLE/src/compiler/MMap.h: Removed.
2177 * ANGLE/src/compiler/OutputGLSL.cpp: Removed.
2178 * ANGLE/src/compiler/OutputGLSL.h: Removed.
2179 * ANGLE/src/compiler/OutputHLSL.cpp: Removed.
2180 * ANGLE/src/compiler/OutputHLSL.h: Removed.
2181 * ANGLE/src/compiler/ParseHelper.cpp: Removed.
2182 * ANGLE/src/compiler/ParseHelper.h: Removed.
2183 * ANGLE/src/compiler/PoolAlloc.cpp: Removed.
2184 * ANGLE/src/compiler/PoolAlloc.h: Removed.
2185 * ANGLE/src/compiler/QualifierAlive.cpp: Removed.
2186 * ANGLE/src/compiler/QualifierAlive.h: Removed.
2187 * ANGLE/src/compiler/RemoveTree.cpp: Removed.
2188 * ANGLE/src/compiler/RemoveTree.h: Removed.
2189 * ANGLE/src/compiler/ShHandle.h: Removed.
2190 * ANGLE/src/compiler/ShaderLang.cpp: Removed.
2191 * ANGLE/src/compiler/SymbolTable.cpp: Removed.
2192 * ANGLE/src/compiler/SymbolTable.h: Removed.
2193 * ANGLE/src/compiler/TranslatorGLSL.cpp: Removed.
2194 * ANGLE/src/compiler/TranslatorGLSL.h: Removed.
2195 * ANGLE/src/compiler/TranslatorHLSL.cpp: Removed.
2196 * ANGLE/src/compiler/TranslatorHLSL.h: Removed.
2197 * ANGLE/src/compiler/Types.h: Removed.
2198 * ANGLE/src/compiler/UnfoldSelect.cpp: Removed.
2199 * ANGLE/src/compiler/UnfoldSelect.h: Removed.
2200 * ANGLE/src/compiler/debug.cpp: Removed.
2201 * ANGLE/src/compiler/debug.h: Removed.
2202 * ANGLE/src/compiler/glslang.l: Removed.
2203 * ANGLE/src/compiler/glslang.y: Removed.
2204 * ANGLE/src/compiler/intermOut.cpp: Removed.
2205 * ANGLE/src/compiler/intermediate.h: Removed.
2206 * ANGLE/src/compiler/localintermediate.h: Removed.
2207 * ANGLE/src/compiler/osinclude.h: Removed.
2208 * ANGLE/src/compiler/ossource_posix.cpp: Removed.
2209 * ANGLE/src/compiler/ossource_win.cpp: Removed.
2210 * ANGLE/src/compiler/parseConst.cpp: Removed.
2211 * ANGLE/src/compiler/preprocessor: Removed.
2212 * ANGLE/src/compiler/preprocessor/atom.c: Removed.
2213 * ANGLE/src/compiler/preprocessor/atom.h: Removed.
2214 * ANGLE/src/compiler/preprocessor/compile.h: Removed.
2215 * ANGLE/src/compiler/preprocessor/cpp.c: Removed.
2216 * ANGLE/src/compiler/preprocessor/cpp.h: Removed.
2217 * ANGLE/src/compiler/preprocessor/cppstruct.c: Removed.
2218 * ANGLE/src/compiler/preprocessor/memory.c: Removed.
2219 * ANGLE/src/compiler/preprocessor/memory.h: Removed.
2220 * ANGLE/src/compiler/preprocessor/parser.h: Removed.
2221 * ANGLE/src/compiler/preprocessor/preprocess.h: Removed.
2222 * ANGLE/src/compiler/preprocessor/scanner.c: Removed.
2223 * ANGLE/src/compiler/preprocessor/scanner.h: Removed.
2224 * ANGLE/src/compiler/preprocessor/slglobals.h: Removed.
2225 * ANGLE/src/compiler/preprocessor/symbols.c: Removed.
2226 * ANGLE/src/compiler/preprocessor/symbols.h: Removed.
2227 * ANGLE/src/compiler/preprocessor/tokens.c: Removed.
2228 * ANGLE/src/compiler/preprocessor/tokens.h: Removed.
2229 * ANGLE/src/compiler/tools: Removed.
2230 * ANGLE/src/compiler/unistd.h: Removed.
2231 * ANGLE/src/libEGL: Removed.
2232 * ANGLE/src/libEGL/Config.cpp: Removed.
2233 * ANGLE/src/libEGL/Config.h: Removed.
2234 * ANGLE/src/libEGL/Display.cpp: Removed.
2235 * ANGLE/src/libEGL/Display.h: Removed.
2236 * ANGLE/src/libEGL/Surface.cpp: Removed.
2237 * ANGLE/src/libEGL/Surface.h: Removed.
2238 * ANGLE/src/libEGL/libEGL.cpp: Removed.
2239 * ANGLE/src/libEGL/libEGL.def: Removed.
2240 * ANGLE/src/libEGL/libEGL.vcproj: Removed.
2241 * ANGLE/src/libEGL/main.cpp: Removed.
2242 * ANGLE/src/libEGL/main.h: Removed.
2243 * ANGLE/src/libGLESv2: Removed.
2244 * ANGLE/src/libGLESv2/Blit.cpp: Removed.
2245 * ANGLE/src/libGLESv2/Blit.h: Removed.
2246 * ANGLE/src/libGLESv2/Buffer.cpp: Removed.
2247 * ANGLE/src/libGLESv2/Buffer.h: Removed.
2248 * ANGLE/src/libGLESv2/Context.cpp: Removed.
2249 * ANGLE/src/libGLESv2/Context.h: Removed.
2250 * ANGLE/src/libGLESv2/Framebuffer.cpp: Removed.
2251 * ANGLE/src/libGLESv2/Framebuffer.h: Removed.
2252 * ANGLE/src/libGLESv2/Program.cpp: Removed.
2253 * ANGLE/src/libGLESv2/Program.h: Removed.
2254 * ANGLE/src/libGLESv2/RefCountObject.cpp: Removed.
2255 * ANGLE/src/libGLESv2/RefCountObject.h: Removed.
2256 * ANGLE/src/libGLESv2/Renderbuffer.cpp: Removed.
2257 * ANGLE/src/libGLESv2/Renderbuffer.h: Removed.
2258 * ANGLE/src/libGLESv2/ResourceManager.cpp: Removed.
2259 * ANGLE/src/libGLESv2/ResourceManager.h: Removed.
2260 * ANGLE/src/libGLESv2/Shader.cpp: Removed.
2261 * ANGLE/src/libGLESv2/Shader.h: Removed.
2262 * ANGLE/src/libGLESv2/Texture.cpp: Removed.
2263 * ANGLE/src/libGLESv2/Texture.h: Removed.
2264 * ANGLE/src/libGLESv2/geometry: Removed.
2265 * ANGLE/src/libGLESv2/geometry/IndexDataManager.cpp: Removed.
2266 * ANGLE/src/libGLESv2/geometry/IndexDataManager.h: Removed.
2267 * ANGLE/src/libGLESv2/geometry/VertexDataManager.cpp: Removed.
2268 * ANGLE/src/libGLESv2/geometry/VertexDataManager.h: Removed.
2269 * ANGLE/src/libGLESv2/geometry/backend.cpp: Removed.
2270 * ANGLE/src/libGLESv2/geometry/backend.h: Removed.
2271 * ANGLE/src/libGLESv2/geometry/dx9.cpp: Removed.
2272 * ANGLE/src/libGLESv2/geometry/dx9.h: Removed.
2273 * ANGLE/src/libGLESv2/geometry/vertexconversion.h: Removed.
2274 * ANGLE/src/libGLESv2/libGLESv2.cpp: Removed.
2275 * ANGLE/src/libGLESv2/libGLESv2.def: Removed.
2276 * ANGLE/src/libGLESv2/libGLESv2.vcproj: Removed.
2277 * ANGLE/src/libGLESv2/main.cpp: Removed.
2278 * ANGLE/src/libGLESv2/main.h: Removed.
2279 * ANGLE/src/libGLESv2/mathutil.h: Removed.
2280 * ANGLE/src/libGLESv2/utilities.cpp: Removed.
2281 * ANGLE/src/libGLESv2/utilities.h: Removed.
2283 * Sources/ThirdParty: Added.
2284 * Sources/ThirdParty/ANGLE: Copied from ANGLE.
2286 2010-12-26 Patrick Gansterer <paroga@webkit.org>
2288 Unreviewed WinCE buildfix after r74626.
2290 * cmake/OptionsWinCE.cmake:
2292 2010-12-24 Darin Adler <darin@apple.com>
2294 Updated makefiles used by Apple engineers to fix build with the
2295 new JavaScriptGlue location.
2297 * Makefile: Told this to build JavaScriptGlue. Some day we might
2298 want it to descend into Sources instead and use the Makefile there,
2299 but there are problems with sequencing the project builds, so that
2301 * Sources/Makefile.shared: Added.
2303 2010-12-24 Ryuan Choi <ryuan.choi@samsung.com>
2305 Reviewed by Kenneth Rohde Christiansen.
2307 [EFL] Add option to enable Touch Events.
2308 https://bugs.webkit.org/show_bug.cgi?id=49125
2310 Add ENABLE_TOUCH_EVENTS option.
2312 * cmake/OptionsEfl.cmake:
2313 * cmakeconfig.h.cmake:
2315 2010-12-23 Adam Barth <abarth@webkit.org>
2317 Rubber-stamped by Eric Seidel.
2319 Move JavaScriptGlue into Sources
2320 https://bugs.webkit.org/show_bug.cgi?id=51583
2322 Actually perform the move.
2324 * JavaScriptGlue: Removed.
2325 * JavaScriptGlue/Configurations: Removed.
2326 * JavaScriptGlue/Configurations/Base.xcconfig: Removed.
2327 * JavaScriptGlue/Configurations/DebugRelease.xcconfig: Removed.
2328 * JavaScriptGlue/Configurations/JavaScriptGlue.xcconfig: Removed.
2329 * JavaScriptGlue/Configurations/Version.xcconfig: Removed.
2330 * JavaScriptGlue/English.lproj: Removed.
2331 * JavaScriptGlue/English.lproj/InfoPlist.strings: Removed.
2332 * JavaScriptGlue/ForwardingHeaders: Removed.
2333 * JavaScriptGlue/ForwardingHeaders/masm: Removed.
2334 * JavaScriptGlue/ForwardingHeaders/masm/X86Assembler.h: Removed.
2335 * JavaScriptGlue/ForwardingHeaders/profiler: Removed.
2336 * JavaScriptGlue/ForwardingHeaders/profiler/Profiler.h: Removed.
2337 * JavaScriptGlue/ForwardingHeaders/runtime: Removed.
2338 * JavaScriptGlue/ForwardingHeaders/runtime/CallFrame.h: Removed.
2339 * JavaScriptGlue/ForwardingHeaders/wtf: Removed.
2340 * JavaScriptGlue/ForwardingHeaders/wtf/ASCIICType.h: Removed.
2341 * JavaScriptGlue/ForwardingHeaders/wtf/AlwaysInline.h: Removed.
2342 * JavaScriptGlue/ForwardingHeaders/wtf/Assertions.h: Removed.
2343 * JavaScriptGlue/ForwardingHeaders/wtf/Atomics.h: Removed.
2344 * JavaScriptGlue/ForwardingHeaders/wtf/Bitmap.h: Removed.
2345 * JavaScriptGlue/ForwardingHeaders/wtf/BumpPointerAllocator.h: Removed.
2346 * JavaScriptGlue/ForwardingHeaders/wtf/CrossThreadRefCounted.h: Removed.
2347 * JavaScriptGlue/ForwardingHeaders/wtf/CurrentTime.h: Removed.
2348 * JavaScriptGlue/ForwardingHeaders/wtf/DateInstanceCache.h: Removed.
2349 * JavaScriptGlue/ForwardingHeaders/wtf/DateMath.h: Removed.
2350 * JavaScriptGlue/ForwardingHeaders/wtf/FastAllocBase.h: Removed.
2351 * JavaScriptGlue/ForwardingHeaders/wtf/FastMalloc.h: Removed.
2352 * JavaScriptGlue/ForwardingHeaders/wtf/FixedArray.h: Removed.
2353 * JavaScriptGlue/ForwardingHeaders/wtf/Forward.h: Removed.
2354 * JavaScriptGlue/ForwardingHeaders/wtf/HashCountedSet.h: Removed.
2355 * JavaScriptGlue/ForwardingHeaders/wtf/HashFunctions.h: Removed.
2356 * JavaScriptGlue/ForwardingHeaders/wtf/HashMap.h: Removed.
2357 * JavaScriptGlue/ForwardingHeaders/wtf/HashSet.h: Removed.
2358 * JavaScriptGlue/ForwardingHeaders/wtf/HashTraits.h: Removed.
2359 * JavaScriptGlue/ForwardingHeaders/wtf/ListHashSet.h: Removed.
2360 * JavaScriptGlue/ForwardingHeaders/wtf/ListRefPtr.h: Removed.
2361 * JavaScriptGlue/ForwardingHeaders/wtf/Locker.h: Removed.
2362 * JavaScriptGlue/ForwardingHeaders/wtf/MainThread.h: Removed.
2363 * JavaScriptGlue/ForwardingHeaders/wtf/MathExtras.h: Removed.
2364 * JavaScriptGlue/ForwardingHeaders/wtf/Noncopyable.h: Removed.
2365 * JavaScriptGlue/ForwardingHeaders/wtf/NotFound.h: Removed.
2366 * JavaScriptGlue/ForwardingHeaders/wtf/OSAllocator.h: Removed.
2367 * JavaScriptGlue/ForwardingHeaders/wtf/OwnArrayPtr.h: Removed.
2368 * JavaScriptGlue/ForwardingHeaders/wtf/OwnArrayPtrCommon.h: Removed.
2369 * JavaScriptGlue/ForwardingHeaders/wtf/OwnFastMallocPtr.h: Removed.
2370 * JavaScriptGlue/ForwardingHeaders/wtf/OwnPtr.h: Removed.
2371 * JavaScriptGlue/ForwardingHeaders/wtf/OwnPtrCommon.h: Removed.
2372 * JavaScriptGlue/ForwardingHeaders/wtf/PageAllocation.h: Removed.
2373 * JavaScriptGlue/ForwardingHeaders/wtf/PageAllocationAligned.h: Removed.
2374 * JavaScriptGlue/ForwardingHeaders/wtf/PageBlock.h: Removed.
2375 * JavaScriptGlue/ForwardingHeaders/wtf/PageReservation.h: Removed.
2376 * JavaScriptGlue/ForwardingHeaders/wtf/PassOwnArrayPtr.h: Removed.
2377 * JavaScriptGlue/ForwardingHeaders/wtf/PassOwnPtr.h: Removed.
2378 * JavaScriptGlue/ForwardingHeaders/wtf/PassRefPtr.h: Removed.
2379 * JavaScriptGlue/ForwardingHeaders/wtf/Platform.h: Removed.
2380 * JavaScriptGlue/ForwardingHeaders/wtf/PossiblyNull.h: Removed.
2381 * JavaScriptGlue/ForwardingHeaders/wtf/PtrAndFlags.h: Removed.
2382 * JavaScriptGlue/ForwardingHeaders/wtf/RandomNumber.h: Removed.
2383 * JavaScriptGlue/ForwardingHeaders/wtf/RefCounted.h: Removed.
2384 * JavaScriptGlue/ForwardingHeaders/wtf/RefPtr.h: Removed.
2385 * JavaScriptGlue/ForwardingHeaders/wtf/StackBounds.h: Removed.
2386 * JavaScriptGlue/ForwardingHeaders/wtf/StdLibExtras.h: Removed.
2387 * JavaScriptGlue/ForwardingHeaders/wtf/StringHasher.h: Removed.
2388 * JavaScriptGlue/ForwardingHeaders/wtf/ThreadSafeShared.h: Removed.
2389 * JavaScriptGlue/ForwardingHeaders/wtf/ThreadSpecific.h: Removed.
2390 * JavaScriptGlue/ForwardingHeaders/wtf/Threading.h: Removed.
2391 * JavaScriptGlue/ForwardingHeaders/wtf/ThreadingPrimitives.h: Removed.
2392 * JavaScriptGlue/ForwardingHeaders/wtf/UnusedParam.h: Removed.
2393 * JavaScriptGlue/ForwardingHeaders/wtf/VMTags.h: Removed.
2394 * JavaScriptGlue/ForwardingHeaders/wtf/ValueCheck.h: Removed.
2395 * JavaScriptGlue/ForwardingHeaders/wtf/Vector.h: Removed.
2396 * JavaScriptGlue/ForwardingHeaders/wtf/VectorTraits.h: Removed.
2397 * JavaScriptGlue/ForwardingHeaders/wtf/WTFThreadData.h: Removed.
2398 * JavaScriptGlue/ForwardingHeaders/wtf/text: Removed.
2399 * JavaScriptGlue/ForwardingHeaders/wtf/text/CString.h: Removed.
2400 * JavaScriptGlue/ForwardingHeaders/wtf/text/StringHash.h: Removed.
2401 * JavaScriptGlue/ForwardingHeaders/wtf/text/StringImpl.h: Removed.
2402 * JavaScriptGlue/ForwardingHeaders/wtf/text/StringImplBase.h: Removed.
2403 * JavaScriptGlue/ForwardingHeaders/wtf/text/TextPosition.h: Removed.
2404 * JavaScriptGlue/ForwardingHeaders/wtf/text/WTFString.h: Removed.
2405 * JavaScriptGlue/ForwardingHeaders/wtf/unicode: Removed.
2406 * JavaScriptGlue/ForwardingHeaders/wtf/unicode/Unicode.h: Removed.
2407 * JavaScriptGlue/ForwardingHeaders/wtf/unicode/icu: Removed.
2408 * JavaScriptGlue/ForwardingHeaders/wtf/unicode/icu/UnicodeIcu.h: Removed.
2409 * JavaScriptGlue/Info.plist: Removed.
2410 * JavaScriptGlue/JSBase.cpp: Removed.
2411 * JavaScriptGlue/JSBase.h: Removed.
2412 * JavaScriptGlue/JSObject.cpp: Removed.
2413 * JavaScriptGlue/JSObject.h: Removed.
2414 * JavaScriptGlue/JSRun.cpp: Removed.
2415 * JavaScriptGlue/JSRun.h: Removed.
2416 * JavaScriptGlue/JSUtils.cpp: Removed.
2417 * JavaScriptGlue/JSUtils.h: Removed.
2418 * JavaScriptGlue/JSValueWrapper.cpp: Removed.
2419 * JavaScriptGlue/JSValueWrapper.h: Removed.
2420 * JavaScriptGlue/JavaScriptGlue.cpp: Removed.
2421 * JavaScriptGlue/JavaScriptGlue.exp: Removed.
2422 * JavaScriptGlue/JavaScriptGlue.h: Removed.
2423 * JavaScriptGlue/JavaScriptGlue.xcodeproj: Removed.
2424 * JavaScriptGlue/JavaScriptGlue.xcodeproj/project.pbxproj: Removed.
2425 * JavaScriptGlue/LICENSE: Removed.
2426 * JavaScriptGlue/Makefile: Removed.
2427 * JavaScriptGlue/UserObjectImp.cpp: Removed.
2428 * JavaScriptGlue/UserObjectImp.h: Removed.
2429 * JavaScriptGlue/config.h: Removed.
2430 * JavaScriptGlue/icu: Removed.
2431 * JavaScriptGlue/icu/LICENSE: Removed.
2432 * JavaScriptGlue/icu/README: Removed.
2433 * JavaScriptGlue/icu/unicode: Removed.
2434 * JavaScriptGlue/icu/unicode/platform.h: Removed.
2435 * JavaScriptGlue/icu/unicode/putil.h: Removed.
2436 * JavaScriptGlue/icu/unicode/uchar.h: Removed.
2437 * JavaScriptGlue/icu/unicode/ucnv.h: Removed.
2438 * JavaScriptGlue/icu/unicode/ucnv_err.h: Removed.
2439 * JavaScriptGlue/icu/unicode/uconfig.h: Removed.
2440 * JavaScriptGlue/icu/unicode/uenum.h: Removed.
2441 * JavaScriptGlue/icu/unicode/uiter.h: Removed.
2442 * JavaScriptGlue/icu/unicode/umachine.h: Removed.
2443 * JavaScriptGlue/icu/unicode/urename.h: Removed.
2444 * JavaScriptGlue/icu/unicode/ustring.h: Removed.
2445 * JavaScriptGlue/icu/unicode/utf.h: Removed.
2446 * JavaScriptGlue/icu/unicode/utf16.h: Removed.
2447 * JavaScriptGlue/icu/unicode/utf8.h: Removed.
2448 * JavaScriptGlue/icu/unicode/utf_old.h: Removed.
2449 * JavaScriptGlue/icu/unicode/utypes.h: Removed.
2450 * JavaScriptGlue/icu/unicode/uversion.h: Removed.
2451 * JavaScriptGlue/testjsglue.cpp: Removed.
2454 * Sources/JavaScriptGlue: Copied from JavaScriptGlue.
2455 * Sources/Makefile: Added.
2457 2010-12-23 Lucas De Marchi <lucas.demarchi@profusion.mobi>
2459 Reviewed by Kenneth Rohde Christiansen.
2461 [EFL] Fix ContextMenu removal
2462 https://bugs.webkit.org/show_bug.cgi?id=51530
2464 Fix ContextMenu removal
2466 In r74207 the support for ContextMenu was removed from EFL while the
2467 code is being ported to the new CROSS_PLATFORM_MENUS due to build
2468 breakage. However there were some missing removals in the shutdown
2469 logic that introduced a bug, leading to a segmentation fault when
2470 ContexController was destroyed.
2472 The best way to effectively disable the ContextMenu is to conditionally
2473 compile the meaningful stuff by surrounding with "#if
2474 ENABLE(CONTEXT_MENUS)" and then disabling it in CMake.
2476 * cmake/OptionsEfl.cmake: Disable ContextMenu and don't pretend we
2477 implement CROSS_PLATFORM_MENUS yet.
2479 2010-12-22 Xan Lopez <xlopez@igalia.com>
2481 Reviewed by Gustavo Noronha.
2483 * configure.ac: bump version to 1.3.9.
2485 2010-12-22 Xan Lopez <xlopez@igalia.com>
2487 Reviewed by Gustavo Noronha.
2489 [GTK] Compilation fixes with GTK+ 2.91.7
2490 https://bugs.webkit.org/show_bug.cgi?id=51487
2492 * configure.ac: depend on GTK+ 2.91.7 when using GTK+ 3.x.
2494 2010-12-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2496 Reviewed by Antonio Gomes.
2498 [EFL] Sets default user agent
2499 https://bugs.webkit.org/show_bug.cgi?id=47903
2501 Add macros for WebKit EFL and User Agent.
2503 * cmake/OptionsEfl.cmake:
2504 * cmakeconfig.h.cmake:
2506 2010-12-20 Adam Barth <abarth@webkit.org>
2508 Move web sites to Websites directory
2509 https://bugs.webkit.org/show_bug.cgi?id=51323
2511 This patch was never officially reviewed (because it was too large to
2512 upload to bugs.webkit.org), but it was discussed on webkit-dev and Mark
2513 Rowe gave me the green light.
2515 * BugsSite: Removed.
2516 * BugsSite/.cvsignore: Removed.
2517 * BugsSite/.htaccess: Removed.
2518 * BugsSite/Bugzilla: Removed.
2519 * BugsSite/Bugzilla.pm: Removed.
2520 * BugsSite/Bugzilla/.cvsignore: Removed.
2521 * BugsSite/Bugzilla/.htaccess: Removed.
2522 * BugsSite/Bugzilla/Attachment: Removed.
2523 * BugsSite/Bugzilla/Attachment.pm: Removed.
2524 * BugsSite/Bugzilla/Attachment/PatchReader.pm: Removed.
2525 * BugsSite/Bugzilla/Auth: Removed.
2526 * BugsSite/Bugzilla/Auth.pm: Removed.
2527 * BugsSite/Bugzilla/Auth/Login: Removed.
2528 * BugsSite/Bugzilla/Auth/Login.pm: Removed.
2529 * BugsSite/Bugzilla/Auth/Login/CGI.pm: Removed.
2530 * BugsSite/Bugzilla/Auth/Login/Cookie.pm: Removed.
2531 * BugsSite/Bugzilla/Auth/Login/Env.pm: Removed.
2532 * BugsSite/Bugzilla/Auth/Login/Stack.pm: Removed.
2533 * BugsSite/Bugzilla/Auth/Login/WWW: Removed.
2534 * BugsSite/Bugzilla/Auth/Login/WWW/CGI: Removed.
2535 * BugsSite/Bugzilla/Auth/Persist: Removed.
2536 * BugsSite/Bugzilla/Auth/Persist/Cookie.pm: Removed.
2537 * BugsSite/Bugzilla/Auth/Verify: Removed.
2538 * BugsSite/Bugzilla/Auth/Verify.pm: Removed.
2539 * BugsSite/Bugzilla/Auth/Verify/DB.pm: Removed.
2540 * BugsSite/Bugzilla/Auth/Verify/LDAP.pm: Removed.
2541 * BugsSite/Bugzilla/Auth/Verify/RADIUS.pm: Removed.
2542 * BugsSite/Bugzilla/Auth/Verify/Stack.pm: Removed.
2543 * BugsSite/Bugzilla/Bug.pm: Removed.
2544 * BugsSite/Bugzilla/BugMail.pm: Removed.
2545 * BugsSite/Bugzilla/CGI.pm: Removed.
2546 * BugsSite/Bugzilla/Chart.pm: Removed.
2547 * BugsSite/Bugzilla/Classification.pm: Removed.
2548 * BugsSite/Bugzilla/Component.pm: Removed.
2549 * BugsSite/Bugzilla/Config: Removed.
2550 * BugsSite/Bugzilla/Config.pm: Removed.
2551 * BugsSite/Bugzilla/Config/Admin.pm: Removed.
2552 * BugsSite/Bugzilla/Config/Attachment.pm: Removed.
2553 * BugsSite/Bugzilla/Config/Auth.pm: Removed.
2554 * BugsSite/Bugzilla/Config/BugChange.pm: Removed.
2555 * BugsSite/Bugzilla/Config/BugFields.pm: Removed.
2556 * BugsSite/Bugzilla/Config/BugMove.pm: Removed.
2557 * BugsSite/Bugzilla/Config/Common.pm: Removed.
2558 * BugsSite/Bugzilla/Config/Core.pm: Removed.
2559 * BugsSite/Bugzilla/Config/DependencyGraph.pm: Removed.
2560 * BugsSite/Bugzilla/Config/GroupSecurity.pm: Removed.
2561 * BugsSite/Bugzilla/Config/LDAP.pm: Removed.
2562 * BugsSite/Bugzilla/Config/MTA.pm: Removed.
2563 * BugsSite/Bugzilla/Config/PatchViewer.pm: Removed.
2564 * BugsSite/Bugzilla/Config/Query.pm: Removed.
2565 * BugsSite/Bugzilla/Config/RADIUS.pm: Removed.
2566 * BugsSite/Bugzilla/Config/ShadowDB.pm: Removed.
2567 * BugsSite/Bugzilla/Config/UserMatch.pm: Removed.
2568 * BugsSite/Bugzilla/Constants.pm: Removed.
2569 * BugsSite/Bugzilla/DB: Removed.
2570 * BugsSite/Bugzilla/DB.pm: Removed.
2571 * BugsSite/Bugzilla/DB/Mysql.pm: Removed.
2572 * BugsSite/Bugzilla/DB/Oracle.pm: Removed.
2573 * BugsSite/Bugzilla/DB/Pg.pm: Removed.
2574 * BugsSite/Bugzilla/DB/Schema: Removed.
2575 * BugsSite/Bugzilla/DB/Schema.pm: Removed.
2576 * BugsSite/Bugzilla/DB/Schema/Mysql.pm: Removed.
2577 * BugsSite/Bugzilla/DB/Schema/Oracle.pm: Removed.
2578 * BugsSite/Bugzilla/DB/Schema/Pg.pm: Removed.
2579 * BugsSite/Bugzilla/Error.pm: Removed.
2580 * BugsSite/Bugzilla/Field.pm: Removed.
2581 * BugsSite/Bugzilla/Flag.pm: Removed.
2582 * BugsSite/Bugzilla/FlagType.pm: Removed.
2583 * BugsSite/Bugzilla/Group.pm: Removed.
2584 * BugsSite/Bugzilla/Hook.pm: Removed.
2585 * BugsSite/Bugzilla/Install: Removed.
2586 * BugsSite/Bugzilla/Install.pm: Removed.
2587 * BugsSite/Bugzilla/Install/CPAN.pm: Removed.
2588 * BugsSite/Bugzilla/Install/DB.pm: Removed.
2589 * BugsSite/Bugzilla/Install/Filesystem.pm: Removed.
2590 * BugsSite/Bugzilla/Install/Localconfig.pm: Removed.
2591 * BugsSite/Bugzilla/Install/Requirements.pm: Removed.
2592 * BugsSite/Bugzilla/Install/Util.pm: Removed.
2593 * BugsSite/Bugzilla/Keyword.pm: Removed.
2594 * BugsSite/Bugzilla/Mailer.pm: Removed.
2595 * BugsSite/Bugzilla/Milestone.pm: Removed.
2596 * BugsSite/Bugzilla/Object.pm: Removed.
2597 * BugsSite/Bugzilla/Product.pm: Removed.
2598 * BugsSite/Bugzilla/Search: Removed.
2599 * BugsSite/Bugzilla/Search.pm: Removed.
2600 * BugsSite/Bugzilla/Search/Quicksearch.pm: Removed.
2601 * BugsSite/Bugzilla/Search/Saved.pm: Removed.
2602 * BugsSite/Bugzilla/Series.pm: Removed.
2603 * BugsSite/Bugzilla/Status.pm: Removed.
2604 * BugsSite/Bugzilla/Template: Removed.
2605 * BugsSite/Bugzilla/Template.pm: Removed.
2606 * BugsSite/Bugzilla/Template/Parser.pm: Removed.
2607 * BugsSite/Bugzilla/Template/Plugin: Removed.
2608 * BugsSite/Bugzilla/Template/Plugin/Bugzilla.pm: Removed.
2609 * BugsSite/Bugzilla/Template/Plugin/Hook.pm: Removed.
2610 * BugsSite/Bugzilla/Template/Plugin/User.pm: Removed.
2611 * BugsSite/Bugzilla/Token.pm: Removed.
2612 * BugsSite/Bugzilla/Update.pm: Removed.
2613 * BugsSite/Bugzilla/User: Removed.
2614 * BugsSite/Bugzilla/User.pm: Removed.
2615 * BugsSite/Bugzilla/User/Setting: Removed.
2616 * BugsSite/Bugzilla/User/Setting.pm: Removed.
2617 * BugsSite/Bugzilla/User/Setting/Lang.pm: Removed.
2618 * BugsSite/Bugzilla/User/Setting/Skin.pm: Removed.
2619 * BugsSite/Bugzilla/Util.pm: Removed.
2620 * BugsSite/Bugzilla/Version.pm: Removed.
2621 * BugsSite/Bugzilla/WebService: Removed.
2622 * BugsSite/Bugzilla/WebService.pm: Removed.
2623 * BugsSite/Bugzilla/WebService/Bug.pm: Removed.
2624 * BugsSite/Bugzilla/WebService/Bugzilla.pm: Removed.
2625 * BugsSite/Bugzilla/WebService/Constants.pm: Removed.
2626 * BugsSite/Bugzilla/WebService/Product.pm: Removed.
2627 * BugsSite/Bugzilla/WebService/User.pm: Removed.
2628 * BugsSite/PrettyPatch: Removed.
2629 * BugsSite/PrettyPatch/PrettyPatch.rb: Removed.
2630 * BugsSite/PrettyPatch/diff.rb: Removed.
2631 * BugsSite/PrettyPatch/prettify.rb: Removed.
2632 * BugsSite/QUICKSTART: Removed.
2633 * BugsSite/README: Removed.
2634 * BugsSite/UPGRADING: Removed.
2635 * BugsSite/UPGRADING-pre-2.8: Removed.
2636 * BugsSite/admin.cgi: Removed.
2637 * BugsSite/attachment.cgi: Removed.
2638 * BugsSite/buglist.cgi: Removed.
2639 * BugsSite/bugzilla.dtd: Removed.
2640 * BugsSite/chart.cgi: Removed.
2641 * BugsSite/checksetup.pl: Removed.
2642 * BugsSite/code-review.js: Removed.
2643 * BugsSite/colchange.cgi: Removed.
2644 * BugsSite/collectstats.pl: Removed.
2645 * BugsSite/committers-autocomplete.js: Removed.
2646 * BugsSite/config.cgi: Removed.
2647 * BugsSite/contrib: Removed.
2648 * BugsSite/contrib/README: Removed.
2649 * BugsSite/contrib/bugzilla-submit: Removed.
2650 * BugsSite/contrib/bugzilla-submit/README: Removed.
2651 * BugsSite/contrib/bugzilla-submit/bugdata.txt: Removed.
2652 * BugsSite/contrib/bugzilla-submit/bugzilla-submit: Removed.
2653 * BugsSite/contrib/bugzilla-submit/bugzilla-submit.xml: Removed.
2654 * BugsSite/contrib/bugzilla_ldapsync.rb: Removed.
2655 * BugsSite/contrib/bz_webservice_demo.pl: Removed.
2656 * BugsSite/contrib/bzdbcopy.pl: Removed.
2657 * BugsSite/contrib/cmdline: Removed.
2658 * BugsSite/contrib/cmdline/bugcount: Removed.
2659 * BugsSite/contrib/cmdline/bugids: Removed.
2660 * BugsSite/contrib/cmdline/buglist: Removed.
2661 * BugsSite/contrib/cmdline/bugs: Removed.
2662 * BugsSite/contrib/cmdline/bugslink: Removed.
2663 * BugsSite/contrib/cmdline/makequery: Removed.
2664 * BugsSite/contrib/cmdline/query.conf: Removed.
2665 * BugsSite/contrib/cvs-update.pl: Removed.
2666 * BugsSite/contrib/gnats2bz.pl: Removed.
2667 * BugsSite/contrib/gnatsparse: Removed.
2668 * BugsSite/contrib/gnatsparse/README: Removed.
2669 * BugsSite/contrib/gnatsparse/gnatsparse.py: Removed.
2670 * BugsSite/contrib/gnatsparse/magic.py: Removed.
2671 * BugsSite/contrib/gnatsparse/specialuu.py: Removed.
2672 * BugsSite/contrib/jb2bz.py: Removed.
2673 * BugsSite/contrib/merge-users.pl: Removed.
2674 * BugsSite/contrib/mysqld-watcher.pl: Removed.
2675 * BugsSite/contrib/recode-overrides.txt: Removed.
2676 * BugsSite/contrib/recode.pl: Removed.
2677 * BugsSite/contrib/sendbugmail.pl: Removed.
2678 * BugsSite/contrib/sendunsentbugmail.pl: Removed.
2679 * BugsSite/contrib/syncLDAP.pl: Removed.
2680 * BugsSite/contrib/yp_nomail.sh: Removed.
2681 * BugsSite/createaccount.cgi: Removed.
2682 * BugsSite/data: Removed.
2683 * BugsSite/data/.htaccess: Removed.
2684 * BugsSite/data/attachments: Removed.
2685 * BugsSite/data/attachments/.htaccess: Removed.
2686 * BugsSite/data/duplicates: Removed.
2687 * BugsSite/data/mail: Removed.
2688 * BugsSite/data/mimedump-tmp: Removed.
2689 * BugsSite/data/mining: Removed.
2690 * BugsSite/data/params: Removed.
2691 * BugsSite/data/template: Removed.
2692 * BugsSite/data/webdot: Removed.
2693 * BugsSite/data/webdot/.htaccess: Removed.
2694 * BugsSite/describecomponents.cgi: Removed.
2695 * BugsSite/describekeywords.cgi: Removed.
2696 * BugsSite/docs: Removed.
2697 * BugsSite/docs/en: Removed.
2698 * BugsSite/docs/en/.cvsignore: Removed.
2699 * BugsSite/docs/en/README.docs: Removed.
2700 * BugsSite/docs/en/images: Removed.
2701 * BugsSite/docs/en/images/bzLifecycle.png: Removed.
2702 * BugsSite/docs/en/images/bzLifecycle.xml: Removed.
2703 * BugsSite/docs/en/images/callouts: Removed.
2704 * BugsSite/docs/en/images/callouts/1.gif: Removed.
2705 * BugsSite/docs/en/images/callouts/2.gif: Removed.
2706 * BugsSite/docs/en/images/callouts/3.gif: Removed.
2707 * BugsSite/docs/en/images/caution.gif: Removed.
2708 * BugsSite/docs/en/images/note.gif: Removed.
2709 * BugsSite/docs/en/images/tip.gif: Removed.
2710 * BugsSite/docs/en/images/warning.gif: Removed.
2711 * BugsSite/docs/en/rel_notes.txt: Removed.
2712 * BugsSite/docs/en/xml: Removed.
2713 * BugsSite/docs/en/xml/.cvsignore: Removed.
2714 * BugsSite/docs/en/xml/Bugzilla-Guide.xml: Removed.
2715 * BugsSite/docs/en/xml/about.xml: Removed.
2716 * BugsSite/docs/en/xml/administration.xml: Removed.
2717 * BugsSite/docs/en/xml/conventions.xml: Removed.
2718 * BugsSite/docs/en/xml/customization.xml: Removed.
2719 * BugsSite/docs/en/xml/gfdl.xml: Removed.
2720 * BugsSite/docs/en/xml/glossary.xml: Removed.
2721 * BugsSite/docs/en/xml/index.xml: Removed.
2722 * BugsSite/docs/en/xml/installation.xml: Removed.
2723 * BugsSite/docs/en/xml/integration.xml: Removed.
2724 * BugsSite/docs/en/xml/introduction.xml: Removed.
2725 * BugsSite/docs/en/xml/modules.xml: Removed.
2726 * BugsSite/docs/en/xml/patches.xml: Removed.
2727 * BugsSite/docs/en/xml/requiredsoftware.xml: Removed.
2728 * BugsSite/docs/en/xml/security.xml: Removed.
2729 * BugsSite/docs/en/xml/troubleshooting.xml: Removed.
2730 * BugsSite/docs/en/xml/using.xml: Removed.
2731 * BugsSite/docs/html: Removed.
2732 * BugsSite/docs/html/api: Removed.
2733 * BugsSite/docs/images: Removed.
2734 * BugsSite/docs/images/callouts: Removed.
2735 * BugsSite/docs/lib: Removed.
2736 * BugsSite/docs/lib/Pod: Removed.
2737 * BugsSite/docs/lib/Pod/Simple: Removed.
2738 * BugsSite/docs/lib/Pod/Simple/HTML: Removed.
2739 * BugsSite/docs/lib/Pod/Simple/HTML/Bugzilla.pm: Removed.
2740 * BugsSite/docs/lib/Pod/Simple/HTMLBatch: Removed.
2741 * BugsSite/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm: Removed.
2742 * BugsSite/docs/makedocs.pl: Removed.
2743 * BugsSite/docs/pdf: Removed.
2744 * BugsSite/docs/style.css: Removed.
2745 * BugsSite/docs/txt: Removed.
2746 * BugsSite/docs/xml: Removed.
2747 * BugsSite/duplicates.cgi: Removed.
2748 * BugsSite/editclassifications.cgi: Removed.
2749 * BugsSite/editcomponents.cgi: Removed.
2750 * BugsSite/editfields.cgi: Removed.
2751 * BugsSite/editflagtypes.cgi: Removed.
2752 * BugsSite/editgroups.cgi: Removed.
2753 * BugsSite/editkeywords.cgi: Removed.
2754 * BugsSite/editmilestones.cgi: Removed.
2755 * BugsSite/editparams.cgi: Removed.
2756 * BugsSite/editproducts.cgi: Removed.
2757 * BugsSite/editsettings.cgi: Removed.
2758 * BugsSite/editusers.cgi: Removed.
2759 * BugsSite/editvalues.cgi: Removed.
2760 * BugsSite/editversions.cgi: Removed.
2761 * BugsSite/editwhines.cgi: Removed.
2762 * BugsSite/editworkflow.cgi: Removed.
2763 * BugsSite/email_in.pl: Removed.
2764 * BugsSite/enter_bug.cgi: Removed.
2765 * BugsSite/extensions: Removed.
2766 * BugsSite/extensions/example: Removed.
2767 * BugsSite/extensions/example/code: Removed.
2768 * BugsSite/extensions/example/code/bug-end_of_update.pl: Removed.
2769 * BugsSite/extensions/example/code/buglist-columns.pl: Removed.
2770 * BugsSite/extensions/example/code/colchange-columns.pl: Removed.
2771 * BugsSite/extensions/example/code/config.pl: Removed.
2772 * BugsSite/extensions/example/code/flag-end_of_update.pl: Removed.
2773 * BugsSite/extensions/example/code/install-before_final_checks.pl: Removed.
2774 * BugsSite/extensions/example/code/product-confirm_delete.pl: Removed.
2775 * BugsSite/extensions/example/code/webservice-error_codes.pl: Removed.
2776 * BugsSite/extensions/example/code/webservice.pl: Removed.
2777 * BugsSite/extensions/example/disabled: Removed.
2778 * BugsSite/extensions/example/info.pl: Removed.
2779 * BugsSite/extensions/example/lib: Removed.
2780 * BugsSite/extensions/example/lib/ConfigExample.pm: Removed.
2781 * BugsSite/extensions/example/lib/WSExample.pm: Removed.
2782 * BugsSite/extensions/example/template: Removed.
2783 * BugsSite/extensions/example/template/en: Removed.
2784 * BugsSite/extensions/example/template/en/default: Removed.
2785 * BugsSite/extensions/example/template/en/default/admin: Removed.
2786 * BugsSite/extensions/example/template/en/default/admin/params: Removed.
2787 * BugsSite/extensions/example/template/en/default/admin/params/example.html.tmpl: Removed.
2788 * BugsSite/extensions/example/template/en/global: Removed.
2789 * BugsSite/extensions/example/template/en/global/user-error-errors.html.tmpl: Removed.
2790 * BugsSite/graphs: Removed.
2791 * BugsSite/images: Removed.
2792 * BugsSite/images/favicon.ico: Removed.
2793 * BugsSite/images/padlock.png: Removed.
2794 * BugsSite/importxml.pl: Removed.
2795 * BugsSite/index.cgi: Removed.
2796 * BugsSite/install-module.pl: Removed.
2797 * BugsSite/js: Removed.
2798 * BugsSite/js/TUI.js: Removed.
2799 * BugsSite/js/attachment.js: Removed.
2800 * BugsSite/js/expanding-tree.js: Removed.
2801 * BugsSite/js/field.js: Removed.
2802 * BugsSite/js/help.js: Removed.
2803 * BugsSite/js/params.js: Removed.
2804 * BugsSite/js/productform.js: Removed.
2805 * BugsSite/js/util.js: Removed.
2806 * BugsSite/js/yui: Removed.
2807 * BugsSite/js/yui/calendar.js: Removed.
2808 * BugsSite/js/yui/yahoo-dom-event.js: Removed.
2809 * BugsSite/lib: Removed.
2810 * BugsSite/lib/.htaccess: Removed.
2811 * BugsSite/lib/README: Removed.
2812 * BugsSite/long_list.cgi: Removed.
2813 * BugsSite/mod_perl.pl: Removed.
2814 * BugsSite/page.cgi: Removed.
2815 * BugsSite/post_bug.cgi: Removed.
2816 * BugsSite/process_bug.cgi: Removed.
2817 * BugsSite/query.cgi: Removed.
2818 * BugsSite/quips.cgi: Removed.
2819 * BugsSite/relogin.cgi: Removed.
2820 * BugsSite/report.cgi: Removed.
2821 * BugsSite/reports.cgi: Removed.
2822 * BugsSite/request.cgi: Removed.
2823 * BugsSite/robots.txt: Removed.
2824 * BugsSite/runtests.pl: Removed.
2825 * BugsSite/sanitycheck.cgi: Removed.
2826 * BugsSite/sanitycheck.pl: Removed.
2827 * BugsSite/search_plugin.cgi: Removed.
2828 * BugsSite/show_activity.cgi: Removed.
2829 * BugsSite/show_bug.cgi: Removed.
2830 * BugsSite/showattachment.cgi: Removed.
2831 * BugsSite/showdependencygraph.cgi: Removed.
2832 * BugsSite/showdependencytree.cgi: Removed.
2833 * BugsSite/sidebar.cgi: Removed.
2834 * BugsSite/skins: Removed.
2835 * BugsSite/skins/.cvsignore: Removed.
2836 * BugsSite/skins/contrib: Removed.
2837 * BugsSite/skins/contrib/Dusk: Removed.
2838 * BugsSite/skins/contrib/Dusk/.cvsignore: Removed.
2839 * BugsSite/skins/contrib/Dusk/IE-fixes.css: Removed.
2840 * BugsSite/skins/contrib/Dusk/admin.css: Removed.
2841 * BugsSite/skins/contrib/Dusk/buglist.css: Removed.
2842 * BugsSite/skins/contrib/Dusk/create_attachment.css: Removed.
2843 * BugsSite/skins/contrib/Dusk/dependency-tree.css: Removed.
2844 * BugsSite/skins/contrib/Dusk/duplicates.css: Removed.
2845 * BugsSite/skins/contrib/Dusk/editusers.css: Removed.
2846 * BugsSite/skins/contrib/Dusk/global.css: Removed.
2847 * BugsSite/skins/contrib/Dusk/help.css: Removed.
2848 * BugsSite/skins/contrib/Dusk/index.css: Removed.
2849 * BugsSite/skins/contrib/Dusk/panel.css: Removed.
2850 * BugsSite/skins/contrib/Dusk/params.css: Removed.
2851 * BugsSite/skins/contrib/Dusk/release-notes.css: Removed.
2852 * BugsSite/skins/contrib/Dusk/show_bug.css: Removed.
2853 * BugsSite/skins/contrib/Dusk/show_multiple.css: Removed.
2854 * BugsSite/skins/contrib/Dusk/summarize-time.css: Removed.
2855 * BugsSite/skins/contrib/Dusk/voting.css: Removed.
2856 * BugsSite/skins/contrib/Dusk/yui: Removed.
2857 * BugsSite/skins/contrib/Dusk/yui/calendar.css: Removed.
2858 * BugsSite/skins/custom: Removed.
2859 * BugsSite/skins/custom/IE-fixes.css: Removed.
2860 * BugsSite/skins/custom/admin.css: Removed.
2861 * BugsSite/skins/custom/buglist.css: Removed.
2862 * BugsSite/skins/custom/create_attachment.css: Removed.
2863 * BugsSite/skins/custom/dependency-tree.css: Removed.
2864 * BugsSite/skins/custom/duplicates.css: Removed.
2865 * BugsSite/skins/custom/editusers.css: Removed.
2866 * BugsSite/skins/custom/global.css: Removed.
2867 * BugsSite/skins/custom/help.css: Removed.
2868 * BugsSite/skins/custom/index.css: Removed.
2869 * BugsSite/skins/custom/opendarwin.gif: Removed.
2870 * BugsSite/skins/custom/panel.css: Removed.
2871 * BugsSite/skins/custom/params.css: Removed.
2872 * BugsSite/skins/custom/release-notes.css: Removed.
2873 * BugsSite/skins/custom/show_bug.css: Removed.
2874 * BugsSite/skins/custom/show_multiple.css: Removed.
2875 * BugsSite/skins/custom/summarize-time.css: Removed.
2876 * BugsSite/skins/custom/voting.css: Removed.
2877 * BugsSite/skins/custom/yui: Removed.
2878 * BugsSite/skins/custom/yui/calendar.css: Removed.
2879 * BugsSite/skins/standard: Removed.
2880 * BugsSite/skins/standard/IE-fixes.css: Removed.
2881 * BugsSite/skins/standard/admin.css: Removed.
2882 * BugsSite/skins/standard/buglist.css: Removed.
2883 * BugsSite/skins/standard/create_attachment.css: Removed.
2884 * BugsSite/skins/standard/dependency-tree: Removed.
2885 * BugsSite/skins/standard/dependency-tree.css: Removed.
2886 * BugsSite/skins/standard/dependency-tree/bug-item.png: Removed.
2887 * BugsSite/skins/standard/dependency-tree/tree-closed.png: Removed.
2888 * BugsSite/skins/standard/dependency-tree/tree-open.png: Removed.
2889 * BugsSite/skins/standard/dependency-tree/tree.png: Removed.
2890 * BugsSite/skins/standard/duplicates.css: Removed.
2891 * BugsSite/skins/standard/editusers.css: Removed.
2892 * BugsSite/skins/standard/global: Removed.
2893 * BugsSite/skins/standard/global.css: Removed.
2894 * BugsSite/skins/standard/global/body-back.gif: Removed.
2895 * BugsSite/skins/standard/global/calendar.png: Removed.
2896 * BugsSite/skins/standard/global/header.png: Removed.
2897 * BugsSite/skins/standard/help.css: Removed.
2898 * BugsSite/skins/standard/index: Removed.
2899 * BugsSite/skins/standard/index.css: Removed.
2900 * BugsSite/skins/standard/index/front.png: Removed.
2901 * BugsSite/skins/standard/panel.css: Removed.
2902 * BugsSite/skins/standard/params.css: Removed.
2903 * BugsSite/skins/standard/release-notes.css: Removed.
2904 * BugsSite/skins/standard/show_bug.css: Removed.
2905 * BugsSite/skins/standard/show_multiple.css: Removed.
2906 * BugsSite/skins/standard/summarize-time.css: Removed.
2907 * BugsSite/skins/standard/voting.css: Removed.
2908 * BugsSite/skins/standard/yui: Removed.
2909 * BugsSite/skins/standard/yui/calendar.css: Removed.
2910 * BugsSite/skins/standard/yui/sprite.png: Removed.
2911 * BugsSite/summarize_time.cgi: Removed.
2912 * BugsSite/t: Removed.
2913 * BugsSite/t/001compile.t: Removed.
2914 * BugsSite/t/002goodperl.t: Removed.
2915 * BugsSite/t/003safesys.t: Removed.
2916 * BugsSite/t/004template.t: Removed.
2917 * BugsSite/t/005no_tabs.t: Removed.
2918 * BugsSite/t/006spellcheck.t: Removed.
2919 * BugsSite/t/007util.t: Removed.
2920 * BugsSite/t/008filter.t: Removed.
2921 * BugsSite/t/009bugwords.t: Removed.
2922 * BugsSite/t/010dependencies.t: Removed.
2923 * BugsSite/t/011pod.t: Removed.
2924 * BugsSite/t/012throwables.t: Removed.
2925 * BugsSite/t/Support: Removed.
2926 * BugsSite/t/Support/Files.pm: Removed.
2927 * BugsSite/t/Support/Systemexec.pm: Removed.
2928 * BugsSite/t/Support/Templates.pm: Removed.
2929 * BugsSite/template: Removed.
2930 * BugsSite/template/.cvsignore: Removed.
2931 * BugsSite/template/.htaccess: Removed.
2932 * BugsSite/template/en: Removed.
2933 * BugsSite/template/en/.cvsignore: Removed.
2934 * BugsSite/template/en/custom: Removed.
2935 * BugsSite/template/en/custom/account: Removed.
2936 * BugsSite/template/en/custom/account/auth: Removed.
2937 * BugsSite/template/en/custom/account/email: Removed.
2938 * BugsSite/template/en/custom/account/password: Removed.
2939 * BugsSite/template/en/custom/account/prefs: Removed.
2940 * BugsSite/template/en/custom/admin: Removed.
2941 * BugsSite/template/en/custom/admin/classifications: Removed.
2942 * BugsSite/template/en/custom/admin/components: Removed.
2943 * BugsSite/template/en/custom/admin/fieldvalues: Removed.
2944 * BugsSite/template/en/custom/admin/flag-type: Removed.
2945 * BugsSite/template/en/custom/admin/groups: Removed.
2946 * BugsSite/template/en/custom/admin/keywords: Removed.
2947 * BugsSite/template/en/custom/admin/milestones: Removed.
2948 * BugsSite/template/en/custom/admin/products: Removed.
2949 * BugsSite/template/en/custom/admin/products/groupcontrol: Removed.
2950 * BugsSite/template/en/custom/admin/settings: Removed.
2951 * BugsSite/template/en/custom/admin/users: Removed.
2952 * BugsSite/template/en/custom/admin/versions: Removed.
2953 * BugsSite/template/en/custom/attachment: Removed.
2954 * BugsSite/template/en/custom/attachment/content-types.html.tmpl: Removed.
2955 * BugsSite/template/en/custom/attachment/create.html.tmpl: Removed.
2956 * BugsSite/template/en/custom/attachment/created.html.tmpl: Removed.
2957 * BugsSite/template/en/custom/attachment/edit.html.tmpl: Removed.
2958 * BugsSite/template/en/custom/attachment/list.html.tmpl: Removed.
2959 * BugsSite/template/en/custom/attachment/review.html.tmpl: Removed.
2960 * BugsSite/template/en/custom/attachment/reviewform.html.tmpl: Removed.
2961 * BugsSite/template/en/custom/attachment/rietveldreview.html.tmpl: Removed.
2962 * BugsSite/template/en/custom/bug: Removed.
2963 * BugsSite/template/en/custom/bug/activity: Removed.
2964 * BugsSite/template/en/custom/bug/create: Removed.
2965 * BugsSite/template/en/custom/bug/edit.html.tmpl: Removed.
2966 * BugsSite/template/en/custom/bug/navigate.html.tmpl: Removed.
2967 * BugsSite/template/en/custom/bug/process: Removed.
2968 * BugsSite/template/en/custom/bug/votes: Removed.
2969 * BugsSite/template/en/custom/flag: Removed.
2970 * BugsSite/template/en/custom/flag/list.html.tmpl: Removed.
2971 * BugsSite/template/en/custom/global: Removed.
2972 * BugsSite/template/en/custom/global/choose-product.html.tmpl: Removed.
2973 * BugsSite/template/en/custom/global/header.html.tmpl: Removed.
2974 * BugsSite/template/en/custom/list: Removed.
2975 * BugsSite/template/en/custom/list/list.html.tmpl: Removed.
2976 * BugsSite/template/en/custom/pages: Removed.
2977 * BugsSite/template/en/custom/reports: Removed.
2978 * BugsSite/template/en/custom/request: Removed.
2979 * BugsSite/template/en/custom/request/email.txt.tmpl: Removed.
2980 * BugsSite/template/en/custom/request/queue.html.tmpl: Removed.
2981 * BugsSite/template/en/custom/search: Removed.
2982 * BugsSite/template/en/custom/whine: Removed.
2983 * BugsSite/template/en/default: Removed.
2984 * BugsSite/template/en/default/account: Removed.
2985 * BugsSite/template/en/default/account/auth: Removed.
2986 * BugsSite/template/en/default/account/auth/login-small.html.tmpl: Removed.
2987 * BugsSite/template/en/default/account/auth/login.html.tmpl: Removed.
2988 * BugsSite/template/en/default/account/cancel-token.txt.tmpl: Removed.
2989 * BugsSite/template/en/default/account/create.html.tmpl: Removed.
2990 * BugsSite/template/en/default/account/created.html.tmpl: Removed.
2991 * BugsSite/template/en/default/account/email: Removed.
2992 * BugsSite/template/en/default/account/email/change-new.txt.tmpl: Removed.
2993 * BugsSite/template/en/default/account/email/change-old.txt.tmpl: Removed.
2994 * BugsSite/template/en/default/account/email/confirm-new.html.tmpl: Removed.
2995 * BugsSite/template/en/default/account/email/confirm.html.tmpl: Removed.
2996 * BugsSite/template/en/default/account/email/request-new.txt.tmpl: Removed.
2997 * BugsSite/template/en/default/account/password: Removed.
2998 * BugsSite/template/en/default/account/password/forgotten-password.txt.tmpl: Removed.
2999 * BugsSite/template/en/default/account/password/set-forgotten-password.html.tmpl: Removed.
3000 * BugsSite/template/en/default/account/prefs: Removed.
3001 * BugsSite/template/en/default/account/prefs/account.html.tmpl: Removed.
3002 * BugsSite/template/en/default/account/prefs/email.html.tmpl: Removed.
3003 * BugsSite/template/en/default/account/prefs/permissions.html.tmpl: Removed.
3004 * BugsSite/template/en/default/account/prefs/prefs.html.tmpl: Removed.
3005 * BugsSite/template/en/default/account/prefs/saved-searches.html.tmpl: Removed.
3006 * BugsSite/template/en/default/account/prefs/settings.html.tmpl: Removed.
3007 * BugsSite/template/en/default/account/profile-activity.html.tmpl: Removed.
3008 * BugsSite/template/en/default/admin: Removed.
3009 * BugsSite/template/en/default/admin/admin.html.tmpl: Removed.
3010 * BugsSite/template/en/default/admin/classifications: Removed.
3011 * BugsSite/template/en/default/admin/classifications/add.html.tmpl: Removed.
3012 * BugsSite/template/en/default/admin/classifications/del.html.tmpl: Removed.
3013 * BugsSite/template/en/default/admin/classifications/edit.html.tmpl: Removed.
3014 * BugsSite/template/en/default/admin/classifications/reclassify.html.tmpl: Removed.
3015 * BugsSite/template/en/default/admin/classifications/select.html.tmpl: Removed.
3016 * BugsSite/template/en/default/admin/components: Removed.
3017 * BugsSite/template/en/default/admin/components/confirm-delete.html.tmpl: Removed.
3018 * BugsSite/template/en/default/admin/components/create.html.tmpl: Removed.
3019 * BugsSite/template/en/default/admin/components/edit.html.tmpl: Removed.
3020 * BugsSite/template/en/default/admin/components/footer.html.tmpl: Removed.
3021 * BugsSite/template/en/default/admin/components/list.html.tmpl: Removed.
3022 * BugsSite/template/en/default/admin/components/select-product.html.tmpl: Removed.
3023 * BugsSite/template/en/default/admin/confirm-action.html.tmpl: Removed.
3024 * BugsSite/template/en/default/admin/custom_fields: Removed.
3025 * BugsSite/template/en/default/admin/custom_fields/confirm-delete.html.tmpl: Removed.
3026 * BugsSite/template/en/default/admin/custom_fields/create.html.tmpl: Removed.
3027 * BugsSite/template/en/default/admin/custom_fields/edit.html.tmpl: Removed.
3028 * BugsSite/template/en/default/admin/custom_fields/list.html.tmpl: Removed.
3029 * BugsSite/template/en/default/admin/fieldvalues: Removed.
3030 * BugsSite/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl: Removed.
3031 * BugsSite/template/en/default/admin/fieldvalues/create.html.tmpl: Removed.
3032 * BugsSite/template/en/default/admin/fieldvalues/edit.html.tmpl: Removed.
3033 * BugsSite/template/en/default/admin/fieldvalues/footer.html.tmpl: Removed.
3034 * BugsSite/template/en/default/admin/fieldvalues/list.html.tmpl: Removed.
3035 * BugsSite/template/en/default/admin/fieldvalues/select-field.html.tmpl: Removed.
3036 * BugsSite/template/en/default/admin/flag-type: Removed.
3037 * BugsSite/template/en/default/admin/flag-type/confirm-delete.html.tmpl: Removed.
3038 * BugsSite/template/en/default/admin/flag-type/edit.html.tmpl: Removed.
3039 * BugsSite/template/en/default/admin/flag-type/list.html.tmpl: Removed.
3040 * BugsSite/template/en/default/admin/groups: Removed.
3041 * BugsSite/template/en/default/admin/groups/confirm-remove.html.tmpl: Removed.
3042 * BugsSite/template/en/default/admin/groups/create.html.tmpl: Removed.
3043 * BugsSite/template/en/default/admin/groups/delete.html.tmpl: Removed.
3044 * BugsSite/template/en/default/admin/groups/edit.html.tmpl: Removed.
3045 * BugsSite/template/en/default/admin/groups/list.html.tmpl: Removed.
3046 * BugsSite/template/en/default/admin/keywords: Removed.
3047 * BugsSite/template/en/default/admin/keywords/confirm-delete.html.tmpl: Removed.
3048 * BugsSite/template/en/default/admin/keywords/create.html.tmpl: Removed.
3049 * BugsSite/template/en/default/admin/keywords/edit.html.tmpl: Removed.
3050 * BugsSite/template/en/default/admin/keywords/list.html.tmpl: Removed.
3051 * BugsSite/template/en/default/admin/milestones: Removed.
3052 * BugsSite/template/en/default/admin/milestones/confirm-delete.html.tmpl: Removed.
3053 * BugsSite/template/en/default/admin/milestones/create.html.tmpl: Removed.
3054 * BugsSite/template/en/default/admin/milestones/edit.html.tmpl: Removed.
3055 * BugsSite/template/en/default/admin/milestones/footer.html.tmpl: Removed.
3056 * BugsSite/template/en/default/admin/milestones/list.html.tmpl: Removed.
3057 * BugsSite/template/en/default/admin/milestones/select-product.html.tmpl: Removed.
3058 * BugsSite/template/en/default/admin/params: Removed.
3059 * BugsSite/template/en/default/admin/params/admin.html.tmpl: Removed.
3060 * BugsSite/template/en/default/admin/params/attachment.html.tmpl: Removed.
3061 * BugsSite/template/en/default/admin/params/auth.html.tmpl: Removed.
3062 * BugsSite/template/en/default/admin/params/bugchange.html.tmpl: Removed.
3063 * BugsSite/template/en/default/admin/params/bugfields.html.tmpl: Removed.
3064 * BugsSite/template/en/default/admin/params/bugmove.html.tmpl: Removed.
3065 * BugsSite/template/en/default/admin/params/common.html.tmpl: Removed.
3066 * BugsSite/template/en/default/admin/params/core.html.tmpl: Removed.
3067 * BugsSite/template/en/default/admin/params/dependencygraph.html.tmpl: Removed.
3068 * BugsSite/template/en/default/admin/params/editparams.html.tmpl: Removed.
3069 * BugsSite/template/en/default/admin/params/groupsecurity.html.tmpl: Removed.
3070 * BugsSite/template/en/default/admin/params/index.html.tmpl: Removed.
3071 * BugsSite/template/en/default/admin/params/ldap.html.tmpl: Removed.
3072 * BugsSite/template/en/default/admin/params/mta.html.tmpl: Removed.
3073 * BugsSite/template/en/default/admin/params/patchviewer.html.tmpl: Removed.
3074 * BugsSite/template/en/default/admin/params/query.html.tmpl: Removed.
3075 * BugsSite/template/en/default/admin/params/radius.html.tmpl: Removed.
3076 * BugsSite/template/en/default/admin/params/shadowdb.html.tmpl: Removed.
3077 * BugsSite/template/en/default/admin/params/usermatch.html.tmpl: Removed.
3078 * BugsSite/template/en/default/admin/products: Removed.
3079 * BugsSite/template/en/default/admin/products/confirm-delete.html.tmpl: Removed.
3080 * BugsSite/template/en/default/admin/products/create.html.tmpl: Removed.
3081 * BugsSite/template/en/default/admin/products/edit-common.html.tmpl: Removed.
3082 * BugsSite/template/en/default/admin/products/edit.html.tmpl: Removed.
3083 * BugsSite/template/en/default/admin/products/footer.html.tmpl: Removed.
3084 * BugsSite/template/en/default/admin/products/groupcontrol: Removed.
3085 * BugsSite/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl: Removed.
3086 * BugsSite/template/en/default/admin/products/groupcontrol/edit.html.tmpl: Removed.
3087 * BugsSite/template/en/default/admin/products/groupcontrol/updated.html.tmpl: Removed.
3088 * BugsSite/template/en/default/admin/products/list-classifications.html.tmpl: Removed.
3089 * BugsSite/template/en/default/admin/products/list.html.tmpl: Removed.
3090 * BugsSite/template/en/default/admin/products/updated.html.tmpl: Removed.
3091 * BugsSite/template/en/default/admin/sanitycheck: Removed.
3092 * BugsSite/template/en/default/admin/sanitycheck/list.html.tmpl: Removed.
3093 * BugsSite/template/en/default/admin/sanitycheck/messages.html.tmpl: Removed.
3094 * BugsSite/template/en/default/admin/settings: Removed.
3095 * BugsSite/template/en/default/admin/settings/edit.html.tmpl: Removed.
3096 * BugsSite/template/en/default/admin/sudo.html.tmpl: Removed.
3097 * BugsSite/template/en/default/admin/table.html.tmpl: Removed.
3098 * BugsSite/template/en/default/admin/users: Removed.
3099 * BugsSite/template/en/default/admin/users/confirm-delete.html.tmpl: Removed.
3100 * BugsSite/template/en/default/admin/users/create.html.tmpl: Removed.
3101 * BugsSite/template/en/default/admin/users/edit.html.tmpl: Removed.
3102 * BugsSite/template/en/default/admin/users/list.html.tmpl: Removed.
3103 * BugsSite/template/en/default/admin/users/listselectvars.html.tmpl: Removed.
3104 * BugsSite/template/en/default/admin/users/responsibilities.html.tmpl: Removed.
3105 * BugsSite/template/en/default/admin/users/search.html.tmpl: Removed.
3106 * BugsSite/template/en/default/admin/users/userdata.html.tmpl: Removed.
3107 * BugsSite/template/en/default/admin/versions: Removed.
3108 * BugsSite/template/en/default/admin/versions/confirm-delete.html.tmpl: Removed.
3109 * BugsSite/template/en/default/admin/versions/create.html.tmpl: Removed.
3110 * BugsSite/template/en/default/admin/versions/edit.html.tmpl: Removed.
3111 * BugsSite/template/en/default/admin/versions/footer.html.tmpl: Removed.
3112 * BugsSite/template/en/default/admin/versions/list.html.tmpl: Removed.
3113 * BugsSite/template/en/default/admin/versions/select-product.html.tmpl: Removed.
3114 * BugsSite/template/en/default/admin/workflow: Removed.
3115 * BugsSite/template/en/default/admin/workflow/comment.html.tmpl: Removed.
3116 * BugsSite/template/en/default/admin/workflow/edit.html.tmpl: Removed.
3117 * BugsSite/template/en/default/attachment: Removed.
3118 * BugsSite/template/en/default/attachment/cancel-create-dupe.html.tmpl: Removed.
3119 * BugsSite/template/en/default/attachment/choose.html.tmpl: Removed.
3120 * BugsSite/template/en/default/attachment/confirm-delete.html.tmpl: Removed.
3121 * BugsSite/template/en/default/attachment/content-types.html.tmpl: Removed.
3122 * BugsSite/template/en/default/attachment/create.html.tmpl: Removed.
3123 * BugsSite/template/en/default/attachment/created.html.tmpl: Removed.
3124 * BugsSite/template/en/default/attachment/createformcontents.html.tmpl: Removed.
3125 * BugsSite/template/en/default/attachment/delete_reason.txt.tmpl: Removed.
3126 * BugsSite/template/en/default/attachment/diff-file.html.tmpl: Removed.
3127 * BugsSite/template/en/default/attachment/diff-footer.html.tmpl: Removed.
3128 * BugsSite/template/en/default/attachment/diff-header.html.tmpl: Removed.
3129 * BugsSite/template/en/default/attachment/edit.html.tmpl: Removed.
3130 * BugsSite/template/en/default/attachment/list.html.tmpl: Removed.
3131 * BugsSite/template/en/default/attachment/midair.html.tmpl: Removed.
3132 * BugsSite/template/en/default/attachment/show-multiple.html.tmpl: Removed.
3133 * BugsSite/template/en/default/attachment/updated.html.tmpl: Removed.
3134 * BugsSite/template/en/default/bug: Removed.
3135 * BugsSite/template/en/default/bug/activity: Removed.
3136 * BugsSite/template/en/default/bug/activity/show.html.tmpl: Removed.
3137 * BugsSite/template/en/default/bug/activity/table.html.tmpl: Removed.
3138 * BugsSite/template/en/default/bug/choose.html.tmpl: Removed.
3139 * BugsSite/template/en/default/bug/comments.html.tmpl: Removed.
3140 * BugsSite/template/en/default/bug/create: Removed.
3141 * BugsSite/template/en/default/bug/create/comment-guided.txt.tmpl: Removed.
3142 * BugsSite/template/en/default/bug/create/comment.txt.tmpl: Removed.
3143 * BugsSite/template/en/default/bug/create/confirm-create-dupe.html.tmpl: Removed.
3144 * BugsSite/template/en/default/bug/create/create-guided.html.tmpl: Removed.
3145 * BugsSite/template/en/default/bug/create/create.html.tmpl: Removed.
3146 * BugsSite/template/en/default/bug/create/created.html.tmpl: Removed.
3147 * BugsSite/template/en/default/bug/create/make-template.html.tmpl: Removed.
3148 * BugsSite/template/en/default/bug/create/user-message.html.tmpl: Removed.
3149 * BugsSite/template/en/default/bug/dependency-graph.html.tmpl: Removed.
3150 * BugsSite/template/en/default/bug/dependency-tree.html.tmpl: Removed.
3151 * BugsSite/template/en/default/bug/edit.html.tmpl: Removed.
3152 * BugsSite/template/en/default/bug/field.html.tmpl: Removed.
3153 * BugsSite/template/en/default/bug/knob.html.tmpl: Removed.
3154 * BugsSite/template/en/default/bug/navigate.html.tmpl: Removed.
3155 * BugsSite/template/en/default/bug/process: Removed.
3156 * BugsSite/template/en/default/bug/process/bugmail.html.tmpl: Removed.
3157 * BugsSite/template/en/default/bug/process/confirm-duplicate.html.tmpl: Removed.
3158 * BugsSite/template/en/default/bug/process/header.html.tmpl: Removed.
3159 * BugsSite/template/en/default/bug/process/midair.html.tmpl: Removed.
3160 * BugsSite/template/en/default/bug/process/results.html.tmpl: Removed.
3161 * BugsSite/template/en/default/bug/process/verify-new-product.html.tmpl: Removed.
3162 * BugsSite/template/en/default/bug/show-multiple.html.tmpl: Removed.
3163 * BugsSite/template/en/default/bug/show.html.tmpl: Removed.
3164 * BugsSite/template/en/default/bug/show.xml.tmpl: Removed.
3165 * BugsSite/template/en/default/bug/summarize-time.html.tmpl: Removed.
3166 * BugsSite/template/en/default/bug/time.html.tmpl: Removed.
3167 * BugsSite/template/en/default/bug/votes: Removed.
3168 * BugsSite/template/en/default/bug/votes/delete-all.html.tmpl: Removed.
3169 * BugsSite/template/en/default/bug/votes/list-for-bug.html.tmpl: Removed.
3170 * BugsSite/template/en/default/bug/votes/list-for-user.html.tmpl: Removed.
3171 * BugsSite/template/en/default/config.js.tmpl: Removed.
3172 * BugsSite/template/en/default/config.rdf.tmpl: Removed.
3173 * BugsSite/template/en/default/email: Removed.
3174 * BugsSite/template/en/default/email/newchangedmail.txt.tmpl: Removed.
3175 * BugsSite/template/en/default/email/sanitycheck.txt.tmpl: Removed.
3176 * BugsSite/template/en/default/email/sudo.txt.tmpl: Removed.
3177 * BugsSite/template/en/default/email/votes-removed.txt.tmpl: Removed.
3178 * BugsSite/template/en/default/email/whine.txt.tmpl: Removed.
3179 * BugsSite/template/en/default/filterexceptions.pl: Removed.
3180 * BugsSite/template/en/default/flag: Removed.
3181 * BugsSite/template/en/default/flag/list.html.tmpl: Removed.
3182 * BugsSite/template/en/default/global: Removed.
3183 * BugsSite/template/en/default/global/banner.html.tmpl: Removed.
3184 * BugsSite/template/en/default/global/choose-classification.html.tmpl: Removed.
3185 * BugsSite/template/en/default/global/choose-product.html.tmpl: Removed.
3186 * BugsSite/template/en/default/global/code-error.html.tmpl: Removed.
3187 * BugsSite/template/en/default/global/common-links.html.tmpl: Removed.
3188 * BugsSite/template/en/default/global/confirm-action.html.tmpl: Removed.
3189 * BugsSite/template/en/default/global/confirm-user-match.html.tmpl: Removed.
3190 * BugsSite/template/en/default/global/docslinks.html.tmpl: Removed.
3191 * BugsSite/template/en/default/global/field-descs.none.tmpl: Removed.
3192 * BugsSite/template/en/default/global/footer.html.tmpl: Removed.
3193 * BugsSite/template/en/default/global/header.html.tmpl: Removed.
3194 * BugsSite/template/en/default/global/help.html.tmpl: Removed.
3195 * BugsSite/template/en/default/global/hidden-fields.html.tmpl: Removed.
3196 * BugsSite/template/en/default/global/initialize.none.tmpl: Removed.
3197 * BugsSite/template/en/default/global/js-products.html.tmpl: Removed.
3198 * BugsSite/template/en/default/global/message.html.tmpl: Removed.
3199 * BugsSite/template/en/default/global/message.txt.tmpl: Removed.
3200 * BugsSite/template/en/default/global/messages.html.tmpl: Removed.
3201 * BugsSite/template/en/default/global/per-bug-queries.html.tmpl: Removed.
3202 * BugsSite/template/en/default/global/select-menu.html.tmpl: Removed.
3203 * BugsSite/template/en/default/global/setting-descs.none.tmpl: Removed.
3204 * BugsSite/template/en/default/global/site-navigation.html.tmpl: Removed.
3205 * BugsSite/template/en/default/global/tabs.html.tmpl: Removed.
3206 * BugsSite/template/en/default/global/textarea.html.tmpl: Removed.
3207 * BugsSite/template/en/default/global/useful-links.html.tmpl: Removed.
3208 * BugsSite/template/en/default/global/user-error.html.tmpl: Removed.
3209 * BugsSite/template/en/default/global/userselect.html.tmpl: Removed.
3210 * BugsSite/template/en/default/global/variables.none.tmpl: Removed.
3211 * BugsSite/template/en/default/index.html.tmpl: Removed.
3212 * BugsSite/template/en/default/list: Removed.
3213 * BugsSite/template/en/default/list/change-columns.html.tmpl: Removed.
3214 * BugsSite/template/en/default/list/edit-multiple.html.tmpl: Removed.
3215 * BugsSite/template/en/default/list/list-simple.html.tmpl: Removed.
3216 * BugsSite/template/en/default/list/list.atom.tmpl: Removed.
3217 * BugsSite/template/en/default/list/list.csv.tmpl: Removed.
3218 * BugsSite/template/en/default/list/list.html.tmpl: Removed.
3219 * BugsSite/template/en/default/list/list.ics.tmpl: Removed.
3220 * BugsSite/template/en/default/list/list.js.tmpl: Removed.
3221 * BugsSite/template/en/default/list/list.rdf.tmpl: Removed.
3222 * BugsSite/template/en/default/list/quips.html.tmpl: Removed.
3223 * BugsSite/template/en/default/list/server-push.html.tmpl: Removed.
3224 * BugsSite/template/en/default/list/table.html.tmpl: Removed.
3225 * BugsSite/template/en/default/pages: Removed.
3226 * BugsSite/template/en/default/pages/bug-writing.html.tmpl: Removed.
3227 * BugsSite/template/en/default/pages/fields.html.tmpl: Removed.
3228 * BugsSite/template/en/default/pages/linked.html.tmpl: Removed.
3229 * BugsSite/template/en/default/pages/linkify.html.tmpl: Removed.
3230 * BugsSite/template/en/default/pages/quicksearch.html.tmpl: Removed.
3231 * BugsSite/template/en/default/pages/quicksearchhack.html.tmpl: Removed.
3232 * BugsSite/template/en/default/pages/release-notes.html.tmpl: Removed.
3233 * BugsSite/template/en/default/pages/sudo.html.tmpl: Removed.
3234 * BugsSite/template/en/default/pages/voting.html.tmpl: Removed.
3235 * BugsSite/template/en/default/reports: Removed.
3236 * BugsSite/template/en/default/reports/chart.csv.tmpl: Removed.
3237 * BugsSite/template/en/default/reports/chart.html.tmpl: Removed.
3238 * BugsSite/template/en/default/reports/chart.png.tmpl: Removed.
3239 * BugsSite/template/en/default/reports/components.html.tmpl: Removed.
3240 * BugsSite/template/en/default/reports/create-chart.html.tmpl: Removed.
3241 * BugsSite/template/en/default/reports/duplicates-simple.html.tmpl: Removed.
3242 * BugsSite/template/en/default/reports/duplicates-table.html.tmpl: Removed.
3243 * BugsSite/template/en/default/reports/duplicates.html.tmpl: Removed.
3244 * BugsSite/template/en/default/reports/edit-series.html.tmpl: Removed.
3245 * BugsSite/template/en/default/reports/keywords.html.tmpl: Removed.
3246 * BugsSite/template/en/default/reports/menu.html.tmpl: Removed.
3247 * BugsSite/template/en/default/reports/old-charts.html.tmpl: Removed.
3248 * BugsSite/template/en/default/reports/report-bar.png.tmpl: Removed.
3249 * BugsSite/template/en/default/reports/report-line.png.tmpl: Removed.
3250 * BugsSite/template/en/default/reports/report-pie.png.tmpl: Removed.
3251 * BugsSite/template/en/default/reports/report-simple.html.tmpl: Removed.
3252 * BugsSite/template/en/default/reports/report-table.csv.tmpl: Removed.
3253 * BugsSite/template/en/default/reports/report-table.html.tmpl: Removed.
3254 * BugsSite/template/en/default/reports/report.csv.tmpl: Removed.
3255 * BugsSite/template/en/default/reports/report.html.tmpl: Removed.
3256 * BugsSite/template/en/default/reports/series-common.html.tmpl: Removed.
3257 * BugsSite/template/en/default/reports/series.html.tmpl: Removed.
3258 * BugsSite/template/en/default/request: Removed.
3259 * BugsSite/template/en/default/request/email.txt.tmpl: Removed.
3260 * BugsSite/template/en/default/request/queue.html.tmpl: Removed.
3261 * BugsSite/template/en/default/search: Removed.
3262 * BugsSite/template/en/default/search/boolean-charts.html.tmpl: Removed.
3263 * BugsSite/template/en/default/search/form.html.tmpl: Removed.
3264 * BugsSite/template/en/default/search/knob.html.tmpl: Removed.
3265 * BugsSite/template/en/default/search/search-advanced.html.tmpl: Removed.
3266 * BugsSite/template/en/default/search/search-create-series.html.tmpl: Removed.
3267 * BugsSite/template/en/default/search/search-help.html.tmpl: Removed.
3268 * BugsSite/template/en/default/search/search-plugin.xml.tmpl: Removed.
3269 * BugsSite/template/en/default/search/search-report-graph.html.tmpl: Removed.
3270 * BugsSite/template/en/default/search/search-report-select.html.tmpl: Removed.
3271 * BugsSite/template/en/default/search/search-report-table.html.tmpl: Removed.
3272 * BugsSite/template/en/default/search/search-specific.html.tmpl: Removed.
3273 * BugsSite/template/en/default/search/tabs.html.tmpl: Removed.
3274 * BugsSite/template/en/default/setup: Removed.
3275 * BugsSite/template/en/default/setup/strings.txt.pl: Removed.
3276 * BugsSite/template/en/default/sidebar.xul.tmpl: Removed.
3277 * BugsSite/template/en/default/welcome-admin.html.tmpl: Removed.
3278 * BugsSite/template/en/default/whine: Removed.
3279 * BugsSite/template/en/default/whine/mail.html.tmpl: Removed.
3280 * BugsSite/template/en/default/whine/mail.txt.tmpl: Removed.
3281 * BugsSite/template/en/default/whine/multipart-mime.txt.tmpl: Removed.
3282 * BugsSite/template/en/default/whine/schedule.html.tmpl: Removed.
3283 * BugsSite/template/en/extension: Removed.
3284 * BugsSite/template/en/extension/filterexceptions.pl: Removed.
3285 * BugsSite/testagent.cgi: Removed.
3286 * BugsSite/testserver.pl: Removed.
3287 * BugsSite/token.cgi: Removed.
3288 * BugsSite/userprefs.cgi: Removed.
3289 * BugsSite/votes.cgi: Removed.
3290 * BugsSite/whine.pl: Removed.
3291 * BugsSite/whineatnews.pl: Removed.
3292 * BugsSite/xml.cgi: Removed.
3293 * BugsSite/xmlrpc.cgi: Removed.
3294 * PlanetWebKit: Removed.
3295 * PlanetWebKit/README: Removed.
3296 * PlanetWebKit/config.ini: Removed.
3297 * PlanetWebKit/planet: Removed.
3298 * PlanetWebKit/planet/AUTHORS: Removed.
3299 * PlanetWebKit/planet/INSTALL: Removed.
3300 * PlanetWebKit/planet/LICENCE: Removed.
3301 * PlanetWebKit/planet/NEWS: Removed.
3302 * PlanetWebKit/planet/PKG-INFO: Removed.
3303 * PlanetWebKit/planet/README: Removed.
3304 * PlanetWebKit/planet/THANKS: Removed.
3305 * PlanetWebKit/planet/TODO: Removed.
3306 * PlanetWebKit/planet/examples: Removed.
3307 * PlanetWebKit/planet/examples/atom.xml.tmpl: Removed.
3308 * PlanetWebKit/planet/examples/basic: Removed.
3309 * PlanetWebKit/planet/examples/basic/config.ini: Removed.
3310 * PlanetWebKit/planet/examples/basic/index.html.tmpl: Removed.
3311 * PlanetWebKit/planet/examples/fancy: Removed.
3312 * PlanetWebKit/planet/examples/fancy/config.ini: Removed.
3313 * PlanetWebKit/planet/examples/fancy/index.html.tmpl: Removed.
3314 * PlanetWebKit/planet/examples/foafroll.xml.tmpl: Removed.
3315 * PlanetWebKit/planet/examples/opml.xml.tmpl: Removed.
3316 * PlanetWebKit/planet/examples/output: Removed.
3317 * PlanetWebKit/planet/examples/output/images: Removed.
3318 * PlanetWebKit/planet/examples/output/images/edd.png: Removed.
3319 * PlanetWebKit/planet/examples/output/images/evolution.png: Removed.
3320 * PlanetWebKit/planet/examples/output/images/feed-icon-10x10.png: Removed.
3321 * PlanetWebKit/planet/examples/output/images/jdub.png: Removed.
3322 * PlanetWebKit/planet/examples/output/images/keybuk.png: Removed.
3323 * PlanetWebKit/planet/examples/output/images/logo.png: Removed.
3324 * PlanetWebKit/planet/examples/output/images/opml.png: Removed.
3325 * PlanetWebKit/planet/examples/output/images/planet.png: Removed.
3326 * PlanetWebKit/planet/examples/output/images/thom.png: Removed.
3327 * PlanetWebKit/planet/examples/output/planet.css: Removed.
3328 * PlanetWebKit/planet/examples/rss10.xml.tmpl: Removed.
3329 * PlanetWebKit/planet/examples/rss20.xml.tmpl: Removed.
3330 * PlanetWebKit/planet/planet: Removed.
3331 * PlanetWebKit/planet/planet-cache.py: Removed.
3332 * PlanetWebKit/planet/planet.py: Removed.
3333 * PlanetWebKit/planet/planet/__init__.py: Removed.
3334 * PlanetWebKit/planet/planet/atomstyler.py: Removed.
3335 * PlanetWebKit/planet/planet/cache.py: Removed.
3336 * PlanetWebKit/planet/planet/compat_logging: Removed.
3337 * PlanetWebKit/planet/planet/compat_logging/__init__.py: Removed.
3338 * PlanetWebKit/planet/planet/compat_logging/config.py: Removed.
3339 * PlanetWebKit/planet/planet/compat_logging/handlers.py: Removed.
3340 * PlanetWebKit/planet/planet/feedparser.py: Removed.
3341 * PlanetWebKit/planet/planet/htmltmpl.py: Removed.
3342 * PlanetWebKit/planet/planet/sanitize.py: Removed.
3343 * PlanetWebKit/planet/planet/tests: Removed.
3344 * PlanetWebKit/planet/planet/tests/__init__.py: Removed.
3345 * PlanetWebKit/planet/planet/tests/data: Removed.
3346 * PlanetWebKit/planet/planet/tests/data/simple.tmpl: Removed.
3347 * PlanetWebKit/planet/planet/tests/data/simple2.tmpl: Removed.
3348 * PlanetWebKit/planet/planet/tests/test_channel.py: Removed.
3349 * PlanetWebKit/planet/planet/tests/test_main.py: Removed.
3350 * PlanetWebKit/planet/planet/tests/test_sanitize.py: Removed.
3351 * PlanetWebKit/planet/planet/tests/test_sub.py: Removed.
3352 * PlanetWebKit/planet/planet/timeoutsocket.py: Removed.
3353 * PlanetWebKit/planet/runtests.py: Removed.
3354 * PlanetWebKit/planet/setup.py: Removed.
3355 * PlanetWebKit/templates: Removed.
3356 * PlanetWebKit/templates/atom.xml.tmpl: Removed.
3357 * PlanetWebKit/templates/foafroll.xml.tmpl: Removed.
3358 * PlanetWebKit/templates/index.html.tmpl: Removed.
3359 * PlanetWebKit/templates/opml.xml.tmpl: Removed.
3360 * PlanetWebKit/templates/rss10.xml.tmpl: Removed.
3361 * PlanetWebKit/templates/rss20.xml.tmpl: Removed.
3362 * PlanetWebKit/update.pl: Removed.
3363 * PlanetWebKit/wwwroot: Removed.
3364 * PlanetWebKit/wwwroot/ie.css: Removed.
3365 * PlanetWebKit/wwwroot/images: Removed.
3366 * PlanetWebKit/wwwroot/images/feed-icon-10x10.png: Removed.
3367 * PlanetWebKit/wwwroot/images/ie-nav-blue.png: Removed.
3368 * PlanetWebKit/wwwroot/images/planet-webkit.png: Removed.
3369 * PlanetWebKit/wwwroot/images/planet.png: Removed.
3370 * PlanetWebKit/wwwroot/planet.css: Removed.
3371 * PlanetWebKit/wwwroot/planetwebkit.css: Removed.
3373 * Sites/bugs.webkit.org: Copied from BugsSite.
3374 * Sites/planet.webkit.org: Copied from PlanetWebKit.
3375 * Sites/webkit.org: Copied from WebKitSite.
3376 * WebKitSite: Removed.
3377 * WebKitSite/.htaccess: Removed.
3378 * WebKitSite/asking_questions.html: Removed.
3379 * WebKitSite/blog: Removed.
3380 * WebKitSite/blog-files: Removed.
3381 * WebKitSite/blog-files/3d-transforms: Removed.
3382 * WebKitSite/blog-files/3d-transforms/image-flip.html: Removed.
3383 * WebKitSite/blog-files/3d-transforms/mighty-cubes.png: Removed.
3384 * WebKitSite/blog-files/3d-transforms/morphing-cubes.html: Removed.
3385 * WebKitSite/blog-files/3d-transforms/perspective-by-example.html: Removed.
3386 * WebKitSite/blog-files/3d-transforms/poster-circle.html: Removed.
3387 * WebKitSite/blog-files/3d-transforms/poster-circle.png: Removed.
3388 * WebKitSite/blog-files/3d-transforms/transform-style.html: Removed.
3389 * WebKitSite/blog-files/InspectElementMenu.png: Removed.
3390 * WebKitSite/blog-files/InspectorCSSEditing.png: Removed.
3391 * WebKitSite/blog-files/InspectorDatabaseBrowser.png: Removed.
3392 * WebKitSite/blog-files/InspectorFonts.png: Removed.
3393 * WebKitSite/blog-files/acid3-100.png: Removed.
3394 * WebKitSite/blog-files/acid3-full-rendering-pass.png: Removed.
3395 * WebKitSite/blog-files/acid3-rendering-reference.png: Removed.
3396 * WebKitSite/blog-files/acid3-screenshot.png: Removed.
3397 * WebKitSite/blog-files/acid3-timing-screenshot.png: Removed.
3398 * WebKitSite/blog-files/acid3-timing.png: Removed.
3399 * WebKitSite/blog-files/animation-demo.svg: Removed.
3400 * WebKitSite/blog-files/bounce.html: Removed.
3401 * WebKitSite/blog-files/bounce.png: Removed.
3402 * WebKitSite/blog-files/circle.svg: Removed.
3403 * WebKitSite/blog-files/cubes-7.svg: Removed.
3404 * WebKitSite/blog-files/gebcnspeedtest.html: Removed.
3405 * WebKitSite/blog-files/gebcnwebkitonly.png: Removed.
3406 * WebKitSite/blog-files/inspector: Removed.
3407 * WebKitSite/blog-files/inspector-closure-scope.png: Removed.
3408 * WebKitSite/blog-files/inspector-console-autocomplete.png: Removed.
3409 * WebKitSite/blog-files/inspector-databases-panel-query-view.png: Removed.
3410 * WebKitSite/blog-files/inspector-databases-panel.png: Removed.
3411 * WebKitSite/blog-files/inspector-disabling-properties.png: Removed.
3412 * WebKitSite/blog-files/inspector-elements-panel.png: Removed.
3413 * WebKitSite/blog-files/inspector-event-scope.png: Removed.
3414 * WebKitSite/blog-files/inspector-numeric-style-stepping.gif: Removed.
3415 * WebKitSite/blog-files/inspector-profiles-panel.png: Removed.
3416 * WebKitSite/blog-files/inspector-resources-panel.png: Removed.
3417 * WebKitSite/blog-files/inspector-scripts-panel.png: Removed.
3418 * WebKitSite/blog-files/inspector-searching-elements.png: Removed.
3419 * WebKitSite/blog-files/inspector-searching-profiles.png: Removed.
3420 * WebKitSite/blog-files/inspector-status-bar-with-errors.png: Removed.
3421 * WebKitSite/blog-files/inspector-toolbar.png: Removed.
3422 * WebKitSite/blog-files/inspector-with-scope.png: Removed.
3423 * WebKitSite/blog-files/inspector/audits_launcher.png: Removed.
3424 * WebKitSite/blog-files/inspector/audits_panel.png: Removed.
3425 * WebKitSite/blog-files/inspector/breakpoints.png: Removed.
3426 * WebKitSite/blog-files/inspector/colors.png: Removed.
3427 * WebKitSite/blog-files/inspector/console_panel.png: Removed.
3428 * WebKitSite/blog-files/inspector/context_menu.png: Removed.
3429 * WebKitSite/blog-files/inspector/cookies.png: Removed.
3430 * WebKitSite/blog-files/inspector/css_highlighted_line.png: Removed.
3431 * WebKitSite/blog-files/inspector/css_line_number_snippet.png: Removed.
3432 * WebKitSite/blog-files/inspector/css_line_numbers.png: Removed.
3433 * WebKitSite/blog-files/inspector/css_selectors.png: Removed.
3434 * WebKitSite/blog-files/inspector/css_syntax_highlight.png: Removed.
3435 * WebKitSite/blog-files/inspector/deactivate_breakpoints.png: Removed.
3436 * WebKitSite/blog-files/inspector/dom_storage.png: Removed.
3437 * WebKitSite/blog-files/inspector/edit_attributes.png: Removed.
3438 * WebKitSite/blog-files/inspector/enable.png: Removed.
3439 * WebKitSite/blog-files/inspector/evaluate_on_hover.png: Removed.
3440 * WebKitSite/blog-files/inspector/evaluate_on_hover_2.png: Removed.
3441 * WebKitSite/blog-files/inspector/event_listeners.png: Removed.
3442 * WebKitSite/blog-files/inspector/form_data.png: Removed.
3443 * WebKitSite/blog-files/inspector/inherited_styles.png: Removed.
3444 * WebKitSite/blog-files/inspector/inline_highlight.png: Removed.
3445 * WebKitSite/blog-files/inspector/inorder.png: Removed.
3446 * WebKitSite/blog-files/inspector/inspect_inspector.png: Removed.
3447 * WebKitSite/blog-files/inspector/inspect_inspector_small.png: Removed.
3448 * WebKitSite/blog-files/inspector/large_dom.png: Removed.
3449 * WebKitSite/blog-files/inspector/large_resources.png: Removed.
3450 * WebKitSite/blog-files/inspector/load_lines.png: Removed.
3451 * WebKitSite/blog-files/inspector/nodelist.png: Removed.
3452 * WebKitSite/blog-files/inspector/pseudo_elements.png: Removed.
3453 * WebKitSite/blog-files/inspector/redirect_headers.png: Removed.
3454 * WebKitSite/blog-files/inspector/redirect_headers_full.png: Removed.
3455 * WebKitSite/blog-files/inspector/redirects.png: Removed.
3456 * WebKitSite/blog-files/inspector/redirects_full.png: Removed.
3457 * WebKitSite/blog-files/inspector/scope_bar.png: Removed.
3458 * WebKitSite/blog-files/inspector/timeline_overview.png: Removed.
3459 * WebKitSite/blog-files/inspector/timeline_panel.png: Removed.
3460 * WebKitSite/blog-files/inspector/timeline_record_details.png: Removed.
3461 * WebKitSite/blog-files/inspector/watched_expression.png: Removed.
3462 * WebKitSite/blog-files/kate-circle.png: Removed.
3463 * WebKitSite/blog-files/kate-gradient-rounded.png: Removed.
3464 * WebKitSite/blog-files/kate-gradient.png: Removed.
3465 * WebKitSite/blog-files/kate-reflected.png: Removed.
3466 * WebKitSite/blog-files/kate-vignette-mask.png: Removed.
3467 * WebKitSite/blog-files/kate.png: Removed.
3468 * WebKitSite/blog-files/leaves: Removed.
3469 * WebKitSite/blog-files/leaves-screenshot-small.jpg: Removed.
3470 * WebKitSite/blog-files/leaves-screenshot.jpg: Removed.
3471 * WebKitSite/blog-files/leaves/images: Removed.
3472 * WebKitSite/blog-files/leaves/images/apple-touch-icon.png: Removed.
3473 * WebKitSite/blog-files/leaves/images/backgroundLeaves.jpg: Removed.
3474 * WebKitSite/blog-files/leaves/images/realLeaf1.png: Removed.
3475 * WebKitSite/blog-files/leaves/images/realLeaf2.png: Removed.
3476 * WebKitSite/blog-files/leaves/images/realLeaf3.png: Removed.
3477 * WebKitSite/blog-files/leaves/images/realLeaf4.png: Removed.
3478 * WebKitSite/blog-files/leaves/images/textBackground.png: Removed.
3479 * WebKitSite/blog-files/leaves/index.html: Removed.
3480 * WebKitSite/blog-files/leaves/leaves.css: Removed.
3481 * WebKitSite/blog-files/leaves/leaves.js: Removed.
3482 * WebKitSite/blog-files/load-unload-example.html: Removed.
3483 * WebKitSite/blog-files/loader-diagram.svg: Removed.
3484 * WebKitSite/blog-files/maskspeedracer.png: Removed.
3485 * WebKitSite/blog-files/number-morph.svg: Removed.
3486 * WebKitSite/blog-files/pageshow-pagehide-example.html: Removed.
3487 * WebKitSite/blog-files/prototype-for-gebcn-test.js: Removed.
3488 * WebKitSite/blog-files/pulse.html: Removed.
3489 * WebKitSite/blog-files/pulse.png: Removed.
3490 * WebKitSite/blog-files/riemann-screenshot.png: Removed.
3491 * WebKitSite/blog-files/scrollbarpicture.png: Removed.
3492 * WebKitSite/blog-files/sfx-perf.png: Removed.
3493 * WebKitSite/blog-files/squirrelfish-link-animated.svg: Removed.
3494 * WebKitSite/blog-files/squirrelfish-webkit-graph.png: Removed.
3495 * WebKitSite/blog-files/squirrelfish.png: Removed.
3496 * WebKitSite/blog-files/timeline-blocking-script.png: Removed.
3497 * WebKitSite/blog-files/timeline-defer-script.png: Removed.
3498 * WebKitSite/blog-files/touch-poster.png: Removed.
3499 * WebKitSite/blog-files/vignette-mask.png: Removed.
3500 * WebKitSite/blog-files/webgl: Removed.
3501 * WebKitSite/blog-files/webgl/Earth.html: Removed.
3502 * WebKitSite/blog-files/webgl/ManyPlanetsDeep.html: Removed.
3503 * WebKitSite/blog-files/webgl/SpinningBox.html: Removed.
3504 * WebKitSite/blog-files/webgl/SpiritBox.html: Removed.
3505 * WebKitSite/blog-files/webgl/TeapotPerPixel.html: Removed.
3506 * WebKitSite/blog-files/webgl/TeapotPerVertex.html: Removed.
3507 * WebKitSite/blog-files/webgl/WebGL+CSS.html: Removed.
3508 * WebKitSite/blog-files/webgl/resources: Removed.
3509 * WebKitSite/blog-files/webgl/resources/BambooBridge.jpg: Removed.
3510 * WebKitSite/blog-files/webgl/resources/EarthThumb.jpg: Removed.
3511 * WebKitSite/blog-files/webgl/resources/J3DI.js: Removed.
3512 * WebKitSite/blog-files/webgl/resources/J3DIMath.js: Removed.
3513 * WebKitSite/blog-files/webgl/resources/ManyPlanetsDeepThumb.jpg: Removed.
3514 * WebKitSite/blog-files/webgl/resources/SpinningBoxThumb.jpg: Removed.
3515 * WebKitSite/blog-files/webgl/resources/SpiritBox.jpg: Removed.
3516 * WebKitSite/blog-files/webgl/resources/TeapotPerPixelThumb.jpg: Removed.
3517 * WebKitSite/blog-files/webgl/resources/TeapotPerVertexThumb.jpg: Removed.
3518 * WebKitSite/blog-files/webgl/resources/WebGL+CSSThumb.jpg: Removed.
3519 * WebKitSite/blog-files/webgl/resources/blogpost.css: Removed.
3520 * WebKitSite/blog-files/webgl/resources/earthmap1k.jpg: Removed.
3521 * WebKitSite/blog-files/webgl/resources/mars500x250.png: Removed.
3522 * WebKitSite/blog-files/webgl/resources/spirit.jpg: Removed.
3523 * WebKitSite/blog-files/webgl/resources/teapot.obj: Removed.
3524 * WebKitSite/blog-files/wsj-nopreload.png: Removed.
3525 * WebKitSite/blog-files/wsj-preload.png: Removed.
3526 * WebKitSite/blog-files/wsj-vs.png: Removed.
3527 * WebKitSite/blog/.htaccess: Removed.
3528 * WebKitSite/blog/index.php: Removed.
3529 * WebKitSite/blog/license.txt: Removed.
3530 * WebKitSite/blog/wp-admin: Removed.
3531 * WebKitSite/blog/wp-admin/admin-ajax.php: Removed.
3532 * WebKitSite/blog/wp-admin/admin-footer.php: Removed.
3533 * WebKitSite/blog/wp-admin/admin-functions.php: Removed.
3534 * WebKitSite/blog/wp-admin/admin-header.php: Removed.
3535 * WebKitSite/blog/wp-admin/admin-post.php: Removed.
3536 * WebKitSite/blog/wp-admin/admin.php: Removed.
3537 * WebKitSite/blog/wp-admin/async-upload.php: Removed.
3538 * WebKitSite/blog/wp-admin/categories.php: Removed.
3539 * WebKitSite/blog/wp-admin/comment.php: Removed.
3540 * WebKitSite/blog/wp-admin/css: Removed.
3541 * WebKitSite/blog/wp-admin/css/colors-classic-rtl.css: Removed.
3542 * WebKitSite/blog/wp-admin/css/colors-classic.css: Removed.
3543 * WebKitSite/blog/wp-admin/css/colors-fresh-rtl.css: Removed.
3544 * WebKitSite/blog/wp-admin/css/colors-fresh.css: Removed.
3545 * WebKitSite/blog/wp-admin/css/dashboard-rtl.css: Removed.
3546 * WebKitSite/blog/wp-admin/css/dashboard.css: Removed.
3547 * WebKitSite/blog/wp-admin/css/farbtastic-rtl.css: Removed.
3548 * WebKitSite/blog/wp-admin/css/farbtastic.css: Removed.
3549 * WebKitSite/blog/wp-admin/css/global-rtl.css: Removed.
3550 * WebKitSite/blog/wp-admin/css/global.css: Removed.
3551 * WebKitSite/blog/wp-admin/css/ie-rtl.css: Removed.
3552 * WebKitSite/blog/wp-admin/css/ie.css: Removed.
3553 * WebKitSite/blog/wp-admin/css/install-rtl.css: Removed.
3554 * WebKitSite/blog/wp-admin/css/install.css: Removed.
3555 * WebKitSite/blog/wp-admin/css/login-rtl.css: Removed.
3556 * WebKitSite/blog/wp-admin/css/login.css: Removed.
3557 * WebKitSite/blog/wp-admin/css/media-rtl.css: Removed.
3558 * WebKitSite/blog/wp-admin/css/media.css: Removed.
3559 * WebKitSite/blog/wp-admin/css/plugin-install-rtl.css: Removed.
3560 * WebKitSite/blog/wp-admin/css/plugin-install.css: Removed.
3561 * WebKitSite/blog/wp-admin/css/press-this-rtl.css: Removed.
3562 * WebKitSite/blog/wp-admin/css/press-this.css: Removed.
3563 * WebKitSite/blog/wp-admin/css/theme-editor-rtl.css: Removed.
3564 * WebKitSite/blog/wp-admin/css/theme-editor.css: Removed.
3565 * WebKitSite/blog/wp-admin/css/theme-install.css: Removed.
3566 * WebKitSite/blog/wp-admin/css/widgets-rtl.css: Removed.
3567 * WebKitSite/blog/wp-admin/css/widgets.css: Removed.
3568 * WebKitSite/blog/wp-admin/custom-header.php: Removed.
3569 * WebKitSite/blog/wp-admin/edit-attachment-rows.php: Removed.
3570 * WebKitSite/blog/wp-admin/edit-category-form.php: Removed.
3571 * WebKitSite/blog/wp-admin/edit-comments.php: Removed.
3572 * WebKitSite/blog/wp-admin/edit-form-advanced.php: Removed.
3573 * WebKitSite/blog/wp-admin/edit-form-comment.php: Removed.
3574 * WebKitSite/blog/wp-admin/edit-link-categories.php: Removed.
3575 * WebKitSite/blog/wp-admin/edit-link-category-form.php: Removed.
3576 * WebKitSite/blog/wp-admin/edit-link-form.php: Removed.
3577 * WebKitSite/blog/wp-admin/edit-page-form.php: Removed.
3578 * WebKitSite/blog/wp-admin/edit-pages.php: Removed.
3579 * WebKitSite/blog/wp-admin/edit-post-rows.php: Removed.
3580 * WebKitSite/blog/wp-admin/edit-tag-form.php: Removed.
3581 * WebKitSite/blog/wp-admin/edit-tags.php: Removed.
3582 * WebKitSite/blog/wp-admin/edit.php: Removed.
3583 * WebKitSite/blog/wp-admin/export.php: Removed.
3584 * WebKitSite/blog/wp-admin/gears-manifest.php: Removed.
3585 * WebKitSite/blog/wp-admin/images: Removed.
3586 * WebKitSite/blog/wp-admin/images/align-center.png: Removed.
3587 * WebKitSite/blog/wp-admin/images/align-left.png: Removed.
3588 * WebKitSite/blog/wp-admin/images/align-none.png: Removed.
3589 * WebKitSite/blog/wp-admin/images/align-right.png: Removed.
3590 * WebKitSite/blog/wp-admin/images/archive-link.png: Removed.
3591 * WebKitSite/blog/wp-admin/images/blue-grad.png: Removed.
3592 * WebKitSite/blog/wp-admin/images/browse-happy.gif: Removed.
3593 * WebKitSite/blog/wp-admin/images/bubble_bg-rtl.gif: Removed.
3594 * WebKitSite/blog/wp-admin/images/bubble_bg.gif: Removed.
3595 * WebKitSite/blog/wp-admin/images/button-grad-active-vs.png: Removed.
3596 * WebKitSite/blog/wp-admin/images/button-grad-active.png: Removed.
3597 * WebKitSite/blog/wp-admin/images/button-grad-vs.png: Removed.
3598 * WebKitSite/blog/wp-admin/images/button-grad.png: Removed.
3599 * WebKitSite/blog/wp-admin/images/comment-grey-bubble.png: Removed.
3600 * WebKitSite/blog/wp-admin/images/date-button.gif: Removed.
3601 * WebKitSite/blog/wp-admin/images/ed-bg-vs.gif: Removed.
3602 * WebKitSite/blog/wp-admin/images/ed-bg.gif: Removed.
3603 * WebKitSite/blog/wp-admin/images/fade-butt.png: Removed.
3604 * WebKitSite/blog/wp-admin/images/fav-arrow-rtl.gif: Removed.
3605 * WebKitSite/blog/wp-admin/images/fav-arrow-vs.gif: Removed.
3606 * WebKitSite/blog/wp-admin/images/fav-arrow.gif: Removed.
3607 * WebKitSite/blog/wp-admin/images/fav-top-vs.gif: Removed.
3608 * WebKitSite/blog/wp-admin/images/fav-top.png: Removed.
3609 * WebKitSite/blog/wp-admin/images/fav-vs.png: Removed.
3610 * WebKitSite/blog/wp-admin/images/fav.png: Removed.
3611 * WebKitSite/blog/wp-admin/images/generic.png: Removed.
3612 * WebKitSite/blog/wp-admin/images/gray-grad.png: Removed.
3613 * WebKitSite/blog/wp-admin/images/icons32-vs.png: Removed.
3614 * WebKitSite/blog/wp-admin/images/icons32.png: Removed.
3615 * WebKitSite/blog/wp-admin/images/list-vs.png: Removed.
3616 * WebKitSite/blog/wp-admin/images/list.png: Removed.
3617 * WebKitSite/blog/wp-admin/images/loading-publish.gif: Removed.
3618 * WebKitSite/blog/wp-admin/images/loading.gif: Removed.
3619 * WebKitSite/blog/wp-admin/images/logo-ghost.png: Removed.
3620 * WebKitSite/blog/wp-admin/images/logo-login.gif: Removed.
3621 * WebKitSite/blog/wp-admin/images/logo.gif: Removed.
3622 * WebKitSite/blog/wp-admin/images/marker.png: Removed.
3623 * WebKitSite/blog/wp-admin/images/mask.png: Removed.
3624 * WebKitSite/blog/wp-admin/images/media-button-image.gif: Removed.
3625 * WebKitSite/blog/wp-admin/images/media-button-music.gif: Removed.
3626 * WebKitSite/blog/wp-admin/images/media-button-other.gif: Removed.
3627 * WebKitSite/blog/wp-admin/images/media-button-video.gif: Removed.
3628 * WebKitSite/blog/wp-admin/images/menu-arrows.gif: Removed.
3629 * WebKitSite/blog/wp-admin/images/menu-bits-rtl-vs.gif: Removed.
3630 * WebKitSite/blog/wp-admin/images/menu-bits-rtl.gif: Removed.
3631 * WebKitSite/blog/wp-admin/images/menu-bits-vs.gif: Removed.
3632 * WebKitSite/blog/wp-admin/images/menu-bits.gif: Removed.
3633 * WebKitSite/blog/wp-admin/images/menu-dark-rtl.gif: Removed.
3634 * WebKitSite/blog/wp-admin/images/menu-dark.gif: Removed.
3635 * WebKitSite/blog/wp-admin/images/menu-vs.png: Removed.
3636 * WebKitSite/blog/wp-admin/images/menu.png: Removed.
3637 * WebKitSite/blog/wp-admin/images/no.png: Removed.
3638 * WebKitSite/blog/wp-admin/images/required.gif: Removed.
3639 * WebKitSite/blog/wp-admin/images/resize.gif: Removed.
3640 * WebKitSite/blog/wp-admin/images/screen-options-left.gif: Removed.
3641 * WebKitSite/blog/wp-admin/images/screen-options-right-up.gif: Removed.
3642 * WebKitSite/blog/wp-admin/images/screen-options-right.gif: Removed.