summaryrefslogtreecommitdiff
path: root/CIAO/ChangeLog
blob: 6888431345209d0ff2dd1f7fc971940a4a5d3a8e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
Fri Jan 11 18:02:07 UTC 2008  William R. Otte  <wotte@dre.Vanderbilt.Edu>

        * MPC/config/cidlc.mpb:
          Make sure CIDLC bits don't build on cross-compile targets.

Wed Jan  9 17:55:33 UTC 2008  William R. Otte  <wotte@dre.vanderbilt.edu>

        * CIAO_TAO_DAnCE.mwc:
          Fix for MPC warning.

Mon Dec 17 08:17:12 UTC 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ciaosvcs/Events/CIAO_RTEC/CIAO_RTEvent.cpp:
          Fixed compile error

Sat Dec 15 15:02:12 UTC 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlCIAO/perlciao.mpc
          Use custom_only=1 for this MPC file

Fri Dec 14 02:48:57 CST 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * CIAO version 0.6.2 released.

Tue Dec 11 13:49:18 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * NEWS:

          Updated file with my checkins since the last beta.

Fri Dec  7 06:27:54 UTC 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlCIAO/perlciao.mpc:
          With vc9 set ConfigurationType to 10 to disable the creation
          of the manifest file which fails because these projects don't
          have source code

Thu Dec  6 17:56:35 UTC 2007  Will Otte  <otte_w@dre.Vanderbilt.Edu>

        * CCF/CCF/CIDL/SemanticAction/Composition.cpp:
        * CCF/CCF/IDL2/SemanticAction/Operation.cpp:
        * CIDLC/CxxNamePrinter.cpp:

          Fixed warnings manifesting on Debian Etch.

Mon Dec  3 17:42:25 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI_exec.h:

          Replaced ACE_Thread_Mutex with TAO_SYNCH_MUTEX to comply with CIAO
          coding standards and to silence fuzz warnings.

Mon Dec  3 17:10:04 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>


        * docs/templates:
        * docs/templates/CIAO_Glue_Session_Template.h:
        * docs/templates/CIAO_Glue_Session_Template.inl:
        * docs/templates/CIAO_Glue_Session_Template.cpp:
        * docs/templates/Executor.idl:
        * docs/templates/cidl_template.cidl:

          Removed these files. They are outdated and we don't need them anymore
          since we now have a fully functinoal CIDLC compiler.

Mon Dec  3 16:30:11 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/templates/CIAO_Glue_Session_Template.h:

          Parts of CIAO use TAO_SYNCH_MUTEX while other parts use ACE_SYNCH_MUTEX.
          All occurrences of ACE_SYNCH_MUTEX were replaced with TAO_SYNCH_MUTEX for
          consistency.

Mon Dec  3 16:07:59 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/03.html:

          Fixed image links that were borken due to directory name case sensitivity,
          this caused the images not to display in non-windows operating systems.
          Thanks to Ashley Sterritt (sterrita at cs dot tc dot ie) for pointing
          out the problem.

Fri Nov 30 22:11:41 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/NodeApplicationManager/NodeApplicationManager_Impl.h:

          Replaced ACE_Thread_Mutex with TAO_SYNCH_MUTEX to allow this code
          to work in single-threaded builds.

Fri Nov 30 19:06:05 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/Deployment/NodeApp_CB_Impl.h:
        * DAnCE/Deployment/NodeApp_CB_Impl.cpp:
        * DAnCE/DomainApplicationManager/Reply_Handler_i.h:
        * DAnCE/DomainApplicationManager/Reply_Handler_i.cpp:
        * DAnCE/NodeManager/MonitorController.h:
        * DAnCE/NodeManager/MonitorController.cpp:
        * ciao/Dynamic_Component_Activator.h:
        * ciao/Dynamic_Component_Servant_T.h:
        * ciao/Home_Servant_Impl_T.h:
        * ciao/Servant_Activator.h:
        * ciao/Session_Container.h:
        * ciao/Session_Container.cpp:
        * ciao/Swapping_Container.h:
        * ciao/Swapping_Container.cpp:
        * ciao/Swapping_Servant_Home_Impl_T.h:
        * tests/Bug_2130_Regression/SEC_CheckPoint/TSEC_CheckPoint_exec.h:

          Parts of CIAO use TAO_SYNCH_MUTEX while other parts use ACE_SYNCH_MUTEX.
          All occurrences of ACE_SYNCH_MUTEX were replaced with TAO_SYNCH_MUTEX for
          consistency.

Mon Nov 26 16:57:33 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * ciao/Servant_Activator.h:

          The incarnate and etherealize (inherited from PortableServer::ServantActivator)
          were implicitly virtual, made those methods explicitly virtual by using the virtual
          key word. This is a cosmetic change to comply with ACE/TAO/CIAO coding standards.

        * ciao/Servant_Activator.cpp:

          Minor cosmetic changes.

Fri Nov 23 19:29:54 UTC 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ciao/Servant_Impl_Base.cpp:
          Layout change

        * MPC/config/ciao_client_dnc.mpb:
        * MPC/config/ciao_vc8warnings.mpb:
        * MPC/config/ciao_vcwarnings.mpb:
          Renamed vc8warnings to vcwarnings, this file is also for vc9 from now

Thu Nov 22 15:41:13 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * ciao/Dynamic_Component_Activator.inl:

          New file. Inlined short methods to comply with ACE/TAO/CIAO
          coding standards.

        * ciao/Dynamic_Component_Activator.h:
        * ciao/Dynamic_Component_Activator.cpp:

          Minor changes necessary for the new inline file mentioned above.

        * ciao/Dynamic_Component_Activator.h:

          The incarnate and etherealize (inherited from PortableServer::ServantActivator)
          were implicitly virtual, made those methods explicitly virtual by using the virtual
          key word. This is a cosmetic change to comply with ACE/TAO/CIAO coding standards.

Wed Nov 21 17:41:14 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * ciao/Context_Impl_Base.inl:

          New file. Inlined short methods to comply with ACE/TAO/CIAO
          coding standards.

        * ciao/Context_Impl_Base.h:
        * ciao/Context_Impl_Base.cpp:

          Minor changes necessary for the new inline file mentioned above.

        * ciao/Context_Impl_Base.cpp:
        * ciao/Dynamic_Component_Servant_Base.cpp:

          Added a comment on why we have unecessary default constructor.
          The default constructor is here to keep MSVC happy and should
          not be used at all. The default constructor should be removed
          in the future. Until then, ACE_ASSERT is used in the default
          constructor to detect a runtime call to the default constructor.

Wed Nov 21 16:36:28 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * ciao/Container_Base.inl:

          New file. Inlined short methods to comply with ACE/TAO/CIAO
          coding standards.

        * ciao/Container_Base.h:
        * ciao/Container_Base.cpp:

          Minor changes necessary for the new inline file mentioned above.

Tue Nov 20 15:43:25 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * ciao/Port_Activator.inl:

          New file. Inlined short methods to comply with ACE/TAO/CIAO
          coding standards.

        * ciao/Port_Activator.h:
        * ciao/Port_Activator.cpp:

          Minor changes necessary for the new inline file mentioned above.

Mon Nov 12 19:10:36 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI.mpc:

          Fixed incorrect path to generated executor stub in
          source file list.

