summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r4328] Snapshot version 1.4 release 2 (post0)HDF Admin2001-08-115-125/+344
|
* [svn-r4322] Purpose:Albert Cheng2001-08-071-0/+2
| | | | | | Update modification history of the H5Eprint(). No code changes. Platforms tested: eirene.
* [svn-r4320] Purpose:Albert Cheng2001-08-061-1/+1
| | | | updated to indicate it is 1.4.2-post0 version
* [svn-r4319] Purpose:Albert Cheng2001-08-061-102/+6
| | | | | | Recommitted all changes since 1.4.2 release. This is needed because I had to commit a version of exactly when 1.4.2 was released.
* [svn-r4317] Purpose:Albert Cheng2001-08-063-48/+308
| | | | | This version is the one got released as 1.4.2. Committed it to prepare for retagging it for version 1.4.2 release.
* [svn-r4316] Bill Wendling2001-08-061-3/+5
| | | | | | | | | Purpose: Feature Fix Description: Fixed description of the --filedriver flag. Platforms tested: Linux
* [svn-r4314] Bill Wendling2001-08-061-1/+10
| | | | | | | | | Purpose: Feature Add Description: Added description of the --filedriver flag for the h5dump program. Platforms tested: Lynx
* [svn-r4309] Purpose:Quincey Koziol2001-08-021-1/+1
| | | | | | | | | | | | Bug fix Description: H5FD_fapl_copy is being called in H5Pset_driver when copying a dataset transfer property list instead of H5FD_dxpl_copy and could potentially cause problems if the file driver information was different. Solution: Changed call to H5FD_dxpl_copy() Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4308] Bill Wendling2001-08-021-9/+18
| | | | | | | | | | Purpose: Bug Fix Description: Back ported the bug fix which handles the "long long" type in HDfprintf(). Platforms tested: Linux
* [svn-r4307] Bill Wendling2001-08-021-6/+7
| | | | | | | | | | | Purpose: Sync Description: Brought into sync with the 1.5 branch. This included the fix for the new h5tools_fopen() call. It now accepts the parameter for specifying a filedriver. Platforms tested: Linux
* [svn-r4306] Bill Wendling2001-08-023-87/+196
| | | | | | | | | | Purpose: Back port of Feature Add Description: Added the feature to specify which driver you want for the H5dumper using the command-line flag "-f D or --filedriver=D". Platforms tested: Linux
* [svn-r4305] Bill Wendling2001-08-021-3/+3
| | | | | | | | | | | | Purpose: Back-port of Bug Fix Description: Back port of hte bug fix for matching anything when we really only wanted to match a ".". Solution: Escaped the "." with "\." in the matching string. Platforms tested: Linux
* [svn-r4297] Bill Wendling2001-08-0115-316/+1721
| | | | | | | Purpose: Regeneration of Dependencies files Description: Regenerated Dependencies files with "make Dependencies"
* [svn-r4296] Bill Wendling2001-08-011-1/+1
| | | | | | | | | | | | Purpose: Bug Fix Description: The version checking was messing up because -post0 wasn't appended to the version string. Solution: Added the "-post0" to the end of the version string. Platforms tested: Linux
* [svn-r4295] Bill Wendling2001-08-0113-693/+841
| | | | | | | | | | | Purpose: Back-port of Bug Fix Description: Back port from the 1.5 branch of the .depend/Dependencies files generation bug. (When the $srcdir et.al. macros began with a ".", they were lopping off the first character of a header file's path). Platforms tested: Linux
* [svn-r4294] This commit was manufactured by cvs2svn to create branch 'hdf5_1_4'.cvs2svn2001-08-011-0/+41
|
* [svn-r4291] Elena Pourmal2001-08-011-1/+1
| | | | | | | Purpose: Maintenance for hdf5-1.4.2-post0 Description: Modified subrelease version string to be "post0"
* [svn-r4290] Elena Pourmal2001-08-012-122/+340
| | | | | | | | Purpose: Maintenance for the hdf5-1.4.2-post0 Description: Added information about hdf5-1.4.2 release to the HISTORY.txt Modified RELEASE.txt for hdf5-1.4.2-post0 (or whatever it shoud be after 1.4.2)
* [svn-r4289] Bill Wendling2001-08-011-5/+6
| | | | | | | | | | | Purpose: Bug Fix Description: Mentioned that Parallel HDF5 is available on Linux platforms. Also removed the statement that Parallel HDf5 is available on HPUX V Class machines (it failed the tests. Only serial mode is available). Platforms tested: Optical Scan
* [svn-r4287] Purpose:hdf5-1_4_2Quincey Koziol2001-07-311-2/+3
| | | | | | | | | | | Bug Fix Description: H5Pset_driver had a resource leak which was dropping dataset transfer IDs when switching drivers. Solution: Decrement dataset transfer ID reference count properly Platforms tested: IRIX64 6.5 (modi4)
* [svn-r4285] Purpose:Quincey Koziol2001-07-312-3/+3
| | | | | | | | | | | | Bug Fix Description: Header file is using incorrect macro for detecting parallel I/O when backward compability is turned on. Solution: Fix header files to define prototypes for parallel I/O property list functions when compiled with v1.2 backward compatibility turned on. Platforms tested: Eyeballed... (Elena will be testing shortly)
* [svn-r4279] Purpose:Quincey Koziol2001-07-302-7/+237
| | | | | | | | Additional test Description: Added metadata cache abuser code to the 'timings' target in the tests. Platforms Tested: FreeBSD 4.3 (hawkwind)
* [svn-r4278] Purpose:Quincey Koziol2001-07-301-0/+1
| | | | Include new 'testmeta' source
* [svn-r4277] Purpose:Quincey Koziol2001-07-301-8/+8
| | | | | | | | | | | | | Bug Fix Description: In certain circumstances, raw data was inadvertantly attempted to be read from the metadata cache. This was caught with an assertion failure (i.e. core dump) in the development branch or an eventual sequence of errors in the release branch. Solution: Corrected off-by-one error in metadata caching code. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4274] Bill Wendling2001-07-309-0/+60
| | | | | | | | | | | | | | | | | | | | | | Purpose: Bug Fix Description: When compiling with a C++ compiler, the compiler would balk at finding some file drivers. Solution: We need to put this: #ifdef __cplusplus extern "C" { #endif /* ... */ #ifdef __cplusplus } #endif around function declarations.
* [svn-r4273] Description:Frank Baker2001-07-301-3/+6
| | | | | | | H5check_version: Added note that if 2nd-level check fails, library issues warning but function does not fail. Copy edits. Platforms tested: IE 5
* [svn-r4272] Purpose:Albert Cheng2001-07-302-0/+43
| | | | | | revised/updated for 1.4.2 release Platforms tested: Eyeballed.
* [svn-r4271] Purpose:Albert Cheng2001-07-301-6/+10
| | | | | | Revised the section of H5check_version(). Platforms tested: IE 5 displayed.
* [svn-r4269] MuQun Yang2001-07-261-0/+3
| | | | | | | | | Purpose: update another known problem for h4toh5 converter Description: Solution: Platforms tested: eirene
* [svn-r4268] MuQun Yang2001-07-261-1/+14
| | | | | | | | Purpose: update release.txt for h4toh5 features Description: Solution: Platforms tested:
* [svn-r4267] MuQun Yang2001-07-261-1/+0
| | | | | | | | | | Purpose: delete a debug printf line Description: Solution: will not affect anything Platforms tested: eirene
* [svn-r4266] Raymond Lu2001-07-261-0/+2
| | | | | | | | Purpose: Update Information Description: Added "IRIX 6.5 fails to compile configured with --enable-static-exec" information.
* [svn-r4265] Description:Frank Baker2001-07-261-4/+10
| | | | | | In Documentation -- Added "new Image Spec (V1.2)" entry Revised H5T_c*_t structs entry
* [svn-r4264] Elena Pourmal2001-07-261-3/+3
| | | | | | | Purpose: Maintenance Description: File described 1.4.0 release. Changed it to be 1.4.2
* [svn-r4263] Bill Wendling2001-07-251-2/+2
| | | | | | | | | Purpose: Bug Fix Description: Linux 2.4.x supports parallel C mode. Solution: Noted that in the document.
* [svn-r4262] Elena Pourmal2001-07-251-0/+81
| | | | | | | | Purpose: Maintenance for the hdf5-1.4.2 release Description: I added new file INSTALL_Windows_withF90.txt to the release_docs directory
* [svn-r4261] Elena Pourmal2001-07-251-0/+1
| | | | | | | | | | Purpose: Maintenance Description: I added new entry for INSTALL_Windows_withF90.txt in the release_docs directory Platforms tested: Solaris 2.7 with bin/chkmanifest script
* [svn-r4260] Description:Frank Baker2001-07-251-19/+45
| | | | | | | | | | Expanded F90 APIs note in "New Features" Listed major changes in "Documentation" Revised Windows entries in "Tested Platforms" In "Known Problems" -- Added "memory leak when overwriting datasets with VL datatype" bug Added note regarding failure of h5ls test on SV1 Removed reference to "Release 1.4.0 Known Problems" list
* [svn-r4259] Purpose:Frank Baker2001-07-251-1/+2
| | | | Adding Cray SV1 compiler versions (for R1.4.2)
* [svn-r4258] Purpose:Frank Baker2001-07-242-8/+7
| | | | | | Basically copy edits. Platforms tested: IE 5
* [svn-r4257] Purpose:Frank Baker2001-07-241-14/+39
| | | | | | | Updated OS and compiler versions in "Platforms Tested" section. Expanded list to include current platforms. Platforms tested: Purely visual.
* [svn-r4256] Purpose:Frank Baker2001-07-241-1/+83
| | | | | | Added h52gif and gif2h5. Platforms tested: IE 5
* [svn-r4255] Frank Baker2001-07-241-10/+54
| | | | | | | | | | Purpose: Update Description: Updated H5check_version per Albert's recent expansion of the source code comments. Platforms tested: IE 5
* [svn-r4251] Purpose:Albert Cheng2001-07-201-8/+1
| | | | | | | | | | | document update Description: The information of setting SGI_ABI seemed to confuse some user. Removed it since it is extra information in addition to the preferred method of "CC=... ./configure". Experienced user in IRIX64 would know that option. Platforms tested: Eyeballed.
* [svn-r4250] Purpose:Frank Baker2001-07-201-3/+16
| | | | | | | | Link in "Supported Configuration Features Summary" table. Description: Added link to SuppConfigFeats.142Final.html on HDF web server. Platforms tested: IE 5
* [svn-r4249] Purpose:Frank Baker2001-07-202-38/+81
| | | | | | | | | | | | Bugfix Description: RM_H5T.html Datatypes.html Reworked H5T_conv_t description in both. Added H5T_cdata_t struct definition to both. Details in Datatypes.html; structs and pointer in RM_H5T.html. Tested: IE 5
* [svn-r4248] Elena Pourmal2001-07-203-9/+4
| | | | | | | | Purpose: Maintenance for hdf5-1.4.2 release Description: Changes version number to 1.4.2 for the upcoming final testing and release (bin/h5vers -s has been used)
* [svn-r4247] Purpose:Quincey Koziol2001-07-201-9/+6
| | | | | | | | | | | Code cleanup Description: H5_inline is not being defined on certain machines, causing compile failures. Solution: If H5_inline is not defined yet, define it to a null value. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4246] Purpose:Quincey Koziol2001-07-202-24/+2
| | | | | | | | Code cleanup Description: Don't include code in H5pubconf.h to undef inline. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4244] Purpose:Frank Baker2001-07-201-1/+3
| | | | | | | Removed link to non-existent description of non-existent F90 function h5gget_objinfo_f. Platforms tested: IE 5