-
Notifications
You must be signed in to change notification settings - Fork 8
/
ChangeLog
3944 lines (2573 loc) · 121 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
2013-10-07 Shiki Okasaka <[email protected]>
* Makefile.am (BUILT_SOURCES) : Remove parser.cc
2013-10-04 Shiki Okasaka <[email protected]>
Drop jsapi and v8api demo
Please see the Escudo web browser for how to use the generated code with SpiderMonkey and V8;
cf. https://github.com/esrille/escudo
2013-10-04 Shiki Okasaka <[email protected]>
* debian/control (Build-Depends) : Add automake
2013-10-03 Shiki Okasaka <[email protected]>
* (MessengerMeta) : Refine
2013-10-03 Shiki Okasaka <[email protected]>
Switch over to shared_ptr based Any implementation
* include/messengerDispatch.h (MessengerDispatch) : Support Object based Sequence implementation
* include/messengerMeta.h (MessengerMeta) : Fix not to use Object* directly
* src/messenger.cpp (MessengerInterface) : Fix not to use Object* directly
2013-09-27 Shiki Okasaka <[email protected]>
* (version) : Show version in help2man style
2013-09-26 Shiki Okasaka <[email protected]>
* src/driver.cpp (main) : Do not enable -fmultipleinheritance option when generating C++11 messengers
2013-09-26 Shiki Okasaka <[email protected]>
Generate the man page of esidl
* configure.ac : Check help2man
* Makefile.am (man1_MANS) : Add esidl.1 which is generated by help2man
* esidl.spec.in (%files) : Add %{_mandir}/man1/esidl.1.gz
* esidl.spec.in (BuildRequires) : Add help2man
* debian/control (Build-Depends) : Add help2man
2013-09-26 Shiki Okasaka <[email protected]>
Support --help option
* include/esidl.h : Add the declaration for help()
* src/driver.cpp (main) : Support --help option
* src/help.cpp (help) : Show help in help2man style
* Makefile.am (esidl_SOURCES) : Add src/help.cpp
2013-09-24 Shiki Okasaka <[email protected]>
Remove support for NPAPI
* Makefile.am, configure.ac : Refine
* src/driver.cpp : Drop -cplusplus and -cplusplus-src command line options.
2013-09-24 Shiki Okasaka <[email protected]>
* Makefile.am (EXTRA_DIST) : Add install-prerequisites
2013-09-24 Shiki Okasaka <[email protected]>
* install-prerequisites : New
2013-09-22 Shiki Okasaka <[email protected]>
* ylwrap : Update
2013-09-21 Shiki Okasaka <[email protected]>
[C++11 binding] Switch over to shared_ptr based implementation.
* (MessengerInterface::at(const Interface*)) : Revise
2013-09-21 Shiki Okasaka <[email protected]>
* configure.ac (AC_INIT) : Set version to 0.4.0
2013-09-16 Shiki Okasaka <[email protected]>
* NEWS : Update
2013-09-16 Shiki Okasaka <[email protected]>
* ChangeLog, README : Update
2013-09-13 Shiki Okasaka <[email protected]>
* src/parser.yy (Preprocessor) : Process linemarkers correctly
2013-09-13 Shiki Okasaka <[email protected]>
* configure.ac (AC_INIT): Set version to 0.3.3
2013-09-05 Shiki Okasaka <[email protected]>
* debian/rules : Support parallel make
2013-09-05 Shiki Okasaka <[email protected]>
* esidl.spec.in : Support parallel make; cf. Fedora Packaging:Guidelines
2013-08-21 Shiki Okasaka <[email protected]>
* include/messengerInvoke.h (MessengerInvoke::at(const OpDcl*)) :
Fix not to use special operations for named operation invocations;
cf. 946344e5
2013-08-21 Shiki Okasaka <[email protected]>
* configure.ac (AC_INIT): Set version to 0.3.2
2013-08-21 Shiki Okasaka <[email protected]>
* include/messengerDispatch.h : Clean up
2013-07-26 Yusuke Suzuki <[email protected]>
* src/parser.yy (parser.yy) : Remove const char* to char* cast
2013-05-31 Shiki Okasaka <[email protected]>
* include/cplusplus.h, include/cplusplusInvoke.h,
include/cplusplusMeta.h, include/cxx.h, include/esidl.h,
include/formatter.h, include/info.h, include/messenger.h,
include/messengerDispatch.h, src/cplusplus.cpp, src/esidl.cpp,
src/messenger.cpp, src/print.cpp, src/skeleton.cpp,
src/template.cpp: Fix warnings
2013-05-31 Shiki Okasaka <[email protected]>
* src/messenger.cpp (MessengerImport::print) : Fix a bug
2013-05-31 Shiki Okasaka <[email protected]>
* include/messenger.h, include/messengerInvoke.h,
src/cplusplus.cpp, src/esidl.cpp, src/java.cpp, src/messenger.cpp:
Clean up unused variables.
2013-05-31 Shiki Okasaka <[email protected]>
* include/cplusplus.h, include/cplusplusInvoke.h,
include/cplusplusTemplate.h, src/cplusplus.cpp: Clean up unused
variables.
2013-05-31 Shiki Okasaka <[email protected]>
* include/formatter.h (Formatter::Formatter) : Clean up
2013-05-31 Shiki Okasaka <[email protected]>
* include/esidl.h (Node::~Node) : Fix a bug
2013-05-31 Shiki Okasaka <[email protected]>
* include/esidl.h (Node::Node) : Clean up
2013-04-13 Shiki Okasaka <[email protected]>
* ChangeLog, NEWS: Update
2013-04-12 Shiki Okasaka <[email protected]>
* configure.ac (AC_INIT): Set version to 0.3.1
2013-02-12 Shiki Okasaka <[email protected]>
* Makefile.am, src/esidl.cpp, src/lexer.ll: Fix to include parser.hh
2013-02-12 Shiki Okasaka <[email protected]>
* NOTICE: New Makefile.am (EXTRA_DIST): Add NOTICE
2013-02-10 Shiki Okasaka <[email protected]>
* (printExtendedAttributes): Clean up
2013-02-09 Yusuke Suzuki <[email protected]>
Suppress warning "control reaches end of non-void function"
* (Formatter::breakLineAt): Suppress g++ warnings#4
* (Node::incLevel): Return level
* (Node::decLevel): Return level
* (Literal::operator bool): Insert syntax error report
* (Interface::step): Return info string
2013-02-09 Yusuke Suzuki <[email protected]>
* (Formatter::breakLineAt): Suppress g++ warnings
2013-01-11 Shiki Okasaka <[email protected]>
* NEWS : New
2013-01-11 Shiki Okasaka <[email protected]>
* Fix build problems on fc18
2013-01-10 Shiki Okasaka <[email protected]>
* README: Update
2013-01-06 Shiki Okasaka <[email protected]>
* (Messenger::setter, Messenger::at(const ParamDcl*)) : Generate
string const references for arguments of the enum types
2013-01-04 Shiki Okasaka <[email protected]>
Map [Constructor] to a static class function named 'construct' in the
C++11 binding. Note there can be an interface that takes the same
interface type as the only constructor argument, which cannot be
distinguished from the C++ copy constructor.
* (Messenger::at(const OpDcl*, const std::string&), MessengerInvoke::
writeInvoke, MessengerInvoke::at(const OpDcl*)) : Refine
2013-01-03 Shiki Okasaka <[email protected]>
* (MessengerInclude::at(const Interface*)) : Treat unnamed properties
as overloaded
2013-01-02 Shiki Okasaka <[email protected]>
* (Interface::processExtendedAttributes) : Fix to set name to partial
interfaces
2012-12-31 Shiki Okasaka <[email protected]>
* (Partial, PartialDefinition, PartialInterface, PartialDictionary,
Meta::at(const Interface*)) : Support partial dictionary definitions
2012-12-31 Shiki Okasaka <[email protected]>
* (ByteString) : New from Web IDL 2nd ed.
2012-12-31 Shiki Okasaka <[email protected]>
* (Meta::at(const Type*), Messenger::at(const Type*)) : Bind
'unrestricted float' and 'unrestricted double' to float and double
for now
2012-12-31 Shiki Okasaka <[email protected]>
* (Qualifiers) : Add a comment for 'omittable'
2012-12-31 Shiki Okasaka <[email protected]>
* (NonAnyType) : Allow 'Date?' to be parsed
2012-12-31 Shiki Okasaka <[email protected]>
* (Interface::collectSupplementals) : Add an assert
2012-12-30 Shiki Okasaka <[email protected]>
* (AC_INIT) : Set version to 0.3.0
2012-12-14 Shiki Okasaka <[email protected]>
* configure.ac : Set version to 0.2.2 ChangeLog : Update
2012-12-11 01:34 [email protected]
* include/messenger.h: (Messenger::setter, Messenger::at(const
ParamDcl*)) : Generate string const references for function
arguments
2012-12-06 04:57 [email protected]
* include/messengerDispatch.h: (MessengerDispatch::at) : Generate
dispatch() using Any::toArrayIndex for accessing indexed
properties; requires r3250 or later
2012-11-30 09:58 [email protected]
* ChangeLog: Update
2012-11-28 07:52 [email protected]
* Makefile.am, Makefile.in, aclocal.m4, configure, configure.ac,
cplusplus/Makefile.in, java/Makefile.in, jsapi/Makefile.in,
npapi/Makefile.in, npapi/sample/Makefile.in,
testsuite/Makefile.in, testsuite/runtime/Makefile.in,
v8api/Makefile.in: configure.ac : Set version to 0.2.1; note
esidl will not sync up with the version number of escort in the
0.2 series any more
Makefile.am : Clean up
2012-11-10 12:42 [email protected]
* include/messengerDispatch.h: (MessengerDispatch::at(const
Interface*), MessengerDispatch::at(const OpDcl*)) : Fix bugs
around special operations
2012-08-18 07:34 [email protected]
* ChangeLog, Makefile.am, Makefile.in, configure, configure.ac,
debian, debian/changelog.in, debian/compat, debian/control,
debian/copyright, debian/docs, debian/rules, debian/source,
debian/source/format: (AC_INIT) : Set version to 0.2.3 to sync up
with escort
(debian) : New for building deb packages
(AC_CONFIG_FILES, EXTRA_DIST) : Include files under 'debian'
2012-06-29 11:20 [email protected]
* ChangeLog: Update.
2012-06-29 07:48 [email protected]
* esidl.spec.in: (BuildRequires) : Add more basic build tools for
completeness.
2012-06-29 04:03 [email protected]
* ChangeLog: Update.
2012-06-29 04:01 [email protected]
* esidl.spec.in: (%configure) : Clean up; use --target=i686 option
with rpmbuild when building a package for x86.
2012-06-28 23:34 [email protected]
* ChangeLog, configure, configure.ac: Set version to 0.2.0.
2012-06-28 23:29 [email protected]
* esidl.spec.in: (%description) : Update.
2012-06-28 06:45 [email protected]
* esidl.spec.in: (configure) : Work around 'undefined reference to
__atomic_fetch_add_4' issue on Fedora 17/x86.
2012-06-26 05:37 [email protected]
* esidl.spec.in: (Group) : Update
2012-06-02 11:34 [email protected]
* ChangeLog, Makefile.am, Makefile.in, configure, configure.ac,
esidl.spec.in: (esidl.spec.in, etc.) : New for creating rpm files
from the distribution tarball with rpmbuild.
2012-06-02 10:35 [email protected]
* ChangeLog, Makefile.in: (ChangeLog) : New generated by svn2cl.
2012-06-02 05:59 [email protected]
* Makefile.am, Makefile.in, aclocal.m4, configure, configure.ac,
cplusplus/Makefile.in, java/Makefile.in, jsapi/Makefile.in,
ltmain.sh, npapi/Makefile.in, npapi/sample/Makefile.in,
src/cplusplus.cpp, src/cxx.cpp, src/driver.cpp, src/java.cpp,
src/messenger.cpp, src/skeleton.cpp, src/template.cpp,
testsuite/Makefile.in, testsuite/runtime/Makefile.in,
v8api/Makefile.in: (esidl) : Display the package version rather
than the SVN revision number.
2012-04-27 01:24 [email protected]
* configure, src/parser.yy: (esidl) : Allow 'unsigned byte' type.
2012-04-06 09:47 [email protected]
* include/esidl.h, include/messengerDispatch.h,
include/messengerInvoke.h, include/messengerMeta.h,
jsapi/include/Reflect.h, jsapi/include/esjsapi.h,
jsapi/src/bridge.cpp, jsapi/test/EventImp.h,
jsapi/test/bridge.test.cpp, jsapi/test/test.idl, src/esidl.cpp,
src/messenger.cpp, v8api/include/Reflect.h,
v8api/include/esv8api.h, v8api/src/bridge.cpp,
v8api/test/EventImp.h, v8api/test/bridge.test.cpp,
v8api/test/test.idl: (esidl) : Adding support for the Web IDL
static operations (so far for the C++11 binding and JSAPI and V8
bridges).
2012-04-02 04:54 [email protected]
* v8api/include/esv8api.h, v8api/src/bridge.cpp: (NativeClass) :
Fix bugs.
2012-04-01 04:35 [email protected]
* configure, jsapi/Makefile.am, jsapi/Makefile.in,
npapi/Makefile.am, npapi/Makefile.in, v8api/Makefile.am,
v8api/Makefile.in: (Makefile.am) : Clean up.
2012-03-31 09:57 [email protected]
* Makefile.am, Makefile.in, configure, configure.ac,
v8api/Makefile.am, v8api/Makefile.in, v8api/include/esv8api.h,
v8api/src/bridge.cpp, v8api/test/DOMStringMapImp.h,
v8api/test/EventImp.h, v8api/test/EventTargetImp.h,
v8api/test/HTMLCollectionImp.h, v8api/test/bridge.test.cpp:
(v8api) : Initial check in of the V8 API bridge for the C++11
binding.
2012-03-31 05:23 [email protected]
* v8api/include/esjsapi.h, v8api/include/esv8api.h: Rename.
2012-03-31 05:14 [email protected]
* v8api: Copy from jsapi.
2012-03-29 06:39 [email protected]
* include/esidl.h, include/messenger.h, include/meta.h,
src/parser.yy: (esidl) : Support the Web IDL union type and map
it to Any in the C++11 binding.
2012-03-28 06:15 [email protected]
* include/esidl.h, src/messenger.cpp, src/parser.yy: (Exception) :
Tentatively support inheritance with C++11 binding. We'll revisit
this and probably process exceptions like objects.
2012-03-27 10:00 [email protected]
* include/esidl.h, include/messenger.h,
include/messengerDispatch.h, include/messengerInvoke.h,
include/messengerMeta.h, include/meta.h, jsapi/test/EventImp.h,
jsapi/test/bridge.test.cpp, jsapi/test/dom.test.cpp,
jsapi/test/test.idl, src/messenger.cpp, src/parser.yy: (esidl) :
Support Web IDL enumerations (only for C++11 binding and JSAPI
bridge).
2012-03-27 06:15 [email protected]
* src/parser.yy: (Definitions) : Switching over to W3C Candidate
Recommendation 19 April 2012.
2012-03-26 13:51 [email protected]
* include/esidl.h, include/messenger.h,
include/messengerDispatch.h, jsapi/include/Object.h,
jsapi/test/EventListenerImp.h, jsapi/test/EventTargetImp.h,
jsapi/test/test.idl, src/messenger.cpp, src/parser.yy: (esidl) :
Map a Web IDL callback function to a functor in the C++11
binding.
2012-03-26 05:24 [email protected]
* src/parser.yy: (CallbackOrInterface, CallbackRest) : Support
callback functions.
2012-03-26 04:59 [email protected]
* dom/arrays.idl, dom/domcore.idl, dom/html5.idl,
dom/typedarray.idl, jsapi/test/test.idl: (dom) : Switching over
to W3C Editor’s Draft 22 March 2012.
2012-03-25 09:41 [email protected]
* configure, src/lexer.ll, src/parser.yy, testsuite/101.idl:
(Definitions) : Switching over to W3C Editor’s Draft 22 March
2012.
2011-08-30 09:06 [email protected]
* include/messengerDispatch.h: (MessengerDispatch) : Return true
for the IS_KIND_OF_ message sent with the base interface name.
2011-08-09 09:19 Shiki.Okasaka
* npapi/src/bridge.cpp: Fix x86_64 build issues.
2011-08-09 07:23 [email protected]
* cplusplus/Any.h, cplusplus/Makefile.am, cplusplus/Makefile.in,
cplusplus/any.h, cplusplus/org/w3c/dom/ObjectArray.h,
cplusplus/sequence.h, jsapi/config.h, jsapi/include/Any.h,
jsapi/include/Object.h, jsapi/include/Reflect.h,
jsapi/include/any.h, jsapi/include/esjsapi.h,
jsapi/include/object.h, jsapi/src/Any.cpp,
jsapi/test/Reflect.test.cpp, npapi/config.h,
npapi/include/Object.h, npapi/include/esnpapi.h,
npapi/include/object.h, npapi/sample/npp_md5sum.cpp,
npapi/sample/npp_paint.cpp, npapi/sample/npp_test.cpp,
npapi/sample/npp_xhr.cpp, npapi/src/Any.cpp: Sync up filenames
with those used www.
2011-08-09 07:00 [email protected]
* jsapi/include/object.h: (Object) : Merge changes in www.
2011-08-09 06:53 [email protected]
* jsapi/include/any.h, jsapi/include/esjsapi.h, jsapi/src/Any.cpp,
jsapi/src/bridge.cpp: (Any) : Merge changes in www.
2011-08-05 04:12 [email protected]
* configure: (Makefile.am) : Update for building on Fedora 15.
2011-08-04 08:50 [email protected]
* dom/cssomview.idl, jsapi/Makefile.am, jsapi/Makefile.in,
jsapi/test/dom.test.cpp, npapi/Makefile.am, npapi/Makefile.in:
(CSSOM View) : Update to W3C Working Draft 4 August 2011.
2011-08-04 08:48 [email protected]
* src/lexer.ll, src/parser.yy: (PartialInterface) : Support partial
interface definitions.
2011-07-06 11:14 Shiki.Okasaka
* jsapi/include/esjsapi.h, jsapi/src/bridge.cpp,
jsapi/test/bridge.test.cpp, jsapi/test/dom.test.cpp:
(NativeClass::NativeClass) : It takes the global object as an
argument to work with multiple globals.
2011-07-06 10:44 Shiki.Okasaka
* dom/domcore.idl, dom/file.idl, dom/html5.idl, java/Makefile.am,
java/Makefile.in, jsapi/Makefile.am, jsapi/Makefile.in,
jsapi/include/esjsapi.h, jsapi/test/dom.test.cpp,
npapi/Makefile.am, npapi/Makefile.in, npapi/sample/xhr.cc:
(domcore, html5) : Update to newer editions.
2011-07-06 10:38 Shiki.Okasaka
* src/parser.yy: (AttributeType) : Follow Web IDL WD 4 July 2011;
null is now not a value for interface types, object and array
types.
2011-07-05 11:10 Shiki.Okasaka
* cplusplus/nullable.h, cplusplus/sequence.h: (Nullable) : Refine
constructors from a character string pointer.
2011-07-04 13:54 Shiki.Okasaka
* dom/dom3events.idl, dom/domcore.idl, dom/html5.idl: Sync up with
www/idl
2011-07-04 09:16 Shiki.Okasaka
* Makefile.in, aclocal.m4, config.sub, configure, configure.ac,
cplusplus/Makefile.in, include/esidl.h, java/Makefile.in,
jsapi/Makefile.am, jsapi/Makefile.in, jsapi/test/EventImp.h,
jsapi/test/bridge.test.cpp, jsapi/test/dom.test.cpp,
jsapi/test/test.idl, ltmain.sh, npapi/Makefile.in,
npapi/sample/Makefile.in, src/lexer.ll, src/parser.yy,
testsuite/Makefile.in, testsuite/runtime/Makefile.in:
(Dictionary) : esidl can now parse Web IDL dictionaries. In C++0x
binding, dictionaries are currently mapped to Objects for
simplicity to connect to JSAPI. Support for default values,
dictionary constructors will be added later.
2011-06-29 07:07 Shiki.Okasaka
* jsapi/src/bridge.cpp, jsapi/test/EventImp.h,
jsapi/test/bridge.test.cpp, jsapi/test/test.idl:
(NativeClass::NativeClass) : Set JSPROP_SHARED flag to properties
to make setter/getter always active.
2011-06-29 07:05 Shiki.Okasaka
* dom/dom3events.idl: Update to W3C Working Draft 31 May 2011.
2011-06-16 06:19 Shiki.Okasaka
* jsapi/test/Reflect.test.cpp, src/messenger.cpp:
(MessengerStaticData) : New.
2011-04-30 09:45 Shiki.Okasaka
* jsapi/include/Reflect.h, jsapi/include/esjsapi.h,
jsapi/src/bridge.cpp, jsapi/test/dom.test.cpp: (NativeClass) :
Fix bugs.
2011-04-24 10:28 Shiki.Okasaka
* include/messengerDispatch.h, jsapi/include/object.h,
jsapi/src/Any.cpp, jsapi/src/bridge.cpp,
jsapi/test/bridge.test.cpp, npapi/include/object.h,
npapi/src/Any.cpp: (Any::toString) : Support object conversion to
a string using the Object::STRINGIFY_ message.
2011-04-23 11:24 Shiki.Okasaka
* Makefile.am, Makefile.in, config.guess, configure, configure.ac,
cplusplus/org/w3c/dom/ObjectArray.h, depcomp, dom/dom2css.idl,
dom/dom3events.idl, dom/html5.idl, include/esidl.h,
include/messenger.h, include/messengerDispatch.h,
include/messengerInvoke.h, include/messengerMeta.h, install-sh,
java/Makefile.am, java/Makefile.in, jsapi, jsapi/Makefile.am,
jsapi/Makefile.in, jsapi/config.h, jsapi/include,
jsapi/include/Reflect.h, jsapi/include/any.h,
jsapi/include/esjsapi.h, jsapi/include/object.h, jsapi/src,
jsapi/src/Any.cpp, jsapi/src/bridge.cpp, jsapi/test,
jsapi/test/DOMStringMapImp.h, jsapi/test/EventImp.h,
jsapi/test/EventListenerImp.h, jsapi/test/EventTargetImp.h,
jsapi/test/HTMLCollectionImp.h, jsapi/test/Reflect.test.cpp,
jsapi/test/bridge.test.cpp, jsapi/test/dom.test.cpp,
jsapi/test/test.idl, missing, npapi/Makefile.am,
npapi/Makefile.in, npapi/include/object.h, npapi/src/invoke.cpp,
src/driver.cpp, src/esidl.cpp, src/messenger.cpp, ylwrap: (jsapi)
: New. Web IDL C++ binding to JavaScript bridge over JSAPI. To
build, use --enable-jsapi option with configure; environment
variable GECKO_SDK needs to be set up first.
2011-04-22 05:12 Shiki.Okasaka
* cplusplus/any.h: (isPrimitive) : New.
2011-04-22 05:11 Shiki.Okasaka
* cplusplus/nullable.h: (Nullable(const char16_t*)) : New.
2011-04-22 05:09 Shiki.Okasaka
* cplusplus/sequence.h: (Rep()) : Do not link to new T[]
unnecessarily.
2011-04-22 04:57 Shiki.Okasaka
* dom/xhr2.idl: (XMLHttpRequest) : Update to Editor's Draft 4 March
2011.
2011-04-22 04:56 Shiki.Okasaka
* dom/file.idl: (FileList) : Update to Draft 18 April 2011.
2011-03-16 12:47 Shiki.Okasaka
* include/meta.h: (Meta) : Revert not to output the prefixed name;
esjs doesn't support it yet.
2011-03-16 12:45 Shiki.Okasaka
* dom/postmsg.idl: Fix a typo.
2011-03-14 06:05 Shiki.Okasaka
* Makefile.am, Makefile.in, cplusplus/Makefile.am,
cplusplus/Makefile.in, cplusplus/Variadic.h, cplusplus/any.h,
cplusplus/org/w3c/dom.h, cplusplus/org/w3c/dom/ObjectArray.h,
cplusplus/org/w3c/dom/ObjectMap.h, include/esidl.h,
include/messenger.h, include/messengerDispatch.h,
include/messengerInvoke.h, include/meta.h, java/Makefile.am,
java/Makefile.in, npapi/Makefile.am, npapi/Makefile.in,
npapi/include/esnpapi.h, npapi/include/object.h,
npapi/include/proxyImpl.h, npapi/sample/Makefile.am,
npapi/sample/Makefile.in, npapi/sample/md5sum.cc,
npapi/sample/md5sum.h, npapi/sample/npp_md5sum.cpp,
npapi/sample/npp_paint.cpp, npapi/sample/npp_test.cpp,
npapi/sample/npp_xhr.cpp, npapi/sample/paint.cc,
npapi/sample/paint.h, npapi/sample/test.cpp, npapi/sample/test.h,
npapi/sample/xhr.cc, npapi/sample/xhr.h, npapi/src/Any.cpp,
npapi/src/bridge.cpp, npapi/src/constructors.cpp,
npapi/src/invoke.cpp, npapi/src/metadata.cpp,
npapi/src/metadataFile.cpp, npapi/src/metadataGeolocation.cpp,
npapi/src/metadataHtml.cpp, npapi/src/metadataHtmlA_G.cpp,
npapi/src/metadataHtmlH_N.cpp, npapi/src/metadataHtmlO_U.cpp,
npapi/src/metadataHtmlV_Z.cpp, npapi/src/metadataIndexedDB.cpp,
npapi/src/metadataSvg.cpp, npapi/src/metadataSvgA_E.cpp,
npapi/src/metadataSvgF_G.cpp, npapi/src/metadataSvgH_N.cpp,
npapi/src/metadataSvgO_U.cpp, npapi/src/metadataSvgV_Z.cpp,
npapi/src/metadataWebDatabase.cpp, npapi/src/metadataWebGL.cpp,
npapi/src/metadataWorkers.cpp, npapi/src/proxy.cpp,
npapi/src/stub.cpp, src/driver.cpp, src/esidl.cpp,
src/messenger.cpp: (esidl) : Support new C++ Web IDL binding
based on message-oriented, duck typing.
2011-03-14 05:47 Shiki.Okasaka
* dom/cssom.idl, dom/dom2css.idl, dom/dom3events.idl,
dom/dom3ls.idl, dom/dom3validation.idl, dom/domcore.idl,
dom/eventsource.idl, dom/file.idl, dom/html5.idl,
dom/postmsg.idl, dom/typedarray.idl, dom/url.idl, dom/webgl.idl,
dom/xhr2.idl: Switch over to newer editions and incorporate
latest discussions.
2011-03-14 05:37 Shiki.Okasaka
* include/cplusplus.h: (at(const ArrayType*) : Refine not to use
the literal directly.
2011-02-10 12:39 Shiki.Okasaka
* include/cplusplus.h, include/esidl.h, npapi/sample/paint.cc,
src/cplusplus.cpp, src/esidl.cpp: (CPlusPlus) : Generate typedef
statements only for sequences and arrays.
2011-02-10 07:30 Shiki.Okasaka
* include/esidl.h, src/esidl.cpp, src/lexer.ll, src/parser.yy:
(Definitions) : Update grammar to Web IDL Editor’s Draft 1
February 2011, and remove right recursions.
2011-02-10 07:27 Shiki.Okasaka
* cplusplus/org/w3c/dom.h, dom/indexeddb.idl, npapi/Makefile.am,
npapi/Makefile.in, npapi/src/metadataIndexedDB.cpp: (IDB) :
Update to draft 10 February 2011.
2011-01-23 08:15 Shiki.Okasaka
* Makefile.in, aclocal.m4, configure, cplusplus/Makefile.in,
include/cplusplus.h, include/esidl.h, java/Makefile.in,
ltmain.sh, npapi/Makefile.in, npapi/sample/Makefile.in,
src/cplusplus.cpp, src/driver.cpp, src/esidl.cpp,
testsuite/Makefile.in, testsuite/runtime/Makefile.in: (esidl) :
Support -fno-multipleinheritance option. This work is still in
progress.
2010-12-08 10:13 Shiki.Okasaka
* src/parser.yy: (Type) : Set parent for array types in case of
typedef.
2010-11-26 12:57 Shiki.Okasaka
* include/cplusplus.h: at(const ArrayType*) : Fix a bug.
2010-11-24 10:59 Shiki.Okasaka
* include/cplusplusTemplate.h: (writeDecltype) : Fix a bug.
2010-09-05 03:55 Shiki.Okasaka
* dom/dom3core.idl: (DocumentType) : publicId and systemId are not
nullable.
2010-08-30 17:02 Shiki.Okasaka
* src/cplusplus.cpp: (CPlusPlusInterface) : Generate a constructor
for each exception structure.
2010-08-28 15:06 Shiki.Okasaka
* Makefile.in, aclocal.m4, configure, cplusplus/Makefile.am,
cplusplus/Makefile.in, include/cplusplusCall.h,
include/cplusplusSrc.h, include/cplusplusTemplate.h,
include/esidl.h, java/Makefile.in, npapi/Makefile.am,
npapi/Makefile.in, npapi/config.h, npapi/sample/Makefile.am,
npapi/sample/Makefile.in, src/cplusplus.cpp, src/driver.cpp,
testsuite/Makefile.in, testsuite/runtime/Makefile.in: (esidl) :
Add a new command line option '-cplusplus-src' to generate call
methods in .cpp files.
2010-08-23 15:27 Shiki.Okasaka
* src/cplusplus.cpp: (printCPlusPlus) : Generate include statements
for header files required by template functions.
2010-08-22 15:43 Shiki.Okasaka
* include/cplusplus.h, include/cplusplusCall.h,
include/cplusplusInvoke.h, include/cplusplusMeta.h,
include/cplusplusTemplate.h, include/formatter.h,
src/cplusplus.cpp: (CPlusPlus) : Support -fexceptions, -object,
and -string command line options.
2010-08-22 05:43 Shiki.Okasaka
* cplusplus/org/w3c/dom.h, dom/2dcontext.idl, dom/cssom.idl,
dom/cssomview.idl, dom/dom3events.idl, dom/html5.idl,
dom/microdata.idl, dom/postmsg.idl, dom/xhr2.idl,
npapi/src/metadataHtml.cpp: (dom) : Update IDL definitions.
2010-05-18 02:08 Shiki.Okasaka
* configure, src/java.cpp: (USE_ABSTRACT) : Make static
createInstance() method generation optional.
2010-05-18 01:53 Shiki.Okasaka
* setup.pepper: (chrome) : Add the --enable-webgl flag.
2010-05-17 16:10 Shiki.Okasaka
* dom/svg.idl: (SVG) : Merge some changes in Second Edition.
2010-05-17 16:09 Shiki.Okasaka
* dom/html5.idl: (Window) : Merge changes in Draft Standard - 17
May 2010.
2010-05-17 16:07 Shiki.Okasaka
* npapi/src/metadataWebDatabase.cpp:
(initializeWebDatabaseMetaData) : Register 'VoidCallback' as
'SQLVoidCallback' for WebKit.
2010-05-17 14:49 Shiki.Okasaka
* cplusplus/org/w3c/dom.h, dom/webgl.idl,
npapi/src/metadataWebGL.cpp: (WebGL) : Update to Working Draft 12
May 2010.
2010-05-17 14:47 Shiki.Okasaka
* dom/webnotifications.idl: Update to Editor's Draft 22 April 2010.
2010-05-17 14:46 Shiki.Okasaka
* src/cplusplus.cpp: (CPlusPlusImport) : Check scope names of
constant types.
2010-05-17 10:28 Shiki.Okasaka
* npapi/src/metadataGeolocation.cpp, npapi/src/metadataHtml.cpp:
(initializeMetaData) : Add two more WebKit workaround names.
2010-05-17 08:05 Shiki.Okasaka
* Makefile.am, Makefile.in, cplusplus/Makefile.am,
cplusplus/Makefile.in, cplusplus/org/w3c/dom.h,
dom/elementtraversal.idl, java/Makefile.am, java/Makefile.in,
npapi/src/metadata.cpp: (ElementTraversal) : New.
2010-05-17 07:29 Shiki.Okasaka
* dom/dom3core.idl: (DOMException) : Add new exeption codes from
HTML5.
2010-05-17 07:03 Shiki.Okasaka
* Makefile.am, Makefile.in, cplusplus/Makefile.am,
cplusplus/Makefile.in, dom/selectors.idl, java/Makefile.am,
java/Makefile.in: (NodeSelector) : New.
2010-05-14 05:07 Shiki.Okasaka
* README: Update.
2010-05-13 11:40 Shiki.Okasaka
* configure: (Makefile.in) : Update.
2010-05-13 11:27 Shiki.Okasaka
* setup.pepper: (setup.pepper) : Switch over to use Chrome 5 beta 3
(5.0.375) or later with Native Client SDK
(http://code.google.com/p/nativeclient-sdk/).
2010-05-13 10:32 Shiki.Okasaka
* npapi/sample/Makefile.am, npapi/sample/Makefile.in:
(dist_html_DATA, nodist_html_DATA) : New.
2010-05-11 10:03 Shiki.Okasaka
* Makefile.am, Makefile.in, include/sheet.h, src/driver.cpp:
(Sheet) : New.
2010-05-11 04:22 Shiki.Okasaka
* include/cplusplus.h, include/esidl.h, src/driver.cpp,
src/esidl.cpp, src/java.cpp: (Node::ctorScope) : Make Constructor
class name configurable to restore Cxx mode.
2010-05-11 04:20 Shiki.Okasaka
* include/cxx.h: (Cxx) : Support Date type.
2010-05-03 06:47 Shiki.Okasaka
* npapi/sample/md5sum.html, npapi/sample/md5sum.nacl.html,
npapi/sample/paint.html, npapi/sample/paint.js.html,
npapi/sample/paint.nacl.html, npapi/sample/test.html,
npapi/sample/test.nacl.html, npapi/sample/xhr.html,
npapi/sample/xhr.js.html, npapi/sample/xhr.nacl.html: Clean up.
2010-05-02 23:42 Shiki.Okasaka
* include/cplusplusCall.h, src/cplusplus.cpp: (CPlusPlus) : Fix for
processing Object.idl
2010-05-02 23:20 Shiki.Okasaka
* src/cplusplus.cpp, src/esidl.cpp: (CPlusPlusVisitor) : Fix to
include <type_traits> where only required.
2010-05-02 18:20 Shiki.Okasaka
* npapi/src/metadataHtmlO_U.cpp: (initializeHtmlMetaDataO_U) :
Clean up.
2010-05-02 18:16 Shiki.Okasaka
* configure, npapi/src/metadataHtmlO_U.cpp:
(initializeHtmlMetaData) : Register HTMLPropertiesCollection.
Note that a full clean build is required.
2010-05-02 18:14 Shiki.Okasaka
* include/cplusplus.h, include/cplusplusTemplate.h,
include/esidl.h, src/cplusplus.cpp, src/esidl.cpp,
src/template.cpp: (esidl) : Support the operation overriding with
a covariant return type.
2010-05-01 16:05 Shiki.Okasaka
* npapi/sample/test.nacl.html: (testObject) : Clean up.
2010-05-01 15:56 Shiki.Okasaka
* npapi/include/object.h, npapi/sample/test.h,
npapi/sample/test.html, npapi/sample/test.idl,
npapi/sample/test.nacl.html, npapi/src/bridge.cpp,
npapi/src/metadata.cpp, npapi/src/proxy.cpp: (createProxy) :
Support 'Object' interface.
2010-05-01 13:55 Shiki.Okasaka
* npapi/sample/test.cpp, npapi/sample/test.html,
npapi/sample/test.nacl.html, npapi/src/proxy.cpp:
(ProxyControl::createProxy) : Bind the unknown function to a
Function object.
2010-05-01 13:05 Shiki.Okasaka
* include/cplusplus.h, include/esidl.h, src/cplusplus.cpp,
src/driver.cpp, src/esidl.cpp: (CPlusPlus) : Remove
getPackageName().
2010-05-01 13:04 Shiki.Okasaka
* cplusplus/Makefile.am, cplusplus/Makefile.in: (clean-local) :
Remove com.
2010-04-30 08:01 Shiki.Okasaka
* cplusplus/any.h, cplusplus/testsuite/sequence.cpp,
npapi/src/bridge.cpp: (convertToVariant) : Support sequences of
any and nullable.
2010-04-30 06:45 Shiki.Okasaka
* npapi/sample/test.html, npapi/sample/test.nacl.html,
npapi/src/stub.cpp: (StubObject::invoke) : Refine.
2010-04-30 05:38 Shiki.Okasaka
* npapi/src/stub.cpp: (StubObject) : Remove processResult and use
convertToVariant directly.
2010-04-30 05:35 Shiki.Okasaka
* npapi/sample/Makefile.am, npapi/sample/Makefile.in:
(BUILT_SOURCES) : Add com/rsa/MD5.h and org/w3c/dom/Test.h
2010-04-29 18:41 Shiki.Okasaka
* npapi/sample/test.nacl.html: Sync up with NPAPI test.
2010-04-29 18:34 Shiki.Okasaka
* npapi/include/esnpapi.h, npapi/sample/test.h,
npapi/sample/test.html, npapi/sample/test.idl,
npapi/sample/test.nacl.html, npapi/src/invoke.cpp,
npapi/src/stub.cpp: (StubObject) : Support variadic operations.
2010-04-29 18:18 Shiki.Okasaka
* cplusplus/sequence.h: (Sequence) : Remove support for
ObjectArray.
2010-04-29 18:17 Shiki.Okasaka
* cplusplus/any.h: (Any) : Fix bugs around sequenceValue.
2010-04-29 13:56 Shiki.Okasaka
* npapi/sample/Makefile.am, npapi/sample/Makefile.in,
npapi/sample/test.cpp, npapi/sample/test.h,
npapi/sample/test.html, npapi/sample/test.idl,
npapi/sample/test.nacl.html: (test.idl) : New.
2010-04-29 12:31 Shiki.Okasaka
* cplusplus/any.h: (Any) : Add assign() for Nullable.
2010-04-29 11:59 Shiki.Okasaka
* npapi/src/bridge.cpp: (convertToAny) : Check inner-type of a
sequence value and null of a nullable type value.
2010-04-29 10:39 Shiki.Okasaka
* npapi/include/esnpapi.h, npapi/src/bridge.cpp,
npapi/src/invoke.cpp, npapi/src/stub.cpp: (convertToVariant) :
Take a new argument to duplicate string values upon return to the
browser.
2010-04-29 09:51 Shiki.Okasaka