Mon Nov 12 18:54:48 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * performance-tests/Benchmark/RoundTripClient/RoundTripClient.mpc:
        * performance-tests/Benchmark/RoundTrip/RoundTrip.mpc:
        * examples/Hello/Sender/Sender.mpc:
        * examples/Display/RateGen/RateGen.mpc:
        * docs/tutorials/Quoter/Simple/Broker/StockBroker.mpc:
        * docs/tutorials/Quoter/Simple/Broker/StockDistributor.mpc:

          Added line 'avoids += ace_tao_tao' in driver/client projects.

        * examples/Display/NavDisplay/NavDisplay_exec.cpp:
        * examples/Display/NavDisplay/NavDisplay_exec.h:

          Cosmetic changes (line lengths, ACE style guidelines).

Fri Nov  9 15:06:04 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * MPC/config.ciaocidldefaults.mpb:

          Added a line to ensure that the XML descriptor generated by the
          CIDL compiler gets cleaned up similarly to the other generated
          files upon a 'make clean' operation. Thanks to Adam Mitz
          <mitza at ociweb dot com> for supplying the fix.

Tue Nov  6 20:31:09 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/04.html:

          All DAnCE executables are placed in $CIAO_ROOT/bin when built. Updated
          the tutorial to reflect the fact that the executables are in $CIAO_ROOT/bin

Fri Nov  2 16:41:48 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/descriptors/Plan.cdp:

          Reverted what seems to be an accidental commit made at:
          Mon Oct 29 16:40:08 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

          The changes causes the tutorial to not work (plan launcher fails).

Mon Oct 29 19:10:34 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * examples/Display/NavDisPlayGUI/NavDisplayGUI.mpc:

          Modified exec project to reflect recent dependency changes,
          and added svnt project that links to the GUI version of the
          exec lib.

        * examples/Display/NavDisPlayGUI/NavDisplayGUI_exec.cpp:
        * examples/Display/NavDisPlayGUI/NavDisplayGUI_exec.h:

          Cosmetic changes.

        * examples/Display/NavDisPlayGUI/NavDisplayGUI_exec_stub_export.h:
        * examples/Display/NavDisPlayGUI/NavDisplayGUI_exec_exec_export.h:
        * examples/Display/NavDisPlayGUI/NavDisplayGUI_svnt_export.h:
        * examples/Display/NavDisPlayGUI/NavDisplayGUI_exec_svnt_export.h:
        * examples/Display/NavDisPlayGUI/NavDisplayGUI_stub_export.h:

          Removed these unused files.

Mon Oct 29 17:45:24 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Hello/descriptors_ReDaC/deploymentplan.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan_add.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan_remove.cdp:
        * examples/Hello/descriptors_naming/deploymentplan_naming.cdp:
        * examples/Hello/descriptors_shared_components/deploymentplan.cdp:

          Corrected some entries, according to recent changes in library
          names of the Hello example, so that the tests succeed.

Mon Oct 29 16:40:08 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

        * examples/Hello/descriptors_events:

          Renamed deployment descriptor files and corrected some entries,
          according to recent changes in library names of the Hello example,
          so that the tests succeed.

Mon Oct 29 01:37:04 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Hello/descriptors_RTCCM/rt-config-example.cdp:
        * examples/Hello/descriptors_RTCCM/rt-example.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan_add.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan_remove.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_events.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_events_collocated.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_mcast.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_udp.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_udp_collocated.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_udp_two_hosts.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_multiple_senders.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_with_filters.cdp:
        * examples/Hello/descriptors_naming/deploymentplan_naming.cdp:
        * examples/Hello/descriptors_shared_components/deploymentplan.cdp:
        * examples/Hello/descriptors_shared_components/deploymentplan_shared_components.cdp:

          Recent changes to MPC files changed library names. As such,
          the example was failing. Correct the library names in the files above.

Sun Oct 28 19:11:39 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Hello/descriptors/DeploymentPlan.cdp:
        * examples/Hello/descriptors/DeploymentPlan_without_ns.cdp:
        * examples/Hello/descriptors/Receiver_Exec.iad:
        * examples/Hello/descriptors/Receiver_Stub.iad:
        * examples/Hello/descriptors/Receiver_Svnt.iad:
        * examples/Hello/descriptors/Sender_Exec.iad:
        * examples/Hello/descriptors/Sender_Stub.iad:
        * examples/Hello/descriptors/Sender_Svnt.iad:

          Recent changes to MPC files changed library names. As such,
          the example was failing. Correct the library names in the files above.

Fri Oct 26 13:15:24 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

        * DAnCE/DomainApplicationManager/Deployment_Configuration.cpp:

          Removed some code, that accidentially was commited

Fri Oct 26 01:01:37 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

        * examples/Hello/descriptors_events:

          Changed test scripts to perl and make them autobuild conform

Thu Oct 25 21:28:13 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * examples/Hello/Receiver/Receiver.mpc:
        * examples/Hello/Sender/Sender.mpc:

          Fixed mismatches of lib names.

Thu Oct 25 15:44:50 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

        * examples/Hello/descriptors_events:

          Added scripts and README files for documentation purposes

Wed Oct 24 16:17:41 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Hello/Receiver/Receiver_exec.h:
        * examples/Hello/Receiver/Receiver_exec.cpp:
        * examples/Hello/Sender/Sender_exec.h:
        * examples/Hello/Sender/Sender_exec.cpp:

          Made the implementation of these files look like what is currently
          generated by the CIDLC compiler. It seems that the files in question
          were completley handwritten. The changes affects the signitures of
          the entry point functions, and the implementation of the entry point
          functions and factories.

        * examples/Hello/descriptors/DeploymentPlan.cdp:
        * examples/Hello/descriptors/DeploymentPlan_without_ns.cdp:
        * examples/Hello/descriptors/Receiver_Exec.iad:
        * examples/Hello/descriptors/Sender_Exec.iad:
        * examples/Hello/descriptors_RTCCM/rt-config-example.cdp:
        * examples/Hello/descriptors_RTCCM/rt-example.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan_add.cdp:
        * examples/Hello/descriptors_ReDaC/deploymentplan_remove.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_events.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_events_collocated.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_mcast.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_udp.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_udp_collocated.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_federation_udp_two_hosts.cdp:
        * examples/Hello/descriptors_events/flattened_deploymentplan_with_filters.cdp:
        * examples/Hello/descriptors_naming/deploymentplan_naming.cdp:
        * examples/Hello/descriptors_shared_components/deploymentplan.cdp:
        * examples/Hello/descriptors_shared_components/deploymentplan_shared_components.cdp:

          Modified the entry point functions' signitures as per the comment above.

Tue Oct 23 20:25:53 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Hello/Hello_Base/Hello_Base.mpc:
        * examples/Hello/Hello_Base/Hello_Base_skel_export.h:

          Minor cosmetic changes.

        * examples/Hello/Sender/Sender.mpc:

          Change 'after' lines to match recent changes to project names.

Tue Oct 23 14:50:48 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * performance-tests/Benchmark/RoundTrip/RoundTrip.mpc:

          Fixed typo in IDL filename.

