forked from commontk/DCMTK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES.355
8706 lines (7254 loc) · 315 KB
/
CHANGES.355
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
Changes between releases are documented here.
**** Changes from 2010.02.26 (schlachter)
- Fixed compilation on windows. We don't want dllimport.
Affects: dcmjpls/libcharls/intrface.h
- Fixed a minor compiler warning with gcc 4.1.1.
Affects: dcmjpls/libcharls/scan.h
- Fixed a compiler warning with MSVC about unsafe casts.
Affects: dcmjpls/include/dcmtk/dcmjpls/djcodece.h
dcmjpls/libsrc/djcodece.cc
**** Changes from 2010.02.25 (riesmeier)
- Added "dcmjpls" to the list of public modules and merged CHANGES file.
Added: doxygen/manpages/man1/dcmcjpls.1
doxygen/manpages/man1/dcmdjpls.1
Removed: dcmjpls/CHANGES
Affects: CMakeLists.txt
config/modules
doxygen/htmldocs.dox
Makefile
README
- Fixed minor layout and formatting issues.
Affects: dcmjpls/docs/dcmcjpls.man
dcmjpls/docs/dcmdjpls.man
- Fixed issue with element values which exceed the maximum of a 16-bit length
field. Thanks to Peter Klotz <[email protected]> for the report.
Affects: dcmdata/include/dcmtk/dcmdata/dcerror.h
dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcerror.cc
dcmdata/libsrc/dcobject.cc
**** Changes from 2010.02.25 (schlachter)
- Added manpages for the apps and documentation for the whole module.
Added: dcmjpls/docs/dcmcjpls.man
dcmjpls/docs/dcmdjpls.man
dcmjpls/docs/dcmjpls.dox
- Fix doxygen comments in a couple of places.
Affects: dcmjpls/include/dcmtk/dcmjpls/djcodece.h
dcmjpls/include/dcmtk/dcmjpls/djcparam.h
dcmjpls/include/dcmtk/dcmjpls/djdecode.h
- Updated to latest CharLS version.
Affects: dcmjpls/docs/charls-readme.txt
dcmjpls/include/dcmtk/dcmjpls/djlsutil.h
dcmjpls/libcharls/clrtrans.h
dcmjpls/libcharls/decodstr.h
dcmjpls/libcharls/deftrait.h
dcmjpls/libcharls/header.cc
dcmjpls/libcharls/header.h
dcmjpls/libcharls/intrface.cc
dcmjpls/libcharls/intrface.h
dcmjpls/libcharls/jpegls.cc
dcmjpls/libcharls/scan.h
dcmjpls/libsrc/djerror.h
dcmjpls/libsrc/djutils.cc
- Removed outdated patch.
Affects: dcmjpls/docs/charls-readme.txt
Removed: dcmjpls/docs/charls.patch
**** Changes from 2010.02.23 (riesmeier)
- Added new helper function which determines whether an integer representation
is signed or unsigned.
Affects: dcmimgle/include/dcmtk/dcmimgle/diutils.h
dcmimgle/libsrc/diutils.cc
- Added trace log message which outputs the internal representation for
monochrome images (number of bits and signed/unsigned).
Affects: dcmimgle/libsrc/dimomod.cc
**** Changes from 2010.02.22 (schlachter)
- Remove some unneeded includes.
Affects: dcmdata/include/dcmtk/dcmdata/dcbytstr.h
dcmdata/include/dcmtk/dcmdata/dcdatset.h
dcmdata/include/dcmtk/dcmdata/dcdicdir.h
dcmdata/include/dcmtk/dcmdata/dcdirrec.h
dcmdata/include/dcmtk/dcmdata/dcfilefo.h
dcmdata/include/dcmtk/dcmdata/dcitem.h
dcmdata/include/dcmtk/dcmdata/dclist.h
dcmdata/include/dcmtk/dcmdata/dcmetinf.h
dcmdata/include/dcmtk/dcmdata/dcobject.h
dcmdata/include/dcmtk/dcmdata/dcpixel.h
dcmdata/include/dcmtk/dcmdata/dcpixseq.h
dcmdata/include/dcmtk/dcmdata/dcpxitem.h
dcmdata/include/dcmtk/dcmdata/dcsequen.h
dcmdata/include/dcmtk/dcmdata/libi2d/i2dimgs.h
dcmdata/libsrc/dcdict.cc
dcmdata/libsrc/dchashdi.cc
dcmdata/libsrc/dcistrmb.cc
dcmdata/libsrc/dcistrmz.cc
dcmdata/libsrc/dcostrmb.cc
dcmdata/libsrc/dcostrmf.cc
dcmdata/libsrc/dcuid.cc
dcmdata/libsrc/dcvr.cc
dcmjpeg/libsrc/dipijpeg.cc
dcmjpeg/libsrc/djdijg12.cc
dcmjpeg/libsrc/djdijg16.cc
dcmjpeg/libsrc/djdijg8.cc
dcmjpeg/libsrc/djeijg12.cc
dcmjpeg/libsrc/djeijg16.cc
dcmjpeg/libsrc/djeijg8.cc
dcmsign/include/dcmtk/dcmsign/sicert.h
dcmsign/include/dcmtk/dcmsign/sitstamp.h
dcmsr/include/dcmtk/dcmsr/dsrcsidl.h
dcmsr/include/dcmtk/dcmsr/dsrsoprf.h
dcmtls/libsrc/tlslayer.cc
dcmtls/libsrc/tlstrans.cc
oflog/include/dcmtk/oflog/streams.h
oflog/libsrc/consap.cc
oflog/libsrc/loglog.cc
**** Changes from 2010.02.19 (riesmeier)
- Fixed wrong log output (error message when status is "normal").
Thanks to Peter Klotz <[email protected]> for the original report.
Affects: dcmnet/apps/movescu.cc
- Added private ASTM tags for DICONDE (including CT and DR).
Affects: dcmdata/data/diconde.dic
**** Changes from 2010.02.18 (riesmeier)
- Added preliminary version of a DICONDE (Digital Imaging and Communication in
Nondestructive Evaluation) data dictionary. Currently, only the standard tags
are included. The private ASTM tags will be added later.
Added: dcmdata/data/diconde.dic
Affects: dcmdata/data/CMakeLists.txt
dcmdata/data/Makefile.in
**** Changes from 2010.02.15 (riesmeier)
- Fixed wrong output in debug mode (error message when status is "success").
Affects: dcmwlm/libsrc/wlmactmg.cc
- Fixed wrong output in verbose mode (string pointer instead of string value).
Affects: dcmwlm/libsrc/wlfsim.cc
- Replaced remaining CERR output by DCMWLM_ERROR() macro.
Affects: dcmwlm/libsrc/wlmactmg.cc
- Fixed typo.
Affects: dcmwlm/data/wlistdb/README
**** Changes from 2010.02.05 (riesmeier)
- Fixed issue with double locking of ofConsole.
Affects: dcmdata/apps/mdfconen.cc
- Fixed inconsistent source code formatting.
Affects: dcmdata/apps/mdfconen.cc
- Updated reference to row numbers in comments (based on the current edition
of the DICOM standard). Added missing "else" statement.
Affects: dcmsr/libsrc/dsrxrdcc.cc
**** Changes from 2010.02.04 (riesmeier)
- Fixed issue with experimental macro ON_THE_FLY_COMPRESSION.
Thanks to Henning Meyer <[email protected]> for reporting this.
Affects: dcmnet/apps/storescu.cc
- Fixed minor issues with log output, e.g. redundant line breaks.
Affects: dcmnet/libsrc/dimse.cc
**** Changes from 2010.01.26 (schlachter)
- Use DIMSE_dumpMessage() for some more log messages.
Affects: dcmnet/libsrc/dfindscu.cc
dcmwlm/libsrc/wlmactmg.cc
**** Changes from 2010.01.21 (riesmeier)
- Added stream variant of method convertToMarkupString().
Affects: ofstd/include/dcmtk/ofstd/ofstd.h
ofstd/libsrc/ofstd.cc
- Changed implementation of convertToMarkupString(). This helper function is
now based on the new stream variant which is much more efficient when
converting large text strings with many special characters.
Affects: ofstd/libsrc/ofstd.cc
- Switched to new stream variant of method convertToMarkupString() where
appropriate.
Affects: dcmdata/libsrc/dcelem.cc
dcmdata/libsrc/dcvrds.cc
dcmsr/libsrc/dsrtypes.cc
**** Changes from 2010.01.20 (schlachter)
- Added OFStandard::getProcessID().
Affects: dcmdata/libsrc/dcuid.cc
dcmnet/apps/storescp.cc
dcmnet/include/dcmtk/dcmnet/dcompat.h
dcmnet/libsrc/dcompat.cc
ofstd/include/dcmtk/ofstd/ofstd.h
ofstd/libsrc/ofstd.cc
- Added variables for the appname, date, time, hostname and pid to logger.cfg.
Affects: oflog/docs/oflog.dox
oflog/etc/logger.cfg
oflog/libsrc/oflog.cc
**** Changes from 2010.01.20 (riesmeier)
- Made sure that the calling and called AE title strings are always
null-terminated.
Thanks to Per Inge Mathisen <[email protected]> for the report and
suggested fix.
Affects: dcmnet/libsrc/dulparse.cc
- Fixed minor typos and manually added missing CVS log entries.
Affects: oflog/etc/logger.cfg
**** Changes from 2010.01.19 (schlachter)
- Made file names fit into 8.3 format.
Affects: dcmjpls/libcharls/Makefile.dep
dcmjpls/libcharls/Makefile.in
dcmjpls/libcharls/header.cc
dcmjpls/libcharls/jpegls.cc
dcmjpls/libcharls/scan.h
dcmjpls/libcharls/util.h
dcmjpls/libsrc/Makefile.dep
dcmjpls/libsrc/djcodecd.cc
dcmjpls/libsrc/djcodece.cc
dcmjpls/libsrc/djerror.h
Added: dcmjpls/libcharls/clrtrans.h
dcmjpls/libcharls/ctxtrmod.h
dcmjpls/libcharls/decodstr.h
dcmjpls/libcharls/deftrait.h
dcmjpls/libcharls/encodstr.h
dcmjpls/libcharls/intrface.cc
dcmjpls/libcharls/intrface.h
dcmjpls/libcharls/lltraits.h
dcmjpls/libcharls/lokuptbl.h
dcmjpls/libcharls/procline.h
Removed: dcmjpls/libcharls/colortransform.h
dcmjpls/libcharls/contextrunmode.h
dcmjpls/libcharls/decoderstrategy.h
dcmjpls/libcharls/defaulttraits.h
dcmjpls/libcharls/encoderstrategy.h
dcmjpls/libcharls/interface.cc
dcmjpls/libcharls/interface.h
dcmjpls/libcharls/lookuptable.h
dcmjpls/libcharls/losslesstraits.h
dcmjpls/libcharls/processline.h
**** Changes from 2010.01.14 (riesmeier)
- Updated man pages.
Affects: doxygen/manpages/man1/*
**** Changes from 2010.01.13 (schlachter)
- Removed use of UNICODE define, it caused more problems than it solved.
Affects: oflog/include/dcmtk/oflog/config/defines.h
oflog/include/dcmtk/oflog/fstreams.h
oflog/include/dcmtk/oflog/socketap.h
oflog/include/dcmtk/oflog/streams.h
oflog/include/dcmtk/oflog/tstring.h
oflog/libsrc/fileap.cc
oflog/libsrc/property.cc
oflog/libsrc/sockbuff.cc
oflog/libsrc/socketap.cc
oflog/libsrc/strhelp.cc
oflog/libsrc/timehelp.cc
- Removed pointless stdafx files.
Affects: dcmjpls/libcharls/CMakeLists.txt
dcmjpls/libcharls/Makefile.dep
dcmjpls/libcharls/Makefile.in
dcmjpls/libcharls/header.cc
dcmjpls/libcharls/interface.cc
dcmjpls/libcharls/interface.h
dcmjpls/libcharls/jpegls.cc
Removed: dcmjpls/libcharls/stdafx.cc
dcmjpls/libcharls/stdafx.h
- Fix build on windows.
Affects: dcmjpls/libcharls/config.h
dcmjpls/libcharls/interface.h
**** Changes from 2010.01.07 (riesmeier)
- Added tests for old time format "HH:MM:SS.FFFFFF".
Affects: dcmdata/tests/tstchval.cc
**** Changes from 2010.01.06 (schlachter)
- Fix a use-after-free bug in OFConfigFile on invalid config files.
Affects: ofstd/libsrc/ofconfig.cc
**** Changes from 2010.01.05 (schlachter)
- Made sure OFString always null-terminates its C-Strings.
Affects: ofstd/libsrc/ofstring.cc
**** Changes from 2010.01.05 (riesmeier)
- Moved determination of pixel data length to the body of a logging macro
(since the length value is only used for logging purposes).
Affects: dcmimgle/libsrc/didocu.cc
**** Changes from 2010.01.04 (riesmeier)
- Added new method getDirNameFromPath() and enhanced existing method
getFilenameFromPath().
Affects: ofstd/include/dcmtk/ofstd/ofstd.h
ofstd/libsrc/ofstd.cc
- Fixed issue with --sort-conc-studies option by slightly reworking the file
and directory name string handling (use helper functions from "ofstd").
Thanks to forum user "semi-newbie" for the bug report.
Affects: dcmnet/apps/storescp.cc
- Added info log message that shows the name of the stored DICOM file.
Affects: dcmnet/apps/storescp.cc
**** Changes from 2009.12.23 (riesmeier)
- Changed output of option --arguments.
Affects: oflog/libsrc/oflog.cc
- Added support for getting the name of the program, i.e. the value of argv[0].
Affects: ofstd/include/dcmtk/ofstd/ofcmdln.h
ofstd/libsrc/ofcmdln.cc
**** Changes from 2009.12.21 (riesmeier)
- Rebuilt Makefile dependencies since the files "oflogfil.cc" and "oflogfil.h"
were removed.
Affects: ofstd/libsrc/Makefile.dep
**** Changes from 2009.12.21 (onken)
- Fixed API documentation to keep doxygen quiet.
Affects: dcmnet/include/dcmtk/dcmnet/scp.h
dcmnet/include/dcmtk/dcmnet/scu.h
- Added documentation and refactored / enhanced some code.
Affects: dcmnet/include/dcmtk/dcmnet/scp.h
dcmnet/include/dcmtk/dcmnet/scu.h
dcmnet/libsrc/dcmtk/scp.cc
dcmnet/libsrc/dcmtk/scu.cc
**** Changes from 2009.12.21 (schlachter)
- Removed class OFLogFile which is no longer used.
Affects: ofstd/libsrc/Makefile.in
ofstd/libsrc/CMakeLists.txt
Removed: ofstd/include/dcmtk/ofstd/oflogfil.h
ofstd/libsrc/oflogfil.cc
- Removed unwanted libxml2 header files.
Affects: dcmdata/apps/Makefile.dep
dcmsr/apps/Makefile.dep
dcmsr/libsrc/Makefile.dep
**** Changes from 2009.12.18 (riesmeier)
- Fixed issue with beta version of OpenSSL 1.0 (const declaration changed).
Thanks to forum user "Vrenn" for the report and suggested fix.
Affects: dcmtls/libsrc/tlslayer.cc
**** Changes from 2009.12.17 (riesmeier)
- Enhanced CMake project file by disabling external support libraries if
corresponding header files could not be found.
Affects: CMakeLists.txt
**** Changes from 2009.12.17 (onken)
- Fixed scu and scp base class compile issues.
Affects: dcmnet/include/dcmtk/dcmnet/scu.h
dcmnet/libsrc/scu.cc
**** Changes from 2009.12.16 (onken)
- Added base classes for SCU and SCP implementations.
Affects: dcmnet/CMakeLists.txt
dcmnet/libsrc/CMakeLists.txt
dcmnet/libsrc/Makefile.dep
dcmnet/libsrc/Makefile.in
Added: dcmnet/include/dcmtk/dcmnet/scp.h
dcmnet/include/dcmtk/dcmnet/scu.h
dcmnet/libsrc/scp.cc
dcmnet/libsrc/scu.cc
- Fixed bug in SCU/SCP role negotation. Thanks to Evgeny Sabelskiy
<[email protected]> for the report and suggested fix.
Affects: dcmnet/libsrc/dulconst.cc
**** Changes from 2009.12.16 (riesmeier)
- Slightly modified description of command line option --logfile.
Affects: dcmpstat/apps/dcmprscp.cc
dcmpstat/docs/dcmprscp.man
**** Changes from 2009.12.15 (schlachter)
- Re-added and fixed the command line option --logfile.
Affects: dcmpstat/apps/dcmprscp.cc
dcmpstat/docs/dcmprscp.man
dcmpstat/libsrc/dviface.cc
- Fixed an unsafe usage of OFString.
Affects: dcmpstat/libsrc/dvpssp.cc
- Fixes some issues with --logfile and the config's log options.
Affects: dcmpstat/apps/dcmprscp.cc
dcmpstat/include/dcmtk/dcmpstat/dvpsdef.h
dcmpstat/libsrc/dcmpstat.cc
dcmpstat/libsrc/dviface.cc
**** Changes from 2009.12.11 (riesmeier)
- Changed description of command line option --dump.
Affects: dcmpstat/apps/dcmprscp.cc
dcmpstat/apps/dcmprscu.cc
dcmpstat/docs/dcmprscp.man
dcmpstat/docs/dcmprscu.man
- Moved command line option --dump to another section.
Affects: dcmpstat/apps/dcmprscu.cc
dcmpstat/docs/dcmprscu.man
- Removed old command line option --logfile.
Affects: dcmpstat/docs/dcmprscp.man
- Fixed small inconsistencies in syntax usage and log output.
Affects: dcmqrdb/apps/dcmqridx.cc
- Removed old command line option --logfile when executing external processes.
Affects: dcmpstat/libsrc/dviface.cc
- Slightly modified log messages and log levels.
Affects: dcmpstat/libsrc/dviface.cc
**** Changes from 2009.12.10 (riesmeier)
- Fixed small issue in log output.
Affects: dcmsr/libsrc/dsrtypes.cc
**** Changes from 2009.12.09 (schlachter)
- Fixed include path which was still using an old file name.
Affects: dcmpstat/libsrc/dviface.cc
- Rebuilt Makefile dependencies.
Affects: oflog/libsrc/Makefile.dep
dcmdata/apps/Makefile.dep
dcmdata/libi2d/Makefile.dep
dcmdata/libsrc/Makefile.dep
dcmdata/tests/Makefile.dep
dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
dcmimgle/apps/Makefile.dep
dcmimgle/libsrc/Makefile.dep
dcmjpeg/apps/Makefile.dep
dcmjpeg/libsrc/Makefile.dep
dcmjpls/apps/Makefile.dep
dcmjpls/libsrc/Makefile.dep
dcmnet/apps/Makefile.dep
dcmnet/libsrc/Makefile.dep
dcmpstat/apps/Makefile.dep
dcmpstat/libsrc/Makefile.dep
dcmpstat/libsrc/dviface.cc
dcmpstat/tests/Makefile.dep
dcmqrdb/apps/Makefile.dep
dcmqrdb/libsrc/Makefile.dep
dcmsign/apps/Makefile.dep
dcmsign/libsrc/Makefile.dep
dcmsr/apps/Makefile.dep
dcmsr/libsrc/Makefile.dep
dcmsr/tests/Makefile.dep
dcmtls/libsrc/Makefile.dep
dcmwlm/apps/Makefile.dep
dcmwlm/libsrc/Makefile.dep
dcmwlm/tests/Makefile.dep
dcmwlm/wwwapps/Makefile.dep
**** Changes from 2009.12.08 (schlachter)
- Renaming files to make them fit into 8.3 format.
Affects: oflog/include/dcmtk/oflog/appender.h
oflog/include/dcmtk/oflog/config.h
oflog/include/dcmtk/oflog/factory.h
oflog/include/dcmtk/oflog/filter.h
oflog/include/dcmtk/oflog/helpers/socket.h
oflog/include/dcmtk/oflog/helpers/syncprims.h
oflog/include/dcmtk/oflog/hierarchy.h
oflog/include/dcmtk/oflog/layout.h
oflog/include/dcmtk/oflog/logger.h
oflog/include/dcmtk/oflog/ndc.h
oflog/libsrc/CMakeLists.txt
oflog/libsrc/Makefile.in
oflog/libsrc/appender.cc
oflog/libsrc/factory.cc
oflog/libsrc/filter.cc
oflog/libsrc/hierarchy.cc
oflog/libsrc/layout.cc
oflog/libsrc/logger.cc
oflog/libsrc/loglevel.cc
oflog/libsrc/oflog.cc
oflog/libsrc/sleep.cc
oflog/libsrc/threads.cc
Removed: oflog/include/dcmtk/oflog/configurator.h
oflog/include/dcmtk/oflog/consoleappender.h
oflog/include/dcmtk/oflog/fileappender.h
oflog/include/dcmtk/oflog/helpers/appenderattachableimpl.h
oflog/include/dcmtk/oflog/helpers/logloguser.h
oflog/include/dcmtk/oflog/helpers/socketbuffer.h
oflog/include/dcmtk/oflog/helpers/stringhelper.h
oflog/include/dcmtk/oflog/helpers/syncprims-pthreads.h
oflog/include/dcmtk/oflog/helpers/syncprims-win32.h
oflog/include/dcmtk/oflog/helpers/thread-config.h
oflog/include/dcmtk/oflog/helpers/timehelper.h
oflog/include/dcmtk/oflog/hierarchylocker.h
oflog/include/dcmtk/oflog/loggingmacros.h
oflog/include/dcmtk/oflog/nteventlogappender.h
oflog/include/dcmtk/oflog/nullappender.h
oflog/include/dcmtk/oflog/socketappender.h
oflog/include/dcmtk/oflog/spi/appenderattachable.h
oflog/include/dcmtk/oflog/spi/loggerfactory.h
oflog/include/dcmtk/oflog/spi/loggerimpl.h
oflog/include/dcmtk/oflog/spi/loggingevent.h
oflog/include/dcmtk/oflog/spi/objectregistry.h
oflog/include/dcmtk/oflog/spi/rootlogger.h
oflog/include/dcmtk/oflog/syslogappender.h
oflog/include/dcmtk/oflog/win32debugappender.h
oflog/libsrc/appenderattachableimpl.cc
oflog/libsrc/configurator.cc
oflog/libsrc/consoleappender.cc
oflog/libsrc/fileappender.cc
oflog/libsrc/global-init.cc
oflog/libsrc/hierarchylocker.cc
oflog/libsrc/loggerimpl.cc
oflog/libsrc/loggingevent.cc
oflog/libsrc/logloguser.cc
oflog/libsrc/nteventlogappender.cc
oflog/libsrc/nullappender.cc
oflog/libsrc/objectregistry.cc
oflog/libsrc/patternlayout.cc
oflog/libsrc/rootlogger.cc
oflog/libsrc/socket-unix.cc
oflog/libsrc/socket-win32.cc
oflog/libsrc/socketappender.cc
oflog/libsrc/socketbuffer.cc
oflog/libsrc/stringhelper.cc
oflog/libsrc/syslogappender.cc
oflog/libsrc/timehelper.cc
oflog/libsrc/win32debugappender.cc
Added: oflog/include/dcmtk/oflog/configrt.h
oflog/include/dcmtk/oflog/consap.h
oflog/include/dcmtk/oflog/fileap.h
oflog/include/dcmtk/oflog/helpers/apndimpl.h
oflog/include/dcmtk/oflog/helpers/lloguser.h
oflog/include/dcmtk/oflog/helpers/sockbuff.h
oflog/include/dcmtk/oflog/helpers/strhelp.h
oflog/include/dcmtk/oflog/helpers/syncppth.h
oflog/include/dcmtk/oflog/helpers/syncpwin.h
oflog/include/dcmtk/oflog/helpers/threadcf.h
oflog/include/dcmtk/oflog/helpers/timehelp.h
oflog/include/dcmtk/oflog/hierlock.h
oflog/include/dcmtk/oflog/logmacro.h
oflog/include/dcmtk/oflog/ntelogap.h
oflog/include/dcmtk/oflog/nullap.h
oflog/include/dcmtk/oflog/socketap.h
oflog/include/dcmtk/oflog/spi/apndatch.h
oflog/include/dcmtk/oflog/spi/logevent.h
oflog/include/dcmtk/oflog/spi/logfact.h
oflog/include/dcmtk/oflog/spi/logimpl.h
oflog/include/dcmtk/oflog/spi/objreg.h
oflog/include/dcmtk/oflog/spi/rootlog.h
oflog/include/dcmtk/oflog/syslogap.h
oflog/include/dcmtk/oflog/windebap.h
oflog/libsrc/apndimpl.cc
oflog/libsrc/config.cc
oflog/libsrc/consap.cc
oflog/libsrc/fileap.cc
oflog/libsrc/globinit.cc
oflog/libsrc/hierlock.cc
oflog/libsrc/lloguser.cc
oflog/libsrc/logevent.cc
oflog/libsrc/logimpl.cc
oflog/libsrc/ntelogap.cc
oflog/libsrc/nullap.cc
oflog/libsrc/objreg.cc
oflog/libsrc/patlay.cc
oflog/libsrc/rootlog.cc
oflog/libsrc/sockbuff.cc
oflog/libsrc/socketap.cc
oflog/libsrc/strhelp.cc
oflog/libsrc/syslogap.cc
oflog/libsrc/timehelp.cc
oflog/libsrc/unixsock.cc
oflog/libsrc/windebap.cc
oflog/libsrc/winsock.cc
**** Changes from 2009.12.08 (riesmeier)
- Removed unused command line option --show-pc.
Affects: dcmnet/docs/storescp.man
dcmnet/docs/storescu.man
- Slightly modified some log messages.
Affects: dcmnet/libsrc/dimdump.cc
- Fixed use of wrong logging macro.
Affects: dcmnet/libsrc/dul.cc
- Fixed inconsistent source code formatting.
Affects: dcmnet/include/dcmtk/dcmnet/dul.h
dcmnet/libsrc/dul.cc
**** Changes from 2009.12.04 (riesmeier)
- Updated copyright date as well as the name of the OFFIS institute and
department.
Affects: COPYRIGHT
- Restructured log output in order to avoid compiler errors with VisualStudio.
Affects: dcmsr/apps/xml2dsr.cc
- Moved some log messages from debug to trace level.
Affects: dcmdata/libsrc/dcsequen.cc
- Slightly modified some log messages.
Affects: dcmdata/libsrc/dcbytstr.cc
dcmdata/libsrc/dcdatset.cc
dcmdata/libsrc/dcdicdir.cc
dcmdata/libsrc/dcdirrec.cc
dcmdata/libsrc/dcfilefo.cc
dcmdata/libsrc/dcitem.cc
dcmdata/libsrc/dcostrmb.cc
dcmdata/libsrc/dcpixseq.cc
dcmdata/libsrc/dcsequen.cc
dcmdata/libsrc/dcvr.cc
dcmdata/libsrc/dcvrobow.cc
**** Changes from 2009.12.02 (riesmeier)
- Make sure that dcmSOPClassUIDToModality() never returns NULL when passed to
the log stream in order to avoid an application crash.
Affects: dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
dcmpstat/apps/dcmpssnd.cc
dcmqrdb/libsrc/dcmqrcbg.cc
dcmqrdb/libsrc/dcmqrcbm.cc
dcmqrdb/libsrc/dcmqrtis.cc
- Slightly modified output of progress bar.
Affects: dcmqrdb/libsrc/dcmqrcbg.cc
dcmqrdb/libsrc/dcmqrcbm.cc
dcmqrdb/libsrc/dcmqrcbs.cc
- Sightly modified source code formatting.
Affects: dcmqrdb/libsrc/dcmqrdbi.cc
**** Changes from 2009.12.02 (schlachter)
- Completely removed the old dcmdata debug mechanism.
Removed: dcmdata/include/dcmtk/dcmdata/dcdebug.h
Affects: dcmsign/apps/dcmsign.cc
dcmsign/apps/Makefile.dep
- Corrected build failures on windows.
Affects: dcmnet/libsrc/dcompat.cc
dcmwlm/libsrc/wlmactmg.cc
**** Changes from 2009.12.01 (riesmeier)
- Added new command line option --verbose-pc that allows for showing the
presentation contexts in verbose mode.
Affects: dcmnet/apps/storescp.cc
dcmnet/docs/storescp.man
- Sightly modified log messages.
Affects: dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
dcmnet/apps/movescu.cc
dcmnet/apps/storescp.cc
dcmnet/apps/storescu.cc
- Fixed wrong documentation of command line option.
Affects: dcmnet/docs/findscu.man
dcmnet/docs/storescu.man
- Use helper function checkDependence() where appropriate.
Affects: dcmnet/apps/echoscu.cc
dcmnet/apps/findscu.cc
- Fixed issue with syntax usage (e.g. layout and formatting).
Affects: dcmnet/apps/findscu.cc
**** Changes from 2009.11.27 (riesmeier)
- Sightly modified log messages.
Affects: dcmpstat/apps/dcmprscp.cc
dcmpstat/apps/dcmprscu.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
- Fixed various issues with syntax usage (e.g. layout and formatting).
Affects: dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmprscp.cc
dcmpstat/apps/dcmprscu.cc
dcmpstat/apps/dcmpschk.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/docs/dcmp2pgm.man
dcmpstat/docs/dcmprscp.man
dcmpstat/docs/dcmprscu.man
- Added settings for and documentation on ".progress" loggers.
Affects: oflog/etc/logger.cfg
- Replaced remaining tabs by spaces.
Affects: dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmpssnd.cc
- Updated latest tested CMake version to 2.8.0.
Affects: CMakeLists.txt
- Removed unused subdirectory "tests" from CMake project file.
Affects: dcmimgle/CMakeLists.txt
dcmpstat/CMakeLists.txt
- Updated man pages.
Affects: doxygen/manpages/man1/*
- Removed "dcmavi" module from list of public DCMTK modules.
Affects: CMakeLists.txt
**** Changes from 2009.11.26 (riesmeier)
- Moved some log messages from debug to trace level.
Affects: dcmnet/libsrc/dimse.cc
**** Changes from 2009.11.26 (onken)
- Added better error message to dcmodify in case write permissions for creating
the backup file are missing.
Thanks to Karen Rei Pease <[email protected]> for reporting.
Affects: dcmdata/apps/mdfconen.cc
**** Changes from 2009.11.25 (riesmeier)
- Adapted code for new approach to access individual frames of a DICOM image.
Affects: dcmdata/include/dcmtk/dcmdata/dcddirif.h
dcmdata/libsrc/dcddirif.cc
dcmimage/apps/dcm2pnm.cc
dcmimage/include/dcmtk/dcmimage/diargimg.h
dcmimage/include/dcmtk/dcmimage/dicmyimg.h
dcmimage/include/dcmtk/dcmimage/dihsvimg.h
dcmimage/include/dcmtk/dcmimage/dipalimg.h
dcmimage/include/dcmtk/dcmimage/dirgbimg.h
dcmimage/include/dcmtk/dcmimage/diybrimg.h
dcmimage/include/dcmtk/dcmimage/diyf2img.h
dcmimage/include/dcmtk/dcmimage/diyp2img.h
dcmimage/libsrc/diargimg.cc
dcmimage/libsrc/dicmyimg.cc
dcmimage/libsrc/dihsvimg.cc
dcmimage/libsrc/dipalimg.cc
dcmimage/libsrc/dirgbimg.cc
dcmimage/libsrc/diybrimg.cc
dcmimage/libsrc/diyf2img.cc
dcmimage/libsrc/diyp2img.cc
dcmimgle/include/dcmtk/dcmimgle/didocu.h
dcmimgle/include/dcmtk/dcmimgle/diimage.h
dcmimgle/include/dcmtk/dcmimgle/diinpx.h
dcmimgle/include/dcmtk/dcmimgle/diinpxt.h
dcmimgle/include/dcmtk/dcmimgle/dimoimg.h
dcmimgle/libsrc/dcmimage.cc
dcmimgle/libsrc/didocu.cc
dcmimgle/libsrc/diimage.cc
dcmimgle/libsrc/diinpx.cc
dcmimgle/libsrc/dimoimg.cc
dcmimgle/libsrc/diovpln.cc
dcmjpeg/include/dcmtk/dcmjpeg/ddpiimpl.h
dcmjpeg/libsrc/ddpiimpl.cc
- Added new method which allows for processing the frames of a multi-frame
image successively.
Affects: dcmimgle/include/dcmtk/dcmimgle/dcmimage.h
- Fixed issue with attributes that use a value representation of US or SS.
Affects: dcmimgle/include/dcmtk/dcmimgle/didocu.h
dcmimgle/libsrc/didocu.cc
- Fixed issue with LUT Descriptor elements using the value representation SS.
Affects: dcmimgle/libsrc/diluptab.cc
- The getString() method now returns the Defined Term of the attribute
PhotometricInterpretation.
Affects: dcmimgle/include/dcmtk/dcmimgle/dcmimage.h
dcmimgle/libsrc/dcmimage.cc
- Added list of Defined Terms for the attribute PhotometricInterpretation.
Affects: dcmimgle/include/dcmtk/dcmimgle/diutils.h
- Added new source and header file for the module logger.
Added: dcmimage/include/dcmtk/dcmimage/dilogger.h
dcmimage/libsrc/dilogger.cc
Affects: dcmimage/include/dcmtk/dcmimage/dicopx.h
dcmimage/include/dcmtk/dcmimage/diqttype.h
dcmimage/libsrc/CMakeLists.txt
dcmimage/libsrc/dicoimg.cc
dcmimage/libsrc/diquant.cc
dcmimage/libsrc/Makefile.in
- Removed inclusion of header file "ofconsol.h".
Affects: dcmimage/include/dcmtk/dcmimage/dihsvpxt.h
dcmimage/include/dcmtk/dcmimage/dipalpxt.h
dcmimage/include/dcmtk/dcmimage/diyf2pxt.h
dcmimage/include/dcmtk/dcmimage/diyp2pxt.h
dcmimage/libsrc/diqtctab.cc
dcmimage/libsrc/diquant.cc
dcmimgle/include/dcmtk/dcmimgle/dimoipxt.h
dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
dcmimgle/include/dcmtk/dcmimgle/dimopxt.h
dcmimgle/include/dcmtk/dcmimgle/discalet.h
dcmimgle/include/dcmtk/dcmimgle/dimoipxt.h
dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
dcmimgle/include/dcmtk/dcmimgle/dimopxt.h
dcmimgle/apps/dconvlum.cc
dcmimgle/libsrc/diciefn.cc
dcmimgle/libsrc/dicielut.cc
dcmimgle/libsrc/didispfn.cc
dcmimgle/libsrc/digsdfn.cc
dcmimgle/libsrc/digsdlut.cc
dcmimgle/libsrc/diovpln.cc
dcmimgle/libsrc/diutils.cc
- Revised logging messages.
Affects: dcmimgle/include/dcmtk/dcmimgle/diinpxt.h
dcmimgle/include/dcmtk/dcmimgle/dimoipxt.h
dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
dcmimgle/libsrc/diluptab.cc
dcmimgle/libsrc/diovpln.cc
- Added more logging messages.
Affects: dcmimgle/include/dcmtk/dcmimgle/diinpxt.h
dcmimgle/include/dcmtk/dcmimgle/dimoopxt.h
dcmimgle/include/dcmtk/dcmimgle/dimopxt.h
dcmjpeg/libsrc/djcodecd.cc
dcmimgle/libsrc/didocu.cc
dcmimgle/libsrc/diimage.cc
dcmimgle/libsrc/diovpln.cc
- Rebuilt Makefile dependencies.
Affects: dcmdata/apps/Makefile.dep
dcmdata/libsrc/Makefile.dep
dcmimage/apps/Makefile.dep
dcmimage/libsrc/Makefile.dep
dcmimgle/apps/Makefile.dep
dcmimgle/libsrc/Makefile.dep
dcmjpeg/apps/Makefile.dep
dcmjpeg/libsrc/Makefile.dep
- Removed unused implementation of method determineDecompressedColorModel().
Affects: dcmjpls/libsrc/djcodecd.cc
**** Changes from 2009.11.24 (schlachter)
- Switched to logging mechanism provided by the "new" oflog module.
Affects: dcmpstat/apps/Makefile.dep
dcmpstat/apps/dcmmkcrv.cc
dcmpstat/apps/dcmmklut.cc
dcmpstat/apps/dcmp2pgm.cc
dcmpstat/apps/dcmprscp.cc
dcmpstat/apps/dcmprscu.cc
dcmpstat/apps/dcmpschk.cc
dcmpstat/apps/dcmpsmk.cc
dcmpstat/apps/dcmpsprt.cc
dcmpstat/apps/dcmpsrcv.cc
dcmpstat/apps/dcmpssnd.cc
dcmpstat/docs/dcmmkcrv.man
dcmpstat/docs/dcmmklut.man
dcmpstat/docs/dcmp2pgm.man
dcmpstat/docs/dcmprscp.man
dcmpstat/docs/dcmprscu.man
dcmpstat/docs/dcmpschk.man
dcmpstat/docs/dcmpsmk.man
dcmpstat/docs/dcmpsprt.man
dcmpstat/docs/dcmpsrcv.man
dcmpstat/docs/dcmpssnd.man
dcmpstat/include/dcmtk/dcmpstat/dcmpstat.h
dcmpstat/include/dcmtk/dcmpstat/dviface.h
dcmpstat/include/dcmtk/dcmpstat/dvpsab.h
dcmpstat/include/dcmtk/dcmpstat/dvpsabl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsal.h
dcmpstat/include/dcmtk/dcmpstat/dvpsall.h
dcmpstat/include/dcmtk/dcmpstat/dvpscf.h
dcmpstat/include/dcmtk/dcmpstat/dvpscu.h
dcmpstat/include/dcmtk/dcmpstat/dvpscul.h
dcmpstat/include/dcmtk/dcmpstat/dvpsda.h
dcmpstat/include/dcmtk/dcmpstat/dvpsdal.h
dcmpstat/include/dcmtk/dcmpstat/dvpsdef.h
dcmpstat/include/dcmtk/dcmpstat/dvpsfs.h
dcmpstat/include/dcmtk/dcmpstat/dvpsga.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgal.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgll.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgr.h
dcmpstat/include/dcmtk/dcmpstat/dvpsgrl.h
dcmpstat/include/dcmtk/dcmpstat/dvpshlp.h
dcmpstat/include/dcmtk/dcmpstat/dvpsib.h
dcmpstat/include/dcmtk/dcmpstat/dvpsibl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsov.h
dcmpstat/include/dcmtk/dcmpstat/dvpsovl.h
dcmpstat/include/dcmtk/dcmpstat/dvpspl.h
dcmpstat/include/dcmtk/dcmpstat/dvpspll.h
dcmpstat/include/dcmtk/dcmpstat/dvpspr.h
dcmpstat/include/dcmtk/dcmpstat/dvpsprt.h
dcmpstat/include/dcmtk/dcmpstat/dvpsri.h
dcmpstat/include/dcmtk/dcmpstat/dvpsril.h
dcmpstat/include/dcmtk/dcmpstat/dvpsrs.h
dcmpstat/include/dcmtk/dcmpstat/dvpsrsl.h
dcmpstat/include/dcmtk/dcmpstat/dvpssp.h
dcmpstat/include/dcmtk/dcmpstat/dvpsspl.h
dcmpstat/include/dcmtk/dcmpstat/dvpssv.h
dcmpstat/include/dcmtk/dcmpstat/dvpssvl.h
dcmpstat/include/dcmtk/dcmpstat/dvpstat.h
dcmpstat/include/dcmtk/dcmpstat/dvpstx.h
dcmpstat/include/dcmtk/dcmpstat/dvpstxl.h
dcmpstat/include/dcmtk/dcmpstat/dvpstyp.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvl.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvll.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvw.h
dcmpstat/include/dcmtk/dcmpstat/dvpsvwl.h
dcmpstat/libsrc/Makefile.dep
dcmpstat/libsrc/dcmpstat.cc
dcmpstat/libsrc/dviface.cc
dcmpstat/libsrc/dvpsab.cc
dcmpstat/libsrc/dvpsabl.cc
dcmpstat/libsrc/dvpsal.cc
dcmpstat/libsrc/dvpsall.cc
dcmpstat/libsrc/dvpscf.cc
dcmpstat/libsrc/dvpscu.cc
dcmpstat/libsrc/dvpscul.cc
dcmpstat/libsrc/dvpsda.cc
dcmpstat/libsrc/dvpsdal.cc
dcmpstat/libsrc/dvpsfs.cc
dcmpstat/libsrc/dvpsga.cc
dcmpstat/libsrc/dvpsgal.cc
dcmpstat/libsrc/dvpsgl.cc
dcmpstat/libsrc/dvpsgll.cc
dcmpstat/libsrc/dvpsgr.cc
dcmpstat/libsrc/dvpsgrl.cc
dcmpstat/libsrc/dvpshlp.cc
dcmpstat/libsrc/dvpsib.cc
dcmpstat/libsrc/dvpsibl.cc
dcmpstat/libsrc/dvpsov.cc
dcmpstat/libsrc/dvpsovl.cc
dcmpstat/libsrc/dvpspl.cc
dcmpstat/libsrc/dvpspl2.cc
dcmpstat/libsrc/dvpspll.cc
dcmpstat/libsrc/dvpspr.cc
dcmpstat/libsrc/dvpsprt.cc
dcmpstat/libsrc/dvpsri.cc
dcmpstat/libsrc/dvpsril.cc
dcmpstat/libsrc/dvpsrs.cc
dcmpstat/libsrc/dvpsrsl.cc
dcmpstat/libsrc/dvpssp.cc
dcmpstat/libsrc/dvpsspl.cc
dcmpstat/libsrc/dvpssv.cc
dcmpstat/libsrc/dvpssvl.cc
dcmpstat/libsrc/dvpstat.cc
dcmpstat/libsrc/dvpstx.cc
dcmpstat/libsrc/dvpstxl.cc
dcmpstat/libsrc/dvpsvl.cc
dcmpstat/libsrc/dvpsvll.cc
dcmpstat/libsrc/dvpsvw.cc
dcmpstat/libsrc/dvpsvwl.cc
dcmpstat/tests/Makefile.dep
dcmpstat/tests/msgserv.cc
- Switched to logging mechanism provided by the "new" oflog module.
Affects: dcmwlm/CMakeLists.txt
dcmwlm/apps/Makefile.dep
dcmwlm/apps/wlcefs.cc
dcmwlm/apps/wlcefs.h
dcmwlm/docs/wlmscpfs.man
dcmwlm/include/dcmtk/dcmwlm/wlds.h
dcmwlm/include/dcmtk/dcmwlm/wlfsim.h
dcmwlm/include/dcmtk/dcmwlm/wlmactmg.h
dcmwlm/libsrc/Makefile.dep