forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.352
3812 lines (3297 loc) · 130 KB
/
CHANGES.352
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
Release 3.5.2 (Public Release - 2002-12-23)
- Updated version name and implementation name to reflect release 3.5.2
Affects: dcmdata/include/dcuid.h
- Updated documentation to reflect changes in 3.5.2
Affects: README
Added: ANNOUNCE.352
**** Changes from 2002.12.23 (eichelberg)
- Updated echoscu MSCV project file for OpenSSL support
Affects: dcmnet/apps/echoscu.dsp
- Updated list of supported platforms
Affects: INSTALL
- Updated copyright
Affects: dcmdata/libsrc/dicom.dic
**** Changes from 2002.12.20 (wilkens)
- Modified name clash resulting in a compiler error on Solaris 2.5.1 using
compiler SC 2.0.1.
Affects: dcmpstat/libsrc/Makefile.dep
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvsighdl.cc
dcmsign/dcmsign.dsp
dcmsign/apps/Makefile.dep
dcmsign/apps/dcmsign.cc
dcmsign/libsrc/Makefile.dep
dcmsign/libsrc/Makefile.in
Removed: dcmsign/include/dcmsign.h (is now called dcsignat.h)
dcmsign/libsrc/dcmsign.cc (is now called dcsignat.cc)
Added: dcmsign/include/dcsignat.h (used to be called dcmsign.h)
dcmsign/libsrc/dcsignat.cc (used to be called dcmsign.cc)
- Inserted three casts in order to get rid of compiler warning on Solaris 2.5.1
using compiler SC 2.0.1.
Affects: dcmdata/libsrc/dcistrmz.cc
dcmdata/libsrc/dcostrmz.cc
**** Changes from 2002.12.18 (wilkens)
- Had forgotten to delete some superfluous code. Did it now.
Affects: ofstd/include/ofset.h
**** Changes from 2002.12.17 (wilkens)
- Adapted msvc project file for ofstd.
Affects: ofstd/ofstd.dsp
- Modified code again to keep Sun CC 2.0.1 happy on Solaris 2.5.1 (template
errors).
Affects: ofstd/include/ofset.h
ofstd/include/ofoset.h
**** Changes from 2002.12.16 (wilkens)
- Removed superfluous implementation files and modified header and make files.
Affects: ofstd/include/ofoset.h
ofstd/include/ofset.h
ofstd/include/ofuoset.h
ofstd/libsrc/Makefile.dep
ofstd/libsrc/Makefile.in
Removed: ofstd/libsrc/ofoset.cc
ofstd/libsrc/ofset.cc
ofstd/libsrc/ofuoset.cc
- Added missing #include "osconfig.h" to certain files.
Affects: dcmwlm/apps/wlcefs.h
dcmwlm/include/wlds.h
dcmwlm/include/wldsfs.h
dcmwlm/include/wlfsim.h
dcmwlm/include/wlmactmg.h
dcmwlm/include/wltypdef.h
**** Changes from 2002.12.16 (eichelberg)
- Added configure test that checks if signal handler functions
require ellipse (...) parameters, for example on Irix5.
Affects: config/acconfig.h
config/aclocal.m4
config/configure
config/configure.in
config/include/cfunix.h.in
config/include/cfwin32.h
- Minor modification to shut up linker on MacOS X when compiling
without OpenSSL support
Affects: dcmimage/libsrc/dipitiff.cc
dcmsign/libsrc/dcmsign.cc
dcmsign/libsrc/siautopr.cc
dcmsign/libsrc/sibrsapr.cc
dcmsign/libsrc/sicert.cc
dcmsign/libsrc/sicertvf.cc
dcmsign/libsrc/sicreapr.cc
dcmsign/libsrc/sidsa.cc
dcmsign/libsrc/simaccon.cc
dcmsign/libsrc/simd5.cc
dcmsign/libsrc/sinullpr.cc
dcmsign/libsrc/siprivat.cc
dcmsign/libsrc/siripemd.cc
dcmsign/libsrc/sirsa.cc
dcmsign/libsrc/sisha1.cc
dcmsign/libsrc/sisprof.cc
dcmsign/libsrc/sitypes.cc
- Updated installation instructions and FAQ
Affects: INSTALL
FAQ
- Added configure test that checks if extern "C" inclusion
of <math.h> fails, e.g. on HP/UX 10 and WIN32
Affects: config/acconfig.h
config/aclocal.m4
config/configure
config/configure.in
config/include/cfunix.h.in
config/include/cfwin32.h
ofstd/include/ofstdinc.h
**** Changes from 2002.12.13 (eichelberg)
- Fixed problem in dcmdump, --ignore-errors now works correctly again.
Thanks to Sebastian Meyer <[email protected]> for the bug report
Affects: dcmdata/apps/dcmdump.cc
- Removed unused code reported by the MIPSpro 7.3 optimizer
Affects: dcmwlm/wwwapps/writwlst.cc
imagectn/apps/sceget.cc
imagectn/apps/scemove.cc
imagectn/apps/scestore.cc
imagectn/apps/tinet.cc
imagectn/libsrc/dbstore.cc
- Activated file padding options
Affects: dcmimage/apps/dcmscale.cc
- Removed const from decodeBase64() return code, needed on MIPSpro
Affects: ofstd/include/ofstd.h
ofstd/libsrc/ofstd.cc
- configure now defines the correct CXXFLAGS for Irix 6.
Affects: config/configure
config/configure.in
- Removed obsolete entry from FAQ
Affects: FAQ
- Enabled TLS network connections in echoscu
Affects: dcmnet/apps/Makefile.dep
dcmnet/apps/Makefile.in
dcmnet/apps/echoscu.cc
dcmnet/docs/echoscu.txt
**** Changes from 2002.12.13 (wilkens)
- Modified code to keep Sun CC 2.0.1 happy on Solaris 2.5.1 (unreachable
statement warning).
Affects: dcmwlm/libsrc/wlfsim.cc
- Modified code to keep Sun CC 2.0.1 happy on Solaris 2.5.1 (template errors).
Affects: ofstd/include/ofset.h
ofstd/include/ofoset.h
**** Changes from 2002.12.13 (riesmeier)
- Added explicit type cast to pointer initialization to avoid warning reported
by gcc 2.7.2.1.
Affects: dcmimgle/libsrc/diimage.cc
**** Changes from 2002.12.12 (wilkens)
- Added some code to avoid compiler warning (unreachable code) on Sun CC 2.0.1.
Affects: dcmwlm/libsrc/wlmactmg.cc
dcmwlm/include/wlmactmg.h
- Added some code to avoid compiler warning (unsigned long passed as unsigned
int) on Sun CC 2.0.1.
Affects: dcmwlm/libsrc/wlfsim.cc
**** Changes from 2002.12.12 (riesmeier)
- Added ZLIBLIBS to Makefile to avoid linker errors on IRIX 5.
Affects: dcmdata/tests/Makefile.in
**** Changes from 2002.12.11 (riesmeier)
- Added const type specifier to a "char*" variable declaration to avoid
compiler error on Sun CC 5.2.
Affects: dcmwlm/libsrc/wlfsim.cc
- Added extern "C" declaration to qsort functions to avoid warnings reported
by Sun CC 5.2.
Affects: dcmimage/libsrc/diqtctab.cc
dcmimage/libsrc/diqtpbox.cc
**** Changes from 2002.12.11 (eichelberg)
- Added configure test for type of 5th parameter of getsockopt()
Affects: config/acconfig.h
config/aclocal.m4
config/configure
config/configure.in
config/include/cfunix.h.in
config/include/cfwin32.h
- Now correctly handling three variants of getsockopt(), where the fifth
parameter can be a pointer to int, size_t or socklen_t.
Affects: dcmnet/libsrc/dulfsm.cc
- Minor code correction fixing a warning re setjmp and variable
register allocation issued by gcc 3.2 -Wuninitialized
Affects: dcmjpeg/libsrc/dipijpeg.cc
- Further code correction to avoid warning on MSVC6.
Affects: dcmjpeg/libsrc/dipijpeg.cc
- Updated Makefiles to include MATHLIBS where needed, for OSF/1
Affects: dcmdata/apps/Makefile.in
dcmdata/tests/Makefile.in
dcmjpeg/apps/Makefile.in
dcmnet/apps/Makefile.in
dcmpstat/tests/Makefile.in
dcmsign/apps/Makefile.in
dcmsr/apps/Makefile.in
dcmsr/tests/Makefile.in
dcmwlm/apps/Makefile.in
dcmwlm/tests/Makefile.in
dcmwlm/wwwapps/Makefile.in
imagectn/apps/Makefile.in
imagectn/tests/Makefile.in
ofstd/tests/Makefile.in
- Added empty namespace std declaration, needed on MSVC.
Affects: ofstd/include/ofstdinc.h
ofstd/include/ofstream.h
- Added typecasts to avoid warnings on OSF/1
Affects: dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrul.cc
dcmwlm/libsrc/wlmactmg.cc
- Enable ANSI standard C++ includes on Visual C++ 6 and newer
Affects: config/include/cfwin32.h
**** Changes from 2002.12.10 (riesmeier)
- Added support for the Numeric Value Qualifier Code Sequence (introduced with
CP 260).
Affects: dcmsr/include/dsrnumvl.h
dcmsr/libsrc/dsrnumvl.cc
- Fixed bug that caused createAWTBitmap() to return always empty pixel data.
Affects: dcmimgle/libsrc/dimoimg.cc
- Fixed "cut and paste" error in assignment operator.
Affects: dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrul.cc
- Added curly brackets around debug() call to avoid compiler errors with gcc
2.95 in debug mode.
Affects: dcmdata/libsrc/dcsequen.cc
**** Changes from 2002.12.10 (eichelberg)
- Modified DUL_InitializeNetwork to allow multiple network instances to
be created.
Affects: dcmnet/libsrc/dul.cc
- Removed error code DUL_NETWORKINITIALIZED which is not used anymore
Affects: dcmnet/include/cond.h
dcmnet/libsrc/cond.cc
- Fixed bug in DUL code that caused a hang in DUL_AbortAssociation
when used on Windows 2000.
Thanks to David Lappen <[email protected]> for the bug report.
Affects: dcmnet/libsrc/dul.cc
- Added explicit type cast to avoid compilation error on gcc 3.2
Affects: dcmimage/include/dicopxt.h
- Removed typedef to avoid warnings on various compilers
Affects: dcmdata/include/dcbytstr.h
**** Changes from 2002.12.10 (wilkens)
- Updated the dictionary specification according to the final texts of the
Supplements and Correction Proposals which were published after the 2001
DICOM standard was published.
Affects: dcmdata/include/deftag.h
dcmdata/libsrc/dcdictzz.cc
dcmdata/libsrc/dicom.dic
- Added a comment for clarifying how a specific character set attribute in
C-Find requests is used in the worklist management implementation.
Affects: dcmwlm/docs/wlmscpfs.txt
**** Changes from 2002.12.09 (riesmeier)
- Renamed parameter to avoid name clash with global function index().
Affects: ofstd/include/ofoset.h
ofstd/include/ofset.h
dcmwlm/include/wldsfs.h
dcmwlm/include/wlfsim.h
dcmwlm/libsrc/wldsfs.cc
dcmwlm/libsrc/wlfsim.cc
- Renamed parameter/local variable to avoid name clash with global function
exp().
Affects: ofstd/libsrc/ofstd.cc
- Renamed parameter/local variable to avoid name clashes with global
declaration left and/or right (used for as iostream manipulators).
Affects: dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dvpsov.cc
dcmpstat/libsrc/dvpstat.cc
dcmimgle/include/dcmimage.h
dcmimgle/include/diimage.h
dcmimgle/include/diluptab.h
dcmimgle/include/dimo1img.h
dcmimgle/include/dimo2img.h
dcmimgle/include/dimoimg.h
dcmimgle/include/dimoopxt.h
dcmimgle/include/dimopx.h
dcmimgle/include/dimopxt.h
dcmimgle/include/dimosct.h
dcmimgle/include/diovlay.h
dcmimgle/include/diovpln.h
dcmimgle/include/discalet.h
dcmimgle/libsrc/dcmimage.cc
dcmimgle/libsrc/diluptab.cc
dcmimgle/libsrc/dimo1img.cc
dcmimgle/libsrc/dimo2img.cc
dcmimgle/libsrc/dimoimg.cc
dcmimgle/libsrc/diovlay.cc
dcmimgle/libsrc/diovpln.cc
dcmimage/include/dicoimg.h
dcmimage/include/dicosct.h
dcmimage/libsrc/dicoimg.cc
dcmjpeg/include/djcparam.h
dcmjpeg/libsrc/djcodece.cc
- Renamed local variable to avoid name clash with function parameter "buf".
Affects: dcmnet/libsrc/dulparse.cc
- Renamed local variable to avoid name clash with global declaration "skipws".
Affects: dcmpstat/libsrc/dvpsconf.cc
- Renamed local variable to avoid name clash with function parameter "sum".
Affects: dcmimage/libsrc/diqtctab.cc
- Initialize member variables in the member initialization list.
Affects: ofstd/include/ofset.h
- Replaced tab characters by spaces.
Affects: ofstd/include/ofcmdln.h
- Added private undefined copy constructor and/or assignment operator.
Affects: ofstd/libsrc/ofstd.cc
dcmimage/include/dicopxt.h
dcmwlm/include/wlfsim.h
- Added copy constructor and private undefined assignment operator.
Affects: ofstd/tests/tstftoa.cc
- Added new source file "dcvrof.cxx" to MSVC makefile.
Affects: dcmdata/dcmdata.dsp
- Fixed bug that caused method createAWTBitmap() to return always empty pixel
data.
Affects: dcmimage/include/dicopxt.h
- Added dependency from module dcmimgle to project dcmdjpeg.
Affects: dcmtk.dsw
**** Changes from 2002.12.09 (eichelberg)
- Updated list of UIDs
Affects: dcmdata/include/dcuid.h
dcmdata/libsrc/dcuid.cc
dcmnet/docs/movescu.txt
dcmnet/docs/storescp.txt
dcmnet/docs/storescu.txt
imagectn/docs/imagectn.txt
**** Changes from 2002.12.09 (wilkens)
- Modified/Added doc++ documentation.
Affects: dcmdata/include/dcitem.h
dcmdata/include/dcelem.h
dcmdata/include/dcdatset.h
dcmdata/include/dcpixel.h
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcpixel.cc
**** Changes from 2002.12.06 (riesmeier)
- Added support for new value representation Other Float String (OF).
Added: dcmdata/include/dcvrof.h
dcmdata/libsrc/dcvrof.cc
Affects: dcmdata/apps/Makefile.dep
dcmdata/include/dctk.h
dcmdata/include/dcvr.h
dcmdata/libsrc/Makefile.dep
dcmdata/libsrc/Makefile.in
dcmdata/libsrc/dcvr.cc
- Fixed bug in Unlimited Text (UT) class: the backslash character was treated
as a component separator which is wrong according to the DICOM standard.
Thanks to Razvan Costea-B. <[email protected]> for the bug report.
The same bug was found in class Long Text (LT) and Short Text (ST). Also
changed the behaviour of the getVM() method; now returns 1 only in case of
non-empty string values.
Affects: dcmdata/libsrc/dcvrlt.cc
dcmdata/libsrc/dcvrst.cc
dcmdata/libsrc/dcvrut.cc
- Enhanced "print()" function by re-working the implementation and replacing
the boolean "showFullData" parameter by a more general integer flag.
Affects: dcmdata/apps/dcmdump.cc
dcmdata/include/dcbytstr.h
dcmdata/include/dcchrstr.h
dcmdata/include/dcdatset.h
dcmdata/include/dcdicdir.h
dcmdata/include/dcdirrec.h
dcmdata/include/dcelem.h
dcmdata/include/dcfilefo.h
dcmdata/include/dcitem.h
dcmdata/include/dcmetinf.h
dcmdata/include/dcobject.h
dcmdata/include/dcpixel.h
dcmdata/include/dcpixseq.h
dcmdata/include/dcpxitem.h
dcmdata/include/dcsequen.h
dcmdata/include/dctypes.h
dcmdata/include/dcvrae.h
dcmdata/include/dcvras.h
dcmdata/include/dcvrat.h
dcmdata/include/dcvrcs.h
dcmdata/include/dcvrda.h
dcmdata/include/dcvrds.h
dcmdata/include/dcvrdt.h
dcmdata/include/dcvrfd.h
dcmdata/include/dcvrfl.h
dcmdata/include/dcvris.h
dcmdata/include/dcvrlo.h
dcmdata/include/dcvrlt.h
dcmdata/include/dcvrobow.h
dcmdata/include/dcvrpn.h
dcmdata/include/dcvrsh.h
dcmdata/include/dcvrsl.h
dcmdata/include/dcvrss.h
dcmdata/include/dcvrst.h
dcmdata/include/dcvrtm.h
dcmdata/include/dcvrui.h
dcmdata/include/dcvrul.h
dcmdata/include/dcvrulup.h
dcmdata/include/dcvrus.h
dcmdata/include/dcvrut.h
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcobject.cc
dcmdata/libsrc/dcpixel.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dctypes.cc
dcmdata/libsrc/dcvrae.cc
dcmdata/libsrc/dcvras.cc
dcmdata/libsrc/dcvrat.cc
dcmdata/libsrc/dcvrcs.cc
dcmdata/libsrc/dcvrda.cc
dcmdata/libsrc/dcvrds.cc
dcmdata/libsrc/dcvrdt.cc
dcmdata/libsrc/dcvrfd.cc
dcmdata/libsrc/dcvrfl.cc
dcmdata/libsrc/dcvris.cc
dcmdata/libsrc/dcvrlo.cc
dcmdata/libsrc/dcvrpn.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrsh.cc
dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrss.cc
dcmdata/libsrc/dcvrtm.cc
dcmdata/libsrc/dcvrui.cc
dcmdata/libsrc/dcvrul.cc
dcmdata/libsrc/dcvrulup.cc
dcmdata/libsrc/dcvrus.cc
- Added new error status "EC_ApplicationProfileViolated".
Affects: dcmdata/include/dcerror.h
dcmdata/libsrc/dcerror.cc
- Added doc++ documentation.
Affects: dcmdata/include/dcbytstr.h
dcmdata/include/dcchrstr.h
dcmdata/include/dcdatset.h
dcmdata/include/dcdicdir.h
dcmdata/include/dcdirrec.h
dcmdata/include/dcelem.h
dcmdata/include/dcfilefo.h
dcmdata/include/dcitem.h
dcmdata/include/dcmetinf.h
dcmdata/include/dcobject.h
dcmdata/include/dcpixel.h
dcmdata/include/dcpixseq.h
dcmdata/include/dcpxitem.h
dcmdata/include/dcsequen.h
dcmdata/include/dcvrae.h
dcmdata/include/dcvras.h
dcmdata/include/dcvrat.h
dcmdata/include/dcvrcs.h
dcmdata/include/dcvrda.h
dcmdata/include/dcvrds.h
dcmdata/include/dcvrdt.h
dcmdata/include/dcvrfd.h
dcmdata/include/dcvrfl.h
dcmdata/include/dcvris.h
dcmdata/include/dcvrlo.h
dcmdata/include/dcvrlt.h
dcmdata/include/dcvrobow.h
dcmdata/include/dcvrpn.h
dcmdata/include/dcvrsh.h
dcmdata/include/dcvrsl.h
dcmdata/include/dcvrss.h
dcmdata/include/dcvrst.h
dcmdata/include/dcvrtm.h
dcmdata/include/dcvrui.h
dcmdata/include/dcvrul.h
dcmdata/include/dcvrulup.h
dcmdata/include/dcvrus.h
dcmdata/include/dcvrut.h
- Made source code formatting more consistent with other modules/files.
Affects: dcmdata/include/dcbytstr.h
dcmdata/include/dcchrstr.h
dcmdata/include/dcdatset.h
dcmdata/include/dcdicdir.h
dcmdata/include/dcdirrec.h
dcmdata/include/dcelem.h
dcmdata/include/dcfilefo.h
dcmdata/include/dcitem.h
dcmdata/include/dcmetinf.h
dcmdata/include/dcobject.h
dcmdata/include/dcpixel.h
dcmdata/include/dcpixseq.h
dcmdata/include/dcpxitem.h
dcmdata/include/dcsequen.h
dcmdata/include/dcvrae.h
dcmdata/include/dcvras.h
dcmdata/include/dcvrat.h
dcmdata/include/dcvrcs.h
dcmdata/include/dcvrda.h
dcmdata/include/dcvrds.h
dcmdata/include/dcvrdt.h
dcmdata/include/dcvrfd.h
dcmdata/include/dcvrfl.h
dcmdata/include/dcvris.h
dcmdata/include/dcvrlo.h
dcmdata/include/dcvrlt.h
dcmdata/include/dcvrobow.h
dcmdata/include/dcvrpn.h
dcmdata/include/dcvrsh.h
dcmdata/include/dcvrsl.h
dcmdata/include/dcvrss.h
dcmdata/include/dcvrst.h
dcmdata/include/dcvrtm.h
dcmdata/include/dcvrui.h
dcmdata/include/dcvrul.h
dcmdata/include/dcvrulup.h
dcmdata/include/dcvrus.h
dcmdata/include/dcvrut.h
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcchrstr.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
dcmdata/libsrc/dcobject.cc
dcmdata/libsrc/dcpixel.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcpxitem.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcvrae.cc
dcmdata/libsrc/dcvras.cc
dcmdata/libsrc/dcvrat.cc
dcmdata/libsrc/dcvrcs.cc
dcmdata/libsrc/dcvrda.cc
dcmdata/libsrc/dcvrds.cc
dcmdata/libsrc/dcvrdt.cc
dcmdata/libsrc/dcvrfd.cc
dcmdata/libsrc/dcvrfl.cc
dcmdata/libsrc/dcvris.cc
dcmdata/libsrc/dcvrlo.cc
dcmdata/libsrc/dcvrlt.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrpn.cc
dcmdata/libsrc/dcvrsh.cc
dcmdata/libsrc/dcvrsl.cc
dcmdata/libsrc/dcvrss.cc
dcmdata/libsrc/dcvrst.cc
dcmdata/libsrc/dcvrtm.cc
dcmdata/libsrc/dcvrui.cc
dcmdata/libsrc/dcvrul.cc
dcmdata/libsrc/dcvrulup.cc
dcmdata/libsrc/dcvrus.cc
dcmdata/libsrc/dcvrut.cc
- Replaced some German comments by English translations.
Affects: dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcmetinf.cc
**** Changes from 2002.12.05 (riesmeier)
- Replaced term "wlistctn" by "dcmwlm" or "wlmscpfs" respectively.
Affects: INSTALL
config/modules
- Make sure that no warning on "unchecked command line options" is reported in
debug mode when an exclusive option is used.
Affects: ofstd/include/ofcmdln.h
- Moved definition of ftoa() processing flags to implementation file to avoid
compiler errors (e.g. on Sun CC 2.0.1).
Affects: ofstd/include/ofstd.h
ofstd/libsrc/ofstd.cc
- Added further checks when reading SR documents (e.g. value of VerificationFlag,
CompletionsFlag, ContinuityOfContent and SpecificCharacterSet).
Affects: dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrcontn.cc
dcmsr/libsrc/dsrscovl.cc
dcmsr/libsrc/dsrtcovl.cc
- Added missing "processing ..." message for the root content item.
Affects: dcmsr/libsrc/dsrdoctr.cc
- Fixed typo.
Affects: dcmdata/apps/dump2dcm.cc
**** Changes from 2002.12.05 (eichelberg)
- Modified code to avoid a "sorry, not implemented" error on Sun CC 2.0.1
Affects: ofstd/tests/tstftoa.cc
**** Changes from 2002.12.04 (eichelberg)
- Implemented a locale independent function OFStandard::ftoa() that
converts double to string and offers all the flexibility of the
sprintf family of functions.
Affects: COPYRIGHT
config/docs/macros.txt
ofstd/include/ofstd.h
ofstd/libsrc/ofstd.cc
ofstd/tests/Makefile.dep
ofstd/tests/Makefile.in
Added: ofstd/tests/tstftoa.cc
- Changed toolkit to use OFStandard::ftoa instead of sprintf for all
double to string conversions that are supposed to be locale independent
Affects: dcmdata/libsrc/Makefile.dep
dcmdata/libsrc/dcrlecce.cc
dcmdata/libsrc/dcvrfd.cc
dcmdata/libsrc/dcvrfl.cc
dcmimage/apps/Makefile.dep
dcmimage/apps/dcm2pnm.cc
dcmimgle/libsrc/Makefile.dep
dcmimgle/libsrc/diimage.cc
dcmjpeg/libsrc/Makefile.dep
dcmjpeg/libsrc/djcodece.cc
dcmpstat/apps/Makefile.dep
dcmpstat/apps/dcmmklut.cc
dcmpstat/libsrc/Makefile.dep
dcmpstat/libsrc/dvpsda.cc
dcmpstat/libsrc/dvpssv.cc
dcmpstat/libsrc/dvpstat.cc
dcmpstat/libsrc/dvpsvw.cc
dcmsr/libsrc/Makefile.dep
dcmsr/libsrc/dsrtcoto.cc
ofstd/libsrc/Makefile.dep
ofstd/libsrc/oftime.cc
- Updated Visual C++ workspace file
Affects: dcmtk.dsw
**** Changes from 2002.12.03 (eichelberg)
- Updated Visual C++ project files in dcmwlm module
Affects: dcmwlm/dcmwlm.dsp
dcmwlm/apps/wlmscpfs.dsp
- Removed wlistctn module which has been superseded by the new dcmwlm module.
Removed: wlistctn/Makefile.in
wlistctn/configure
wlistctn/wrklstdb.dsp
wlistctn/apps/Makefile.dep
wlistctn/apps/Makefile.in
wlistctn/apps/sce.cc
wlistctn/apps/sce.h
wlistctn/apps/sceecho.cc
wlistctn/apps/sceecho.h
wlistctn/apps/scefind.cc
wlistctn/apps/scefind.h
wlistctn/apps/wlistctn.cc
wlistctn/apps/wlistctn.dsp
wlistctn/apps/wlistctn.h
wlistctn/docs/Makefile.in
wlistctn/docs/wlistctn.txt
wlistctn/docs/wwwapp.doc
wlistctn/docs/wwwapp.txt
wlistctn/images/offis.gif
wlistctn/include/Makefile.in
wlistctn/include/wrklstdb.h
wlistctn/libsrc/Makefile.dep
wlistctn/libsrc/Makefile.in
wlistctn/libsrc/wrklstdb.cc
wlistctn/perl/changepw.pl
wlistctn/perl/checkvr.ph
wlistctn/perl/isocode.ph
wlistctn/perl/layout.ph
wlistctn/perl/lock.ph
wlistctn/perl/log.ph
wlistctn/perl/main.pl
wlistctn/perl/password.ph
wlistctn/perl/patidel.pl
wlistctn/perl/patiedit.pl
wlistctn/perl/patient.pl
wlistctn/perl/prefs.ph
wlistctn/perl/procdel.pl
wlistctn/perl/procedit.pl
wlistctn/perl/procedur.pl
wlistctn/perl/procstep.pl
wlistctn/perl/prstdel.pl
wlistctn/perl/prstedit.pl
wlistctn/perl/statdel.pl
wlistctn/perl/statedit.pl
wlistctn/perl/station.pl
wlistctn/perl/urldecod.ph
wlistctn/perl/workdel.pl
wlistctn/perl/workedit.pl
wlistctn/perl/worklist.pl
wlistctn/perl/write.ph
wlistctn/tests/Makefile.dep
wlistctn/tests/Makefile.in
wlistctn/tests/wltest.cc
wlistctn/wlistdb/README
wlistctn/wlistdb/OFFIS/lockfile
wlistctn/wlistdb/OFFIS/wklist1.dump
wlistctn/wlistdb/OFFIS/wklist10.dump
wlistctn/wlistdb/OFFIS/wklist2.dump
wlistctn/wlistdb/OFFIS/wklist3.dump
wlistctn/wlistdb/OFFIS/wklist4.dump
wlistctn/wlistdb/OFFIS/wklist5.dump
wlistctn/wlistdb/OFFIS/wklist6.dump
wlistctn/wlistdb/OFFIS/wklist7.dump
wlistctn/wlistdb/OFFIS/wklist8.dump
wlistctn/wlistdb/OFFIS/wklist9.dump
wlistctn/wlistqry/README
wlistctn/wlistqry/wlistqry0.dump
wlistctn/wlistqry/wlistqry1.dump
wlistctn/wlistqry/wlistqry10.dump
wlistctn/wlistqry/wlistqry11.dump
wlistctn/wlistqry/wlistqry12.dump
wlistctn/wlistqry/wlistqry2.dump
wlistctn/wlistqry/wlistqry3.dump
wlistctn/wlistqry/wlistqry4.dump
wlistctn/wlistqry/wlistqry5.dump
wlistctn/wlistqry/wlistqry6.dump
wlistctn/wlistqry/wlistqry7.dump
wlistctn/wlistqry/wlistqry8.dump
wlistctn/wlistqry/wlistqry9.dump
wlistctn/wwwapps/Makefile.dep
wlistctn/wwwapps/Makefile.in
wlistctn/wwwapps/preplock.cc
wlistctn/wwwapps/readoviw.cc
wlistctn/wwwapps/readwlst.cc
wlistctn/wwwapps/writwlst.cc
**** Changes from 2002.12.03 (wilkens)
- Added files und functionality from the dcmtk/wlistctn folder to dcmtk/dcmwlm
so that dcmwlm can now completely replace wlistctn in the public domain part
of dcmtk. Pertaining to this replacement requirement, another optional return
key attribute was integrated into the wlm utilities.
Affects: dcmwlm/Makefile.in
dcmwlm/libsrc/wlds.cc
dcmwlm/tests/Makefile.in
Added: dcmwlm/docs/wwwapp.doc
dcmwlm/docs/wwwapp.txt
dcmwlm/images/
dcmwlm/images/offis.gif
dcmwlm/perl/
dcmwlm/perl/changepw.pl
dcmwlm/perl/checkvr.ph
dcmwlm/perl/isocode.ph
dcmwlm/perl/layout.ph
dcmwlm/perl/lock.ph
dcmwlm/perl/log.ph
dcmwlm/perl/main.pl
dcmwlm/perl/password.ph
dcmwlm/perl/patidel.pl
dcmwlm/perl/patiedit.pl
dcmwlm/perl/patient.pl
dcmwlm/perl/prefs.ph
dcmwlm/perl/procdel.pl
dcmwlm/perl/procedit.pl
dcmwlm/perl/procedur.pl
dcmwlm/perl/procstep.pl
dcmwlm/perl/prstdel.pl
dcmwlm/perl/prstedit.pl
dcmwlm/perl/statdel.pl
dcmwlm/perl/statedit.pl
dcmwlm/perl/station.pl
dcmwlm/perl/urldecod.ph
dcmwlm/perl/workdel.pl
dcmwlm/perl/workedit.pl
dcmwlm/perl/worklist.pl
dcmwlm/perl/write.ph
dcmwlm/tests/Makefile.dep
dcmwlm/tests/wltest.cc
dcmwlm/wlistdb/
dcmwlm/wlistdb/README
dcmwlm/wlistdb/OFFIS/
dcmwlm/wlistdb/OFFIS/
dcmwlm/wlistdb/OFFIS/lockfile
dcmwlm/wlistdb/OFFIS/wklist1.dump
dcmwlm/wlistdb/OFFIS/wklist10.dump
dcmwlm/wlistdb/OFFIS/wklist2.dump
dcmwlm/wlistdb/OFFIS/wklist3.dump
dcmwlm/wlistdb/OFFIS/wklist4.dump
dcmwlm/wlistdb/OFFIS/wklist5.dump
dcmwlm/wlistdb/OFFIS/wklist6.dump
dcmwlm/wlistdb/OFFIS/wklist7.dump
dcmwlm/wlistdb/OFFIS/wklist8.dump
dcmwlm/wlistdb/OFFIS/wklist9.dump
dcmwlm/wlistqry/
dcmwlm/wlistqry/README/
dcmwlm/wlistqry/wlistqry0.dump
dcmwlm/wlistqry/wlistqry1.dump
dcmwlm/wlistqry/wlistqry10.dump
dcmwlm/wlistqry/wlistqry11.dump
dcmwlm/wlistqry/wlistqry12.dump
dcmwlm/wlistqry/wlistqry2.dump
dcmwlm/wlistqry/wlistqry3.dump
dcmwlm/wlistqry/wlistqry4.dump
dcmwlm/wlistqry/wlistqry5.dump
dcmwlm/wlistqry/wlistqry6.dump
dcmwlm/wlistqry/wlistqry7.dump
dcmwlm/wlistqry/wlistqry8.dump
dcmwlm/wlistqry/wlistqry9.dump
dcmwlm/wwwapps/
dcmwlm/wwwapps/Makefile.dep
dcmwlm/wwwapps/Makefile.in
dcmwlm/wwwapps/preplock.cc
dcmwlm/wwwapps/readoviw.cc
dcmwlm/wwwapps/readwlst.cc
dcmwlm/wwwapps/writwlst.cc
**** Changes from 2002.11.29 (riesmeier)
- Fixed doc++ warning about different number of opening and closing brackets.
Affects: dcmdata/libsrc/dcxfer.cc
- Replaced German comments by English translations.
Affects: dcmdata/libsrc/dcxfer.cc
**** Changes from 2002.11.29 (eichelberg)
- Introduced new command line option --timeout for controlling the
connection request timeout.
Affects: dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescu.cc
dcmnet/docs/echoscu.txt
dcmnet/docs/findscu.txt
dcmnet/docs/movescu.txt
dcmnet/docs/storescu.txt
dcmpstat/apps/dcmprscu.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/include/dvpscf.h
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpscf.cc
dcmpstat/tests/test.cfg
imagectn/apps/imagectn.cc
imagectn/apps/ti.cc
imagectn/docs/imagectn.txt
imagectn/docs/ti.txt
**** Changes from 2002.11.29 (wilkens)
- Modified call to getsockopt() in order to avoid compiler warning.
Affects: dcmnet/libsrc/dul.cc
- Modified variable initialization in order to avoid compiler warning.
Affects: dcmnet/libsrc/dul.cc
- Corrected dumping of hex values.
Affects: dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulfsm.cc
dcmnet/libsrc/dulparse.cc
- Changed VR of PerformedProcedureStepID from CS to SH.
Affects: dcmdata/libsrc/dcdictzz.cc
dcmdata/libsrc/dicom.dic
- Adapted ti utility to command line classes and added option '-xi'.
Affects: imagectn/apps/cnf.cc
imagectn/apps/cnf.h
imagectn/apps/cnfexnt.cc
imagectn/apps/cnfpriv.cc
imagectn/apps/cnfpriv.h
imagectn/apps/ti.cc
imagectn/apps/ti.h
imagectn/apps/tinet.cc
imagectn/apps/tiquery.cc
imagectn/apps/tiui.cc
**** Changes from 2002.11.28 (riesmeier)
- Removed explicit dependency from config.h.
Affects: dcmwlm/apps/Makefile.in
dcmwlm/libsrc/Makefile.in
- Introduced variable extensions for binary files to support platforms like
Cygwin (filename extension ".exe").
Affects: dcmwlm/apps/Makefile.in
- Renamed config.h to cfunix.h to avoid name clashes with other packages.
Affects: dcmwlm/apps/Makefile.dep
**** Changes from 2002.11.28 (eichelberg)
- Added global flag dcmConnectionTimeout that defines a timeout for
outgoing association requests in the DICOM upper layer.
Thanks to Stefan Allers <[email protected]> for the contribution.
Affects: dcmnet/include/dul.h
dcmnet/libsrc/dul.cc
dcmnet/libsrc/dulfsm.cc
- Introduced new command line option --timeout for controlling the
connection request timeout.
Affects: dcmnet/apps/echoscu.cc
- Fixed incorrect comment.
Thanks to Stefan Allers <[email protected]> for the report.
Affects: dcmnet/libsrc/assoc.cc
- Including <math.h> without extern "C" on Win32 to avoid problem with MSVC5.
Affects: ofstd/include/ofstdinc.h
**** Changes from 2002.11.27 (eichelberg)
- Fixed bug in ofstack inclusion code
Affects: ofstd/include/ofstdinc.h
- Now including <strings.h> even if <string.h> is present.
Affects: ofstd/include/ofstdinc.h
- Added private tags for DCMTK anonymizer tool
Affects: dcmdata/libsrc/private.dic
- Added configure tests for a few ANSI C header files
Affects: config/configure.in
config/configure
config/include/cfunix.h.in
config/include/cfwin32.h
- Added new file ofstdinc.h that encapsulates the inclusion
of old style vs. ISO C++ standard header files.
Added: ofstd/include/ofstdinc.h
- Adapted module ofstd to use of new header file ofstdinc.h
Affects: ofstd/include/ofbmanip.h
ofstd/include/ofcmdln.h
ofstd/include/ofconsol.h
ofstd/include/oflist.h
ofstd/include/oflogfil.h
ofstd/include/ofstack.h
ofstd/include/ofstd.h
ofstd/include/ofstring.h
ofstd/libsrc/Makefile.dep
ofstd/libsrc/ofconsol.cc
ofstd/libsrc/ofdate.cc
ofstd/libsrc/ofdatime.cc
ofstd/libsrc/offname.cc
ofstd/libsrc/oflogfil.cc