Tue Oct 23 14:37:05 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * tests/CIDL/CodeGen/Basic.mpc:
        * tests/CIDL/CodeGen/Basic_skel_export.h:
        * tests/CIDL/CodeGen/Basic_stub_export.h:
        * tests/CIDL/CodeGen/CodeGen.mpc:
        * tests/CIDL/CodeGen/CodeGen_exec_export.h:
        * tests/CIDL/CodeGen/CodeGen_stub_export.h:
        * tests/CIDL/CodeGen/CodeGen_svnt_export.h:

          - Modified  MPC files to reverse
            the exec->svnt dependency. Also moved generated
            <IDL file>EC.{h, inl, cpp} files from svnt buidl to
            exec build.

          - Added file names to MPC projects so that all build files
            are displayed in IDEs.

          - For non-component builds, changed _svnt suffix to _skel
            for project names, library names, and export header file
            names.

          - Separated IDL and CIDL/executor IDL processing into
            separate projects.

        * tests/CIDL/CodeGen/Basic_svnt_export.h:

          Removed this file.

Tue Oct 23 14:27:18 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * tests/Minimum/Receiver/Receiver_exec.h:
        * tests/Minimum/Sender/Sender_exec.h:

          Removed dependency on including Servant header files.

        * tests/Minimum/Sender/Sender_exec.cpp:
        * tests/Minimum/Receiver/Receiver_exec.cpp:

          The generate context is a var type now (it used to be a pointer).
          Do not compare it directly with 0, use CORBA::is_nil instead.

          Effectively, we just renegerated the executor files with a newer
          cidlc compiler.

Mon Oct 22 18:54:03 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * performance-tests\Protocols\Sender\Custom_Network_Priority_Mapping.cpp:
        * performance-tests\Protocols\Sender\Custom_Network_Priority_Mapping.h:

          New files, factored out of existing files.

        * performance-tests\Benchmark\Benchmark_skel_export.h:
        * tests\Minimum\Minimum_Base\Minimum_Base.mpc:
        * tests\Minimum\Minimum_Base\Minimum_Base_skel_export.h:
        * examples\Hello\Hello_Base\Hello_Base_skel_export.h:
        * examples\Swapping\Hello_Base\Hello_Base_skel_export.h:

          New files, renamed from corresponding files removed, as
          listed below.

        * performance-tests\Benchmark\Benchmark_svnt_export.h:
        * tests\Minimum\Minimum_Base\Minimum_Base_svnt_export.h:
        * tests\Minimum\Minimum_Base\Minimum.mpc:
        * examples\Hello\Hello_Base\Hello_Base_svnt_export.h:
        * examples\Swapping\Hello_Base\Hello_Base_svnt_export.h:

          Removed files, renamed as described above.

        * performance-tests\Protocols\Sender\Sender_exec.cpp:
        * performance-tests\Protocols\Sender\Sender.mpc:
        * performance-tests\Protocols\Controller\Controller.mpc:
        * performance-tests\Protocols\Receiver\Receiver.mpc:
        * performance-tests\Protocols\common\Protocols.mpc:
        * performance-tests\Benchmark\RoundTripClient\RoundTripClient.mpc:
        * performance-tests\Benchmark\RoundTrip\client.cpp:
        * performance-tests\Benchmark\RoundTrip\RoundTrip.mpc:
        * performance-tests\Benchmark\server.cpp:
        * performance-tests\Benchmark\Multi_Threaded\client.cpp:
        * performance-tests\Benchmark\Multi_Threaded\Multi_Threaded.mpc:
        * performance-tests\Benchmark\README
        * performance-tests\Benchmark\Benchmark.mpc:
        * performance-tests\Benchmark\RoundTripServer\server.cpp:
        * performance-tests\Benchmark\RoundTripServer\RoundTripServer.mpc:
        * tests\Minimum\Sender\Sender_exec.cpp:
        * tests\Minimum\Sender\Sender_exec.h:
        * tests\Minimum\Sender\Sender.mpc:
        * tests\Minimum\Receiver\Receiver.mpc:
        * tests\Minimum\Receiver\Receiver_exec.cpp:
        * tests\Minimum\Receiver\Receiver_exec.h:
        * examples\Hello\Sender\Sender.mpc:
        * examples\Hello\Receiver\Receiver.mpc:
        * examples\Hello\Hello_Base\Hello_Base.mpc:
        * examples\Display\Display_Base\Display_Base.mpc:
        * examples\Display\RateGen\RateGen.mpc:
        * examples\Display\GPS\GPS.mpc:
        * examples\Display\NavDisplay\NavDisplay.mpc:
        * examples\Swapping\Sender\Sender.mpc:
        * examples\Swapping\Receiver\Receiver.mpc:
        * examples\Swapping\Hello_Base\Hello_Base.mpc:

          - Modified *_exec.{h, cpp} files and MPC files to reverse
            the exec->svnt dependency. Also moved generated
            <IDL file>EC.{h, inl, cpp} files from svnt build to
            exec build.

          - Added file names to MPC projects so that all build files
            are displayed in IDEs.

          - For non-component builds, changed _svnt suffix to _skel
            for project names, library names, and export header file
            names.

          - Separated IDL and CIDL/executor IDL processing into
            separate projects.

Fri Oct 19 18:19:12 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/StaticConfigurator/StaticDAnCEApp.cpp.tmpl:

          Updated this template implementation to reflect enhancement done by:
          Fri Oct 19 15:22:36 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

Fri Oct 19 18:04:13 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/images/fig10.jpg:
        * docs/tutorials/Quoter/Simple/images/fig11.jpg:
        * docs/tutorials/Quoter/Simple/images/fig12.jpg:
        * docs/tutorials/Quoter/Simple/images/fig2.jpg:
        * docs/tutorials/Quoter/Simple/images/fig3.jpg:
        * docs/tutorials/Quoter/Simple/images/fig4.jpg:
        * docs/tutorials/Quoter/Simple/images/fig5.jpg:
        * docs/tutorials/Quoter/Simple/images/fig6.jpg:
        * docs/tutorials/Quoter/Simple/images/fig7.jpg:
        * docs/tutorials/Quoter/Simple/images/fig8.jpg:
        * docs/tutorials/Quoter/Simple/images/fig9.jpg:

          Update the images to reflect what the user would see
          in CoSMIC 0.6

        * docs/tutorials/Quoter/Simple/03.html:

          Slight modification to make the images appear pretty.

Fri Oct 19 17:56:34 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ciao/IFR_Base.idl:

          Removed this file - see below.

        * ciao/CCM_Home.idl:
        * ciao/CCM_Core.mpc:
        * MPC/config/ciao_client_dnc.mpb:
        * MPC/config/ciao_events_dnc.mpb:
        * DAnCE/StaticConfigurator/StaticDAnCEParser.mpc:
        * DAnCE/Plan_Launcher/Plan_Launcher.mpc:

          Reverted all changes that attempted to replace dependency
          on IFR_Client library with a dummy interface. The fact
          that one or more config handlers must depend on IFR_Client
          makes linking clashes between the dummy and real interfaces
          unavoidable.

Fri Oct 19 15:35:13 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * examples/Null_Component/StaticDAnCEApp.mpc:
        * examples/Null_Component/Null_Component.mpc:

          Change 'after' lines to match recent changes to project names.

