]> Creatis software - gdcm.git/blob - ChangeLog
* DEVELOPPER: added a proposition of coding style.
[gdcm.git] / ChangeLog
1 2004-06-23 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
2    * DEVELOPPER: added a proposition of coding style.
3    * src/gdcmDocEntry.h: removed every inline declaration (for test of 
4      coding style).
5
6 2004-06-23 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
7    * gdcmDocEntry::PrintCommonPart() and ::WriteCommonPart() removed.
8      Use the gdcmDocEntry::Print() and Write() instead.
9    * src/gdcmDocument.cxx: bug fix.
10
11 2004-06-22 Jean-Pierre Roux
12    In order : to write Sequences, whatever their imbrication level, 
13                  : to allow user to create his own Sequences
14         a lot of modif where necessary (adding, moving, or virtualising methods)
15
16 WARNING : save your own sources *before* cvs up !
17         
18         - gdcmBinEntry
19           ADD virtual void Write(FILE *fp, FileType filetype);
20           
21    - gdcmDocEntry
22           ADD virtual void Write(FILE *fp, FileType filetype);
23           ADD void gdcmDocEntry::WriteCommonPart(FILE *fp, FileType filetype);
24           
25         - gdcmDocEntrySet
26           ADD virtual void Write (FILE *fp, FileType filetype)=0;
27           ADD   virtual gdcmDocEntry *GetDocEntryByNumber(guint16 group,guint16 element) = 0;
28      ADD gdcmDocEntry *GetDocEntryByName(std::string name);
29      ADD virtual std::string GetEntryByNumber(guint16 group,guint16 element) = 0;
30      ADD std::string GetEntryByName(TagName name);                       
31      ADD gdcmDictEntry *NewVirtualDictEntry(guint16 group, 
32                                             guint16 element,
33                                             std::string vr     = "unkn",
34                                             std::string fourth = "unkn",
35                                             std::string name   = "unkn"); 
36           ADD gdcmValEntry *NewValEntryByNumber(guint16 group, guint16 element);                                                                                                 
37      ADD gdcmBinEntry *NewBinEntryByNumber(guint16 group, guint16 element);     
38      ADD gdcmDocEntry *NewDocEntryByNumber(guint16 group, guint16 element); 
39      ADD gdcmDocEntry *NewDocEntryByName  (std::string Name);   
40      ADD gdcmDictEntry *GetDictEntryByName   (std::string Name);
41      ADD gdcmDictEntry *GetDictEntryByNumber(guint16, guint16);
42           REM virtual gdcmDocEntry *NewDocEntryByNumber(guint16 group, guint16 element)=0;
43      REM virtual gdcmDocEntry *NewDocEntryByName  (std::string Name)=0;
44           
45         - gdcmDocument
46      ADD virtual bool WriteF(FileType type); // New stuff, with recursive exploration           
47      ADD virtual std::string GetEntryByName    (TagName tagName);
48      ADD virtual std::string GetEntryVRByName  (TagName tagName);
49      REM virtual bool Write(FILE *, FileType);
50      REM virtual void WriteEntryTagVRLength(gdcmDocEntry *tag,
51                                         FILE *_fp, FileType type);
52      REM virtual void WriteEntryValue(gdcmDocEntry *tag,FILE *_fp,FileType type);
53      REM virtual bool WriteEntry(gdcmDocEntry *tag,FILE *_fp,FileType type);
54      REM virtual bool WriteEntries(FILE *_fp,FileType type);
55      REM virtual std::string GetEntryByName    (std::string tagName);
56      REM virtual std::string GetEntryVRByName  (std::string tagName);
57      REM gdcmDictEntry *GetDictEntryByName  (std::string Name);
58      REM gdcmDictEntry *GetDictEntryByNumber(guint16, guint16);
59      REM gdcmDictEntry *NewVirtualDictEntry(guint16 group, 
60                                             guint16 element,
61                                             std::string vr     = "unkn",
62                                             std::string fourth = "unkn",
63                                             std::string name   = "unkn");
64      REM gdcmDocEntry *NewDocEntryByNumber(guint16 group, guint16 element);
65      REM gdcmDocEntry *NewDocEntryByName  (std::string Name);
66      REM gdcmValEntry *NewValEntryByNumber(guint16 group, guint16 element); 
67      REM gdcmBinEntry *NewBinEntryByNumber(guint16 group, guint16 element); 
68                                                                                                                  
69         - gdcmElementSet
70           ADD virtual void Write(FILE *fp, FileType filetype);
71           
72    - gdcmSeqEntry
73           ADD virtual void Write(FILE *fp,FileType filetype);
74  
75    - gdcmSQItem
76      ADD virtual void Write(FILE *fp, FileType filetype);
77      ADD virtual std::string GetEntryByNumber(guint16 group, guint16 element);        
78      REM std::string GetEntryByNumber(guint16 group, guint16 element);
79      REM std::string GetEntryByName(TagName name);
80
81    - gdcmValEntry
82          ADD virtual void gdcmValEntry::Write(FILE *fp, FileType filetype); 
83                                   
84 2004-06-21 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
85     * Test/TestWriteSimple.cxx: fix to gdcmHeader-gdcmHeaderHelper revamping.
86       The default constructor invoked by the line
87          gdcmHeader *f1 = new gdcmHeader( header );
88       was gdcmHeader::gdcmHeader(bool) instead of the expected
89       gdcmHeader::gdcmHeader(std::string const &, bool = false, bool, bool).
90       Hence the parsing wasn't executed... See also below.
91     * src/gdcmHeader.h: the declaration of gdcmHeader::gdcmHeader(bool)
92       as explicit constructor didn't do the trick to fix the above problem.
93       Could anyone explain why ?
94     * src/gdcmBinEntry.cxx, gdcmValEntry.cxx: gdcmBinEntry::Print() now
95       properly calls gdcmValEntry::Print() (that was weed out from 
96       code related to gdcmBinEntry).
97
98 2004-06-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
99     * In order to fix memory leaks:
100      - Test/TestWriteSimple.cxx: added cleaning of free store through
101        some delete calls.
102      - src/gdcmBinEntry.cxx: fix to avoid SegFault.
103      - src/gdcmDicomDir.[cxx|h]: fixed initialisation in constructor
104        gdcmDicomDir::gdcmDicomDir(bool) [either the constructor itself
105        (through the call to ::AddDicomDirMeta()) or the destructor
106        would crash when deleting uninitialized ::metaElems].
107      - src/gdcmDictEntry.cxx: annotation of ununderstood memory leak.
108      - src/gdcmDocument.cxx:
109        -- ::~gdcmDocument() destructor now cleans up all dictionary entries
110           from dynamic stores.
111        -- ::ParseDES() misplaced deletion of temporary NewDocEntry
112           was causing memory leaks.
113      - src/gdcmSQItem.cxx:
114        -- ::~gdcmSQItem() dummy code cleaned (learned that deletion is
115           cleanly handled with polymophism: sorry but my milage is low).
116        -- ::SetEntryByNumber(string, guint16, guint16) now cleanly allocates
117           a gdcmValENtry, and makes no assumption on type (gdcmDocEntry,
118           gdcmSeqEntry vs gdcmValEntry) of existing entry (when present).
119           This avoids SegFaulting.
120      - src/gdcmSQItem.h: coding style.
121     * Conclusion:
122      - Test/TestWriteSimple still severely sucks. The output image content
123        (when $(GDCMDATA_HOME)/012345.002.050.dcm in input) is brain
124        damaged when displayed with vtkgdcmViewer.
125      - on memory leaks: TestWriteSimple leaks really less (see entry
126        of 2004-06-18 in Changelog file for the call to valgrind).
127      - on segfaults: ctest now passes all the tests but one (no more
128        segfaults).
129     * Erroneous leading white fix:
130      - src/gdcmDict.cxx: getline(from,xxx) doesn't remove the leading
131        white[s] (as opposed to from >> xxx, that removes it [them].
132      - src/gdcmTS.cxx: ditto.
133      - gdcmPython/testSuite.py: dirty related kludge removed.
134     * src/*: remaining references to gdcmParser removed.
135     * src/*[cxx|h]: added copy[way]left header.
136
137
138 2004-06-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
139     * In order to fix writing of dicom files:
140      - Test/TestWriteSimple.cxx: a simpler example of writing.
141      - Test/CMakeLists.txt changed accordingly.
142      - src/gdcmDocument.cxx:
143        -- The destructor now recursilvely removes potential sequences.
144        -- Bug fix in ::IsJPEG2000()
145        -- ::ReplaceOrCreateByNumber(std::string, guint16, guint16)
146           now handles promotion of gdcmDocEntry to gdcmValEntry in a cleaner
147           manner.
148        -- ::GetValEntryByNumber(guint16, guint16) now defined (as opposed
149           to only declared) and build on top of
150           ::GetDocEntryByNumber(guint16, guint16).
151        -- ::SetEntryByNumber() now uses GetValEntryByNumber(group, element)
152      - src/gdcmElementSet.[h|cxx]: added ::RemoveEntry(gdcmDocEntry *)
153        for usage in destructor and treatement of promotion in
154        ::ReplaceOrCreateByNumber().
155      - src/gdcmSQItem.cxx: destructor should better handle his job.
156       Test/TestWriteSimple now runs (or at least it DOES something).
157     * We can now start hutting memory links. A good starting point is:
158       valgrind -q --skin=memcheck --leak-check=yes --leak-resolution=high
159       --num-callers=100 --show-reachable=yes gdcmTests TestWriteSimple
160       $(GDCMDATA_HOME)/012345.002.050.dcm foo.dcm
161
162 2004-06-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
163     * Valgrind note: after Mathieu Malaterre teached me how to read
164       the valgrind FAQ ;-] (see http://valgrind.kde.org/faq.html), I
165       learned that:
166           Using gcc, you can force the STL to use malloc and to free memory as
167           soon as possible by globally disabling memory caching.
168           With 3.2.2 and later, you should export the environment variable
169           GLIBCPP_FORCE_NEW before running your program.
170       By setting GLIBCPP_FORCE_NEW, STL related memory leak messages of gdcm
171       simply vanish (it is still not clear to me, whether this means that
172       STL std::string leaks or if valgrind believes it leaks...).
173     * Fixing of SegFault of Test/makeDicomDir (as shown by ctest or by
174       running bin/gdcmTests makeDicomDir):
175       - src/gdcmDicomDir.cxx: dynamic casting used + clean up.
176       - Test/makeDicomDir.cxx now properly traps empty lists and returns
177         with 1.
178       NOW, makeDicomDir cleanly fails (in ctest terminology) instead of
179       SegFaulting (I drowned in DicomDir related code when trying to
180       understand why the list is empty...).
181     * src/gdcmDocument.h: first BSD license header try.
182     * Doc/License.txt added.
183
184 2004-06-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
185     * src/gdcmDocument.[h|cxx]:
186       - Clean up of the Transfer related predicates. They are now all based
187         on new method isGivenTransferSyntax, that (should) handle properly
188         the padding problem.
189       - general clean up, simplification, and coding style.
190       - Specific clean up of Parse7FE0() (umproperly named actually).
191     * gdcmPython/testSuite.py: an odd temporary kludge introduced.
192
193 2004-06-14 Jean-Pierre Roux             
194    *  gdcmSeqEntry.cxx
195            - fix the display of Sequence Delimitor (SQDepthLevel pb)
196                 - fix the display of SQItem ordinal number
197       - add the GetSQItemByOrdinalNumber method
198                 - remove some useless never written private methods     
199                 
200 2004-06-14 Jean-Pierre Roux
201    * gdcmBinEntry.cxx 
202       - adding a constructor taking a gdcmDocEntry as an input param
203            - ReplaceOrCreateByNumber now returns :
204               a gdcmBinEntry * if a Binary (void *) value is passed as a param
205                    a gdcmValEntry * if a string value is passed as a param
206    * dcmDocument.cxx
207       - SetEntryByNumber now allows setting gdcmValEntry or gdcmBinEntry, 
208               according to the param type (no longer sets a gdcmDocEntry)
209            - GetValEntryByNumber, GetBinEntryByNumber added
210       - NewValEntryByNumber and NewBinEntryByNumber added
211    * gdcmFile.cxx
212       - Pixel Data are now linked to the (7fe0,0010) elements, after reading
213    * gdcmSQItem.h
214       - GetSQItemNumber and SetSQItemNumber added, to provide 
215             a (relative) Item identier inside a given Sequence
216             \warning : some pb remaining around this number
217                                 will be solved asap
218       - AddEntry now takes the Item Number as a param   
219    * gdcmValEntry.cxx 
220       - adding a constructor taking a gdcmDocEntry as an input param    
221
222 2004-06-14 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
223     * Memory leak hunt with the following command:
224       valgrind --leak-check=yes --leak-resolution=high --num-callers=40
225                --show-reachable=yes gdcmTests PrintDocument
226       It looks like many (all?) leaks are due to the STL (or a bad usage
227       of the STL. The lines producing the leaks now have a comment with
228       a "MEMORY LEAK" tag: you can retrieve them with 
229           grep "MEMORY LEAK" src/*
230       Here are two typical examples which I can't help fixing:
231       -----
232           #include <string>
233           int main() {
234              std::string name;
235              char * test = "babo";
236              name = test;    //// <--- valgrind detects 960 bytes lost in
237                              ////   call to std::string::operator=(char const*)
238              name.clear();   //// Doesn't help !
239              return 0;
240           }
241       -----
242           #include <string>
243           #include <iostream>
244           int main() {
245              std::string line;
246              std::cout << "Type a bunch of characters followed by RETURN: ";
247              getline(std::cin, line);   //// <--- valgrind dectects a loss
248                                         //// of 1320 bytes in call to
249                                         /// std::basic_istream<>& std::getline<>
250             return 0;
251           }
252       -----
253
254
255 2004-06-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
256     * src/gdcmHeader.[cxx|h]:
257       - Predicates on the Transfer syntax (of the form Is[JPEG|RLE]*)
258         and related, moved away to gdcmDocument.
259       - Accessors (on the form [Get|Set]Entry*) set up to expose publicly
260         the corresponding protected accessors of inherited class
261         gdcmDocument, removed ! As a consequence gdcmFile had to be 
262         declared friend of class gdcmDocument (see below).
263       - operator< moved to gdcmDocument (in fact it belongs to gdcmDicomDir).
264       - Clean up of undefined or unused methods.
265     * src/gdcmFile.[cxx|h]: added SetEntryByNumber (in order to take into
266       account the changes to gdcmHeader.h).
267     * src/gdcmDocument.h:
268       - gdcmFile is now a friend class (in order to take into account the
269         changes to gdcmHeader.h).
270       - Predicates on the Transfer syntax (of the form Is[JPEG|RLE]*) added
271         (see changes to gdcmHeader.h).
272       - Accessors (reading on the form GetEntry*) are now public.
273       - Clean up of undefined or unused methods.
274     * src/gdcmDocument.cxx:
275       - adaptation to changes to gdcmDocument.h
276       - ::OpenFile now writes a verbose message when file cannot be opened.
277       - some std::string properly set to VRKey
278     * src/gdcmDicomDir.h: historical references to gdcmHeader changed to
279       references to gdcmDocument. 
280     * Test/TestFindTags.cxx: changed accordingly to above changes.
281     * gdcmPython/testSuite.py: adapted to renaming of acr files in 
282       cvs repository gdcmData.
283
284 2004-06-09 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
285     * src/gdcmValEntry.h: member voidArea type changed from char* to void*.
286     * src/gdcmBinEntry.h: member voidArea commented out, since it potentially
287       conflicts with gdcmValEntry::voidArea.
288     * src/gdcmValEntry.cxx: unmatching comment wiped out.
289     * src/gdcmVR.[h|cxx]: added two predicates that partition the possible
290       Value representation between StringRepresentable and BinaryRepresentable.
291     * src/gdcmDocument.cxx: 
292       - method ParseDES: proper indentation restored and usage of
293         gdcmVR::IsVROfGdcmStringRepresentable wired in.
294       - method LoadDocEntry: the fingerprint left in the SetValue() of
295         unloaded entries (length > MaxSizeLoadEntry) had curiously been
296         removed. Reverting to previous code segment with the proper
297         dynamic_cast< gdcmValEntry* >.
298         Note: this was (partially) breaking the python test suite
299               (gdcmPython/testSuite.py) that made usage of the above
300               fingerprint to check presence of "Pixel Data".
301     * src/gdcmDocEntry.h: coding style.
302     * gdcmPython/__init__.py: environement variable GDCM_DATA_PATH is
303       now taken into account.
304     * gdcmPython/gdcm.i: adaptation to the new internal representation
305       of gdcm (exit gdcmParser, hello gdcmDocument).
306     * gdcmPython/testSuite.py: quick and dirty fix for loading vtkgdcmPython
307       on posix.
308     * gdcmPython/demo/PrintHeader.py: doesn't use the gdcmDocument::Print()
309       anymore, but instead prints the loaded Python dictionary.
310     * .... alas, the python testSuite is still broken.
311
312 2004-05-18 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
313     * gdcmPython/gdcm.i : remove useless lines concerning the gdcmGlobal 
314       gdcmGlob
315     * gdcmPython/setup.py : replace the use of cvar.gdcmGlob to gdcmGlobal
316     * src/gdcmUtil.h : export methods
317
318 2004-05-16  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
319     * Some more cleanup/enhancement in gdcmPython/CMakeLists.txt getting close
320       to right behavior
321     * Initial addition of automatic python testing
322     * Initial addition of automatic image comparison
323
324 2004-05-04 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
325     * src/gdcmCommon.h, gdcmDicomDir.cxx, gdcmFile.cxx, gdcmHeaderHelper.h,
326       gdcmParser.cxx, gdcmParser.h : bug fix for the Microsoft .Net compilation
327
328 2004-05-04 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
329      * src/gdcmFile.cxx, gdcmHeader.cxx : bug fix for the msvc compilation
330      * Test/ShowDicom.cxx : bug fix for msvc compilation
331      * vtk/vtkgdcmViewer.cxx : bug fix for msvc compilation
332
333 2004-05-04 Jean-Pierre Roux
334      * ADD Taking into account the 'Dicom Sequences' leads up to introduce
335        new concepts (and new classes) :
336        a 'gdcmDocument' is composed of a set of Doc Entries, that are
337         - elementary gdcmDocEntries (former gdcmHeaderEntries)
338         - Sequence Doc Entries (gdcmSeqEntries)
339        a Sequence is composed of Items.
340        Each item is a set of Doc Entries (this is recursive)
341        The non uniqueness of the 'Dicom tag' is due to this recursivity
342        (never taken into account)
343        Our unability to add a new 'entry' in the header
344        at the proper location (neither in the H-Table (map or multimap),
345        nor in the Chained List is also due to this recursivity.
346        Don't try, right now, to use/modify/compile these new sources :
347        nothing is finished.
348        We just commit all the stuff, 'as is', in order not to loose it.
349
350 2004-05-04 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
351      * vtk/vtkGdcmReader.cxx : bug fix in the setting of file name
352      
353 2004-05-03 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
354      * vtk/vtkGdcmReader.cxx : bug fix when loading a list of files using the
355        file prefix (SetFilePrefix)
356
357 2004-05-02  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
358      * Add a new test: ShowDicom, for now this is just the c++ version of
359        checkRead.sh, later it will be able to compare the image read against a
360        baseline.
361      * Replace the DEBUG on the stack with a global entry in cmake interface:
362        GDCM_DEBUG, so you can turn verbosity ON/OFF for debug statement.
363
364 2004-04-30  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
365      * Add an example subdir, with a real example on how to read + write a 
366        dicom image
367
368 2004-04-30  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
369      * Doc/gdcmUML.xmi added raw UML class view (umbrello format)
370      * Doc/CMakeLists.txt: the main page is now properly differentiated
371        between the developper and user version.
372      * Doc/doxygen.config.in: dropped search related obsolete flags
373      * src/gdcmParser.h, gdcmHeader.h: doxygenation
374
375 2004-04-29  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
376      * DEVELOPPER: added some helpfull comments for compile/test/install
377        when using cmake.
378
379 2004-04-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
380      * ENH: 1. Remove remp solution of gdcmTests.cxx+ gdcmMain directly in 
381                src directory, now generated in the build dir.
382             2. Tests as mentionned smarter
383             3. Some clean up
384             4. Add a new method in gdcmDict that return the PubDict by name 
385           this is interesting for 3rd party lib like ITK, 
386           where we could set the institution name / patient name...
387
388        * ENH: 1. Now the test suite is working for real
389               2. All binaries are now output in the gdcm-bin directory 
390                  (this was not true before)
391
392 2004-04-28  Jean-Pierre Roux
393      * ENH add the provisional  gdcmHeader::SQDepthLevel to allow 
394            SeQuence indented printing of Dicom Header.
395      * ENH merge methods gdcmParser::Parse and gdcmParser::LoadHeaderEntries
396            into the single gdcmParser::LoadHeaderEntries for efficiency purpose.
397            Computation of SQDepthLevel is now part of gdcmHeader constructor
398      * ENH add self defined param 'new' to PrintHeader to 'show' the SeQuence
399            tree-like structure of a Dicom Header.
400      * FIX Test code cleaning     
401            
402 2004-04-25  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
403      * ENH: Adding automatic testing
404        1. Need a DartConfig.cmake to submit to public
405        2. Add a test driver gdcmTest.cxx
406        3. gdcmTestMain, an helper for the main test driver gdcmTest
407        4. Files in Test don't have a main anymore, this becomes interesting 
408           when we add more and more tests, thus dsw don't have to load 
409           too many projects
410      * ENH: Adding a GDCM_DATA_ROOT for testing
411      * ENH: Remove redundancie about GDCM_DICT stuff, now we only need to modify
412        one file instead of seven + some small cleanup
413
414 2004-04-22  Jean-Pierre Roux
415      * ENH Minor changes to the Print() methods.
416      * ADD gdcmParser::PrintEntryNiceSQ() to allow SQ-indented
417            Header printing. Example given with :
418            > PrintHeader fileName  2 new
419           (SQ based tree-like structure still to be done for the Header ...)
420            
421 2004-04-22  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
422      * ENH: Some cosmetic clean up for compilation with -W -Wall -Werror
423          1. I have added some unsigned where needed
424          2. Some function parameter not used -> (void)
425          3. In gdcmDicomDir.cxx, add GDCM_DICOMDIR_NONE case
426          4. g++ don't like character '\' in comment
427          5. #define jpeg_create_decompress  jCreaDecompress
428                     this really need to be fixed
429          6. virtualize destructor of gdcmObject ... leakage
430          7. sscanf(g->first.c_str(),"%x",&gr_bid); 
431                     this also really need to be fixed
432          8. gdcm/src/jpeg/libijg8/CMakeLists.txt, 
433                     remove compression file 
434                     (as we only do decompression, right ?)     
435      * ENH: Change malloc/calloc/free with c++ equivalent
436
437 2004-04-21  Jean-Pierre Roux
438      * FIX gdcmHeaderHelper::GetXSpacing
439            when a single value is found (bug ?), xpacing is now 
440            defaulted to yspacing
441            
442 2004-04-19  Jean-Pierre Roux
443      * ADD gdcmData/Wrist.pap (PAPYRUS 3.0 -single frame-) for checking purpose
444      * ENH add parameters :
445                bool  exception_on_error = false, 
446                bool  enable_sequences   = false,
447                bool  ignore_shadow      = false
448            to the gdcmFile constructors to be full gdcmParser compliant
449      * FIX vtk/vtkGdcmReader.cxx now uses  enable_sequences = true in gdcmFile
450            to allow reading of PAPYRUS 3.0 files 
451               
452 2004-04-06  Jean-Pierre Roux
453      * ADD gdcmData/E00001S03I0015.dcm for SQ checking purpose
454      
455 2004-04-02  Jean-Pierre Roux
456      * ADD : Test/checksequence.sh, for a general recap on SQ pb
457      * FIX : gdcmParser::WriteEntryTagVRLength emprovement of special treatement
458              for Philips spurious Tag fffe|0000 while rewritting Dicom files
459              
460 2004-03-30  Jean-Pierre Roux
461      * FIX gdcmParser::ReplaceOrCreateByNumber shouldn't seg fault any more 
462          for ACR file, written out as DICOM files (hope so...)
463
464 2004-03-30  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
465      * src/gdcmParser.[cxx|h] and gdcmHeader.[cxx.h]: gdcmHeader::Write split
466        in WriteEntryTagVRLength and WriteEntryValue. Those methods were
467        moved to base class gdcmParser and only the specialisation is kept
468        in gdcmHeader.
469      * src/gdcmParser.[cxx|h]: ReplaceOrCreateByNumber(char*, guint16, guint16)
470        trashed out (because ReplaceOrCreateByNumber(string, guint16, guint16)
471        already does the job.
472      * src/gdcmDicomDir.[cxx|h]: WriteDicomDirEntries renamed to WriteEntries
473        (to be consistent with gdcmParser::WriteEntries).
474
475 2004-03-30 Benoit Regrain
476      * vtk/vtkGdcmReader.[h|cxx] : fix the read of 3 gdcmHeader when making an
477        upate of the object's instance. It's passed to 2 in the unfavorable
478        case : one in the ExecuteInformation, one in the ExecuteData
479
480 2004-03-29  Jean-Pierre Roux
481      * ENH : Check on file type to be written moved
482              from gdcmParser::WriteEntry to gdcmParser::WriteEntries
483      * FIX : gdcmObject::ResetBoundaries now stops properly
484              when end-of-list is reached
485            : gdcmVersion modified (as Benoit Regrain asked)
486
487 2004-03-29  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
488      * src/gdcmParser.cxx: removal of all TAB character. Indentation fixed.
489      * src/gdcmUtil.cxx: added forgotten iostream include.
490      * src/gdcmCommon.h: FileType enum entry DICOMDIR removed (since
491        equivalent to ExplicitVR in existing code).
492
493 2004-03-27  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
494      * src/gdcmUtil.[cxx|h] split in two. Additional file gdcmGlobal.[cxx|h]
495        now contains all the gdcmGlobal related code.
496      * minor coding style and doxygenation changes.
497
498 2004-03-26  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
499      * src/gdcmUtil.[cxx|h] split in two. Additional file gdcmDebug.[cxx|h]
500        now contains all the Debug related code.
501      * minor clean-up of includes in src/*.cxx
502      * src/gdcmUtil.[cxx|h] _cleanString C style function (replaced with
503        CreateCleanString) removed.
504      * src/gdcmUtil.[cxx|h] _CreateCleanString renamed to CreateCleanString
505      * Doc/DoxyMainPageUser.txt added.
506      * Doc/Doc/DoxyfileUsers updated to version 1.3.4 of Doxygen.
507      * src/gdcmCommon.h now defines getcwd for Win32 (moved away from
508        src/gdcmDirList.cxx)
509
510 2004-03-24  Jean-Pierre Roux
511      * FIX a lot of little surface modifications to be doxygen 1.3.6 compliant
512
513 2004-03-23  Jean-Pierre Roux
514      * FIX Now gdcmFile::SwapZone doesn't seg faults any longer for
515            big endian made volumes
516      * ENH Now gdcmParser constructor and destructor are protected to forbid
517            end user to instanciate class gdcmParser
518           (only gdcmHeader and gdcmDicomDir are meaningfull)
519
520 2004-03-22 Benoit Regrain
521      * FIX : src/gdcmDicomDir.cxx : make windows compilable
522      * FIX : gdcmPython/gdcm.i : change gdcmStudy to gdcmDicomDirStudy and
523              gdcmSerie to gdcmDicomDirSerie
524
525 2004-03-19  Jean-Pierre Roux
526      * ENH Now the tree-like structure describing a DICOMDIR comming from
527            an already existing DICOMDIR file is consistent with
528            the home-made tree-like structure build ex-nihilo
529            or build from the files held (recursively) in a Directory
530            functions gdcmDicomDir::CheckBoundaries()
531            gdcmObject::SetBoundaries() added
532
533 2004-03-17  Jean-Pierre Roux
534      * REM (Eric Boix bug) : removal of meaningless
535                              gdcmDicomDirImage::NewImage function.
536      * FIX now file names and directory name are written properly in the
537            DICOMDIR
538      * FIX now gdcmDicomDir constructor may be call without any trick
539            about the name
540
541 2004-03-16  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
542      * FIX (JPR bug) : src/gdcmDicomDirImage.cxx added missing definition
543                        of gdcmDicomDirImage::NewImage as empty function.
544
545 2004-02-28  Jean-Pierre Roux
546      * ENH add gdcmDicomDir:NewPatient
547            add gdcmDicomDirPatient:NewStudy
548            add gdcmDicomDirStudy:NewSerie
549            add gdcmDicomDirSerie:NewImage
550            to allow making gdcDicomDir object.
551      * ADD PrintDicomDir executable that uses gdcmDicomDir tree-like structure
552           (as opposite to the gdcmHeader chained list)
553
554 2004-02-11 Benoit Regrain
555      * FIX : memory leaks and the set of ArgDelete methods in gdcmDicomDir
556              when using from python
557
558 2004-02-10 Benoit Regrain
559      * FIX : bug fix in the gdcmDirList for the recursivity in directories
560      * FIX : in gdcmDicomDir when the directory is empty
561      * ENH : add callback and methods to get the progression of dicomDir
562              directory parsing
563
564 2004-02-06 Jean-Pierre Roux
565      * ENH : - now gdcmDicomDir::CreateDicomDir() returns also the meta elements
566              - GDCM_META added to gdcmDicomDirType
567              - class gdcmMeta created
568      * ENH : - A brief summary is now displayed at the beginning of
569              'testDicomDir' to help disaster magnitude estimation
570      * REM : Now useless Test/explDICOMDIR.cxx
571
572 2004-02-05 Benoit Regrain
573      * ENH : add methods in gdcmObject to get the hash table or the list of
574              header entries
575      * FIX : wrapping python for ListPatient, ListStudy, ListSerie, ListImage
576      * FIX : wrapping python for TagHeaderEntryHT
577
578 2004-02-04 Benoit Regrain
579      * FIX : even length for some strings when writting the dicom dir
580      * FIX : sort the images in the dicom dir
581      * FIX : Bug fix for python use of dicom dir
582      * ADD : a python demo
583
584 2004-02-04 Jean-Pierre Roux
585      * FIX : Final solution (?) for icone embedded images
586      * FIX : dicomVR.dic Overlay group is not *only* 6000, but 60xxx
587              (see http://medical.nema.org/dicom/2003/03_06PU.PDF)
588              add groups 6002, 6004, 6006, to allow 'clean' parsing of
589              gdcmData/gdcm-MR-SIEMENS-16.acr1
590      * ENH add gdcmData/checkWriteExplicit.sh gdcmData/checkWriteImplicit.sh
591            to make full checking easier
592         
593 2004-02-04 Benoit Regrain
594      * FIX : WriteEntries : coding style & logic in parameters
595      * FIX : Set the elements to create the DicomDir in a dictionary file
596
597 2004-02-03 Benoit Regrain
598      * gdcmDirList : to parse a hard drive directory in recursive (or not)
599      * gdcmDicomDir : add the load of directory
600      * Bug fix and print add-on
601
602 2004-02-03 Jean-Pierre Roux
603      * ENH gdcmParser : allows "DICM" files, with NO group '0002'
604      * FIX handling 'non string elements' unsecure area (LUT, overlays, etc)
605      * FIX Dicts/dicomV3.dic : Add a few missing 'group length' Elements 
606      * FIX gdcmParser.cxx : 'group length' elements are now considered 
607            as integers, even for shadow groups, when file is Implicit VR
608         
609 2004-02-02 Jean-Pierre Roux
610      * FIX : gdcmWrite : equal_range() for multimap doesn't return a 'second' 
611              iterator on last
612              of the last synonym :-(
613      * FIX : gdcmWrite::WriteBase : method stops if Pixels not yet Read (except 
614              for DICOMDIR ;-)
615      * ENH gdcmData/checkWrite.sh :modif for full check of Explicit VR writting
616      * FIX taking into account the possible 7fe0,0010 multiplicity        
617      * FIX add GRPixel,NumPixel,countGrPixel (gdcmParser protected members)
618            to allow removal of references to 7fe0,0010, to deal with
619       ACR-NEMA images, when 0028,0200 is meaningfull
620
621 2004-01-31 Jean-Pierre Roux
622      * FIX gdcmParser::WriteEntries : when a VR is tagged as 'Unknown'
623            no longer writes 'Un' on disk
624      * FIX SQ elements with actual length are now dealt with corectly
625      * FIX gdcmFile::WriteBase make the difference, for color images, between
626            the length (for Palette expanded images)
627            and Raw Length (non expanded image + Palette)
628      * FIX Dicts/dicomV3.dic : removal of 'CTX' (context dependant) VR
629            (that broke Write). Replaced by UL.
630            Aware user will reload the field if he 
631            thinks it's necesssary
632              
633 2004-01-30 Jean-Pierre Roux
634      * gdcmParser::CheckSwap() now defaults the filetype to ACR 
635        when 'dirty Acr' is found, to be compliant with the new 
636        IsReadable() methods.
637        
638      * gdcmHeaderHelper :add Pixel Type 'FD', for dealing with 'double' images.
639       (no DOUBLE images in kosher DICOM, 
640       but so usefull for people that miss them ;-)
641       
642      * add Test/testDicomDir.cxx, Test/makeDicomDir.cxx , Test/explDICOMDIR.cxx
643        DICOMDIR related utilities (not checked as Windoze compliant)
644
645 2004-01-28 Jean-Pierre Roux
646      * upgrade GdcmHeaderEntry Print Method for DICOMDIR
647
648 2004-01-27 Jean-Pierre Roux
649      * gdcmParser constructor has a new boolean param,'ignore_shadow', 
650              to allow skipping the shadow elements, to save memory space.
651         The TRUE value for this param has to be used 
652         with a FALSE value for the 'enable_sequence' param.
653         ('public elements' may be embedded in 'shadow Sequences')
654      * gdcmHeader methods now deal with 'embedded icones images' in the header
655              (even when an 'icone image sequence' is announced by the 
656         element (0x0088,0x0200), but there is NO icone at all ...
657         
658      * gdcmHeader sometimes Image Location value doesn't follow  
659              the supposed processor endianity (see gdcmData/cr172241.dcm).
660              Fixed
661
662      * gdcmHeader add the method
663              IterHT  GetHeaderEntrySameNumber(grPixel,numPixel);
664         to get *all* the Header Entries with the same tag.
665         GetHeaderEntrySameName is probabely *useless* 
666         (no meaning : Name is *not* an identifier within the Dictionnary)
667
668 2004-01-26 Benoit Regrain
669      * Bug fix in the print of hexadecimal representations. Remove long fields 
670        in the print and add a third level of print to print them
671
672 2004-01-23 Benoit Regrain
673      * Bug fix on field having a VR = 'UI'. Assume that is a string field
674      * Bug fix on test suite after remove the strip made on not string fields
675      * Split the IsReadable method between gdcmParser which test that the file
676        is dicom and gdcmHeader which test that it's an image file
677
678 2004-01-22 Benoit Regrain
679      * DicomDir : clean code, add methods, set variables in protected or private
680      * gdcmUtil : bug fix for the clean string method
681
682 2004-01-19 Benoit Regrain
683      * Add the use of shadow dictionaries
684      * bug fix and coding style
685
686 2004-01-19 Benoit Regrain
687      * src/gdcmFile.cxx : bug fix concerning the close of file
688      * src/gdcmParser.[h|cxx] : remove obvious Pub informations
689      * Add the update of header entries using the shadow library
690
691 2004-01-19 Benoit Regrain
692      * removal of file gdcmHeader2.cxx
693      * split class gdcmHeader into gdcmParser and gdcmHeader, with gdcmHeader
694        inheriting from gdcmParser. This split is to prepare the integration
695        of dicom dir parsing
696      * bug fix under python
697
698 2004-01-16 Jean-Pierre Roux
699     * REM removal of class gdcmHeaderEntrySet
700     * REM removal of files gdcmHeaderEntrySet.cxx, gdcmHeaderEntrySet.h
701     * ADD add file gdcmHeader2.cxx 
702     * ADD add method gdcmHeader::SetPrintLevel (for PrintHeader)
703
704 2004-01-15 Benoit Regrain
705      * src/gdcmDicSet.[h|cxx] : add virtual entries to have a reference of
706        entries created while parsing the header. Thus, they will be destroyed
707        when the gdcmDictSet will be destroyed
708      * src/gdcmHeader.cxx, gdcmHeaderEntrySet.cxx : uses virtual entries of
709        gdcmDictSet
710
711 2004-01-15 Benoit Regrain
712      * vtk/vtkGdcmReader.cxx : bug fix : before, with python only, the program
713        made a fatal error because of the memory release at the end of program.
714        The problem was in vtkGdcmReader::ExecuteData where we were allocate
715        some memory and vtk seems to have some problems with that.
716      * src/gdcmHeaderEntrySet.cxx : bug fix for std lib and cout
717
718 2004-01-14 Benoit Regrain
719      * src/gdcmHeaderEntry.[h|cxx] : gdcmElValue -> gdcmHeaderEntry
720      * src/gdcmHeaderEntrySet.[h|cxx] : gdcmElValSet -> gdcmHeaderEntrySet
721      * src/*.[h|cxx] : make changes due to class name changes
722      * gdcmPython/demo/*.py : bug fix due to method names
723
724 2004-01-13 Benoit Regrain
725      * src/*.[h|cxx] : coding style
726      * vtk/*.[h|cxx] : coding style
727
728 2004-01-13 Benoit Regrain
729      * gdcmPython/testSuite.py : test the readable flag of file for tests
730      * src/gdcmDict.cxx, gdcmElValSet.cxx : bug fix under windows for prints.
731        It's lied to the stl compilation by MSVC (windows, always windows...)
732      * src/gdcmIdo.h, gdcmHeaderIdo.cxx : remove the Ido unused files
733
734 2004-01-12 Benoit Regrain
735      * src/*.h : add comments
736      * src/gdcmDictSet.h : set the method BuildDictPath in public
737      * src/gdcmTS.cxx, gdcmVR.cxx : use now a dictionnary file other than to be
738        directly setted in the source code
739      * Dicts/dicomTS.dic, dicomVR.dic : 2 new dictionnary files loaded by
740        gdcmTS and gdcmVR
741
742 2004-01-09 Benoit Regrain
743      * gdcmPython/gdcmVersion.py : add a gdcmVERSION variable information
744      * setup.py : use a reference to gdcmVERSION
745
746 2004-01-07 Benoit Regrain
747      * Modification to compile with the distutils.
748      * Bug fix in code
749
750 2003-12-10 Benoit Regrain
751      * gdcmHeader is now aggregating gdcmFile, and not derived into. Thus, we
752        can use a gdcmHeaderHelper to load datas
753      * gdcmPython/testSuite.py : make the testSuite compliant with modifications
754        made in the source code
755
756 2003-12-10 Benoit Regrain
757      * Update Windows projects and .cvsignore files
758
759 2003-11-12 Jean-Pierre Roux
760      * ENH gdcmHeader constructor has one more parameter (default value : false)
761            that allows the user to 'go inside' the SeQuences only
762            if he wants to.
763            gdcmElValSet:Print takes it into account
764
765 2003-11-12  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
766      * ENH: Update gdcmPython/CMakeLists
767      * FIX: (gdcmHeaderHelper) GetRescale and GetSlope
768      * FIX: (gdcmElValSet) char 'tag' was overiding private members (VC++)
769
770 2003-11-10 Jean-Pierre Roux
771       * FIX : gdcmHeader::LoadElements is now based
772              on the ListTag listElem member,
773              not longer on the TagElValueHT tagHt member
774       * ENH : PrintPubElVal shows (temporarily) both results,
775              with the tagHt member and the listElem member.
776              (it's easier to 'see' the problems when using Printheader)
777
778       * FIX : old private member LgrElem is now splitted into
779              ReadLength   : Length actually found on disk (updated only
780                             if bug fixing is necessary), for internal
781                             use only
782              UsableLength : Updated by FixFoundLength, to fix a bug
783                             or to allow Parser going on.
784              Will allow to re-write a kosher header when a SeQuence
785              with a length (not 0000) is found
786       Warning : gdcmFile::Write still uses the TagHt (not ListElem)
787                 because gdcmElValSet::Add does not update ListElem
788                 (to be written)
789
790 2003-11-07 Jean-Pierre Roux
791      * FIX misstyping in Transfert Syntax name table
792      * ENH gdcmHeader::FixFoundLength now allow to 'go inside' tge SeQuences
793           when they have an actual length (not 0000 nor FFFFF)
794      (Nobody should care of it, but DICOMDIR explorers)
795
796 2003-11-06  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
797      * ENH: vtkgdcmViewer now works with LUT dicom (OT-PAL-face ...)
798
799 2003-11-05  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
800      * ENH: vtkGdcmReader now supports LUT !
801           (vtkgdcmViewer for now is not able to use them though)
802
803 2003-11-05 Jean-Pierre Roux
804      * in testSuite.py : new files names for checking the package
805      * FIX : Forgot to commit gdcmFile::GetImageDataSizeRaw();
806              that returns the pixel area size to the *aware* (vtk) user
807              that DOESN'T want to turn the PALETTE COLOR image into an RGB image
808
809 2003-11-05 Benoit Regrain
810      * in testSuite.py : Modify the rules for checking the paths
811                        : Explicit error messages
812      * in __init__.py  : Related modif
813
814 2003-11-03 Jean-Pierre Roux
815      * add gdcmHeaderHelper::GetNumberOfScalarComponentsRaw()
816            to be used by aware (vtk) users that want to manage
817            LUT (and no to turn the PALETTE image into an RGB pixels one)
818      * GetPixelType now returns 8U for 24 Bits images
819                     (vtkGdcmReader compliant)           
820       
821 2003-10-31 Jean-Pierre Roux
822      * Removal of *all* gdcmData images and add them again
823        in order to loose the 'history' of un-anonymised images
824        
825 2003-10-31 Jean-Pierre Roux
826      * RMV : removal of useless jBitsInJsample.h 
827            for both 8 and 12 Bits JPEG Lossy Libraries
828
829 2003-10-31 Jean-Pierre Roux
830      * ENH : Add the functions gdcmFile::GetImageDataRaw 
831                                gdcmFile::GetImageDataIntoVectorRaw
832              that act as GetImageData and GetImageDataIntoVector
833              except the making of an RGB Plane from Gray Plane + LUT
834              Intended to aware (vtk) users who know how to manage
835              such an image :
836              After gdcmHeader :
837               GetLUTRGBA return a R,G,B,A LUT if any
838               lgrTotaleRaw gives the 'Raw' length
839               GetImageDataRaw returns the gray Plane
840      * FIX : no more dirty trick for 'Segmented xxx Palette Color Lookup' images
841              (They stay Grey, just like with other Dicom viewers :-(
842
843 2003-10-30 Jean-Pierre Roux
844      * FIX : a VC++ intended syntax modif broke the 12/12 Bytes expanding
845              
846 2003-10-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
847      * ENH: Can be used like this '$vtkgdcmViewer *.dcm' with *.dcm 
848            being coherents dicom files.
849      
850 2003-10-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
851      * FIX: DOH ! Forgot about windo$e users, they couldn't read lossless jpeg,
852            from medcon lib !
853      * ENH: Turn it into DOS file type to match libgdcmijpeg8.dsp file type 
854      * ENH: Two steps is necessary to please VC++ compiler...
855      * FIX: DOH ! libgdcmijpg8 -> libgdcmljpeg
856      * ENH: Add include dir to medcon lib
857      * FIX: only one function is being exported for now ! 
858            You should use GLOBAL(return type) see ljpg/jpeg.h for more info
859             
860 2003-10-29 Jean-Pierre Roux
861       * adding  gdcmHeader::GetLUTRGBA
862         returns a 4 * 256 Bytes Reg/Green/Blue/Alpha vtk compliant LUT
863           --> Mathieu, the modif u're waiting for is not yet committed
864       * removal of now useless GetLUTRed,GetLUTGreen,GetLUTBlue,GetLUTRGB
865
866 2003-10-27 Jean-Pierre Roux
867       * adding some xmedcon breaker files (courtesy of Loïc Boussel)
868         00191113.dcm DermaColorLossLess.dcm
869         MxTwinLossLess.dcm RadBWLossLess.dcm
870       * ENH: For version prior to vtkImageViewer2 -r 1.19
871       * FIX: avoid pb with xmedcon-breaker CT McTwin Elscint images
872
873 2003-10-27  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
874       * Removal of ido stuff in CMakeLists.txt
875                                                
876 2003-10-24  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
877       * ENH: vtkGdcmReader.cxx can now read multiframe dicom
878       * FIX: remove a call to ->Modified ... see comments
879       * FIX: vtkgdcmViewer.cxx was writting ASCII file...this is so slooooow !
880       
881 2003-10-23  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
882       * FIX: Problem with path for libvtkgdcmPython
883       * ENH: Try adding a search script for python site-package
884       * RMV: Remove some file from medcon lib that are not necessary
885       * FIX: gdcm/Makefile.am fix for generating ljpg medcon
886       * ENH: CMakeLists.txt now generate 'pygdcm.so' instead of 'libpygdcm.so'
887       * FIX: More pragma disable fro VC++, 
888              I don't think I break something as it is also disable in VTK/ITK.
889         But it fasten debug compilation time.
890             
891 2003-10-23 Jean-Pierre Roux
892       * gdcm now deals with 16 Bits Run Length Encoded images
893         (they are compressed as 2 planes images, 
894          one for the high Bytes, the other for low Bytes)
895
896 2003-10-22 Jean-Pierre Roux
897       * Now CheckRead takes into account :
898          - the bugged 'Leonardo' Siemens images
899          - the XA images, sent thru the burning VPRO station
900       * add I9000001.dcm, a GE dlx XA image, thru the VEPRO burning station
901        (breaks DicomWorks)
902
903 2003-10-22  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
904       * FIX: When copying a Makefile.am to CMakeLists.txt 
905              one should remove the '\'
906         
907 2003-10-22 Jean-Pierre Roux
908       * in gdcmData adding a bugged 'Leonardo' Siemens image 
909         (wrong lengths in header)
910         OK with gdcm, KO with the other viewers :-)
911       * add a GE dlx XA image, thru the VEPRO burning station
912         (breaks DicomWorks)
913
914 2003-10-21 Jean-Pierre Roux
915       * in gdcmData add the checkvtkgdcmViewer.sh shell script 
916         for a brutal checking of vtkgdcmViewer compliance
917
918 2003-10-21 Jean-Pierre Roux
919       * add the files for 'xmedcon' Jpeg Lossless library
920       * call of 'xmedcom' Jpeg Lossles libray (instead of the old LibIDO one)
921
922 2003-10-21 Jean-Pierre Roux
923       * 'Compacted Files' (12 Bits Allocate, 12 Bits Stored) are now dealt with
924      
925 2003-10-21 Jean-Pierre Roux
926       * garbage Siemens 'Leonardo' images dealt with
927         (the patch is easy to remove)
928       * cosmetic changes to avoid warnings
929       
930 2003-10-20  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
931       * ENH: vtkgdcmViewer now autoscale color/window level on start-up, 
932         no need to press 'r' now.
933    
934 2003-10-20  Jean-Pierre Roux
935       * upgrade of checkRead.sh checkWrite.sh according
936         to new Jpeg Lossless decompressor
937       * add US.3405.1.dcm, a genuine RGB medical file ...
938       * add gdcm-ACR-LibIDO.acr, unnormalized Rectangular LibIDO format image
939       * add CLIP0001-Sequoia-U11.dcm, US 'Clip', from SEQUOIA machine,
940                                                   UNIT 11, Hop Cardio              
941 2003-10-15  Jean-Pierre Roux
942       * general anonymisation in gdcmData
943       * adding the 'color files' from
944         http://www.leadtools.com/SDK/Medical/DICOM/ltdc19.htm
945       * adding some well knowed bugged-header images
946       * adding checkRead.sk, checkReadColor.sh, checkWrite.sh,
947         waiting for their inclusion in Python testsuite
948
949 2003-10-15  Jean-Pierre Roux
950     * gdcmHeader::gdcmHeader(const char *InFilename, bool exception_on_error)
951       no longer seg faults when file is not found
952
953 2003-10-14  Jean-Pierre Roux
954      * Emprovement of reading for Dicom encapsulated Jpeg LossLess 
955        MultiFrame images
956
957 2003-10-14  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
958      * TODO: *.in file to genereate a UseGDCM later
959
960 2003-10-14  Jean-Pierre Roux
961      * Some supposed-to-be Dicom Images have no preamble.
962         OpenFile takes it into account
963      * Jpeg LossLess 24 Bits images doesn't break any longer gdcm
964      * Missing elements added in dicomV3.dic
965       (just to be affraid : have a look at
966        ftp://medical.nema.org/medical/dicom/2003/01v03dif/01v03_06.pdf
967        and do it again next year ;->
968
969 2003-10-13  Jean-Pierre Roux
970      * According to PS 3.3-2003 C.11.1.1.2 p 619, when each pixel of 
971        a PALETTE COLOR is stored on 2 Bytes, theese 2 Bytes must be equal.
972        But there are NOT. It's fixed !
973        
974 2003-10-13  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
975      * FIX: "jpeglib.h" was not found on VC++
976      * FIX: vtkgdcm was not being installed 
977          
978 2003-10-10  Jean-Pierre Roux
979      * ENH : OpenFile closes the file if it *really* doesn't look like
980              an ACR-NEMA / DICOM one.
981      * FIX : testWrite no longer writes an empty file if the source file     
982              is not gdcm Readable
983      * ENH : One more JPEG LossLess type "JPEG Baseline (Process 14)" 
984              is now decoded.
985         
986 2003-10-10  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
987      * FIX: CMake generate now documentation
988      * ENH: out of source doc build !
989      * ENH: Generate both user and dev documentation
990      * ENH: Should work on windows too
991      * ENH: Only one doxygen config.in file is needed 
992      * FIX: make install should be ok now on Ã¹nix plateform
993      * FIX: PATH to dictionary was wrong (missing /)
994      * ENH: OpenFile, return true if the file looks like an ACR or DICOM file 
995                      
996 2003-10-09  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
997      * vtkGdcmReader is now able to read rgb dicom file.
998      * src/gdcmHeaderHelper : GetNumberOfScalarComponents()
999      * added a gdcmViewer to vtk test, use mouse to control 
1000         window level & window width
1001
1002 2003-10-09  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1003      * CMake-ification of gdcm, we have now two build system
1004      * FIX: on cygwin Wsock32 doesn't exist
1005      * FIX: force jpeg dir to the local one (gdcm/src/jpeg)
1006      
1007 2003-10-06  Emanuel Ollart
1008      * FIX : compilation process wad broken.
1009              Changed gdcmViewer_sources to vtkgdcmViewer_sources
1010         
1011 2003-10-06  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1012      * change gdcmViewer -> vtkgdcmViewer
1013      * change GetXSpacing and GetYSpacing "%f\\%" is parsed backward
1014      
1015 2003-10-06  Jean-Pierre Roux
1016      * FIX :A few nasty patches to allow the reading of a lot of nasty images
1017            ( e.g : well known GE images with a wrong elem length,
1018                  : Philips MRI Images with a wrong Huffman table)
1019       * still to be done : allow the reading of bugged LEONARDO Siemens images
1020
1021 2003-10-03 Jean-Pierre Roux
1022       * Odd length strings are padded with '\0' (not with spaces, 
1023         to remain compliant with already defined strings, 
1024         like Transfert Syntax UID and others)
1025
1026 2003-10-03 Jean-Pierre Roux
1027       * ENH :gdcmHeaderHelper::GetNumberOfScalarComponents() added, 
1028              to allow displaying RGB images (not only by affim ;-)
1029         
1030 2003-10-03  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1031       * vtkGdcmReader is now able to read rgb dicom file.
1032       * src/gdcmHeaderHelper : GetNumberOfScalarComponents()
1033
1034 2003-10-03 Jean-Pierre Roux
1035       * A few nasty patches to allow the reading of a lot of nasty images
1036         ( e.g : well known GE images with a wrong elem length,
1037               : Philips MRI Images with a wrong Huffman table)
1038       * still to be done : allow the reading of bugged LEONARDO Siemens images
1039
1040 2003-10-03 Jean-Pierre Roux
1041       * One more JPEG LossLess type "JPEG Baseline (Process 14)" is now decoded.
1042
1043 2003-10-03 Jean-Pierre Roux
1044       * gdcmHeaderHelper::GetNumberOfScalarComponents() added, 
1045         to allow displaying RGB images (not only by affim ;-)
1046
1047 2003-10-03 Jean-Pierre Roux
1048       * gdcmFile::GetImageDataIntoVector now
1049          - deals with MultiFrames MultiFragments Run Length Encoded files
1050          - deals with YcBcR (YBR_FULL) files
1051          - deals with YBR_YBR_FULL_422 files (they work as RBG files ?!?)
1052           WARNING : nothing was checked for YBR_PARTIAL_422, YBR_ICT, 
1053                                             YBR_RCT files.
1054           (no sample found :-(
1055
1056 2003-10-02  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1057       * src/*.cxx removed pragma thingies to src/gdcmCommon.h
1058         Two reasons: - clear things
1059                      - third parties acces gdcm through header files, so won't
1060                        suffer anymore VC++ complains
1061
1062 2003-09-30  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1063       * add argv[1] in testvtkGdcmReader.cxx
1064       * removed leaks
1065
1066 2003-09-24 Jean-Pierre Roux
1067       * The lines are now eigthy characters long.for 
1068         gdcmHeader.cxx gdcmHeaderHelper.cxx gdcmParse.cxx 
1069
1070 2003-09-22  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1071       * src/gdcmUtil.[cxx|h] : change the _CreateCleanString return value from
1072         char* to std::string. Thus, the use of strdup becomes useless. (see
1073         previous commis of Malaterre)
1074       * src/gdcmElValSet.cxx : reuse commented call to _CreateCleanString like
1075         before the last Malaterre's commit.
1076
1077 2003-09-19  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1078       * This commit should fix the Debug building under VC++, the problem
1079         was mainly a mixture of debug and release lib being loaded at startup.
1080       * I also remove a depency to a specific C function: strdup. Because I had
1081         to force the link to msvcrtd (whereas strdup is in libc).
1082
1083 2003-09-16  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1084       * "gdcm::Unfound" string changed to a constant variable (GDCM_UNFOUND)
1085         located in the gdcmCommon.h file. All use of reference of tha has been
1086         changed to now use the variable GDCM_UNFOUND.
1087
1088 2003-09-16  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1089       * Cosmetic changes:
1090         - gdcmPython/testSuite.py adapted to the JPR updated Dicts/dicomV3.dic
1091           Dicom dictionary. The test suite can now be run again. Note:
1092           I'm note very happy with the " (RET)" changes. I believe this
1093           RETAINED comment should be dropped when parsing the dictionary.
1094         - PACKAGER corrected
1095         - DEVELOPPER added.
1096         - AUTHORS updated and now in alphabetical order
1097       * Makefile.am now exports gdcm.dsw for Windoze users.
1098
1099 2003-09-11  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1100       * cygwin complains about missing std:: in subdir Test/
1101
1102 2003-09-10  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1103       * remove some methods that are now in gdcmHeaderHelper
1104
1105 2003-09-10  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1106       * vtkGdcmReader set spacing and origin correctly
1107
1108 2003-09-09  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1109       * Fix a few delete/delete[] mismatch
1110
1111 2003-09-08  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1112       * src/gdcmHeaderHelper.[h cxx]: added new class that provide an
1113         interpretation to data given by gdcmHeader. For instance there are
1114         heuristics to get informations (look at different places).
1115       * it also include a specific class: gdcmSerieHeaderHelper devoted to
1116         sorting DICOM images based on different strategies.
1117       * modified Makefiles accordingly.
1118
1119 2003-09-05  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1120       * src/*.cxx : added pragma disable 4786/4251 to get rid of ~4300 warning
1121         when building in debug mode
1122       * vtk/win32/vtkgdcm.dsp : change /MT -> /MD and /MTd -> /MDd to match
1123         src/win32/gdcmdll.dsp
1124       * vtk/win32/vtkgdcm.dsp : added /nodefaultlib "mscvrt" for debug mode
1125
1126 2003-08-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1127       * Corrected a leak in vtkGdcmREader.cxx, the pSource was find thanks
1128             to valgrind.
1129
1130 2003-07-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1131       * src/win32/libgdcmjpeg12.dsp was not dos format
1132       * src/win32/libgdcmjpeg12.dsp : 
1133                   libgdcmijpeg12_EXPORTS -> LIBGDCMIJPEG12_EXPORTS
1134       * src/win32/gdcmdll.dsp: + /I "..\jpeg\libijg12"
1135
1136 2003-07-29 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1137       * src/gdcmHeader.h : add std:: prefix for stl elements... like others in
1138         the file
1139       * src/gdcmFile.cxx : bug fix in affectation type
1140       * src/jpeg/libijpeg12/jmorecfg12.h : export for windows modified... like
1141         in src/jpeg/libijpeg8/jmorecfg8.h (JPR : copy/paste exists !!!)
1142       * Modifs of MVSC projects to compile them. Not concerning 2 identic
1143         symbols... future problem ?
1144
1145 2003-07-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1146       * src/win32/libgdcmijpeg12.dsp was missing
1147       * modified gdcm.dsw accordingly
1148
1149 2003-07-28  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1150       * src/gdcmHeader.cxx : misplaced return 0.; for ACR/NEMA
1151
1152 2003-07-24 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1153       * src/jpeg/libijg12/.cvsignore, jconfig.* : ommited files while last
1154         commit of JPR (before his hollidays to facilitate our work).
1155       * setup.py : bug fix in code. Modifications made while the last commit
1156         of JPR. The code hasn't been tested before the commit... it's so
1157         useless to make that (for best programmer that is JPR) !!!
1158
1159 2003-07-08  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1160       * tagged the current version as Version0_3 (i.e. version 0.3)
1161
1162 2003-07-08  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1163       * vtk/testvtkGdcmReader.cxx : remove a symbol that is unused
1164       * src/jpeg/libijg8/jmorecfg.h : adding export symbol for windows
1165       * *.dsp : modifications to use new libgdcmijpeg8 library
1166       * setup.py : bug fix on VTKPATH variable
1167       * PACKAGER : adding all concerning windows
1168
1169 2003-07-07  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1170       * src/gdcmElValSet.cxx, gdcmFile.cxx: JPR bug fix, removal of
1171         garbage debug code.
1172       * TODO, vtk/vtkGdcmReader.cxx: upcoming fixes comments.
1173       * gdcmPython/testSuite.py: JPR bug fix, brutal erasement of
1174         test suite reported error.
1175       * PACKAGER file added (describes what a packager must do when
1176         packaging a new release).
1177       * MANIFEST.in, now declares jconfig.linux and jconfig.vc
1178       * configure.in: upgraded version number to 0.3.0
1179       * fixing build of rpm (through rpm -ta):
1180         - Doc/Makefile.am exports proper doxygen files
1181         - src/jpeg/libijg8/Makefile.am exports the include files.
1182
1183 2003-07-07  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1184       * vtk/vtkGdcmReader.cxx : bug fix when loading only 1 file.
1185       * src/gdcmHeader.h : formatting code
1186
1187 2003-07-07  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1188       * vtk/vtkGdcmReader.[cxx|h] : bug fix when loading only one file.
1189         We were obtaining error message from vtk. Now, creation of file list
1190         is made in an internal list to prevent this problem.
1191         Bug fix when output is empty.
1192         Bug fix in update of progress value. Previous commit for this was a bad
1193         correction.
1194       * vtk/vtkGdcmReader.h : adding comments for InternalFileNaleList variable
1195
1196 2003-07-04  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1197       * src/gdcmHeader.h : added method to get the file name
1198       * vtk/vtkGdcmReader.[cxx|h] : bug fix concerning loading of bad dicom
1199         files. Added method to remove all files on the input
1200         Added FIXME comment concerning the bad parsing of header made by
1201         ExecuteInformation method (in ExecuteData method)
1202
1203 2003-07-03  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1204       * vtk/Makefile.am: vtkGdcmReader.h should now be cleany installed
1205         when using make instal.
1206       * src/gdcmFile.cxx : bug fix under Window after JPR commit
1207         RQ : the JPR doesn't appear in the ChangeLog... normal for him
1208
1209 2003-07-03  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1210       * setup.py : adding include dir of jpeg lib to compile all sources
1211       * */Win32/*.dsp : JPR fix for windows compilation
1212
1213 2003-07-02  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1214       * src/jpeg/libijg8/jconfig.* : JPR bug fix : now compile on both
1215         linux and WINDOWS !
1216       * src/gdcmJpeg.cxx : JPR bug fix : erroneous include
1217       * src/win32/gdcmdll.dsp : JPR fix for windows compilation
1218
1219 2003-07-02  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1220       * setup.py is again effective on un*x (takes into account the
1221         addon of the jpeg library)
1222       * Doc/DoxyDevelInstal.txt added (developper's raw documentation)
1223       * Doc/Doxy* updated (includes above enhancements)
1224       * INSTALL now points to web documentation
1225
1226 2003-07-01  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1227       * src/gdcmHeader.h doesn't make unnecessary reference to
1228         gdcmUtil.h anymore.
1229       * gdcmPython/Makefile.am now avoids calling the wrappers for the
1230         clean target.
1231       * src/gdcm*.[cxx|h] :
1232         - to allow compilation with gcc 3.x
1233           -- clean up of STL usage (added explicit usage of std::)
1234           -- small fixes on exceptions.
1235           Note: linking not tested !
1236         - clean of doxygen comments to avoid warnings at documentation
1237           building stage.
1238       * vtk/vtkGdcmReader.cxx: g++ warning message clean up (platform
1239         dependent convertion).
1240
1241 2003-06-20  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1242       * Clean up of previous JPR garbage commit (not even commented in the
1243         Changelog):
1244         - Test/Makefile.am removed the reference to unexisting testTS.cxx
1245         - moved all jpeg related files from src to src/jpeg/libijg8, with
1246           addition/modification of Makefile.am and configure.in.
1247         - the testSuite is still brain damage (not guilty).
1248
1249 2003-06-02  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1250       * WrapVTK.py : modifications to get correctly vtk source files to
1251         compile
1252       * vtk/vtkGdcmReader.cxx : modification for an already existing name
1253         (FileName -> Filename)
1254
1255 2003-06-11  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1256       * vtk/vtkGdcmReader.[cxx/h]:
1257         - UpdateProgress method should now be effective
1258         - removed the limitation on having only images loaded (as opposed
1259           to volumes),
1260         - when building a stack of images/volume, a lesser number of
1261           gdcmHeader and gdcmFile instances should be used (hopefully
1262           accelerating things).
1263         - when building a stack of images/volumes, files which are not
1264           loadable (wrong path-filename, wrong permissions on existing file,
1265           or file not parsable by gdcm) are replaced with a black image
1266           in the stack (for the caller to notice the problem).
1267
1268 2003-06-03  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1269       * vtk/vtkGdcmReader.cxx: hopefully corrected Z extent.
1270
1271 2003-06-02  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1272       * vtk/vtkGdcmReader[cxx|h] : makes correct code to remove conflicts
1273         between standard library (std) and vtk library (problems are found
1274         under Windows... thanks Windows !)
1275
1276 2003-05-30  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1277       * vtk/vtkGdcmReader[cxx|h] should now be volume aware (read ready for
1278         debug stage).
1279       * gdcmPython/demo/vtkGdcmReader.py: commented lines for volume test
1280
1281 2003-05-29  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1282       * vtk/vtkGdcmReader[cxx|h] preparation addons for loading volumes.
1283
1284 2003-05-28  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1285       * When compiling with distutils (see setup.py) the C++ compiler is
1286         called with different flags than the default ones (with automake).
1287         In order to fix all those warning, I compiled gdcm with the command
1288            make 'CXXFLAGS=-Wall -Wstrict-prototypes -D__STDC_LIMIT_MACROS'
1289         and went for warning fixes:
1290         - src/gdcmHeader.cxx, Test/dcm2acr.cxx, pourFindTaggs.cxx cleaned
1291           up from unused variables.
1292         - vtk/vtkGdcmReader.cxx: potential bug fix.
1293       * src/gdcmHeader.h: Doxygen warning cleanup
1294
1295 2003-05-27  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1296       * gdcmPython/gdcm.i:
1297         - typemaps correction to take into account the systematic replacement
1298           of "using namespace std" with std:: prefix e.g. std::list,
1299           std::string... (cf changes of 2003-05-21).
1300         - gdcmGlob global variable of type gdcmGlobal (defined in
1301           src/gdcmUtil.cxx and declared in gdcmPython/gdcm.i) is now
1302           exported to Python a as cvar.
1303       * gdcmPython/__init__.py now defines two functions GetPubDictTagNames()
1304         and GetPubDictTagNamesByCategory() as a replacement for deprecated
1305         gdcmDictSet.GetPubDictTagNames() and
1306         gdcmDictSet.GetPubDictTagNamesByCategory() class functions (i.e.
1307         C++ static methods).
1308       * gdcmPython/demo/printGroupedPublicDict.py is operational again,
1309         with the above changes.
1310
1311 2003-05-22  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1312       * setup.py, manifest.in : bug fix under linux
1313
1314 2003-05-22  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1315       * Modification of setup.py to compile vtk part too. Then, we have 2
1316         wrappers which must work with same distutils. For that, we have a
1317         generic distutils in distusiltsWrapping.py ; with :
1318          - build_extWrap class to wrap generically all extensions,
1319          - ExtensionWrap base class for all wrapping extension that contains
1320            a wrapper
1321          - Wrapper interface which wrap sources
1322         + In WrapSwig.py  we have extension and wrapper for Swig
1323         + In WrapVTK.py  we have extension and wrapper for VTK
1324       * MANIFEST.in : modifications to consider vtk directory and new python
1325         files for compilation
1326
1327 2003-05-21  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with Benoit Regrain
1328       * Added python wrappers of vtkGdcmReader vtk class (see the
1329         source in vtk/vtkGdcmReader.cxx) :
1330         - vtk/Makefile.am now builds a library
1331         - gdcmPython/Makefile.am now builds vtkgdcmPython a second import
1332           python library (as opposed to _gdcm.so wich are the python
1333           wrappers of gdcm). vtkgdcmPython.so uses the vtk python wrappers
1334           (vtkWrapPython and vtkWrapPythonInit utility) to build vtkgdcmPython
1335           import library.
1336         - configure.in has an additional flag --enable-vtk that needs
1337           to be set to enable compilation of vtk related code, that is:
1338           + vtk/vtkGdcmReader.so and
1339           + vtk/testvtkGdcmReader C++ demo of vtk wrappers of gdcm)
1340           + gdcmPython/vtkgdcmPython.so (see above)
1341         - gdcmPython/demo/vtkGdcmDemo.py corrected (some images cannot
1342           be read when compressed or when HighBit + 1 != BitsStored),
1343         - gdcmPython/demo/vtkGdcmReader.py added. This demo illustrates
1344           the usage of the python wrapper of vtkGdcmReader vtk class.
1345       * vtk/vtkGdcmReader.cxx: bug fixed (thanks to Benoit Regrain).
1346       * src/*.[h] all occurences of stl classes are now prefixed with
1347         std::, and all occurences of "using namespace std;" where removed.
1348         This is to avoid pollution of global namespace in included files.
1349         Apparently vtk does not avoid this pitfall: when using both
1350         gdcm and vtk (as in vtk/vtkGdcmReader.cxx) this ended up in a
1351         collision of various stl members (principally cout...).
1352       * gdcmPython/testSuite.py now cleanly removes temprory generated
1353         file.
1354       * gdcmPython/gdcm.i now declares a typemap for std::string (to
1355         comply with above changes)
1356
1357 2003-05-12  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1358       * src/gdcmHeader>[h/cxx] added gdcmHeader::GetPixelSize()
1359       * vtk/vtkGdcmReader.cxx now properly inports the image in the
1360         vtk data structure (an image Flip was required).
1361       * vtk/testvtkGdcmReader.cxx refers to gdcmData subdir instead of Data.
1362       * cosmetic changes in documentation.
1363
1364 2003-05-7  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1365       * src/gdcmHeader.cxx: the constructor no longer exits when an
1366         unexisting file is given as argument.
1367       * The subdirectory Data (containing all the images used for the
1368         test suite) is not part of this repository anymore. A new module
1369         containing those images is now available at
1370           :pserver:xxx@cvs.creatis.insa-lyon.fr:2402/cvs/public
1371         with the name gdcmData.
1372         All the python scripts (including the package initialisation file
1373         gdcmPython/__init__.py) were adapated to take this change into
1374         account (basically GDCM_DATA_PATH is now GDCM_TEST_DATA_PATH).
1375
1376 2003-05-5  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1377       * vtk subdir added. Contains vtkGdcmReader.[cxx|h] a vtk class
1378         inherinting from vtkImageReader and testvtkGdcmReader.cxx a small
1379         demo of the usage of this class.
1380         Compilation of this vtk part is only done when using the --enable-vtk
1381         at configure (or autogen.sh) stage.
1382
1383 2003-04-16  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1384       * More memory link related corrections and documentation fixes.
1385         Notes on valgrind:
1386           - maximum info is obtained with a command of the form:
1387             valgrind --leak-check=yes --leak-resolution=high --num-callers=40
1388                      --show-reachable=yes PrintHeader
1389           - the remaining reachable blocks seem to come from the STL
1390             allocation scheme through the usage of map and list. It looks
1391             like this memory cannot be freed but it is not a memory leak
1392             (in fact further invocation to the STL would recollect the
1393              unused memory allthough it cannot explicitely be freed).
1394       * gdcmPython/demo/vtkGdcmDemo.py added: this is a small demo
1395         of displaying an image parsed with gdcm and displayed with VTK.
1396         Note: some images don't seem to work e.g.
1397             python vtkGdcmDemo.py  ../../Data/US-RGB-8-esopecho.dcm
1398       * src/gdcmHeader.x: dicom_vr and Dicts are not class members anymore.
1399         Allthough this weakens the semantics, it is a ditch attempt to
1400         make gdcm more thread friendly.
1401
1402 2003-04-15  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1403       * Memory link hunt (by using valgrind through the command
1404           valgrind --show-reachable=yes --leak-check=yes PrintHeader).
1405         - added src/gdcmVR.cxx gdcmVR.h that objectify the previous
1406           gdcmHeader::_dicom_vr.
1407         - gdcmHeader::InitVRDict transfered as gdcmVR::gdcmVR().
1408         - gdcmHeader::dicom_vr is now of type gdcmVR* as opposed to
1409           VRHT*.
1410         - gdcmGlobal global object contained class added (see src/gdcmUtil.x)
1411
1412 2003-04-9  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1413       * src/Makefile.am now exports all the necessary include files at
1414         make install stage.
1415
1416 2003-04-9 JPR
1417       * UpdateGroupLength replaced by new one
1418
1419 2003-04-7 JPR
1420       * UpdateGroupLength re-written using H-Table
1421         (named UpdateGroupLengthNew untill checks are over)
1422
1423 2003-04-7 Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1424       * Data/im_00001 renamed to gdcm-MR-PHILIPS-16-Multi-Seq.dcm
1425       * gdcmPython/testSuite.py now include a test of gdcmFile::Write.
1426       * src:
1427         - gdcmHeader::GetPubElValSet removed.
1428         - gdcmElValSet::WriteDcm, WriteAcr, WriteExplVR, revamped to
1429           UpdateGroupLength, WriteElements, Write.
1430         - gdcmHeader::FileType moved to gdcmCommon.h. The enum FileType
1431           doesn't contain TrueDicom anymore since ExplicitVR and ImplicitVR
1432           carried the same semantics.
1433           - src/gdcmHeaderIdo.cxx changed accordingly.
1434         - gdcmFile::WriteBase now regroups all the codes from previous
1435           versions of WriteDcm, WriteDcmImplVR, and WriteACR.
1436         - enum FileType moved to gdcmCommon.h
1437       * src/gdcmHeader.cxx AddDefault trashed
1438       * gdcmGetXSize added
1439       * getimageDataSize now calls gdcmGetXSize
1440       * Test/*.cxx changed to agree with above changes
1441
1442 2003-03-31 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1443       * src/gdcmHeader.h: LoadElements() is not a public method anymore
1444         (to avoid double call by end user).
1445       * Test/*.cxx LoadElements() doesn't need to be called explicitely
1446         by end user, since gdcmHeader::gdcmHeader now handles it.
1447
1448 2003-03-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1449       * gdcm/Doc many doxygen changes:
1450         - Doxyfile now has two different versions, DoxyfileUsers that generates
1451           the html.users end users oriented documentation and
1452           DoxyfileDeveloppers that generates the html.developper developper
1453           oriented documentation.
1454         - README changed accordingly
1455         - requirement.txt removed (old design info moved to TODO).
1456         - Additional files DoxyInstallation.txt, DoxyIntroduction.txt,
1457           DoxyMainPage.txt, DoxyPython.txt provide more information.
1458         - Note: the website http://www.creatis.insa-lyon.fr/Public/Gdcm/ can now
1459           be updated by simply regenerating the docs with doxygen and copying
1460           html.developper and html.users to tux:/home/httpd/html/Public/Gdcm
1461       * src/gdcmElValSet.cxx: stl <map>.count() can only return 0 or 1. Hence
1462         all the tests in the form "if (<map>.count() >1)" were removed.
1463       * src/gdcmFile.cxx: cosmetic changes to avoid messages of doxygen about
1464         ill-formed documentation sections.
1465       * src/gdcmHeader.cxx: ditto
1466
1467 2003-03-27 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1468       * setup.py fixed for un*x (needed macro for stdint.h)
1469       * Test/test.cxx renamed to PrintHeader.cxx to avoid collision on
1470         un*ces with sh-utils test utility.
1471       * gdcmPython/demo/test.py renamed to PrintHeader.py
1472       * gdcmPython/demo/ReorganiseFiles.py new demo script added.
1473       * gdcmPython/win32/gdcmpycomplet.dsp renamed to gdcmpyembedded.dsp.
1474       * gdcmPython/win32/gdcmpy.dsp trashed away (brain damaged).
1475       * src/gdcm*.cxx JPR's bad inclusion fixed.
1476
1477 2003-03-26 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1478       * src/gdcmHeader[h, cxx] gdcmHeader now has an IsReadable predicate.
1479       * gdcmPython/demo/test.py changed accordingly.
1480
1481 2003-03-25 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1482       * gdcmPython/Makefile.am fixed linking against libstdc++
1483       * gdcmPython/_gdcm.so symbolic link to gdcmPython/.libs/pygdcm.so added.
1484       * Swig subdir (historical tests of swig version 1.3.17++) removed
1485       * Test/testChangeEntete.cxx some lines commented out in order to make
1486         compilation work.
1487       * src/gdcmHeader.cxx cleaned up wild JPR's dirty kludge.
1488       * src/gdcmElValSet.cxx cleaned up frog's forgotten debug message
1489
1490 2003-03-24 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1491       * src/gdcmHeader.cxx gdcmHeader::gdcmHeader now calls LoadElements(),
1492         hence the user doesn't need this explicit call.
1493         - gdcmPython/testSuite.py, gdcmPython/demo/*.py changed accordingly
1494           i.e. LoadElements() call removed.
1495       * src/gdcmCommon.h now defines UINT32_MAX (see stdint.h).
1496         - src/Makefile.am declares the proper flag for g++.
1497       * src/gdcmElValSet.h added gdcmElValSet::GenerateFreeTagKeyInGroup
1498         for adding user defined new tags.
1499         - src/gdcmHeader.cxx gdcmHeader::NewManualElValToPubDict added.
1500         - src/gdcmHeader.cxx gdcmHeader::AddAndDefaultElements now
1501           cleanly adds some gdcm added tags (like gdcmXSize, gdcmYSize...)
1502
1503 2003-03-17 Fabrice Bellet <Fabrice.Bellet@creatis.insa-lyon.fr>
1504       * Makefile.am, acinclude.m4, configure.in, python.m4, Dicts/Makefile.am,
1505         Doc/Makefile.am, Test/Makefile.am, gdcmPython/Makefile.am,
1506         src/Makefile.am : the project should properly compile and install
1507         with the autotools, included the python wrappers part.
1508       * gdcm.spec.in : added a spec file for RPM packaging.
1509
1510 2003-03-14 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1511       * src/gdcmUtils.cxx : redifinition of defaults parameters in code
1512
1513 2003-03-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1514       * gdcmPython/__init__.py fix of GDCM_DICT_PATH which was not
1515         to exported to the environement (see gdcmPython/testSuite.py
1516         for usage).
1517       * src/gdcmElValSet.[cxx/h], gdcmElValue.[cxx/h], gdcmFile.[cxx/h],
1518         gdcmHeader.[cxx/h]: ElValSet class renamed to gdcmElValSet, and
1519         ElValue class renamed to gdcmElValue for obvious consistency reasons.
1520       * src/gdcmElValSet.cxx, src/gdcmUtil.[cxx-h] Tokenize utility function
1521         moved away from gdcmElValSet.cxx to gdcmUtil.cxx.
1522
1523 2003-03-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1524       * gdcmPython/__init__.py doesn't crash anymore when running in
1525         in InstallMode or PreInstallMode but with an environement given
1526         value of GDCM_DICT_PATH.
1527       * src/gdcmDictSet.[cxx/h] coding style.
1528
1529 2003-03-06 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1530       * src/gdcmHeader.h and gdcmHeader.cxx Coding style + doxigenation.
1531       * src/gdcm.h general comments moved to TODO, and README
1532       * src/gdcm.h should now be seen as a user commodity (including it
1533         should suffice to fully use gdcm). It is nowhere including within
1534         any of the kernel files src/*.cxx and src/*.h.
1535
1536 2003-03-05 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1537       * src/gdcm.h splitted in gdcmCommon.h, gdcmDict.h, gdcmDictEntry.h,
1538         gdcmDictSet.h, gdcmElValSet.h, gdcmElValue.h, gdcmFile.h,
1539         gdcmHeader.h
1540       * src/gdcm*.cxx only include their corresponding include file
1541         (as opposed to gdcm.h)
1542       * gdcmPython/gdcm.i changed accordingly
1543       * Test/Makefile.am corrected and added NEWS, AUTHORS in order for
1544         the autogen.sh generated "make snapshot" command to work.
1545       * autogen.sh removed history related references to crea package.
1546
1547 2003-03-04 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1548       * distutilsSwigCPlusPlus.py work around some swig portability
1549         bug.
1550
1551 2003-03-03 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1552       * Eventually, python/gdcmPython was renamed to gdcmPython. This
1553         was done in a last ditch attempt to get setup.py _really_
1554         operationnal. The python/gdcmPython layaout add the advantage
1555         of hidding away the python related distutils specific files
1556         (MANIFEST.in, setup.py, distutils*.py...) from the main directory.
1557         Alas, the src directory was out of scope (i.e. it's relative
1558         position to setup.py was ../src) which made things impossible to
1559         handle (see previous version of python/setup.py). Crossing fingers...
1560
1561 2003-02-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1562       * python/setup.py now works on Un*x. (harder than I thougth)
1563       * python/distutilsSwigCPlusPlus.py can now have include files
1564         among the list of sources.
1565
1566 2003-02-20 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1567       * src/gdcmHeader.cxx : bug fix - opening dicom file in binary !!!
1568       * modifications in MSVC projects
1569
1570 2003-02-19 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1571       * As stated by the first lines of Test/ExceptionAndPython/README, it
1572         looks like we can move back to original usage of exception within
1573         src/gdcm* and hence remove the errno stuff that was introduced
1574         as a quick and dirty fixture of this problem (added to the TODO).
1575       * Doc/Doxyfile configuration file for Doxygen and corresponding
1576         README file for usage added.
1577       * Test/testWrite.cxx added. This new test comes from a split of
1578         test.cxx that is now reverted to its original purpous i.e.
1579         testing the proper parsing of a Dicom related file.
1580         testWrite.cxx concentrates on testing the IO part of gdcm.
1581       * Test/bug1.cxx (containing a bug on WIn32) added.
1582       * src/gdcm.h, gdcmHeader.cxx, gdcmDictSet.cxx:
1583         - gdcmHeader::GetPubTagNames and  gdcmHeader::GetPubTagNamesByCategory
1584           whose purpose is to publish the content of the TagNames of the
1585           Dicom public dictionnary were not accessible without an
1586           instance of class gdcmHeader.
1587         - those methods are now static methods of gdcmDictSet and hence
1588           require no instances at all to be invocated.
1589         - within gdcmDictSet this change required to change some method
1590           to class methods (i.e. are now static) among which SetDictPath
1591           (renamed to BuildDictPath) and LoadDefaultPubDict.
1592       * python/gdcmPython/demo/printGroupedPublicDict.py changed to illustrate
1593         the above changes by calling the new method classes of gdcmDictSet.
1594       * python/gdcmPython/__init__.py now exposes gdcm.gdcmDictSet for
1595         the above to be effective.
1596       * python/gdcmPython: in order to wrap properly the above changes
1597         for Python, swig version now needs to be > 1.3.17.
1598       * python/gdcmPython/Makefile fixed to adapt itself to new
1599         configure/make shema introduced by Johan Montagnat (thanks for the
1600         contribution). Alas this Makefile cannot be turned into a proper
1601         Makefile.am without some heavy changes in the configure.in
1602         (for python dectection).
1603       * python/gdcmPython/gdcm.i: the out typemap map<string, list<string>>*
1604         now avoids publishing the empty entries.
1605
1606 2003-02-13 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1607       * python/setup.py : bug fix concerning install under windows
1608         ExtraPath reused :-P
1609       * gdcm.dsw : bug fix concerning path for libraries for python !!!
1610
1611 2003-02-13 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1612       * Dicts/dicomV3.dic : remove double spaces !!!
1613       * src/gdcmElValSet.cxx : bug fix concerning windows compiler
1614       * python/gdcmPython/win32/gdcmpycomplet.dsp : bug fix concerning paths
1615         and links
1616
1617 2003-01-28 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1618       * src/gdcmHeader.cxx added a post header parsing AddAndDefaultElements
1619         method. Doxygenation.
1620       * src/gdcm.h clean up of JPR spurious comments.
1621
1622 2003-01-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1623       * python/distutilsSwigCPlusPlus.py now properly collects the
1624         shadow classes generated by "swig -c++" (gdcm.py in our case)
1625         when using "python setup.py install".
1626       * python/gdcmPython/__init__.py imports gdcm.py and only manually
1627         reexports the working classes.
1628       * src/gdcmHeader.cxx all the try/catch/throw calls were replaced
1629         by the classical C errno scheme. This is to prevent an obscure
1630         behavior of the python wrappers when importing wxPython.wx prior
1631         to gdcmPython (which ended up in an abort call). An illustration
1632         of this oddity can be found in the Test/ExceptionAndPython
1633         subdir (see the README file). This problem probably due to
1634         an combination of g++ and dynamic loading.
1635       * added Test/ExceptionAndPython (see above)
1636
1637 2003-01-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1638       * Changed the layout of the python part to avoid bloating main
1639         directory with setup.py, distutilsSwigCPlusPlus.py, MANIFEST.in
1640         i.e. the distutils arsenal. All the python related stuff is
1641         again in a python subdir, but the package itself is now in
1642         python/gdcmPython.
1643       * setup.py was cleaned up:
1644         - pythonIncludePath removed
1645         - python setup.py bdist target is now functional.
1646       * gdcmPython/__init__.py doesn't export FileName any more (to avoid
1647         collision with other packages). gdcmPython/demo/*.py changed
1648         accordingly.
1649
1650 2003-01-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1651       * python subdir moved to gdcmPython (preparation of distutils packaging).
1652       * gdcmPython/setup.py and distutilsSwigCPlusPlus.py added. The
1653         distutils installer is operational.
1654       * - gdcmPython/__init__.py now properly loads the swig generated
1655           shadow classes (from gdcm.py).
1656         - gdcmPython/demo/*.py changed to import the package gdcmPython
1657           instead of gdcmPython/demo/load.py.
1658         - gdcmPython/testSuite.py changed to import the package gdcmPython.
1659
1660 2002-12-16 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1661       * src/gdcm.h, src/gdcmHeader.cxx: added GetPubTagNames() resp.
1662         GetPubTagNamesByCategory() to gdcmHeader that return a list of the
1663         entries within the associated public Dicom dictionary resp. the same
1664         information but sorted by the fourth field (PAT, IMG, DIR) of the
1665         dictionary.
1666         - Dicts/dicomV3.dic Entries which had and unspecified fourth field
1667           are now in the "???" group.
1668         - python/gdcm.i changed accordingly,
1669         - python/demo/printGroupedPublicDict.py added, that gives an example
1670           of the above new functionalities in Python.
1671
1672 2002-12-11 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1673       * src/gdcm.h, gdcmHeader.cxx:
1674         - historic references to glib's g_malloc and g_free (#defined)
1675           were definitively removed.
1676         - gdcm.h: cosmetic changes (part of comments moved to Doc/requirements)
1677       * src/gdcmElValSet.cxx:
1678         - GetElement(guint32, guint32) renamed to GetElementByNumber.
1679         - GetElValue(guint32, guint32) renamed to GetElValueByNumber.
1680         - GetElValue(string) renamed to GetElValueByName.
1681         - Added GetElementByName(string).
1682       * src/gdcmHeader.cxx: added
1683         - GetPubElValRepByNumber(guint16, guint16)
1684         - GetPubElValRepByName(string)
1685         - GetShaElValRepByNumber(guint16, guint16)
1686         - GetShaElValRepByName(string)
1687         - GetShaElValByNumber(guint16, guint16)
1688         - GetShaElValRepByName(string)
1689         - GetElValRepByNumber(guint16, guint16)
1690         - GetElValRepByName(string)
1691         - GetElValByNumber(guint16, guint16)
1692         - GetElValRepByName(string)
1693       * Doc/requirements.txt added.
1694
1695 2002-12-9 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1696       * Test/Makefile building now depends on the one of libgdcm.so
1697       * src/gdcmHeader.cxx and gdcm.h are now OB (undefined length encoded
1698         pixel data) aware which enables finding the address (offset) of
1699         the pixel data of JPEG encoded DICOM files. This leaves only a single
1700         file in the testSuite whose pixel data address (offset) is unknown.
1701       * python/testSuite.py changed accordingly.
1702
1703 2002-12-6 Christophe Odet + Hugues Benoit-Cattin + Eric.Boix
1704       * VC++ has some strong limitations when working with the STL, as stated
1705         in http://support.microsoft.com/support/kb/articles/Q168/9/58.ASP :
1706              "Also note that some STL containers (map, set, queue, list, deque)
1707               cannot be exported. [...]
1708               Some STL classes contain nested classes. These classes can not
1709               be exported. [...]
1710               This is caused by a designed limitation that once a template
1711               class is instantiated, it can not be re-instantiated and
1712               exported."
1713         Since our usage of map<> is ubiquitous in gdcm, this "designed
1714         limitation" of VC++ is a pitfall.
1715         Hence the Python wrappers of gdcm cannot be incrementally linked
1716         against the c++ dynamic library. The dirty but only workaround is
1717         to forget about incremental link of dynamic libraries and to generate
1718         the Python wrappers library with the inclusions of the underlying C++
1719         library.
1720         The following modifications concern this matter on Win32/VC++:
1721       - wrapping python correct with standalone wrapped dll (don't use separate
1722          dll under windows !!!!)
1723       - python21_d debug mode enabled (ask Frog how to use it :-)
1724       - NO problem with having an STL member of class for example string in C++
1725         WITH THE RESTRICTION OF FORGETING ABOUT INCREMENTAL LINK.
1726       - Python test of dcmlib in Python is ok under windows on a large set
1727         (one) of image(s).
1728       * removed glib references
1729       * typedef's inserted in gdcm.i for correct swig type management
1730
1731 2002-11-27 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1732       * python/demo/*.py load.py extracted from test.py. Added explore.py
1733         that only displays required tags and testAll.py that parses all
1734         the files of the testsuite without using unittest.
1735       * python/testSuite.py other additional test on new files added.
1736       * Data/* new test files added accordingly to the testSuite.
1737       * src/gdcmHeader.cxx avoid overwriting of the dictionary when
1738         the vr in the file differs from the one of the dictionary.
1739
1740 2002-11-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1741       * src/gdcm.h and gdcmHeader.cxx gdcm no longer loads all the elements
1742         values, but limits itself to values which are below a user specified
1743         size (by default 1024 bytes).
1744       * python/gdcm.i : elements not loaded (because their size is above the
1745         user specified treshold) are exported with their TagKey as key of the
1746         python dictionary. This enables the testsuite to make some checks
1747         on the unloaded elements (since we have their offset and size).
1748       * python/testSuite.py
1749         - now tests for the existence and proper value of the pixel data
1750         - two new examples added.
1751       * Data/gdcm-MR-SIEMENS-16.acr[12] added.
1752
1753 2002-11-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1754       * src/gdcm.h and gdcmHeader.cxx are now "Big Endian transfer syntax"
1755         aware. See the strategy comments in gdcmHeader::FindeLength().
1756       * Test/test.cxx now accepts a filename as first argument.
1757       * Data/US-PAL-8-10x-echo.dcm and US-RGB-8-epicard.dcm added.
1758       * python/testSuite.py changed to integrate test on above files.
1759
1760 2002-11-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1761       * Dicts/dicomV3.dic removed all the trailing (RET) when the
1762         the vr was also RET.
1763       * python/testSuite.py more tests added.
1764
1765 2002-11-14 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1766       * python/testSuite.py unittest test suite added (uses Data)
1767       * Data/* dcm and acr files for the test suite.
1768       * glib dependance removed from un*x version. We now use ISO C99
1769         7.18 Integer types (see stdint.h)
1770         - python/Makefile, src/Makefile src/gdcm.h
1771       * src/ when an explicit vr (like dicom files) suddenly poped an
1772         implicit element we use to mark the underlying DictEntry of the
1773         concerned ElValue with "Implicit". This strategy was damageable
1774         too the public or provite dictionaries, since some of their vr
1775         would be changed. Since Header::FindLength heavily relies on the
1776         detection by Header::FindVR of falsely explicit elements, I
1777         added an extra ImplicitVr member to ElValue (boolean).
1778         The rest of the changes we the necessary adaptations.
1779
1780 2002-11-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1781       * src/gdcmHeader::FindLength bug fix when trapping falsely explicit
1782         VR files.
1783       * src/gdcmHeader::FindVR: hard way fix of falsely explicit vr files.
1784
1785 2002-11-8 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1786       * Adaptation for porting to VC++:
1787         - src/gdcm.h
1788           o forced to use std namespace (for string to be known)
1789           o all class use __declspec export style on WIN32
1790         - src/gdcmUtil.cxx new Exit method that wraps the exit call
1791           (in stdlib.h on Win32 but in std:: for gcc)
1792       * src/gdcmDictSet::SetDictPath adds a trailing / to environement
1793         variable GDCM_DICT_PATH.
1794       * src/gdcmHeader.cxx verbose comments made discrete.
1795
1796 2002-11-7 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1797       * python/gdcm.i: added a typemap that converts a C++ hashing table
1798         to native Python dictionary.
1799       * python/demo/test.py:
1800         - now uses the native dictionary for exploration of gdcmHeader.
1801         - takes an optional filename argument (the file to parse).
1802       * src/gdcm.h and gdcmHeader.cxx: gdcmHeader now has an accessor on
1803         PubElVals hashing table.
1804       * Dicts/dicomV3.dic removed error prone trailing spaces.
1805
1806 2002-11-6 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1807       * Python wrapping process moved away from src/Makefile to
1808         newly created python/Makefile (as well as gdcm.i)
1809       * python/demo/test.py (that mirrors Test/test.cxx) is effective.
1810       * src/gdcmHeader::FindLength only looks for current vr when necessary.
1811       * src/gdcmDictSet.cxx: the dictionnaries directory path is now imported
1812         from the environement variable GDCM_DICT_PATH (when existing).
1813       * src/gdcmDict::GetTag bug fix.
1814
1815 2002-10-31 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1816       * Straightforward temporary fixes for swig to build the python wrappers.
1817         src/Makefile now has a python working entry [by working we mean
1818         that we can import de shadow classes without errors].
1819
1820 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1821       * hashtest.cxx removed (since allready in Test)
1822       * src/gdcmlib.h renamed to src/gdcm.h
1823       * src/dcm.i renamed to src/gdcm.i
1824       * src/Makefile prepared for python wrapping
1825
1826 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1827       * src/gdcmHeader.cxx :
1828         - Parsing of header is now separated from loading of element values
1829           (see gdcmHeader::LoadElements).
1830         - general clean up of hopefully all file access (creation of
1831           ReadInt16 and ReadInt32)
1832
1833 2002-10-22 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1834       * src/gdcmHeader.cxx :
1835         - RecupLgr renamed to FindLength and cut off with new IsAnInteger
1836           method.
1837         - SetLgrElem renamed to SetLength
1838         - GetLgrElem renamed to GetLength
1839         - ~gdcmHeader() made virtual to pesky warning messages at compile.
1840       * src/gdcmElValSet.cxx fixed both GetElValue methods
1841       * Dicts/dicomV3.dic falacious entry [7fe0 0010 OT PXL Pixel Data]
1842         due to IdoDude was cleaned out.
1843
1844 2002-10-21 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1845       * src/gdcmHeader.cxx RecupLgr split in FindVR and RecupLgr. FindVR
1846         concentrates on finding the value representation (when it exists).
1847         RecupLgr now only finds the element value length, and it avoids
1848         returning the unecessary skL (skipped length).
1849         Also, offsetCourant was simply removed (with taille_fich) since
1850         it was redundant with the File position internals (by using
1851         ftell and fseek). This also made skL (see above in RecupLgr) usage
1852         jajun.
1853       * src/gdcmHeaderIdo.cxx src/gdcmIdo.h added. Those files concentrate
1854         on the libido specificities which are handled through class
1855         inheritance.
1856       * Test/implicit_vr.dcm dicom v3 in implicit value representation
1857         added.
1858
1859 2002-10-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1860       * Truckload of changes. Parsing of header is barely functional
1861         (see Test/test) with the standard dictionary (see Dicts/dicomV3.dic).
1862
1863 2002-10-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1864       * src/gdcmHeader.cxx many addons of low level methods
1865
1866 2002-10-07 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1867       * src/gdcmHeader now contains_IdDcmCheckSwap, _IdDcmRecupLgr,
1868         and _IdDcmSWAP_LONG.
1869
1870 2002-09-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1871       * This corresponds to all the changes decided at the meeting of
1872         May 23 2002. Needless to say we are running late...
1873