-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog
5745 lines (3762 loc) · 202 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2010-05-05 Alejandro G. Castro <[email protected]>
Reviewed by Xan Lopez.
Fixed the gobject introspection compilation with the new DOM
bindings, we needed to add DOM objects.
* GNUmakefile.am:
2010-05-04 Laszlo Gombos <[email protected]>
Unreviewed, build fix for Symbian.
[Symbian] Symbian builds does not support shadow builds
Revision r54715 broke the Symbian build. For Symbian
the include directory is generated in the root of the source tree.
This patch sets the INCLUDEPATH accordingly for Symbian.
* WebKit.pri:
2010-05-03 Adam Barth <[email protected]>
Reviewed by Dimitri Glazkov.
Add some more Chromium-specific files to gitignore
https://bugs.webkit.org/show_bug.cgi?id=38469
These files are generated as part of the update-webkit --chromium
script.
* .gitignore:
2010-05-02 Geoff Levand <[email protected]>
Reviewed by Eric Seidel.
[GTK] Fix out of source build failure
https://bugs.webkit.org/show_bug.cgi?id=38051
Add a preprocessor include path for generated GTK header files.
Fixes build errors like these when building GTK out of source:
webkit.h: error: webkit/webkitversion.h: No such file or directory
* GNUmakefile.am:
2010-05-02 Kartikaya Gupta <[email protected]>
Reviewed by George Staikos.
When running the IDL file through the preprocessor, wait for the preprocessor subcommand to fully terminate before continuing. Without this, if multiple IDL files are parsed in a tight loop, the code dies after 64 IDL files because it exhausts the available system resources.
https://bugs.webkit.org/show_bug.cgi?id=37888
No new tests. None needed.
* bindings/scripts/IDLParser.pm:
2010-04-29 Xan Lopez <[email protected]>
Reviewed by Gustavo Noronha.
[GTK] GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=33590
Add WebKitDOMDocument tests to the build.
* GNUmakefile.am:
2010-04-28 Sam Weinig <[email protected]>
Reviewed by Mark Rowe.
Add WebKit2 to the lists of modules to build.
* Makefile:
2010-04-21 Xan Lopez <[email protected]>
Reviewed by Adam Barth.
[GTK] GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=33590
Add build bits for the GObject DOM bindings.
* GNUmakefile.am:
2010-04-20 Xan Lopez <[email protected]>
Build fix?
* autotools/webkit.m4:
2010-04-19 Diego Escalante Urrelo <[email protected]>
Reviewed by Xan Lopez.
[Gtk] Evaluate and create tests for all the AtkRole's implemented by
WebKitGtk
https://bugs.webkit.org/show_bug.cgi?id=34449
Add and enable the build of testatkroles to test ATK non form roles.
* GNUmakefile.am:
2010-04-18 Michael Forney <[email protected]>
Reviewed by Laszlo Gombos.
https://bugs.webkit.org/show_bug.cgi?id=37762
Fixes the sandbox option in configure.
* configure.ac: Fix cut and paste error in the sandbox option causing
--{enable,disable}-sandbox to be ineffective, and it to be controlled
by the ruby flag.
2010-04-09 Simon Hausmann <[email protected]>
Unreviewed crash fix.
Revert part of 57320 that would remove NDEBUG in release builds for
DRT, etc.
* WebKit.pri:
2010-04-09 Jocelyn Turcotte <[email protected]>
Reviewed by Simon Hausmann.
[Qt] Fix crashes with package builds in release
* WebKit.pri: Don't randomly add NDEBUG to the defines.
2010-04-07 Laszlo Gombos <[email protected]>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Fix trunk (non-standalone) builds for Symbian
https://bugs.webkit.org/show_bug.cgi?id=37136
Test for source files before building instead of relying on
standalone_package config.
* WebKit.pro:
2010-04-01 Kinuko Yasuda <[email protected]>
Reviewed by Dmitry Titov.
Add FileThread for async file operation support in FileReader and FileWriter
https://bugs.webkit.org/show_bug.cgi?id=36896
Add EANBEL_FILE_READER and ENABLE_FILE_WRITER flags.
* configure.ac:
2010-04-01 Ojan Vafai <[email protected]>
Reviewed by Adam Barth.
autoinstalled should be git ignored
https://bugs.webkit.org/show_bug.cgi?id=36970
* .gitignore:
2010-04-01 Laszlo Gombos <[email protected]>
Reviewed by Kenneth Rohde Christiansen.
[Qt]Add -Wextra warning level to the QtWebKit build
https://bugs.webkit.org/show_bug.cgi?id=36971
* WebKit.pri:
2010-04-01 Gustavo Noronha Silva <[email protected]>
Reviewed by Holger Freyther.
[GTK] webkit_get_default_session() should make sure webkit_init() is called
https://bugs.webkit.org/show_bug.cgi?id=36754
New API test.
* GNUmakefile.am:
2010-03-26 Jocelyn Turcotte <[email protected]>
Reviewed by Simon Hausmann.
[Qt] Build JavaScriptCore as a static library.
https://bugs.webkit.org/show_bug.cgi?id=36590
This patch takes what was left of the unused JavaScriptCore.pro
and moved the compilation logic from JavaScriptCore.pri to
JavaScriptCore.pro.
* WebKit.pro:
2010-03-16 Xan Lopez <[email protected]>
Rubber-stamped by Gustavo Noronha.
Update library version for 1.1.90 release.
* configure.ac:
2010-03-16 Xan Lopez <[email protected]>
Reviewed by Gustavo Noronha.
Bump version for 1.1.90 release.
* configure.ac:
2010-03-16 Xan Lopez <[email protected]>
Reviewed by Gustavo Noronha.
Add support for Fast Mobile Scrolling in the build system.
* configure.ac:
2010-03-16 Simon Hausmann <[email protected]>
Add WebKitTools/TestResultServer/index.yaml to gitattributes to ignore for crlf conversion.
* .gitattributes:
2010-03-12 Scott Byer <[email protected]>
Reviewed by David Levin.
Popup font size needs to be exposed to clients.
https://bugs.webkit.org/show_bug.cgi?id=35990
Add function to expose the popup menu font size, add a field to
WebPopupMenuInfo that receives that information to convey that to
the web view client's createPopupMenu() call.
* WebCore/platform/chromium/PopupMenuChromium.cpp:
* WebCore/platform/chromium/PopupMenuChromium.h:
* WebKit/chromium/public/WebPopupMenuInfo.h:
* WebKit/chromium/src/ChromeClientImpl.cpp:
2010-03-11 Adam Roben <[email protected]>
Teach git about ObjC files
Fixes <http://webkit.org/b/36015>.
Reviewed by Tim Hatcher.
* .gitattributes: Set the diff attribute for .m and .mm files, and .h
files in Mac-specific directories. This can be used to generate
more-readable diffs of ObjC files.
2010-03-09 Gustavo Noronha Silva <[email protected]>
Unreviewed. Versioning for 1.1.23.
* configure.ac:
2010-03-09 Gustavo Noronha Silva <[email protected]>
Unreviewed distcheck fix.
* GNUmakefile.am:
2010-03-08 Jian Li <[email protected]>
Reviewed by Dmitry Titov.
Blob.slice support.
https://bugs.webkit.org/show_bug.cgi?id=32993
Add ENABLE_BLOB_SLICE feature define.
* configure.ac:
2010-03-04 Fridrich Strba <[email protected]>
Reviewed by Holger Freyther.
https://bugs.webkit.org/show_bug.cgi?id=35726
Remove orphaned #ifdef WTF_USE_GLIB_ICU_UNICODE_HYBRID
Removing orphaned #if USE.
* GNUmakefile.am:
2010-03-04 Jocelyn Turcotte <[email protected]>
Reviewed by Tor Arne Vestbø.
[Qt] Make the OUTPUT_DIR variable in qmake projects independent of build-webkit's logic.
This also allows shadow builds relying only on qmake to work properly.
* WebKit.pri:
2010-03-03 Fridrich Strba <[email protected]>
Reviewed by Xan Lopez.
Miscellaneous little fixes for the windows build of webkit-gtk
https://bugs.webkit.org/show_bug.cgi?id=35640
* GNUmakefile.am: On Windows with GCC, presence of
__declspec(dllexport) on some symbols disables the autoexport/autoimport
feature for all others. Using regex here assures that all symbols that
need to be exported in the dll are actually exported.
2010-03-02 Arno Renevier <[email protected]>
Reviewed by Gustavo Noronha Silva.
[Gtk] implements ChromeClient::requestGeolocationPermissionForFrame
https://bugs.webkit.org/show_bug.cgi?id=35210
* GNUmakefile.am:
2010-03-02 Dmitry Titov <[email protected]>
Reviewed by Alexey Proskuryakov.
Ignore compiled Java test cases in .gitignore.
https://bugs.webkit.org/show_bug.cgi?id=35559
* .gitignore:
2010-02-26 Arno Renevier <[email protected]>
Reviewed by Gustavo Noronha Silva.
[Gtk] ignore WebKit/gtk/docs/GNUmakefile.in in .gitignore
https://bugs.webkit.org/show_bug.cgi?id=35424
* .gitignore:
2010-02-24 Sam Kerner <[email protected]>
Reviewed by Darin Fisher.
Expose WebFrame::setCanHaveScrollbars(). This allows a view
which is being resized to not need scroll bars to ensure that
they are not drawn.
Existing function setAllowsScrolling() was renamed
setCanHaveScrollbars(), to be consistant with change 37159:
http://trac.webkit.org/changeset/37159
https://bugs.webkit.org/show_bug.cgi?id=35257
* WebKit/chromium/public/WebFrame.h:
* WebKit/chromium/src/ChromeClientImpl.cpp:
* WebKit/chromium/src/WebFrameImpl.cpp:
* WebKit/chromium/src/WebFrameImpl.h:
2010-02-19 Jesus Sanchez-Palencia <[email protected]>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Remove QGVLauncher
https://bugs.webkit.org/show_bug.cgi?id=35292
* WebKit.pro:
2010-02-24 Xan Lopez <[email protected]>
Reviewed by Gustavo Noronha.
Enable SharedWorkers by default, since that's been the default for
a long time in our build-webkit configuration.
* configure.ac:
2010-02-23 James Choi <[email protected]>
Add Solaris definitions
https://bugs.webkit.org/show_bug.cgi?id=35214
* WebKit/chromium/src/WebViewImpl.cpp
* WebKit/chromium/src/WebFrameImpl.cpp
2010-02-23 Arno Renevier <[email protected]>
Reviewed by Gustavo Noronha Silva.
[Gtk]: testwebview does not work when called with absolute path
https://bugs.webkit.org/show_bug.cgi?id=34940
When testwebview is called as absolute path, chdir to executable
directory before searching resource files.
* GNUmakefile.am:
2010-02-23 Leandro Pereira <[email protected]>
Reviewed by Gustavo Noronha Silva.
Changes references of GOwnPtr to reflect their new place.
http://webkit.org/b/35084
* JavaScriptCore/JavaScriptCore.gypi:
* JavaScriptCore/wtf/Threading.h:
* JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h:
2010-02-23 Leandro Pereira <[email protected]>
Reviewed by Gustavo Noronha Silva.
Fixes references to GOwnPtr and GRefPtr so the GTK+ port builds
again.
http://webkit.org/b/35084
* GNUmakefile.am:
2010-02-23 Diego Escalante Urrelo <[email protected]>
Reviewed by Eric Seidel.
[gtk] missing libsoup-2.4 package in gir generation
https://bugs.webkit.org/show_bug.cgi?id=35199
Include libsoup-2.4 package in gobject introspection .gir generation.
* GNUmakefile.am:
2010-02-22 Huahui Wu <[email protected]>
Reviewed by Eric Seidel.
Add code that enables SquirrelFish Extreme (a.k.a JSCX, JSC JIT)
in Android. It's disabled by default, but is enabled when the
enveronment variable ENABLE_JSC_JIT is set to true.
https://bugs.webkit.org/show_bug.cgi?id=34855
* Android.mk:
2010-02-22 Xan Lopez <[email protected]>
Reviewed by Gustavo Noronha.
Bump library versioning for 1.1.22 release.
* configure.ac:
2010-02-22 Laszlo Gombos <[email protected]>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Add support for layout tests on Symbian
https://bugs.webkit.org/show_bug.cgi?id=31589
* WebKit.pro:
2010-02-20 Noam Rosenthal <[email protected]>
Reviewed by Laszlo Gombos.
[Qt] ENABLE_3D_RENDERING should be optional
https://bugs.webkit.org/show_bug.cgi?id=35100
* WebKit.pri: ENABLE_3D_RENDERING moved to a proper feature test
2010-02-19 Maciej Stachowiak <[email protected]>
Reviewed by David Levin.
Add an ENABLE flag for sandboxed iframes to make it possible to disable it in releases
https://bugs.webkit.org/show_bug.cgi?id=35147
* configure.ac:
2010-02-18 Tor Arne Vestbø <[email protected]>
Reviewed by Eric Seidel.
Add .gitattributes file for custom ChangeLog merge-driver
* .gitattributes: Added.
2010-02-17 Noam Rosenthal <[email protected]>
Reviewed by Ariya Hidayat.
[Qt] GraphicsLayer: support perspective and 3D transforms
https://bugs.webkit.org/show_bug.cgi?id=34960
* WebKit.pri: added appropriate define: ENABLED_3D_RENDERING
2010-02-15 Philippe Normand <[email protected]>
Reviewed by Gustavo Noronha Silva.
[GStreamer] Should handle BUFFERING messages
https://bugs.webkit.org/show_bug.cgi?id=30004
* configure.ac: Bump gstreamer -core/-plugins-base requirements to
0.10.25 which is the minimum required version for on-disk buffering.
2010-02-16 Xan Lopez <[email protected]>
Reviewed by Gustavo Noronha.
Bump version to 1.1.22 so we can depend on it in applications.
* configure.ac:
2010-02-12 Simon Hausmann <[email protected]>
Reviewed by Holger Freyther.
Removed WMLInputElement.* from .gitattributes as the file is
now CRLF clean.
* .gitattributes:
2010-02-10 Jocelyn Turcotte <[email protected]>
Reviewed by Tor Arne Vestbø.
[Qt] Make qtlauncher and qgvlauncher use the generated headers
path to make sure they are correctly generated.
* WebKit.pri:
2010-02-10 Jocelyn Turcotte <[email protected]>
Reviewed by Tor Arne Vestbø.
[Qt] Manually add support for the install target on Symbian.
This is required to copy the headers over the ones in Qt.
* WebKit.pro:
2010-02-11 Fridrich Strba <[email protected]>
Reviewed by Gustavo Noronha Silva.
Detect properly different versions of libpng out there.
* configure.ac:
2010-02-11 Xan Lopez <[email protected]>
Try to fix GTK+ build.
* configure.ac:
2010-02-11 Antonio Gomes <[email protected]>
Reviewed by Xan Lopez.
Adjust gstreamer-plugins-base minimum version check (from 0.10 to 0.10.23).
* configure.ac:
2010-02-08 Maciej Stachowiak <[email protected]>
Reviewed by Cameron Zwarich.
Restore ENABLE_RUBY flag so vendors can ship with Ruby disabled if they choose.
https://bugs.webkit.org/show_bug.cgi?id=34698
* configure.ac:
2010-02-08 Gustavo Noronha Silva <[email protected]>
Reviewed by Xan Lopez.
Bump version to 1.1.21, and adjust library versioning accordingly.
* configure.ac:
2010-02-05 Sebastian Dröge <[email protected]>
Reviewed by Gustavo Noronha.
Add gstreamer-app-0.10 to configure.ac
https://bugs.webkit.org/show_bug.cgi?id=34317
* configure.ac:
2010-02-05 Simon Hausmann <[email protected]>
Reviewed by Tor Arne Vestbø.
Add .gitattributes file to tell git about files with Windows linefeeds
https://bugs.webkit.org/show_bug.cgi?id=34645
On Windows git defaults to "true" for core.autocrlf, meaning all text
files in the working directory are converted from CRLF to LF on checkin
time. Some files present in the repository have been checked in with
CRLF linefeeds and git should not try to convert them. The added
.gitattributes file tells git to not do any CRLF conversion.
* .gitattributes: Added.
2010-02-05 Tor Arne Vestbø <[email protected]>
Reviewed by Simon Hausmann.
[Qt] Generate convenience headers (QWebView, etc) using qmake
In Qt this is done using syncqt, but we use a pro-file instead
that generates makefile-rules for each of the extra headers.
These extra headers are installed alongside the normal headers.
* DerivedSources.pro: Include API-DerivedSources
2010-02-04 Tor Arne Vestbø <[email protected]>
Reviewed by Lars Knoll.
[Qt] Make 'make -f Makefile.DerivedSources qmake' work
Previously this target ended up generating a file named
Makefile.DerivedSources.DerivedSources, and so on.
* DerivedSources.pro:
2010-02-04 Christian Dywan <[email protected]>
Reviewed by Xan Lopez.
Require either libsoup 2.28.2 or 2.29.90.
* configure.ac:
2010-02-04 Xan Lopez <[email protected]>
Reviewed by Gustavo Noronha.
Bump minimum libsoup requirement to 2.29.90
* configure.ac:
2010-02-02 Gustavo Noronha Silva <[email protected]>
Reviewed by Xan Lopez.
Bump version, and adjust library versioning for 1.1.20.
* configure.ac:
2010-01-29 Jeremy Orlow <[email protected]>
Reviewed by Dimitri Glazkov.
A first step towards the Indexed Database API
https://bugs.webkit.org/show_bug.cgi?id=34342
Add Indexed Database API
* configure.ac:
2010-01-27 Simon Hausmann <[email protected]>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Don't build the tests in packages, only the launcher(s)
* WebKit.pro:
2010-01-27 Jocelyn Turcotte <[email protected]>
Reviewed by Tor Arne Vestbø.
[Qt] Add the "d" suffix to QtWebKit's dll on Windows.
* WebKit.pri:
2010-01-27 Jocelyn Turcotte <[email protected]>
Unreviewed build fix
[Qt] Build fix for windows when QTDIR contains release libraries.
* WebKit.pri: Use the <name>.lib syntax for linking instead of qmake's -l<name> emulation
2010-01-26 Jedrzej Nowacki <[email protected]>
Reviewed by Simon Hausmann.
First steps of the QtScript API.
Two new classes were created; QScriptEngine and QScriptValue.
The first should encapsulate a javascript context and the second a script
value.
This API is still in development, so it isn't compiled by default.
To trigger compilation, pass --qmakearg="CONFIG+=build-qtscript" to
build-webkit.
https://bugs.webkit.org/show_bug.cgi?id=32565
* WebKit.pro:
2010-01-25 Simon Hausmann <[email protected]>
Reviewed by Laszlo Gombos.
[Qt] Fix the build on Maemo5.
https://bugs.webkit.org/show_bug.cgi?id=34051
* WebKit.pri: Disable the use of uitools, just like it's done for Symbian.
2010-01-21 No'am Rosenthal <[email protected]>
Reviewed by Antti Koivisto.
[Qt] Implement GraphicsLayer for accelerated layer compositing
https://bugs.webkit.org/show_bug.cgi?id=33514
* WebKit.pri: Addded compile flags to enable accelerated compositing
on versions higher than 4.5
2010-01-20 Tor Arne Vestbø <[email protected]>
Reviewed by Simon Hausmann.
[Qt] Make DumpRenderTree build on Windows
* WebKit.pro:
2010-01-20 Jocelyn Turcotte <[email protected]>
Reviewed by Simon Hausmann.
[Qt] Fix the recursive generated_files target to work with qmake -r -o
* DerivedSources.pro:
2010-01-20 Simon Hausmann <[email protected]>
Reviewed by Tor Arne Vestbø.
[Qt] Make it possible (on *nix at least) to recursively call "make generated_files"
* DerivedSources.pro:
2010-01-19 Gustavo Noronha Silva <[email protected]>
Unreviewed. Shared library versioning update for 1.1.19.
* configure.ac:
2010-01-15 Gustavo Noronha Silva <[email protected]>
Rubber-stamped by Xan Lopez.
Bump version to 1.1.19.
* configure.ac:
2010-01-14 Csaba Osztrogonác <[email protected]>
Reviewed by Eric Seidel.
[Qt] Defective dependencies caused build failing on QtBuildBot.
https://bugs.webkit.org/show_bug.cgi?id=33693
* WebKit.pri: CONFIG += depend_includepath added.
2010-01-14 Steve Block <[email protected]>
Reviewed by David Levin.
Moves general includes before bindings includes in Android build system.
https://bugs.webkit.org/show_bug.cgi?id=33623
This avoids problems with collisions between WebCore/platform/text/StringBuilder.h
and the new JavaScriptCore/runtime/StringBuilder.h. This change puts
JavaScriptCore/runtime and other bindings includes after the WebCore and other
general includes, so that the WebCore StringBuilder.h is picked up when building
WebCore.
* Android.mk: Modified.
2010-01-13 Jocelyn Turcotte <[email protected]>
Reviewed by Simon Hausmann.
[Qt] Split the build process in two different .pro files.
This allows qmake to be run once all source files are available.
* DerivedSources.pro: Added.
* WebKit.pri:
2010-01-07 Daniel Bates <[email protected]>
Reviewed by Eric Seidel.
https://bugs.webkit.org/show_bug.cgi?id=32987
Added ENABLE_XHTMLMP flag. Disabled by default.
* configure.ac:
2010-01-05 Gustavo Noronha Silva <[email protected]>
Reviewed by Xan Lopez.
Based on idea and original patch by Evan Martin.
Remove libWebCore intermediate library, to improve link time.
[GTK] Build time must be reduced
https://bugs.webkit.org/show_bug.cgi?id=32921
* GNUmakefile.am:
2010-01-05 Xan Lopez <[email protected]>
Bump for 1.1.18 release.
* configure.ac:
2010-01-04 Gustavo Noronha Silva <[email protected]>
Fix JSCore-1.0.gir path to fix make distcheck.
* GNUmakefile.am:
2010-01-04 Simon Hausmann <[email protected]>
Reviewed by Tor Arne Vestbø.
[Qt] Fix standalone package builds.
* WebKit.pri: Add logic for detecting standalone builds. Set OUTPUT_DIR to the top-level dir in that case.
* WebKit.pro: Don't build JSC and DRT for package builds.
2010-01-04 Eric Seidel <[email protected]>
Reviewed by Adam Barth.
bugzilla-tool should not require users to install mechanize
https://bugs.webkit.org/show_bug.cgi?id=32635
* .gitignore: Ignore autoinstall.cache.d directory created by autoinstall.py
2009-12-28 Estêvão Samuel Procópio <[email protected]>
Reviewed by Gustavo Noronha Silva.
Bug 32940: [GTK] Changing the download throttle conditions.
https://bugs.webkit.org/show_bug.cgi?id=32716
The WebKitDownload progress notification was taking long to
update. This fix makes notification happens each 0.7 secs
or when the progress ups in 1%.
* WebKit/gtk/webkit/webkitdownload.cpp:
2009-12-22 Simon Hausmann <[email protected]>
Rubber-stamped by Holger Freyther.
Adjusted path to QtLauncher.
* WebKit.pro:
2009-12-19 Evan Martin <[email protected]>
Reviewed by Gustavo Noronha Silva.
Add a couple of WebKitGtk files to .gitignore.
* .gitignore:
2009-12-18 Benjamin Otte <[email protected]>
Reviewed by Xan Lopez.
[GTK] RemoveDashboard support. It's useless.
* configure.ac:
2009-12-18 Simon Hausmann <[email protected]>
Reviewed by Tor Arne Vestbø.
[Qt] Clean up the qmake build system to distinguish between trunk builds and package builds
https://bugs.webkit.org/show_bug.cgi?id=32716
* WebKit.pri: Use standalone_package instead of QTDIR_build
2009-12-17 Gustavo Noronha Silva <[email protected]>
Unreviewed. Build fixes for make distcheck.
* GNUmakefile.am:
2009-12-16 Dan Winship <[email protected]>
Reviewed by Gustavo Noronha Silva.
[Gtk] Content-Encoding support
https://bugs.webkit.org/show_bug.cgi?id=522772
* configure.ac: require libsoup 2.28.2 for SoupContentDecoder
2009-12-13 Eric Seidel <[email protected]>
Reviewed by Gavin Barraclough.
string-base64 test does not compute a valid base64 string
http://bugs.webkit.org/show_bug.cgi?id=16806
* tests/string-base64.js: change str[i] to str.charCodeAt(i)
2009-12-10 Gustavo Noronha Silva <[email protected]>
Reviewed by Xan Lopez.
[GTK] Should provide an API to control the IconDatabase
https://bugs.webkit.org/show_bug.cgi?id=32334
Add test to make sure favicon reporting works.
* GNUmakefile.am:
2009-12-09 Steve Block <[email protected]>
Reviewed by Adam Barth.
Adds Android Makefiles for building with V8.
https://bugs.webkit.org/show_bug.cgi?id=32278
* Android.mk: Modified. Includes Makefiles for V8.
2009-12-08 Steve Block <[email protected]>
Reviewed by Adam Barth.
[Android] Adds Makefiles for Android port.
https://bugs.webkit.org/show_bug.cgi?id=31325
* Android.mk: Added.
2009-12-08 Christian Dywan <[email protected]>
Reviewed by Xan Lopez.
* configure.ac: Require only libSoup 2.27.91 but check for 2.29.3
and define HAVE_LIBSOUP_2_29_3 in that case.
2009-12-08 Gustavo Noronha Silva <[email protected]>
Rubber-stamped by Xan Lopez.
Late post-release version bump.
* configure.ac:
2009-12-08 Dominik Röttsches <[email protected]>
Reviewed by Gustavo Noronha Silva.
[Gtk] Create a TextBreakIterator implementation based on GLib (without ICU)
https://bugs.webkit.org/show_bug.cgi?id=31469
Removing hybrid configuration for --with-unicode-backend=glib
ICU not required anymore.
* autotools/webkit.m4:
2009-12-08 Nikolas Zimmermann <[email protected]>
Rubber-stamped by Maciej Stachowiak.
Turn on (SVG) Filters for Gtk.
https://bugs.webkit.org/show_bug.cgi?id=32224
* configure.ac:
2009-12-07 Dmitry Titov <[email protected]>
Rubber-stamped by Darin Adler.
Remove ENABLE_SHARED_SCRIPT flags
https://bugs.webkit.org/show_bug.cgi?id=32245
This patch was obtained by "git revert" command and then un-reverting of ChangeLog files.
* configure.ac:
2009-12-06 Gustavo Noronha Silva <[email protected]>
Reviewed by Xan Lopez.