forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.342
2594 lines (2161 loc) · 85.9 KB
/
CHANGES.342
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.4.2 (Public Release - 2000-12-20)
- Updated Version Number and Implementation Version Name to reflect the
current public release (3.4.2)
Affects: dcmdata/include/dcuid.h
- Updated documentation to reflect changes in 3.4.2
Affects: INSTALL
Added: ANNOUNCE.342
**** Changes from 2000.12.20 (riesmeier)
- Updated documentation (minor changes).
Affects: config/systems/win32/README
ANNOUNCE.342
INSTALL
FAQ
**** Changes from 2000.12.20 (eichelberg)
- Renamed CHANGES to CHANGES.342.
Removed: CHANGES
Added: CHANGES.342
- Updated README to mention dcmtls module.
Affects: README
- Updated documentation on TLS ciphers available in OpenSSL.
Affects: dcmtls/docs/ciphers.txt
- Updated ti documentation.
Affects: imagectn/docs/ti.txt
- Fixed remaining problems with configure on FreeBSD.
Affects: config/aclocal.m4
config/configure
- Moved old CHANGES and ANNOUNCE files to docs subdirectory.
Added: docs/ANNOUNCE.310
docs/ANNOUNCE.311
docs/ANNOUNCE.312
docs/ANNOUNCE.320
docs/ANNOUNCE.321
docs/ANNOUNCE.330
docs/ANNOUNCE.331
docs/ANNOUNCE.340
docs/ANNOUNCE.341
docs/CHANGES.301
docs/CHANGES.302
docs/CHANGES.310
docs/CHANGES.311
docs/CHANGES.312
docs/CHANGES.320
docs/CHANGES.321
docs/CHANGES.330
docs/CHANGES.331
docs/CHANGES.340
docs/CHANGES.341
Removed: ANNOUNCE
CHANGES.301
CHANGES.302
CHANGES.310
CHANGES.311
CHANGES.312
CHANGES.320
CHANGES.321
CHANGES.330
CHANGES.331
CHANGES.340
CHANGES.341
**** Changes from 2000.12.19 (riesmeier)
- Added #include statement to keep gcc 2.5.8 (NeXTSTEP) quiet.
Affects: dcmpstat/apps/Makefile.dep
dcmpstat/libsrc/Makefile.dep
dcmpstat/libsrc/dvpshlp.cc
**** Changes from 2000.12.19 (eichelberg)
- Renamed typedef T_UID which leads to name clash with system macro on OSF/1.
Affects: dcmnet/libsrc/assoc.cc
- Updated configure for the FreeBSD Posix implementation which requires
a special gcc option -pthread to cause linking with libc_r instead of libc.
Affects: config/acconfig.h
config/aclocal.m4
config/configure
config/configure.in
config/include/cfwin32.h
config/include/config.h.in
- Added test for a strncasecmp prototype in <string.h>, missing on Ultrix
and SunOS 4.1.x.
Affects: dcmpstat/libsrc/dvpscf.cc
- Inclusion of TCP header files now protected by extern "C", needed on Ultrix.
Affects: dcmpstat/libsrc/dvpsmsg.cc
- Thread related classes now correctly disabled when configured
with --disable-threads.
Affects: ofstd/libsrc/ofthread.cc
- Updated tlstrans for Irix 5 compatibility issues.
Affects: dcmtls/libsrc/tlstrans.cc
**** Changes from 2000.12.18 (riesmeier)
- Updated Visual C++ project files.
Affects: config/systems/win32/msvc5.zip
**** Changes from 2000.12.15 (eichelberg)
- Added two new FAQ entries
Affects: FAQ
- Updated installation instructions for OpenSSL support
Affects: INSTALL
- Updated root level configure to correctly display configure --help options.
Affects: config/rootconf
- Declared qsort() and signal() callback functions as extern "C", avoids
warnings on Sun C++ 5.x compiler.
Thanks to Dimitri Papadopoulos-Orfanos <[email protected]> for the report.
Affects: dcmnet/libsrc/dul.cc
imagectn/apps/ti.cc
imagectn/apps/tiquery.cc
imagectn/include/dbpriv.h
imagectn/libsrc/dbstore.cc
imagectn/libsrc/dbutils.cc
wlistctn/libsrc/wrklstdb.cc
- Global flag to enable/disable workaround code for some buggy Store SCUs
in DIMSE_storeProvider(). If enabled, an illegal space-padding in the
Affected SOP Instance UID field of the C-STORE-RQ message is retained
in the corresponding C-STORE-RSP message.
Thanks to Gilles Mevel <[email protected]> for the problem report
and workaround suggestion.
Affects: dcmnet/libsrc/storescp.cc
dcmnet/include/dimse.h
dcmnet/libsrc/dimcmd.cc
dcmnet/libsrc/dimstore.cc
- Rebuild Makefile dependencies
Affects: */*/Makefile.dep
- Updated Visual C++ project files
Affects: config/systems/win32/msvc5.zip
**** Changes from 2000.12.14 (riesmeier)
- Updated SOP Class and Transfer Syntax UIDs for 2000 edition of the DICOM
standard.
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
- Updated for 2000 edition of the DICOM standard (added: SR, PR, WV, SP, RT).
Affects: dcmdata/apps/dcmgpdir.cc
dcmdata/docs/dcmgpdir.txt
dcmdata/include/dcdirrec.h
dcmdata/libsrc/dcdirrec.cc
- Ignore modality LUT transform for XA and XRF images (report message on that
in verbose mode).
Affects: dcmimgle/libsrc/Makefile.dep
dcmimgle/libsrc/dimomod.cc
**** Changes from 2000.12.13 (riesmeier)
- Added explicit typecast to keep gcc 2.5.8 (NeXTSTEP) quiet.
Affects: dcmpstat/libsrc/dviface.cc
- Introduced dummy parameter for "default" constructor of class OFConsole
to "convince" linker of gcc 2.5.8 (NeXTSTEP) to allocate memory for global
variable 'ofConsole'.
Affects: ofstd/include/ofconsol.h
ofstd/libsrc/ofconsol.cc
**** Changes from 2000.12.13 (eichelberg)
- Introduced configure test for -lm which is not present on all
platforms but required on some.
Affects: config/Makefile.def.in
config/configure
config/configure.in
dcmimgle/apps/Makefile.in
dcmpstat/apps/Makefile.in
dcmtls/apps/Makefile.in
- Including dcompat.h, needed on MacOS X
Affects: dcmpstat/apps/dcmprscu.cc
- Removed unused local variables
Affects: dcmpstat/libsrc/dviface.cc
**** Changes from 2000.12.12 (eichelberg)
- Minor changes to keep gcc 2.7.x on SunOS 4.1.3 happy
Affects: dcmnet/libsrc/dcmtrans.cc
dcmnet/libsrc/dul.cc
dcmnet/apps/dcmmklut.cc
dcmnet/libsrc/dvpsmsg.cc
dcmnet/tests/msgserv.cc
dcmsign/libsrc/dcmsign.cc
imagectn/apps/tiui.cc
- Added documentation for Pseudo Random Number Generator Daemon (PRNGD)
Affects: dcmtls/docs/randseed.txt
**** Changes from 2000.12.12 (riesmeier)
- Replaced #ifdef HAVE_WINDOWS_H by _WIN32 to allow Cygwin 1.1.x to compile
with Posix threads.
Affects: dcmdata/libsrc/dcuid.cc
- Renamed method to avoid ambiguity reported by gcc 2.7.
Affects: dcmsr/include/dsrtlist.h
- Added explicit typecast to keep gcc 2.7 quiet.
Affects: dcmsr/libsrc/dsrtypes.cc
- Changed type of stream 'open_mode' from long to int to avoid compiler
warnings reported by SunCC 2.0.1.
Affects: ofstd/include/oflogfil.h
ofstd/libsrc/oflogfil.cc
- Added explicit typecast to keep SunCC 2.0.1 quiet.
Affects: dcmsr/libsrc/dsrdoc.cc
- Added '#include <libc.h>' to avoid problems with gcc 2.5.8 on NeXTSTEP 3.x
systems.
Affects: imagectn/apps/imagectn.cc
wlistctn/apps/wlistctn.cc
**** Changes from 2000.12.11 (riesmeier)
- Added explicit typecast to keep SunCC 2.0.1 quiet.
Affects: imagectn/apps/imagectn.cc
dcmpstat/apps/dcmmklut.cc
- Added library 'ofstd' to link command line tools with SunCC 2.0.1.
Affects: ctndisp/apps/Makefile.in
- Removed name of (conditionally) unused method parameters to avoid compiler
warnings (SunCC 2.0.1).
Affects: dcmpstat/libsrc/dviface.cc
**** Changes from 2000.12.08 (riesmeier)
- Separated module dcmsr from dcmpstat (use #define WITH_DCMSR to re-include
it - probably also requires modification of makefiles).
Affects: dcmpstat/apps/Makefile.dep
dcmpstat/apps/Makefile.in
dcmpstat/libsrc/Makefile.dep
dcmpstat/libsrc/dviface.cc
config/modules
- Renamed createNewSeries(studyUID) to createNewSeriesInStudy(studyUID).
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
dcmsr/tests/mkreport.cc
- Removed optional fractional second part from time value.
Affects: dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrtypes.cc
- Reworked codes used for sample SR documents.
Affects: dcmsr/tests/mkreport.cc
- Rebuilt makefile dependencies.
Affects: dcmimgle/libsrc/Makefile.dep
- Replaced empty code lines (";") by empty command blocks ("{}") to avoid
compiler warnings reported by MSVC6.
Affects: dcmsr/apps/dsr2html.cc
**** Changes from 2000.11.23 (riesmeier)
- Added new command line option to dbregimg allowing to specify whether
instance reviewed status of newly registered objects should be set to 'new'
or 'not new'.
Affects: imagectn/include/dbstore.h
imagectn/include/imagedb.h
imagectn/libsrc/dbstore.cc
imagectn/tests/dbregimg.cc
**** Changes from 2000.11.23 (eichelberg)
- Silently correct negative pixel aspect ratio or pixel spacing values
Affects: dcmpstat/libsrc/dvpsda.cc
**** Changes from 2000.11.21 (riesmeier)
- Added sample CSS file (W3C CSS version 1.0) to be used with dsr2html.
Added: dcmsr/apps/report.css
**** Changes from 2000.11.20 (riesmeier)
- Fixed minor bugs (string related memory problems when used with JNI).
Affects: dcmpstat/libsrc/dviface.cc
dcmsr/libstc/dsrcitem.cc
**** Changes from 2000.11.17 (riesmeier)
- Added new sample reports. Create reports in the same study as the
corresponding image (if applicable).
Affects: dcmsr/tests/mkreport.cc
**** Changes from 2000.11.16 (riesmeier)
- Added definition of InstanceCreatorUID.
Affects: dcmdata/include/dcuid.h
- Corrected behaviour of updateDicomAttributes().
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
- Fixed bug in dicomToReadablePersonName().
Affects: dcmsr/libsrc/dsrtypes.cc
**** Changes from 2000.11.16 (eichelberg)
- Updated DICOMscope config file for RSNA 2000 scenario
Affects: dcmpstat/tests/test.cfg
**** Changes from 2000.11.14 (eichelberg)
- Fixed two problems with dcmpsrcv which caused the application not to
terminate if the IPC server could not be found or not to start another
receiver when run on Win32 platforms.
Affects: dcmpstat/apps/dcmpsrcv.cc
- Imagectn was always invoked in debug mode from class DVInterface
on Unix platforms. Fixed.
Affects: dcmpstat/libsrc/dviface.cc
- Fixed system include files for Linux.
Affects: dcmpstat/libsrc/dvpsmsg.cc
- Added Perl script that simplifies creation of a Certification Authority,
private keys and X.509 certificates with OpenSSL for use with DCMTK.
Added: dcmpstat/tests/dcmtk_ca.pl
- Fixed make install for module dcmtls
Affects: dcmpstat/apps/Makefile.in
- Updated dcmpstat/jni Makefiles for Unix systems
Affects: dcmpstat/jni/Makefile.in
dcmpstat/jni/Makefile.dep
- Renamed callback functions to avoid linker name clashes
Affects: dcmtls/libsrc/tlslayer.cc
dcmsign/libsrc/siprivat.cc
**** Changes from 2000.11.14 (riesmeier)
- Added output of optional observation datetime to rendered HTML page.
Affects: dcmsr/libsrc/dsrdoctn.cc
- Added study/series description to test reports.
Affects: dcmsr/tests/mkreport.cc
- Corrected behaviour of method createRevisedVersion().
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
- Added new sample report (taken from RSNA '95 demo).
Affects: dcmsr/tests/mkreport.cc
- Added creation of new UIDs and setting of content date/time when starting
a new SR document from a "template".
Affects: dcmpstat/include/dviface.h
dcmpstat/libsrc/dviface.cc
- Added methods to set the content date/time.
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
- Added method to remove verification information.
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
**** Changes from 2000.11.13 (eichelberg)
- Added support for user logins and certificates.
Affects: dcmpstat/apps/Makefile.dep
dcmpstat/apps/Makefile.in
dcmpstat/include/dviface.h
dcmpstat/include/dvpscf.h
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpscf.cc
dcmpstat/tests/test.cfg
- Added dcmpstat support methods for creating image references
in SR documents.
Affects: dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/include/dviface.h
dcmpstat/include/dvpstat.h
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpstat.cc
**** Changes from 2000.11.13 (riesmeier)
- Added output of optional observation datetime to rendered HTML page.
Affects: dcmsr/include/dsrdoc.h
dcmsr/include/dsrdoctn.h
dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrdoctn.cc
- Added support for Structured Reporting "templates".
Affects: dcmpstat/include/dviface.h
dcmpstat/include/dvpscf.h
dcmpstat/include/dvpsdef.h
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpscf.cc
dcmtk/dcmpstat/tests/test.cfg
- Updated comments.
Affects: dcmsr/include/dsrcitem.h
dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
dcmpstat/include/dvpscf.h
- Added missing #include.
Affects: dcmpstat/apps/dcmpsrcv.cc
**** Changes from 2000.11.10 (riesmeier)
- Added new methods to set the completion flag description, create new study/
series UIDs. Added missing type 2 sequence to dataset. Corrected wrong format
of predecessor documents sequence. Changed behaviour of completion/verification
flags. Improved HTML and print/dump output.
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
- Added missing type 1 attribute.
Affects: dcmsr/tests/pstate07.dcm
- Enhanced instance description for structured reports.
Affects: imagectn/libsrc/dbstore.cc
- Corrected behaviour of createNewSOPInstance() and createRevisedDocument().
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrdoc.cc
**** Changes from 2000.11.10 (eichelberg)
- Fixed problem with DICOMscope being unable to shut down receiver processes
that are operating with TLS encryption by adding a special shutdown mode to
dcmpsrcv.
Affects: dcmpstat/apps/dcmpsrcv.cc
dcmpstat/libsrc/dviface.cc
- Fixed problem with DIMSE routines which attempted to delete /dev/null
under certain circumstances, which could lead to disastrous results if
tools were run with root permissions (what they shouldn't).
Affects: dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/include/dcompat.h
dcmnet/libsrc/dimstore.cc
imagectn/apps/scestore.cc
- Mixed up strcmp and strcpy - oops.
Affects: dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/libsrc/dimstore.cc
- Fixed problem with imagectn running out of available file names after
receipt of 1024 files with similar SOP instance UIDs.
Affects: imagectn/libsrc/dbutils.cc
**** Changes from 2000.11.09 (eichelberg)
- Updated documentation.
Affects: dcmnet/docs/storescp.txt
dcmnet/docs/storescu.txt
dcmpstat/docs/dcmmklut.txt
dcmpstat/docs/dcmprscp.txt
dcmpstat/docs/dcmprscu.txt
Added: dcmtls/docs/randseed.txt
**** Changes from 2000.11.09 (riesmeier)
- Minor HTML code purifications.
Affects: dcmsr/libsrc/dsrcontn.cc
dcmsr/libsrc/dsrdoctn.cc
dcmsr/libsrc/dsrtypes.cc
- Reordered renderHTML flags (internal flags to the end).
Affects: dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrtypes.cc
- Added documentation for new command line tools.
Added: dcmsr/docs/dsr2html.txt
dcmsr/docs/dsr2xml.txt
dcmsr/docs/dsrdump.txt
- Updated documentation.
Affects: dcmimgle/docs/dconvlum.txt
- Corrected typo.
Affects: dcmsr/apps/dsr2xml.cc
dcmsign/apps/dcmsign.cc
- Added support for non-ASCII characters in HTML 3.2 (use numeric value).
Affects: dcmsr/include/dsrcodvl.h
dcmsr/include/dsrdoc.h
dcmsr/include/dsrtncsr.h
dcmsr/include/dsrtypes.h
dcmsr/include/dsrcodtn.cc
dcmsr/include/dsrcodvl.cc
dcmsr/include/dsrcontn.cc
dcmsr/include/dsrdoc.cc
dcmsr/include/dsrdoctn.cc
dcmsr/include/dsrnumvl.cc
dcmsr/include/dsrpnmtn.cc
dcmsr/include/dsrstrvl.cc
dcmsr/include/dsrtextn.cc
dcmsr/include/dsrtypes.cc
- Added new command line options (document type and HTML version).
Affects: dcmsr/apps/dsr2html.cc
dcmsr/docs/dsr2html.txt
- Added new sample reports (and supporting DICOM files).
Added: dcmsr/tests/image06.dcm
dcmsr/tests/image07.dcm
dcmsr/tests/pstate07.dcm
Affects: dcmsr/tests/mkreport.cc
**** Changes from 2000.11.08 (eichelberg)
- Fixed trailing garbage characters problem in extracting validity
information from a X.509 certificate.
Affects: dcmsign/libsrc/sicert.cc
dcmtls/libsrc/tlslayer.cc
- Fixed dcmsign command line options
Affects: dcmsign/apps/dcmsign.cc
- Updated dcmpstat IPC protocol for additional message parameters
Affects: dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/include/dvpsmsg.h
dcmpstat/libsrc/dvpsmsg.cc
dcmpstat/tests/msgserv.cc
**** Changes from 2000.11.07 (riesmeier)
- Minor code purifications to keep Sun CC 2.0.1 quiet.
Affects: dcmsign/apps/dcmsign.cc
dcmsign/libsrc/dcmsign.cc
dcmsign/libsrc/siautopr.cc
dcmsign/libsrc/sicreapr.cc
dcmsign/libsrc/sidsa.cc
dcmsign/libsrc/simaccon.cc
dcmsign/libsrc/sirsa.cc
- Moved #ifdef WITH_OPENSSL statement to avoid compiler errors.
Affects: dcmsign/apps/dcmsign.cc
- Added new command line option allowing to choose code value or meaning to be
rendered as the numeric measurement unit.
Affects: dcmsr/apps/dsr2html.cc
dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrtypes.cc
- Enhanced support for by-reference relationships.
Affects: dcmsr/include/dsrcitem.h
dcmsr/include/dsrcodtn.h
dcmsr/include/dsrcomtn.h
dcmsr/include/dsrcontn.h
dcmsr/include/dsrdattn.h
dcmsr/include/dsrdoctn.h
dcmsr/include/dsrdoctr.h
dcmsr/include/dsrdtitn.h
dcmsr/include/dsrimgtn.h
dcmsr/include/dsrnumtn.h
dcmsr/include/dsrpnmtn.h
dcmsr/include/dsrreftn.h
dcmsr/include/dsrscotn.h
dcmsr/include/dsrtcotn.h
dcmsr/include/dsrtextn.h
dcmsr/include/dsrtimtn.h
dcmsr/include/dsrtncsr.h
dcmsr/include/dsruidtn.h
dcmsr/include/dsrwavtn.h
dcmsr/libsrc/Makefile.dep
dcmsr/libsrc/dsrcitem.cc
dcmsr/libsrc/dsrcodtn.cc
dcmsr/libsrc/dsrcomtn.cc
dcmsr/libsrc/dsrcontn.cc
dcmsr/libsrc/dsrdattn.cc
dcmsr/libsrc/dsrdoctn.cc
dcmsr/libsrc/dsrdoctr.cc
dcmsr/libsrc/dsrdtitn.cc
dcmsr/libsrc/dsrimgtn.cc
dcmsr/libsrc/dsrnumtn.cc
dcmsr/libsrc/dsrnumvl.cc
dcmsr/libsrc/dsrpnmtn.cc
dcmsr/libsrc/dsrreftn.cc
dcmsr/libsrc/dsrscotn.cc
dcmsr/libsrc/dsrtcotn.cc
dcmsr/libsrc/dsrtextn.cc
dcmsr/libsrc/dsrtimtn.cc
dcmsr/libsrc/dsrtree.cc
dcmsr/libsrc/dsruidtn.cc
dcmsr/libsrc/dsrwavtn.cc
- Enhanced rendered HTML output of date, time, datetime and pname.
Affects: dcmsr/include/dsrdoc.h
dcmsr/libsrc/dsrtypes.cc
dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrdattn.cc
dcmsr/libsrc/dsrdtitn.cc
dcmsr/libsrc/dsrpnmtn.cc
dcmsr/libsrc/dsrtimtn.cc
dcmsr/libsrc/dsrtypes.cc
dcmsr/tests/mkreport.cc
- Moved some protected method to public part.
Affects: dcmsr/libsrc/dsrtncsr.cc
- Added useful code for debugging with dmalloc.
Affects: dcmsr/apps/dsrdump.cc
**** Changes from 2000.11.07 (eichelberg)
- Updated DICOM dictionary for Draft 0.7 of Supplement 41 (Digital Signatures)
Affects: dcmdata/include/dcdeftag.h
dcmdata/libsrc/dcdictzz.cc
dcmdata/libsrc/dicom.dic
- Initial release of dcmsign module for DICOM Digital Signatures
Affects: config/modules
dcmdata/include/dcbytstr.h
dcmdata/include/dcdatset.h
dcmdata/include/dcelem.h
dcmdata/include/dcitem.h
dcmdata/include/dcobject.h
dcmdata/include/dcpixel.h
dcmdata/include/dcpixseq.h
dcmdata/include/dcsequen.h
dcmdata/include/dctagkey.h
dcmdata/include/dcvrobow.h
dcmdata/include/dcvrpobw.h
dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcpixel.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dctagkey.cc
dcmdata/libsrc/dcvrobow.cc
dcmdata/libsrc/dcvrpobw.cc
Added: dcmsign/apps/Makefile.in
dcmsign/apps/configure
dcmsign/apps/Makefile.dep
dcmsign/apps/Makefile.in
dcmsign/apps/dcmsign.cc
dcmsign/docs/Makefile.in
dcmsign/docs/dcmsign.txt
dcmsign/htmldocs/Makefile.in
dcmsign/include/Makefile.in
dcmsign/include/dcmsign.h
dcmsign/include/sialgo.h
dcmsign/include/siautopr.h
dcmsign/include/sicert.h
dcmsign/include/sicreapr.h
dcmsign/include/sidsa.h
dcmsign/include/simac.h
dcmsign/include/simaccon.h
dcmsign/include/simd5.h
dcmsign/include/sinullpr.h
dcmsign/include/siprivat.h
dcmsign/include/siripemd.h
dcmsign/include/sirsa.h
dcmsign/include/sisha1.h
dcmsign/include/sisprof.h
dcmsign/include/sitstamp.h
dcmsign/include/sitypes.h
dcmsign/libsrc/Makefile.dep
dcmsign/libsrc/Makefile.in
dcmsign/libsrc/dcmsign.cc
dcmsign/libsrc/siautopr.cc
dcmsign/libsrc/sicert.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
**** Changes from 2000.11.06 (riesmeier)
- Changes structure of HTML hyperlinks to composite objects (now using pseudo
CGI script).
Affects: dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrcomvl.cc
dcmsr/libsrc/dsrimgvl.cc
dcmsr/libsrc/dsrwavvl.cc
- Updated comments/formatting.
Affects: dcmsr/include/dsrcodvl.h
- Added parameter to print() method specifying the item separator character.
Affects: dcmsr/include/dsrimgfr.h
dcmsr/include/dsrscogr.h
dcmsr/include/dsrtcodt.h
dcmsr/include/dsrtcosp.h
dcmsr/include/dsrtcoto.h
dcmsr/include/dsrwavch.h
dcmsr/libsrc/dsrimgfr.cc
dcmsr/libsrc/dsrscogr.cc
dcmsr/libsrc/dsrtcodt.cc
dcmsr/libsrc/dsrtcosp.cc
dcmsr/libsrc/dsrtcoto.cc
dcmsr/libsrc/dsrwavch.cc
- Moved some protected methods to public part.
Affects: dcmsr/include/dsrimgvl.h
dcmsr/include/dsrnumvl.h
dcmsr/include/dsrscovl.h
dcmsr/include/dsrstrvl.h
dcmsr/include/dsrtcovl.h
dcmsr/include/dsrwavvl.h
- Removed additional check (according to CP).
Affects: dcmsr/libsrc/dsrscovl.cc
**** Changes from 2000.11.01 (riesmeier)
- Added command line tool to convert DICOM SR documents to XML.
Added: dcmsr/apps/dsr2xml.cc
Affects: dcmsr/apps/Makefile.dep
dcmsr/apps/Makefile.in
- Added support for conversion to XML. Optimized HTML rendering.
Affects: dcmsr/include/dsrcodtn.h
dcmsr/include/dsrcodvl.h
dcmsr/include/dsrcomtn.h
dcmsr/include/dsrcomvl.h
dcmsr/include/dsrcontn.h
dcmsr/include/dsrdattn.h
dcmsr/include/dsrdoc.h
dcmsr/include/dsrdoctn.h
dcmsr/include/dsrdoctr.h
dcmsr/include/dsrdtitn.h
dcmsr/include/dsrimgtn.h
dcmsr/include/dsrimgvl.h
dcmsr/include/dsrnumtn.h
dcmsr/include/dsrnumvl.h
dcmsr/include/dsrpnmtn.h
dcmsr/include/dsrreftn.h
dcmsr/include/dsrscotn.h
dcmsr/include/dsrscovl.h
dcmsr/include/dsrstrvl.h
dcmsr/include/dsrtcotn.h
dcmsr/include/dsrtcovl.h
dcmsr/include/dsrtextn.h
dcmsr/include/dsrtimtn.h
dcmsr/include/dsrtypes.h
dcmsr/include/dsruidtn.h
dcmsr/include/dsrwavtn.h
dcmsr/include/dsrwavvl.h
dcmsr/libsrc/dsrcodtn.cc
dcmsr/libsrc/dsrcodvl.cc
dcmsr/libsrc/dsrcomtn.cc
dcmsr/libsrc/dsrcomvl.cc
dcmsr/libsrc/dsrcontn.cc
dcmsr/libsrc/dsrdattn.cc
dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrdoctn.cc
dcmsr/libsrc/dsrdoctr.cc
dcmsr/libsrc/dsrdtitn.cc
dcmsr/libsrc/dsrimgtn.cc
dcmsr/libsrc/dsrimgvl.cc
dcmsr/libsrc/dsrnumtn.cc
dcmsr/libsrc/dsrnumvl.cc
dcmsr/libsrc/dsrpnmtn.cc
dcmsr/libsrc/dsrreftn.cc
dcmsr/libsrc/dsrscotn.cc
dcmsr/libsrc/dsrscovl.cc
dcmsr/libsrc/dsrstrvl.cc
dcmsr/libsrc/dsrtcotn.cc
dcmsr/libsrc/dsrtcovl.cc
dcmsr/libsrc/dsrtextn.cc
dcmsr/libsrc/dsrtimtn.cc
dcmsr/libsrc/dsrtypes.cc
dcmsr/libsrc/dsruidtn.cc
dcmsr/libsrc/dsrwavtn.cc
dcmsr/libsrc/dsrwavvl.cc
- Added support for Cascading Style Sheet (CSS) used optionally for HTML
rendering. Optimized HTML rendering.
Affects: dcmsr/apps/dsr2html.cc
dcmsr/include/dsrdoc.h
dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrtypes.cc
- Updated comments/formatting.
Affects: dcmsr/apps/dsrdump.cc
dcmsr/include/dsrimgfr.h
dcmsr/include/dsrtcodt.h
dcmsr/include/dsrtcoto.h
dcmsr/include/dsrtcosp.h
dcmsr/include/dsrscogr.h
dcmsr/include/dsrwavch.h
- Now derive "protected" from base class DSRTypes instead of "public".
Affects: dcmsr/include/dsrcitem.h
dcmsr/include/dsrdoc.h
dcmsr/include/dsrtree.h
- Enhanced support for specific character sets.
Affects: dcmsr/include/dsrdoc.h
dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrcodvl.cc
dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrtypes.cc
- Replaced tool to create sample reports.
Added: dcmsr/tests/mkreport.cc
Removed: dcmsr/tests/test.cc
Affects: dcmsr/tests/Makefile.dep
dcmsr/tests/Makefile.in
**** Changes from 2000.10.26 (riesmeier)
- Added support for "Comprehensive SR".
Added: dcmsr/include/dsrreftn.h
dcmsr/libsrc/dsrreftn.cc
Affects: dcmsr/apps/Makefile.dep
dcmsr/include/dsrcitem.h
dcmsr/include/dsrdoc.h
dcmsr/include/dsrdoctn.h
dcmsr/include/dsrtypes.h
dcmsr/libsrc/Makefile.dep
dcmsr/libsrc/Makefile.in
dcmsr/libsrc/dsrcitem.cc
dcmsr/libsrc/dsrcodtn.cc
dcmsr/libsrc/dsrcomtn.cc
dcmsr/libsrc/dsrcontn.cc
dcmsr/libsrc/dsrdattn.cc
dcmsr/libsrc/dsrdoctn.cc
dcmsr/libsrc/dsrdoctr.cc
dcmsr/libsrc/dsrdtitn.cc
dcmsr/libsrc/dsrimgtn.cc
dcmsr/libsrc/dsrnumtn.cc
dcmsr/libsrc/dsrpnmtn.cc
dcmsr/libsrc/dsrscotn.cc
dcmsr/libsrc/dsrtextn.cc
dcmsr/libsrc/dsrtimtn.cc
dcmsr/libsrc/dsrtypes.cc
dcmsr/libsrc/dsruidtn.cc
dcmsr/tests/Makefile.dep
dcmsr/tests/test.cc
dcmpstat/libsrc/Makefile.dep
- Added support for TCOORD content item.
Added: dcmsr/include/dsrtcodt.h
dcmsr/include/dsrtcosp.h
dcmsr/include/dsrtcotn.h
dcmsr/include/dsrtcoto.h
dcmsr/include/dsrtcovl.h
dcmsr/libsrc/dsrtcodt.cc
dcmsr/libsrc/dsrtcosp.cc
dcmsr/libsrc/dsrtcotn.cc
dcmsr/libsrc/dsrtcoto.cc
dcmsr/libsrc/dsrtcovl.cc
Affects: dcmsr/include/dsrcitem.h
dcmsr/include/dsrtypes.h
dcmsr/libsrc/Makefile.dep
dcmsr/libsrc/Makefile.in
dcmsr/libsrc/dsrcitem.cc
dcmsr/libsrc/dsrtypes.cc
dcmsr/tests/Makefile.dep
dcmsr/tests/test.cc
dcmpstat/libsrc/Makefile.dep
- Added new flag specifying whether to add a "dcmtk" footnote to the rendered
HTML document or not.
Affects: dcmsr/apps/dsr2html.cc
dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrtypes.cc
- Updated comments.
Affects: dcmsr/include/dsrimgvl.h
- Fixed bug: index in search routine was starting from 0 not 1.
Affects: dcmsr/include/dsrtlist.h
- Generalized routine to get and search for position strings ("1.2.3").
Affects: dcmsr/include/dsrtncsr.h
dcmsr/libsrc/dsrtncsr.cc
- Added check routine for valid UID strings.
Affects: dcmsr/include/dsrtypes.h
dcmsr/libsrc/dsrcomvl.cc
dcmsr/libsrc/dsrtypes.cc
- Use method isShort() to decide whether a content item can be rendered
"inline" or not.
Affects: dcmsr/libsrc/dsrimgtn.cc
dcmsr/libsrc/dsrwavvl.cc
- Reworked read() method.
Affects: dcmsr/libsrc/dsrscogr.cc
dcmsr/libsrc/dsrscovl.cc
dcmsr/libsrc/dsrwavch.cc
**** Changes from 2000.10.24 (riesmeier)
- Changed HTML hyperlinks to referenced objects from "dicom://" to "file://"
to facilitate access from Java.
Affects: dcmsr/libsrc/dsrcomvl.cc
dcmsr/libsrc/dsrdoc.cc
dcmsr/libsrc/dsrimgvl.cc
dcmsr/libsrc/dsrwavvl.cc
**** Changes from 2000.10.23 (riesmeier)
- Renamed class DSRReferenceValue to DSRCompositeReferenceValue.
Affects: dcmpstat/libsrc/Makefile.dep
- Replaced non-Unix style newline in preprocessor statement.
Affects: dcmpstat/libsrc/dvpsmsg.cc
- Added missing parameter to call of function handleClient (only appeared
on systems not supporting 'fork' command).
Affects: dcmpstat/apps/dcmpsrcv.cc
- Added clear() method.
Affects: dcmsr/include/dsrcodtn.h
dcmsr/include/dsrdattn.h
dcmsr/include/dsrdtitn.h
dcmsr/include/dsrnumtn.h
dcmsr/include/dsrpnmtn.h
dcmsr/include/dsrtextn.h
dcmsr/include/dsrtimtn.h
dcmsr/include/dsruidtn.h
dcmsr/libsrc/dsrcodtn.cc
dcmsr/libsrc/dsrdattn.cc
dcmsr/libsrc/dsrdtitn.cc
dcmsr/libsrc/dsrnumtn.cc
dcmsr/libsrc/dsrpnmtn.cc
dcmsr/libsrc/dsrtextn.cc
dcmsr/libsrc/dsrtimtn.cc
dcmsr/libsrc/dsruidtn.cc
- Added SOP class UID to hyperlink in method renderHTML().
Affects: dcmsr/libsrc/dsrwavvl.cc
dcmsr/libsrc/dsrimgvl.cc
dcmsr/libsrc/dsrcomvl.cc
- Enhanced implementation of method isValid().
Affects: dcmsr/libsrc/dsrcontn.cc
dcmsr/libsrc/dsrstrvl.cc
- Allow to set empty concept name code (= clear).
Affects: dcmsr/libsrc/dsrdoctn.cc
- Added/updated doc++ comments.
Affects: dcmsr/include/dsrcitem.h
dcmsr/include/dsrcodtn.h
dcmsr/include/dsrcodvl.h
dcmsr/include/dsrcomtn.h
dcmsr/include/dsrcontn.h
dcmsr/include/dsrdattn.h
dcmsr/include/dsrdoctn.h
dcmsr/include/dsrdtitn.h
dcmsr/include/dsrimgtn.h
dcmsr/include/dsrnumtn.h
dcmsr/include/dsrpnmtn.h
dcmsr/include/dsrscotn.h
dcmsr/include/dsrstrvl.h
dcmsr/include/dsrtextn.h
dcmsr/include/dsrtimtn.h
dcmsr/include/dsruidtn.h
dcmsr/include/dsrwavtn.h
dcmsr/include/dsrwavvl.h
**** Changes from 2000.10.20 (riesmeier)
- Renamed class DSRReferenceValue to DSRCompositeReferenceValue.