Fri Oct 19 15:22:36 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * examples/Null_Component/plan.h:
        * examples/Null_Component/StaticDAnCEApp.cpp:

          Reordered and reduced #includes, cosmetic changes.

        * examples/Null_Component/StaticDAnCEApp.mpc:

          Changed dependency to reflect recent changes in Null_Component.mpc,
          added Header_File and Inline_File blocks to eliminate the
          appearance of unwanted files in IDEs.

Thu Oct 18 21:17:45 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Null_Component/Null_Component.mpc:
        * examples/Null_Component/StaticDAnCEApp.mpc:

          Fixed fuzz warnings. Apparently, project and file names that are
          longer than 38 charachters are not portable on all operating
          systems. Thanks to Johnny Willemsen for explaining why fuzz
          complains about long project and file names.

Thu Oct 18 20:58:54 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/01.html:
        * docs/tutorials/Quoter/Simple/02.html:
        * docs/tutorials/Quoter/Simple/03.html:
        * docs/tutorials/Quoter/Simple/04.html:
        * docs/tutorials/Quoter/Simple/index.html:

          Updated the tutorial.

        * docs/tutorials/Quoter/Simple/descriptors/NodeMap.dat:

          Changed the name of this file to NodeMap.dat from Stock.dat
          Naming everything Stock is confusing.

        * docs/tutorials/Quoter/Simple/descriptors/Stock.dat:

          Removed this file.

Thu Oct 18 20:19:39 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * DAnCE/StaticConfigurator/StaticDAnCEParser.mpc:
        * DAnCE/Plan_Launcher/Plan_Launcher.mpc:

          Removed unneeded lib TAO_IFR_Client from list, to avoid clash with
          dummy IRObject interface added for CIAO_Client, CIAO_Container,
          and CIAO_Server in

          Wed Oct 17 15:24:13 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ciaosvcs/Events/CIAO_RTEC/CIAO_RTEvent.mpc:
        * ciaosvcs/Events/CIAO_Events_Base/CIAO_Events_Base.mpc:
        * ciaosvcs/Events/CIAO_Events.mpc:

          Reverted changed inadvertently checked in with

          Wed Oct 17 15:24:13 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

Thu Oct 18 19:29:01 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/Broker/StockBrokerDriver.cpp:
        * docs/tutorials/Quoter/Simple/Distributor/StockDistributorDriver.cpp:

          Fixed fuzz errors.

Thu Oct 18 18:21:18 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/Model/Quoter.xme:

          The entry points for the Servant and Executor were messed up. New
          releases of CoSMIC generate the proper entry point signitures.
          This change fixes the entry point signitures.

        * docs/tutorials/Quoter/Simple/descriptors/Broker.cpd:
        * docs/tutorials/Quoter/Simple/descriptors/Default.pcd:
        * docs/tutorials/Quoter/Simple/descriptors/Distributor.cpd:
        * docs/tutorials/Quoter/Simple/descriptors/Domain.cdd:
        * docs/tutorials/Quoter/Simple/descriptors/Plan.cdp:
        * docs/tutorials/Quoter/Simple/descriptors/StockBroker.ccd:
        * docs/tutorials/Quoter/Simple/descriptors/StockBrokerMonolithicImpl.cid:
        * docs/tutorials/Quoter/Simple/descriptors/StockBroker_exec.iad:
        * docs/tutorials/Quoter/Simple/descriptors/StockBroker_stub.iad:
        * docs/tutorials/Quoter/Simple/descriptors/StockBroker_svnt.iad:
        * docs/tutorials/Quoter/Simple/descriptors/StockDistributor.ccd:
        * docs/tutorials/Quoter/Simple/descriptors/StockDistributorMonolithicImpl.cid:
        * docs/tutorials/Quoter/Simple/descriptors/StockDistributor_exec.iad:
        * docs/tutorials/Quoter/Simple/descriptors/StockDistributor_stub.iad:
        * docs/tutorials/Quoter/Simple/descriptors/StockDistributor_svnt.iad:
        * docs/tutorials/Quoter/Simple/descriptors/StockQuoter.cid:
        * docs/tutorials/Quoter/Simple/descriptors/StockQuoter.cpd:
        * docs/tutorials/Quoter/Simple/descriptors/TopLevelPackage.tpd:

          Regenerated descriptors. Older descriptors were hand written,
          we want users to use CoSMIC for this sort of stuff, especially
          in the tutorial.

        * docs/tutorials/Quoter/Simple/descriptors/runNodeDaemons.pl:

          Increased spawn dealy for NodeApplication in order to have
          this tutorial work on slower systems.

        * docs/tutorials/Quoter/Simple/descriptors/Broker.ccd:
        * docs/tutorials/Quoter/Simple/descriptors/Broker.cid:
        * docs/tutorials/Quoter/Simple/descriptors/Broker_Exec.iad:
        * docs/tutorials/Quoter/Simple/descriptors/Broker_Stub.iad:
        * docs/tutorials/Quoter/Simple/descriptors/Broker_Svnt.iad:
        * docs/tutorials/Quoter/Simple/descriptors/Distributor.ccd:
        * docs/tutorials/Quoter/Simple/descriptors/Distributor.cid:
        * docs/tutorials/Quoter/Simple/descriptors/Distributor_Exec.iad:
        * docs/tutorials/Quoter/Simple/descriptors/Distributor_Stub.iad:
        * docs/tutorials/Quoter/Simple/descriptors/Distributor_Svnt.iad:
        * docs/tutorials/Quoter/Simple/descriptors/Libraries.iad:
        * docs/tutorials/Quoter/Simple/descriptors/Stock.cdp:
        * docs/tutorials/Quoter/Simple/descriptors/Stock.cid:
        * docs/tutorials/Quoter/Simple/descriptors/Stock.cpd:
        * docs/tutorials/Quoter/Simple/descriptors/Stock.pcd:
        * docs/tutorials/Quoter/Simple/descriptors/flattened_deploymentplan.cdp:
        * docs/tutorials/Quoter/Simple/descriptors/package.tpd:

          Removed these files.

Thu Oct 18 18:13:35 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/Broker/StockBroker.cidl:
        * docs/tutorials/Quoter/Simple/Broker/StockBroker.idl:

          Use include guards, as is done with other IDL files in the distribution.

          Renamed the IDL files to exactly match the name of the component. The
          name of the component and the IDL file must match, if they don't, one
          has to do more work in CoSMIC to resolve conflicts.

        * docs/tutorials/Quoter/Simple/Broker/StockBrokerDriver.cpp:

          Renamed from Broker.cpp.

        * docs/tutorials/Quoter/Simple/Broker/StockBroker.mpc:

          Rengerate the MPC files with the new generate_component_mpc.pl

        * docs/tutorials/Quoter/Simple/Broker/StockBroker_exec.h:
        * docs/tutorials/Quoter/Simple/Broker/StockBroker_exec.cpp:

          Renamed for the reason mentioned above. Also, regenerated the autogenerated
          code parts to leverage recent changes to CIDLC generated code. The executors
          now have no dependency on the servants.

        * docs/tutorials/Quoter/Simple/Broker/StockBroker_exec_export.h:
        * docs/tutorials/Quoter/Simple/Broker/StockBroker_stub_export.h:
        * docs/tutorials/Quoter/Simple/Broker/StockBroker_svnt_export.h:

          Regenerated.

        * docs/tutorials/Quoter/Simple/Broker/Broker.cidl:
        * docs/tutorials/Quoter/Simple/Broker/Broker.cpp:
        * docs/tutorials/Quoter/Simple/Broker/Broker.idl:
        * docs/tutorials/Quoter/Simple/Broker/Broker.mpc:
        * docs/tutorials/Quoter/Simple/Broker/Broker_exec.h:
        * docs/tutorials/Quoter/Simple/Broker/Broker_exec.cpp:
        * docs/tutorials/Quoter/Simple/Broker/Broker_exec_export.h:
        * docs/tutorials/Quoter/Simple/Broker/Broker_stub_export.h:
        * docs/tutorials/Quoter/Simple/Broker/Broker_svnt_export.h:

          Removed these files per the changes above.

