]> Creatis software - gdcm.git/blob - ChangeLog
c7ea5813adeb2182f4defcc07a6164b926f0aa4d
[gdcm.git] / ChangeLog
1 2003-04-16  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
2       * More memmory link related corrections and documentation fixes.
3         Notes on valgrind:
4           - maximum info is obtained with a command of the form:
5             valgrind --leak-check=yes --leak-resolution=high --num-callers=40
6                    --show-reachable=yes PrintHeader
7           - the remaining reachable blocks seem to come from the STL
8             allocation scheme through the usage of map and list. It looks 
9             like this memory cannot be freed but it is not a memory leak
10             (in fact further invocation to the STL would recollect the
11              unused memory allthough it cannot explicitely be freed).
12       * gdcmPython/demo/vtkGdcmDemo.py added: this is a small demo
13         of displaying an image parsed with gdcm and displayed with VTK.
14         Note: some images don't seem to work e.g.
15             python vtkGdcmDemo.py  ../../Data/US-RGB-8-esopecho.dcm
16       * src/gdcmHeader.x: dicom_vr and Dicts are not class members anymore.
17         Allthough this weakens the semantics, it is a ditch attempt to
18         make gdcm more thread friendly.
19
20 2003-04-15  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
21       * Memory link hunt (by using valgrind through the command
22           valgrind --show-reachable=yes --leak-check=yes PrintHeader).
23         - added src/gdcmVR.cxx gdcmVR.h that objectify the previous
24           gdcmHeader::_dicom_vr.
25         - gdcmHeader::InitVRDict transfered as gdcmVR::gdcmVR().
26         - gdcmHeader::dicom_vr is now of type gdcmVR* as opposed to
27           VRHT*.
28         - gdcmGlobal global object contained class added (see src/gdcmUtil.x)
29
30 2003-04-9  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
31       * src/Makefile.am now exports all the necessary include files at
32         make install stage.
33
34 2003-04-9 JPR
35       * UpdateGroupLength replaced by new one
36
37 2003-04-7 JPR
38       * UpdateGroupLength re-written using H-Table
39         (named UpdateGroupLengthNew untill checks are over)
40       
41 2003-04-7 Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
42       * Data/im_00001 renamed to gdcm-MR-PHILIPS-16-Multi-Seq.dcm
43       * gdcmPython/testSuite.py now include a test of gdcmFile::Write.
44       * src:
45         - gdcmHeader::GetPubElValSet removed.
46         - gdcmElValSet::WriteDcm, WriteAcr, WriteExplVR, revamped to
47           UpdateGroupLength, WriteElements, Write.
48         - gdcmHeader::FileType moved to gdcmCommon.h. The enum FileType
49           doesn't contain TrueDicom anymore since ExplicitVR and ImplicitVR
50           carried the same semantics.
51           - src/gdcmHeaderIdo.cxx changed accordingly.
52         - gdcmFile::WriteBase now regroups all the codes from previous
53           versions of WriteDcm, WriteDcmImplVR, and WriteACR.
54         - enum FileType moved to gdcmCommon.h
55       * src/gdcmHeader.cxx AddDefault trashed
56       * gdcmGetXSize added
57       * getimageDataSize now calls gdcmGetXSize
58       * Test/*.cxx changed to agree with above changes
59
60 2003-03-31 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
61       * src/gdcmHeader.h: LoadElements() is not a public method anymore
62         (to avoid double call by end user).
63       * Test/*.cxx LoadElements() doesn't need to be called explicitely
64         by end user, since gdcmHeader::gdcmHeader now handles it.
65
66 2003-03-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
67       * gdcm/Doc many doxygen changes:
68         - Doxyfile now has two different versions, DoxyfileUsers that generates
69           the html.users end users oriented documentation and
70           DoxyfileDeveloppers that generates the html.developper developper
71           oriented documentation.
72         - README changed accordingly
73         - requirement.txt removed (old design info moved to TODO).
74         - Additional files DoxyInstallation.txt, DoxyIntroduction.txt,
75           DoxyMainPage.txt, DoxyPython.txt provide more information.
76         - Note: the website http://www.creatis.insa-lyon.fr/Public/Gdcm/ can now
77           be updated by simply regenerating the docs with doxygen and copying 
78           html.developper and html.users to tux:/home/httpd/html/Public/Gdcm
79       * src/gdcmElValSet.cxx: stl <map>.count() can only return 0 or 1. Hence
80         all the tests in the form "if (<map>.count() >1)" were removed.
81       * src/gdcmFile.cxx: cosmetic changes to avoid messages of doxygen about
82         ill-formed documentation sections.
83       * src/gdcmHeader.cxx: ditto
84
85 2003-03-27 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
86       * setup.py fixed for un*x (needed macro for stdint.h)
87       * Test/test.cxx renamed to PrintHeader.cxx to avoid collision on
88         un*ces with sh-utils test utility.
89       * gdcmPython/demo/test.py renamed to PrintHeader.py
90       * gdcmPython/demo/ReorganiseFiles.py new demo script added.
91       * gdcmPython/win32/gdcmpycomplet.dsp renamed to gdcmpyembedded.dsp.
92       * gdcmPython/win32/gdcmpy.dsp trashed away (brain damaged).
93       * src/gdcm*.cxx JPR's bad inclusion fixed.
94
95 2003-03-26 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
96       * src/gdcmHeader[h, cxx] gdcmHeader now has an IsReadable predicate.
97       * gdcmPython/demo/test.py changed accordingly.
98
99 2003-03-25 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
100       * gdcmPython/Makefile.am fixed linking against libstdc++
101       * gdcmPython/_gdcm.so symbolic link to gdcmPython/.libs/pygdcm.so added.
102       * Swig subdir (historical tests of swig version 1.3.17++) removed
103       * Test/testChangeEntete.cxx some lines commented out in order to make
104         compilation work.
105       * src/gdcmHeader.cxx cleaned up wild JPR's dirty kludge.
106       * src/gdcmElValSet.cxx cleaned up frog's forgotten debug message
107
108 2003-03-24 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
109       * src/gdcmHeader.cxx gdcmHeader::gdcmHeader now calls LoadElements(),
110         hence the user doesn't need this explicit call.
111         - gdcmPython/testSuite.py, gdcmPython/demo/*.py changed accordingly
112           i.e. LoadElements() call removed.
113       * src/gdcmCommon.h now defines UINT32_MAX (see stdint.h).
114         - src/Makefile.am declares the proper flag for g++.
115       * src/gdcmElValSet.h added gdcmElValSet::GenerateFreeTagKeyInGroup
116         for adding user defined new tags.
117         - src/gdcmHeader.cxx gdcmHeader::NewManualElValToPubDict added.
118         - src/gdcmHeader.cxx gdcmHeader::AddAndDefaultElements now
119           cleanly adds some gdcm added tags (like gdcmXSize, gdcmYSize...)
120
121 2003-03-17 Fabrice Bellet <Fabrice.Bellet@creatis.insa-lyon.fr>
122       * Makefile.am, acinclude.m4, configure.in, python.m4, Dicts/Makefile.am,
123    Doc/Makefile.am, Test/Makefile.am, gdcmPython/Makefile.am, 
124    src/Makefile.am : the project should properly compile and install
125    with the autotools, included the python wrappers part. 
126       * gdcm.spec.in : added a spec file for RPM packaging.
127
128 2003-03-14 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
129       * src/gdcmUtils.cxx : redifinition of defaults parameters in code
130
131 2003-03-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
132       * gdcmPython/__init__.py fix of GDCM_DICT_PATH which was not
133         to exported to the environement (see gdcmPython/testSuite.py
134         for usage).
135       * src/gdcmElValSet.[cxx/h], gdcmElValue.[cxx/h], gdcmFile.[cxx/h],
136         gdcmHeader.[cxx/h]: ElValSet class renamed to gdcmElValSet, and
137         ElValue class renamed to gdcmElValue for obvious consistency reasons.
138       * src/gdcmElValSet.cxx, src/gdcmUtil.[cxx-h] Tokenize utility function
139         moved away from gdcmElValSet.cxx to gdcmUtil.cxx.
140
141 2003-03-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
142       * gdcmPython/__init__.py doesn't crash anymore when running in
143         in InstallMode or PreInstallMode but with an environement given
144         value of GDCM_DICT_PATH.
145       * src/gdcmDictSet.[cxx/h] coding style.
146
147 2003-03-06 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
148       * src/gdcmHeader.h and gdcmHeader.cxx Coding style + doxigenation.
149       * src/gdcm.h general comments moved to TODO, and README
150       * src/gdcm.h should now be seen as a user commodity (including it
151         should suffice to fully use gdcm). It is nowhere including within
152         any of the kernel files src/*.cxx and src/*.h.
153
154 2003-03-05 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
155       * src/gdcm.h splitted in gdcmCommon.h, gdcmDict.h, gdcmDictEntry.h,
156         gdcmDictSet.h, gdcmElValSet.h, gdcmElValue.h, gdcmFile.h,
157         gdcmHeader.h
158       * src/gdcm*.cxx only include their corresponding include file
159         (as opposed to gdcm.h)
160       * gdcmPython/gdcm.i changed accordingly
161       * Test/Makefile.am corrected and added NEWS, AUTHORS in order for
162         the autogen.sh generated "make snapshot" command to work.
163       * autogen.sh removed history related references to crea package.
164
165 2003-03-04 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
166       * distutilsSwigCPlusPlus.py work around some swig portability
167         bug.
168
169 2003-03-03 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
170       * Eventually, python/gdcmPython was renamed to gdcmPython. This
171         was done in a last ditch attempt to get setup.py _really_
172         operationnal. The python/gdcmPython layaout add the advantage
173         of hidding away the python related distutils specific files
174         (MANIFEST.in, setup.py, distutils*.py...) from the main directory.
175         Alas, the src directory was out of scope (i.e. it's relative
176         position to setup.py was ../src) which made things impossible to
177         handle (see previous version of python/setup.py). Crossing fingers...
178
179 2003-02-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
180       * python/setup.py now works on Un*x. (harder than I thougth)
181       * python/distutilsSwigCPlusPlus.py can now have include files
182         among the list of sources.
183       
184 2003-02-20 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
185       * src/gdcmHeader.cxx : bug fix - opening dicom file in binary !!!
186       * modifications in MSVC projects
187
188 2003-02-19 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
189       * As stated by the first lines of Test/ExceptionAndPython/README, it
190         looks like we can move back to original usage of exception within
191         src/gdcm* and hence remove the errno stuff that was introduced
192         as a quick and dirty fixture of this problem (added to the TODO).
193       * Doc/Doxyfile configuration file for Doxygen and corresponding
194         README file for usage added.
195       * Test/testWrite.cxx added. This new test comes from a split of
196         test.cxx that is now reverted to its original purpous i.e. 
197         testing the proper parsing of a Dicom related file.
198         testWrite.cxx concentrates on testing the IO part of gdcm.
199       * Test/bug1.cxx (containing a bug on WIn32) added.
200       * src/gdcm.h, gdcmHeader.cxx, gdcmDictSet.cxx: 
201         - gdcmHeader::GetPubTagNames and  gdcmHeader::GetPubTagNamesByCategory
202           whose purpose is to publish the content of the TagNames of the
203           Dicom public dictionnary were not accessible without an
204           instance of class gdcmHeader.
205         - those methods are now static methods of gdcmDictSet and hence
206           require no instances at all to be invocated.
207         - within gdcmDictSet this change required to change some method
208           to class methods (i.e. are now static) among which SetDictPath
209           (renamed to BuildDictPath) and LoadDefaultPubDict.
210       * python/gdcmPython/demo/printGroupedPublicDict.py changed to illustrate
211         the above changes by calling the new method classes of gdcmDictSet.
212       * python/gdcmPython/__init__.py now exposes gdcm.gdcmDictSet for
213         the above to be effective.
214       * python/gdcmPython: in order to wrap properly the above changes
215         for Python, swig version now needs to be > 1.3.17.
216       * python/gdcmPython/Makefile fixed to adapt itself to new 
217         configure/make shema introduced by Johan Montagnat (thanks for the
218         contribution). Alas this Makefile cannot be turned into a proper
219         Makefile.am without some heavy changes in the configure.in
220         (for python dectection).
221       * python/gdcmPython/gdcm.i: the out typemap map<string, list<string>>*
222         now avoids publishing the empty entries.
223
224 2003-02-13 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
225       * python/setup.py : bug fix concerning install under windows
226         ExtraPath reused :-P
227       * gdcm.dsw : bug fix concerning path for libraries for python !!!
228
229 2003-02-13 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
230       * Dicts/dicomV3.dic : remove double spaces !!!
231       * src/gdcmElValSet.cxx : bug fix concerning windows compiler
232       * python/gdcmPython/win32/gdcmpycomplet.dsp : bug fix concerning paths
233         and links
234
235 2003-01-28 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
236       * src/gdcmHeader.cxx added a post header parsing AddAndDefaultElements
237         method. Doxygenation.
238       * src/gdcm.h clean up of JPR spurious comments.
239
240 2003-01-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
241       * python/distutilsSwigCPlusPlus.py now properly collects the
242         shadow classes generated by "swig -c++" (gdcm.py in our case)
243         when using "python setup.py install".
244       * python/gdcmPython/__init__.py imports gdcm.py and only manually
245         reexports the working classes.
246       * src/gdcmHeader.cxx all the try/catch/throw calls were replaced
247         by the classical C errno scheme. This is to prevent an obscure
248         behavior of the python wrappers when importing wxPython.wx prior
249         to gdcmPython (which ended up in an abort call). An illustration
250         of this oddity can be found in the Test/ExceptionAndPython
251         subdir (see the README file). This problem probably due to
252         an combination of g++ and dynamic loading.
253       * added Test/ExceptionAndPython (see above)
254
255 2003-01-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
256       * Changed the layout of the python part to avoid bloating main
257         directory with setup.py, distutilsSwigCPlusPlus.py, MANIFEST.in
258         i.e. the distutils arsenal. All the python related stuff is
259         again in a python subdir, but the package itself is now in
260         python/gdcmPython.
261       * setup.py was cleaned up:
262         - pythonIncludePath removed
263         - python setup.py bdist target is now functional.
264       * gdcmPython/__init__.py doesn't export FileName any more (to avoid
265         collision with other packages). gdcmPython/demo/*.py changed
266         accordingly.
267 2003-01-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
268       * python subdir moved to gdcmPython (preparation of distutils packaging).
269       * gdcmPython/setup.py and distutilsSwigCPlusPlus.py added. The
270         distutils installer is operational.
271       * - gdcmPython/__init__.py now properly loads the swig generated
272           shadow classes (from gdcm.py).
273         - gdcmPython/demo/*.py changed to import the package gdcmPython
274           instead of gdcmPython/demo/load.py.
275         - gdcmPython/testSuite.py changed to import the package gdcmPython.
276         
277
278 2002-12-16 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
279       * src/gdcm.h, src/gdcmHeader.cxx: added GetPubTagNames() resp.
280         GetPubTagNamesByCategory() to gdcmHeader that return a list of the
281         entries within the associated public Dicom dictionary resp. the same
282         information but sorted by the fourth field (PAT, IMG, DIR) of the
283         dictionary.
284         - Dicts/dicomV3.dic Entries which had and unspecified fourth field
285           are now in the "???" group.
286         - python/gdcm.i changed accordingly,
287         - python/demo/printGroupedPublicDict.py added, that gives an example
288           of the above new functionalities in Python.
289
290 2002-12-11 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
291       * src/gdcm.h, gdcmHeader.cxx:
292         - historic references to glib's g_malloc and g_free (#defined)
293           were definitively removed.
294         - gdcm.h: cosmetic changes (part of comments moved to Doc/requirements)
295       * src/gdcmElValSet.cxx:
296         - GetElement(guint32, guint32) renamed to GetElementByNumber.
297         - GetElValue(guint32, guint32) renamed to GetElValueByNumber.
298         - GetElValue(string) renamed to GetElValueByName.
299         - Added GetElementByName(string).
300       * src/gdcmHeader.cxx: added
301         - GetPubElValRepByNumber(guint16, guint16)
302         - GetPubElValRepByName(string)
303         - GetShaElValRepByNumber(guint16, guint16)
304         - GetShaElValRepByName(string)
305         - GetShaElValByNumber(guint16, guint16)
306         - GetShaElValRepByName(string)
307         - GetElValRepByNumber(guint16, guint16)
308         - GetElValRepByName(string)
309         - GetElValByNumber(guint16, guint16)
310         - GetElValRepByName(string)
311       * Doc/requirements.txt added.
312
313 2002-12-9 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
314       * Test/Makefile building now depends on the one of libgdcm.so
315       * src/gdcmHeader.cxx and gdcm.h are now OB (undefined length encoded
316         pixel data) aware which enables finding the address (offset) of 
317         the pixel data of JPEG encoded DICOM files. This leaves only a single
318         file in the testSuite whose pixel data address (offset) is unknown.
319       * python/testSuite.py changed accordingly.
320
321 2002-12-6 Christophe Odet + Hugues Benoit-Cattin + Eric.Boix
322       * VC++ has some strong limitations when working with the STL, as stated
323         in http://support.microsoft.com/support/kb/articles/Q168/9/58.ASP :
324              "Also note that some STL containers (map, set, queue, list, deque)
325               cannot be exported. [...]
326               Some STL classes contain nested classes. These classes can not
327               be exported. [...]
328               This is caused by a designed limitation that once a template
329               class is instantiated, it can not be re-instantiated and
330               exported."
331         Since our usage of map<> is ubiquitous in gdcm, this "designed
332         limitation" of VC++ is a pitfall.
333         Hence the Python wrappers of gdcm cannot be incrementally linked 
334         against the c++ dynamic library. The dirty but only workaround is
335         to forget about incremental link of dynamic libraries and to generate
336         the Python wrappers library with the inclusions of the underlying C++
337         library. 
338         The following modifications concern this matter on Win32/VC++:
339       - wrapping python correct with standalone wrapped dll (don't use separate
340          dll under windows !!!!)
341       - python21_d debug mode enabled (ask Frog how to use it :-)
342       - NO problem with having an STL member of class for example string in C++
343         WITH THE RESTRICTION OF FORGETING ABOUT INCREMENTAL LINK.
344       - Python test of dcmlib in Python is ok under windows on a large set 
345         (one) of image(s).
346       * removed glib references
347       * typedef's inserted in gdcm.i for correct swig type management
348
349 2002-11-27 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
350       * python/demo/*.py load.py extracted from test.py. Added explore.py
351         that only displays required tags and testAll.py that parses all
352         the files of the testsuite without using unittest.
353       * python/testSuite.py other additional test on new files added.
354       * Data/* new test files added accordingly to the testSuite.
355       * src/gdcmHeader.cxx avoid overwriting of the dictionary when
356         the vr in the file differs from the one of the dictionary.
357
358 2002-11-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
359       * src/gdcm.h and gdcmHeader.cxx gdcm no longer loads all the elements
360         values, but limits itself to values which are below a user specified
361         size (by default 1024 bytes).
362       * python/gdcm.i : elements not loaded (because their size is above the
363         user specified treshold) are exported with their TagKey as key of the
364         python dictionary. This enables the testsuite to make some checks
365         on the unloaded elements (since we have their offset and size).
366       * python/testSuite.py
367         - now tests for the existence and proper value of the pixel data
368         - two new examples added.
369       * Data/gdcm-MR-SIEMENS-16.acr[12] added.
370
371 2002-11-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
372       * src/gdcm.h and gdcmHeader.cxx are now "Big Endian transfer syntax"
373         aware. See the strategy comments in gdcmHeader::FindeLength().
374       * Test/test.cxx now accepts a filename as first argument.
375       * Data/US-PAL-8-10x-echo.dcm and US-RGB-8-epicard.dcm added.
376       * python/testSuite.py changed to integrate test on above files.
377
378 2002-11-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
379       * Dicts/dicomV3.dic removed all the trailing (RET) when the
380         the vr was also RET.
381       * python/testSuite.py more tests added.
382
383 2002-11-14 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
384       * python/testSuite.py unittest test suite added (uses Data)
385       * Data/* dcm and acr files for the test suite.
386       * glib dependance removed from un*x version. We now use ISO C99
387         7.18 Integer types (see stdint.h)
388         - python/Makefile, src/Makefile src/gdcm.h
389       * src/ when an explicit vr (like dicom files) suddenly poped an
390         implicit element we use to mark the underlying DictEntry of the
391         concerned ElValue with "Implicit". This strategy was damageable
392         too the public or provite dictionaries, since some of their vr
393         would be changed. Since Header::FindLength heavily relies on the
394         detection by Header::FindVR of falsely explicit elements, I
395         added an extra ImplicitVr member to ElValue (boolean).
396         The rest of the changes we the necessary adaptations.
397
398 2002-11-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
399       * src/gdcmHeader::FindLength bug fix when trapping falsely explicit
400         VR files.
401       * src/gdcmHeader::FindVR: hard way fix of falsely explicit vr files.
402
403 2002-11-8 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
404       * Adaptation for porting to VC++:
405         - src/gdcm.h
406           o forced to use std namespace (for string to be known)
407           o all class use __declspec export style on WIN32
408         - src/gdcmUtil.cxx new Exit method that wraps the exit call
409           (in stdlib.h on Win32 but in std:: for gcc)
410       * src/gdcmDictSet::SetDictPath adds a trailing / to environement
411         variable GDCM_DICT_PATH.
412       * src/gdcmHeader.cxx verbose comments made discrete.
413
414 2002-11-7 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
415       * python/gdcm.i: added a typemap that converts a C++ hashing table
416         to native Python dictionary.
417       * python/demo/test.py:
418         - now uses the native dictionary for exploration of gdcmHeader.
419         - takes an optional filename argument (the file to parse).
420       * src/gdcm.h and gdcmHeader.cxx: gdcmHeader now has an accessor on
421         PubElVals hashing table. 
422       * Dicts/dicomV3.dic removed error prone trailing spaces.
423
424 2002-11-6 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
425       * Python wrapping process moved away from src/Makefile to
426         newly created python/Makefile (as well as gdcm.i)
427       * python/demo/test.py (that mirrors Test/test.cxx) is effective.
428       * src/gdcmHeader::FindLength only looks for current vr when necessary.
429       * src/gdcmDictSet.cxx: the dictionnaries directory path is now imported
430         from the environement variable GDCM_DICT_PATH (when existing).
431       * src/gdcmDict::GetTag bug fix.
432
433 2002-10-31 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
434       * Straightforward temporary fixes for swig to build the python wrappers.
435         src/Makefile now has a python working entry [by working we mean
436         that we can import de shadow classes without errors].
437
438 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
439       * hashtest.cxx removed (since allready in Test)
440       * src/gdcmlib.h renamed to src/gdcm.h
441       * src/dcm.i renamed to src/gdcm.i
442       * src/Makefile prepared for python wrapping
443
444 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
445       * src/gdcmHeader.cxx :
446         - Parsing of header is now separated from loading of element values
447           (see gdcmHeader::LoadElements).
448         - general clean up of hopefully all file access (creation of
449           ReadInt16 and ReadInt32)
450
451 2002-10-22 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
452       * src/gdcmHeader.cxx :
453         - RecupLgr renamed to FindLength and cut off with new IsAnInteger
454           method.
455         - SetLgrElem renamed to SetLength
456         - GetLgrElem renamed to GetLength
457         - ~gdcmHeader() made virtual to pesky warning messages at compile.
458       * src/gdcmElValSet.cxx fixed both GetElValue methods
459       * Dicts/dicomV3.dic falacious entry [7fe0 0010 OT PXL Pixel Data]
460         due to IdoDude was cleaned out.
461
462 2002-10-21 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
463       * src/gdcmHeader.cxx RecupLgr split in FindVR and RecupLgr. FindVR
464         concentrates on finding the value representation (when it exists).
465         RecupLgr now only finds the element value length, and it avoids
466         returning the unecessary skL (skipped length).
467         Also, offsetCourant was simply removed (with taille_fich) since
468         it was redundant with the File position internals (by using
469         ftell and fseek). This also made skL (see above in RecupLgr) usage
470         jajun.
471       * src/gdcmHeaderIdo.cxx src/gdcmIdo.h added. Those files concentrate
472         on the libido specificities which are handled through class 
473         inheritance.
474       * Test/implicit_vr.dcm dicom v3 in implicit value representation
475         added. 
476
477 2002-10-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
478       * Truckload of changes. Parsing of header is barely functional
479         (see Test/test) with the standard dictionary (see Dicts/dicomV3.dic).
480
481 2002-10-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
482       * src/gdcmHeader.cxx many addons of low level methods
483
484 2002-10-07 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
485       * src/gdcmHeader now contains_IdDcmCheckSwap, _IdDcmRecupLgr,
486         and _IdDcmSWAP_LONG.
487
488 2002-09-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
489       * This corresponds to all the changes decided at the meeting of
490         May 23 2002. Needless to say we are running late...
491