Thu Oct 18 17:45:41 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor.cidl:
        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor.idl:

          Use include guards, as is done with other IDL files in the distribution.

          Renamed the IDL files to exactly match the name of the component. The
          name of the component and the IDL file must match, if they don't, one
          has to do more work in CoSMIC to resolve conflicts.

        * docs/tutorials/Quoter/Simple/Distributor/StockDistributorDriver.cpp:

          Renamed from Distributor.cpp.

        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor.mpc:

          Rengerate the MPC files with the new generate_component_mpc.pl

        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor_exec.h:
        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor_exec.cpp:

          Renamed for the reason mentioned above. Also, regenerated the autogenerated
          code parts to leverage recent changes to CIDLC generated code. The executors
          now have no dependency on the servants.

        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor_exec_export.h:
        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor_stub_export.h:
        * docs/tutorials/Quoter/Simple/Distributor/StockDistributor_svnt_export.h:

          Regenerated.

        * docs/tutorials/Quoter/Simple/Distributor/Distributor.cidl:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor.idl:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor.mpc:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor.cpp:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_exec.h:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_exec.cpp:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_exec_export.h:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_stub_export.h:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_svnt_export.h:

          Removed these files per the changes above.

Thu Oct 18 17:42:58 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.idl:

          Use include guards, as is done with other IDL files in
          the distribution.

        * docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.mpc:

          Rengerate the MPC files with the new generate_component_mpc.pl

Wed Oct 17 20:20:34 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/IDL3/Events/Any/main.cpp:

          Added #include of Any.h.

Wed Oct 17 18:47:50 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ciao/Swapping_Servant_Home_Impl_T.h:
        * ciao/Upgradeable_Context_Impl_T.cpp:

          Restored included files needed at instantiation time.

        * ciaosvcs/Events/CIAO_RTEC\CIAO_RTEvent.cpp(create_rt_event_channel):

          Commented out unused arg.

Wed Oct 17 17:18:04 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/TargetManager/descriptors/NodeDetails.dat:
        * DAnCE/TargetManager/descriptors/NodeManagerMap.dat:
        * DAnCE/tests/scripts/BasicSP/basicsp.dat:
        * docs/tutorials/Quoter/Simple/descriptors/Stock.dat:
        * examples/BasicSP/descriptors/BasicSP.dat:
        * examples/Display/descriptors/NodeManagerMap.dat:
        * examples/Hello/descriptors/NodeManagerMap.dat:
        * examples/Hello/descriptors_RTCCM/NodeManagerMap.dat:
        * examples/Hello/descriptors_events/NodeManagerMap.dat:
        * examples/Hello/descriptors_events/NodeManagerMapTwoHosts.dat:
        * performance-tests/Benchmark/descriptors/test-multi-process.dat:
        * performance-tests/Benchmark/descriptors/test.dat:
        * performance-tests/Protocols/descriptors/test.dat:
        * tests/Bug_2130_Regression/descriptors/TestNodeManagerMap.dat:

          Removed blank lines. Blank lines now cause the deployment to fail.

Wed Oct 17 15:28:42 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * MPC/config/ciao_client_dnc.mpb:
        * MPC/config/ciao_events_dnc.mpb:

          Removed ifr_client from base project list.

Wed Oct 17 15:24:13 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * CIAO_TAO_DAnCE.mwc:

           Removed unnecessary directories, removing 24 unused builds.

        * ciao/IFR_Base.idl:

           New file, containing a dummy IRObject interface, to be used
           as the return type for an unimplemented operation in CCM_Home.

        * ciao/CCM_Home.idl:

           Changed include of IFR_Base.idl from the one in
           TAO_ROOT/tao/IFR_Client to the new file above.

        * ciao/CCM_Core.mpc:

           Removed dependency on IFR_Client lib from all projects.

        * ciao/Server_init.h:
        * ciao/Client_init.cpp:
        * ciao/Cookies.h:
        * ciao/Servant_Impl_Base.h:
        * ciao/StandardConfigurator_Impl.cpp:
        * ciao/Swapping_Servant_Home_Impl_T.h:
        * ciao/Swapping_Servant_Home_Impl_Base.cpp:
        * ciao/Dynamic_Component_Activator.cpp:
        * ciao/Server_init.cpp:
        * ciao/Servant_Impl_Base.cpp:
        * ciao/Servant_Activator.cpp:
        * ciao/Swapping_Container.h:
        * ciao/StandardConfigurator_Impl.h:
        * ciao/Dynamic_Component_Activator.h:
        * ciao/Dynamic_Component_Servant_Base.cpp:
        * ciao/Servant_Activator.h:
        * ciao/Context_Impl_Base.h:
        * ciao/Container_Base.cpp:
        * ciao/Session_Container.h:
        * ciao/Cookies.cpp:
        * ciao/Port_Activator.h:
        * ciao/Client_init.h:
        * ciao/Dynamic_Component_Servant_Base.h:
        * ciao/Home_Servant_Impl_Base.h:
        * ciao/Container_Base.h:
        * ciao/Swapping_Servant_Home_Impl_Base.h:
        * ciao/Session_Container.cpp:
        * ciao/Upgradeable_Context_Impl_T.h:
        * ciao/CIAO_common.h:
        * ciao/Swapping_Container.cpp:
        * ciaosvcs/Events/CIAO_EventService_Factory_impl.cpp:
        * ciaosvcs/Events/CIAO_RTEC/CIAO_RTEvent.cpp:
        * ciaosvcs/Events/CIAO_RTEC/SimpleAddressServer.cpp:
        * ciaosvcs/Events/CIAO_RTEC/CIAO_RTEvent.h:
        * ciaosvcs/Events/CIAO_RTEC/SimpleAddressServer.h:
        * ciaosvcs/Events/CIAO_Events_Base/CIAO_Events_Base.mpc:
        * ciaosvcs/Events/CIAO_Events_Base/CIAO_EventServiceBase.cpp:
        * ciaosvcs/Events/CIAO_Events_Base/CIAO_EventServiceBase.h:
        * ciaosvcs/Events/CIAO_EventService_Factory_impl.h:

           Removed unnecessary #includes, and general cleanup of
           formatting and #includes to follow ACE style guidelines.

        * ciaosvcs/Events/CIAO_RTEC/CIAO_RTEvent.mpc:
        * ciaosvcs/Events/CIAO_Events.mpc:

           Added export header files to projects, so they will be seen
           by developers using IDEs.

Wed Oct 17 14:02:41 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Null_Component/plan.h:

          Fixed fuzz warning.

Tue Oct 16 20:49:21 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/Null_Component/Null_Component.cidl:
        * examples/Null_Component/Null_Component.idl:

          Slight name fixes to make CIDLC and CoSMIC happy. For details,
          check bugzilla 3086.

        * examples/Null_Component/Null_Component_exec.h:
        * examples/Null_Component/Null_Component_exec.cpp:

          Renegerated the empty executor files.

        * examples/Null_Component/Null_Interface.mpc:
        * examples/Null_Component/Null_Component.mpc:

          Regenerate with the newer generate_component_mpc.pl.

        * examples/Null_Component/Null_Interface_skel_export.h:

          Autogenerated.

        * examples/Null_Component/model/Null_Component.xme:

          Updated the model to take advantage of recent fixes to CoSMIC. For details,
          check the CoSMIC ChangLog entry:

          Thu Oct  4 11:27:17 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * examples/Null_Component/descriptors/NodeMap.dat:

          Removed blank lines. Blank lines now cause the deployment to fail.

        * examples/Null_Component/descriptors/Domain.cdd:
        * examples/Null_Component/descriptors/Null_Assembly.cid:
        * examples/Null_Component/descriptors/Null_Assembly_Package.cpd:
        * examples/Null_Component/descriptors/Null_Component.ccd:
        * examples/Null_Component/descriptors/Null_ComponentMonolithicImpl.cid:
        * examples/Null_Component/descriptors/Null_Component_Package.cpd:
        * examples/Null_Component/descriptors/Null_Component_exec.iad:
        * examples/Null_Component/descriptors/Null_Component_stub.iad:
        * examples/Null_Component/descriptors/Null_Component_svnt.iad:
        * examples/Null_Component/descriptors/PackageConfiguration.pcd:
        * examples/Null_Component/descriptors/Plan.cdp:
        * examples/Null_Component/descriptors/TopLevelPackage.tpd:

          Updated descriptors to reflect changes made to CoSMIC model.

        * examples/Null_Component/plan.h:

          Update plan to reflect changes made to CoSMIC model.

        * examples/Null_Component/descriptors/package.tpd:
        * examples/Null_Component/model/Null_Component.mga:

          Removed these files.

Tue Oct  2 20:34:15 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * bin/generate_component_mpc.pl:

          Enhanced user displayed message.

Tue Oct  2 19:52:30 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * docs/generate_component_mpc.html:

          Changed documentation to match changes made in:
          Fri Sep 28 19:37:39 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

Fri Sep 28 19:58:52 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * CIDLC/UtilityTypeNameEmitters.hpp:

          For some unknown reason, a class declaration was missing from
          this file in updating on other machines, checking it in
          explicitly to make sure.

Fri Sep 28 19:37:39 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * CIDLC/CorbaTypeNameEmitters.cpp:

          Fixed incorrect code generation for a null return of an enum type.

        * CIDLC/ServantSourceGenerator.cpp:

          Changed generated include of Cookies.h to ciao/Cookies.h.

        * CIDLC/ExecImplHeaderGenerator.cpp:
        * CIDLC/ExecImplSourceGenerator.cpp:

          Changed generated context member type from Foo_Context* to
          CCM_Foo_Context_var. Also replaced include of Foo_svnt.h with
          FooEC.h. These changes reverse the existing dependency of
          the executor DLL on the servant DLL, which makes more sense
          since the servant delegates to the executor, which should
          not be coupled with any specific CCM implementation.

        * bin/generate_component_mpc.pl:

          Changed the script to generate default MPC files to reflect the
          dependency changes above. Also split the IDL and CIDL processing
          into separate projects.

Fri Sep 21 22:11:16 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

        * docs/schema/CIAOEvents.txt:

          Added information about naming conventions for filter declaration.

Mon Sep  3 14:49:07 UTC 2007  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * tools/Config_Handlers/IDD_Handler.cpp (CIAO):
        * tools/Config_Handlers/IDD_Handler.cpp (CIAO):
        * tools/Config_Handlers/ADD_Handler.cpp (CIAO):
        * tools/Config_Handlers/MDD_Handler.cpp (CIAO): Changed
          generateUUID() to generate_UUID() to match new ACE-ification of
          the UUID class.

Wed Sep 19 04:10:15 CDT 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * CIAO version 0.6.1 released.

Tue Sep 18 15:13:37 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/NodeApplication/NodeApp_Configurator.cpp:

          StaticDAnCE applications stopped working since the introduction
          of this file. This change fixes the problem. For details look
          into Bugzilla 3073. Thanks to William R. Otte for providing
          the patch.

Fri Sep 14 15:19:17 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/ExecutionManager/Execution_Manager.cpp:

          Fixed a couple of spelling errors to user diplayed messages.

Fri Sep 14 14:42:06 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

        * docs/schema/CIAOEvents.txt:
          Added information about supported federation types.

Wed Sep 12 22:18:03 UTC 2007  Friedhelm Wolf  <fwolf@dre.vanderbilt.edu>

        * docs/schema/CIAOEvents.txt:
          Added documentation about how to integrat TAO Real-Time Event Service
          into an CIAO based deployment.

Tue Sep  4 14:25:24 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.cpp:
        * performance-tests/Benchmark/RoundTripClient/client.cpp:
          Untabify.

Mon Sep 03 02:50:30 CDT 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * CIAO version 0.6 released.

Mon Aug 27 23:04:36 UTC 2007  Nilabja R  <nilabjar@dre.vanderbilt.edu>

        * ciao/Servant_Impl_Base.h:
          Deleted the Private Constructor in the class Servant_Impl_Base.
          This strangely solves the problem on Bug 3060.

Mon Aug 27 13:21:14 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * tools/Config_Handlers/ADD_Handler.cpp:
        * tools/Config_Handlers/Any_Handler.h:
        * tools/Config_Handlers/CCD_Handler.cpp:
        * tools/Config_Handlers/CEPE_Handler.h:
        * tools/Config_Handlers/CPD_Handler.h:
        * tools/Config_Handlers/DP_PCD_Handler.h:
        * tools/Config_Handlers/DP_PCD_Handler.cpp:
        * tools/Config_Handlers/ERE_Handler.h:
        * tools/Config_Handlers/IDD_Handler.cpp:
        * tools/Config_Handlers/Package_Handlers/CAD_Handler.cpp:
        * tools/Config_Handlers/Package_Handlers/CID_Handler.cpp:
        * tools/Config_Handlers/Package_Handlers/CPD_Handler.h:
        * tools/Config_Handlers/Package_Handlers/CPD_Handler.cpp:
        * tools/Config_Handlers/Package_Handlers/Comp_Intf_Descr_Handler.cpp:
        * tools/Config_Handlers/Package_Handlers/IAD_Handler.cpp:
        * tools/Config_Handlers/Package_Handlers/PCD_Handler.cpp:
        * tools/Config_Handlers/Package_Handlers/SID_Handler.h:
        * tools/Config_Handlers/Property_Handler.h:
        * tools/Config_Handlers/RT-CCM/TPL_Handler.h:
        * tools/Config_Handlers/Req_Handler.h:
        * tools/Config_Handlers/Req_Handler.cpp:
        * tools/Config_Handlers/STD_CID_Handler.cpp:
        * tools/Config_Handlers/SatisfierProperty_Handler.h:
        * tools/Config_Handlers/Utils/XML_Helper.h:
        * tools/Config_Handlers/XSCRT/Traversal.hpp:
          Untabify.

Fri Aug 24 14:23:06 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * examples/BasicSP/EC/controller.cpp:
        * examples/Display/NavDisplayGUI_exec/DetailView.cpp:
        * examples/Display/NavDisplayGUI_exec/MapView.cpp:
        * examples/Hello/Receiver/Receiver_exec.h:
        * examples/Hello/Sender/starter.cpp:
        * examples/Null_Component/plan.h:
        * examples/Swapping/Receiver/Receiver_exec.h:
        * examples/Swapping/Sender/starter.cpp:
          Untabify.

Thu Aug 23 22:21:16 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/Deployment/CIAO_NodeApplication_CallBack.idl:
        * DAnCE/NodeApplication/NodeApplication_Impl.cpp:
        * DAnCE/RepositoryManager/ZIP_Wrapper.cpp:
          Untabify.

Tue Aug 21 14:43:24 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * DAnCE/Interfaces/ExecutionManager_stub_export.h:
        * DAnCE/Interfaces/NodeManager_stub_export.h:
        * DAnCE/Interfaces/NodeManager_svnt_export.h:
        * DAnCE/NodeApplication/CIAO_NodeApplication_export.h:
        * DAnCE/NodeApplication/NA_Configurator_Export.h:
        * DAnCE/NodeApplication/NoOp_Configurator_export.h:
        * DAnCE/NodeApplication/NodeApp_Configurator_Export.h:
        * DAnCE/NodeApplication/RTNA_Configurator_Export.h:
        * DAnCE/NodeApplicationManager/CIAO_NAM_Export.h:
        * DAnCE/TargetManager/TargetManager_exec_export.h:
        * DAnCE/TargetManager/TargetManager_stub_export.h:
        * DAnCE/TargetManager/TargetManager_svnt_export.h:
        * DAnCE/tests/NodeApplicationTest/RoundTrip_exec_export.h:
        * DAnCE/tests/NodeApplicationTest/RoundTrip_stub_export.h:
        * DAnCE/tests/NodeApplicationTest/RoundTrip_svnt_export.h:
        * ciao/CIAO_Client_Export.h:
        * ciao/CIAO_Container_Export.h:
        * ciao/CIAO_Server_Export.h:
        * ciaosvcs/Events/CIAO_Events_Base/CIAO_Events_Export.h:
        * ciaosvcs/Events/CIAO_Events_Export.h:
        * docs/tutorials/Quoter/Simple/Broker/Broker_exec_export.h:
        * docs/tutorials/Quoter/Simple/Broker/Broker_stub_export.h:
        * docs/tutorials/Quoter/Simple/Broker/Broker_svnt_export.h:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_exec_export.h:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_stub_export.h:
        * docs/tutorials/Quoter/Simple/Distributor/Distributor_svnt_export.h:
        * docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base_skel_export.h:
        * docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base_stub_export.h:
        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI_exec_exec_export.h:
        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI_exec_export.h:
        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI_exec_stub_export.h:
        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI_exec_svnt_export.h:
        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI_stub_export.h:
        * examples/Display/NavDisplayGUI_exec/NavDisplayGUI_svnt_export.h:
        * examples/Display/RateGen/RateGen_exec_export.h:
        * examples/Hello/Hello_Base/Hello_Base_stub_export.h:
        * examples/Hello/Hello_Base/Hello_Base_svnt_export.h:
        * examples/Hello/Receiver/Receiver_exec_export.h:
        * examples/Hello/Receiver/Receiver_stub_export.h:
        * examples/Hello/Receiver/Receiver_svnt_export.h:
        * examples/Hello/Sender/Sender_exec_export.h:
        * examples/Hello/Sender/Sender_stub_export.h:
        * examples/Hello/Sender/Sender_svnt_export.h:
        * examples/Swapping/Hello_Base/Hello_Base_stub_export.h:
        * examples/Swapping/Hello_Base/Hello_Base_svnt_export.h:
        * examples/Swapping/Receiver/Receiver_exec_export.h:
        * examples/Swapping/Receiver/Receiver_stub_export.h:
        * examples/Swapping/Receiver/Receiver_svnt_export.h:
        * examples/Swapping/Sender/Sender_exec_1_export.h:
        * examples/Swapping/Sender/Sender_exec_2_export.h:
        * examples/Swapping/Sender/Sender_exec_export.h:
        * examples/Swapping/Sender/Sender_stub_export.h:
        * examples/Swapping/Sender/Sender_svnt_export.h:
        * performance-tests/Benchmark/Benchmark_stub_export.h:
        * performance-tests/Benchmark/Benchmark_svnt_export.h:
        * performance-tests/Benchmark/RoundTrip/RoundTrip_exec_export.h:
        * performance-tests/Benchmark/RoundTrip/RoundTrip_stub_export.h:
        * performance-tests/Benchmark/RoundTrip/RoundTrip_svnt_export.h:
        * performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec_export.h:
        * performance-tests/Benchmark/RoundTripClient/RoundTripClient_stub_export.h:
        * performance-tests/Benchmark/RoundTripClient/RoundTripClient_svnt_export.h:
        * performance-tests/Protocols/Receiver/Receiver_exec_export.h:
        * performance-tests/Protocols/Receiver/Receiver_stub_export.h:
        * performance-tests/Protocols/Receiver/Receiver_svnt_export.h:
        * performance-tests/Protocols/Sender/Sender_exec_export.h:
        * performance-tests/Protocols/Sender/Sender_stub_export.h:
        * performance-tests/Protocols/Sender/Sender_svnt_export.h:
        * performance-tests/Protocols/common/Protocols_skel_export.h:
        * performance-tests/Protocols/common/Protocols_stub_export.h:
        * tests/Bug_2130_Regression/SEC_CheckPoint/TSEC_CheckPoint_exec_export.h:
        * tests/Bug_2130_Regression/SEC_CheckPoint/TSEC_CheckPoint_stub_export.h:
        * tests/Bug_2130_Regression/SEC_CheckPoint/TSEC_CheckPoint_svnt_export.h:
        * tests/Bug_2130_Regression/interfaces/ENW_skel_export.h:
        * tests/Bug_2130_Regression/interfaces/ENW_stub_export.h:
        * tests/IDL3/Components/ComplexComponent/Attributes/Attributes_stub_export.h:
        * tests/IDL3/Components/ComplexComponent/Attributes/Attributes_svnt_export.h:
        * tests/IDL3/Components/ComplexComponent/EventSink/EventSink_stub_export.h:
        * tests/IDL3/Components/ComplexComponent/EventSink/EventSink_svnt_export.h:
        * tests/IDL3/Components/ComplexComponent/EventSource/EventSource_stub_export.h:
        * tests/IDL3/Components/ComplexComponent/EventSource/EventSource_svnt_export.h:
        * tests/IDL3/Components/ComplexComponent/Facets/Facets_stub_export.h:
        * tests/IDL3/Components/ComplexComponent/Facets/Facets_svnt_export.h:
        * tests/IDL3/Components/ComplexComponent/Receptacles/Receptacles_stub_export.h:
        * tests/IDL3/Components/ComplexComponent/Receptacles/Receptacles_svnt_export.h:
        * tests/IDL3/Components/SimpleComponent/SimpleComponent_exec_export.h:
        * tests/IDL3/Components/SimpleComponent/SimpleComponent_stub_export.h:
        * tests/IDL3/Components/SimpleComponent/SimpleComponent_svnt_export.h:
        * tests/IDL3/Events/Abstract/Abstract_stub_export.h:
        * tests/IDL3/Events/Abstract/Abstract_svnt_export.h:
        * tests/IDL3/Events/Regular/Regular_stub_export.h:
        * tests/IDL3/Events/Regular/Regular_svnt_export.h:
        * tests/IDL3/Homes/Attributes/HomeAttributes_stub_export.h:
        * tests/IDL3/Homes/Attributes/HomeAttributes_svnt_export.h:
        * tests/IDL3/Homes/Basic/Basic_stub_export.h:
        * tests/IDL3/Homes/Basic/Basic_svnt_export.h:
        * tests/IDL3/Homes/Factory/Factory_stub_export.h:
        * tests/IDL3/Homes/Factory/Factory_svnt_export.h:
        * tests/IDL3/Homes/Finder/Finder_stub_export.h:
        * tests/IDL3/Homes/Finder/Finder_svnt_export.h:
        * tests/IDL3/Homes/Inheritance/Inheritance_stub_export.h:
        * tests/IDL3/Homes/Inheritance/Inheritance_svnt_export.h:
        * tests/IDL3/ImpliedIDL/Components/Basic/ICBasic_stub_export.h:
        * tests/IDL3/ImpliedIDL/Components/Basic/ICBasic_svnt_export.h:
        * tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink_stub_export.h:
        * tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink_svnt_export.h:
        * tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource_stub_export.h:
        * tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource_svnt_export.h:
        * tests/IDL3/ImpliedIDL/Components/Receptacles/ICReceptacles_stub_export.h:
        * tests/IDL3/ImpliedIDL/Components/Receptacles/ICReceptacles_svnt_export.h:
        * tests/IDL3/ImpliedIDL/Events/Events_stub_export.h:
        * tests/IDL3/ImpliedIDL/Events/Events_svnt_export.h:
        * tests/IDL3/ImpliedIDL/Homes/Homes_stub_export.h:
        * tests/IDL3/ImpliedIDL/Homes/Homes_svnt_export.h:
        * tests/Minimum/Minimum_Base/Minimum_Base_stub_export.h:
        * tests/Minimum/Minimum_Base/Minimum_Base_svnt_export.h:
        * tests/Minimum/Receiver/Receiver_exec_export.h:
        * tests/Minimum/Receiver/Receiver_stub_export.h:
        * tests/Minimum/Receiver/Receiver_svnt_export.h:
        * tests/Minimum/Sender/Sender_exec_export.h:
        * tests/Minimum/Sender/Sender_stub_export.h:
        * tests/Minimum/Sender/Sender_svnt_export.h:
        * tools/Config_Handlers/CIAO_Events/CIAO_Events_Handlers_Export.h:
        * tools/Config_Handlers/DynAny_Handler/DynAny_Handler_Export.h:
        * tools/Config_Handlers/RT-CCM/RT_CCM_Handlers_Export.h:
        * tools/Config_Handlers/Utils/CIAO_XML_Utils_Export.h:
        * tools/Config_Handlers/XSC_XML_Handlers_Export.h:
        * tools/IDL3_to_IDL2/TAO_IDL3_TO_IDL2_BE_Export.h:

          Regenerated export files to address compile-time problems
          for static MSVC71 builds.

Mon Aug 20 12:38:12 UTC 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/tutorials/Quoter/Simple/03.html:
          Corrected invalid hyperlink

Wed Aug  8 13:41:12 UTC 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * performance-tests/Protocols/Sender/Sender_exec.cpp:
          Added needed include due to refactoring

Wed Aug  8 07:03:33 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tools/IDL3_to_IDL2/identifier_helper.cpp (original_local_name):

          To the code that removes a prepended '_cxx_' from an indentifier,
          added a check to make sure it was added automatically to avoid
          a C++ keyword clash, and not by the user.

Tue Aug  7 08:57:46 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/IDL3/ImpliedIDL/All/include.idl:
        * tests/IDL3/ImpliedIDL/All/raw_include.idl:
        * tests/IDL3/ImpliedIDL/All/pass_through.idl:

          Added #ifndef guards.

Mon Aug  6 13:00:10 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tools/IDL3_to_IDL2/identifier_helper.cpp (orig_sn):

          Fixed a problem with Borland BCB6 Pro not finding an implicit
          conversion from ACE_CString to char*.

Fri Aug  3 07:40:11 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tools/IDL3_to_IDL2/README:
        * tests/IDL3/ImpliedIDL/All/README:

          Updated documentation in these directories.

Fri Aug  3 07:01:35 UTC 2007  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tools/IDL3_to_IDL2/basic_visitor.cpp:
        * tools/IDL3_to_IDL2/basic_visitor.h:
        * tools/IDL3_to_IDL2/be_sunsoft.cpp:
        * tools/IDL3_to_IDL2/be_sunsoft.h:
        * tools/IDL3_to_IDL2/identifier_helper.cpp:
        * tools/IDL3_to_IDL2/be_helper.cpp:
        * tools/IDL3_to_IDL2/idl3_to_idl2_visitor.cpp:
        * tools/IDL3_to_IDL2/identifier_helper.h:
        * tools/IDL3_to_IDL2/be_helper.h:

          - Changes incorporating enhancements by folks at Thales ATM to
            better handle the mapping of escaped identifiers (masking
            IDL keywords) and identifiers that are C++ keywords from
            IDL3 to IDL2. Thanks to Hakim Souami
            <hakim dot souami at thalesatm dot com> for leading this
            effort.

          - Further changes to build on those above by adding keyword
            handling support for scoped names and component port names.

          - Addition of the capability, also from Thales ATM, to
            optionally generate #includes of IDL files without the
            addition of the default '_IDL2' suffix. This feature is
            necessary when included IDL files aren't available for
            conversion or when 'system' IDL files are included and
            contain only IDL declarations with no 'implied IDL'
            mapping. It is also handy for users who may have similar
            IDL files included and don't wish to run the conversion
            on them needlessly. While Thales ATM's version of this
            feature uses a list of 'excluded' filenames in a text
            file, the feature in this version uses a command line
            option '-x <filename>' for each file to be excluded.

        * tests/IDL3/ImpliedIDL/All/raw_include.idl:
        * tests/IDL3/ImpliedIDL/All/keyword_clash.idl:

          New files that expand the test coverage to include the new
          festures described above.

        * tests/IDL3/ImpliedIDL/All/all.mpc:
        * tests/IDL3/ImpliedIDL/All/pass_through.idl:

          Changes to existing test files to make use of the new files
          listed above.

Thu Aug  2 03:37:40 UTC 2007  Krishnakumar B  <kitty@nospam.invalid.domain>

        * examples/BasicSP/BMDisplay/BMDisplay.mpc:

          Added a dependency from BMDisplay_exec to BasicSP_exec.  Fixes
          problems due to build order.  Thanks to Johnny and Gan for
          reporting the problem.

Fri Jul 27 06:50:14 CDT 2007  Johnny Willemsen  <jwillemsen@remedy.nl>

        * CIAO version 0.5.10 released.

Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End: