summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r9339] Purpose:Albert Cheng2004-09-291-3/+3
| | | | | | | | | | | | | | | | | | | | | Bug fix. Description: There was a historical hack to prevent runtest in multiple hosts to run cvs update while they were launched by the daily test. But a more proper fix has been implemented to prevent that but this hack was not removed. It ended up enforcing one CVS update per day. But if someone tested runtest during the day, it would prevent the evening daily from doing update. That is not good. Solution: Removed the hack which is not need any more. Platforms tested: NO h5committest since it does test runtest. Tested it by hand in eirene and heping. Misc. update:
* [svn-r9338] Purpose:Frank Baker2004-09-293-1/+4
| | | | | | | | Add one blank line to end of selected DreamWeaver libraries. Resuts in no visible change to the user but more consistent DreamWeaver behavior for the editors. Platforms tested: Mozilla (electronic); HTMLdoc & Acrobat Reader (print)
* [svn-r9337] Purpose:Frank Baker2004-09-291-5/+24
| | | | | | Add individual HDF5 tools to print version of HDF5 RM table of contents. Platforms tested: HTMLdoc and Acrobat Reader
* [svn-r9336] Purpose:Frank Baker2004-09-291-6/+222
| | | | | | | | | Enhancements required for PDF production Description: Inserted additional functions index for use in the PDF version of the Reference Manual. Platforms tested: Mozilla (electronic); HTMLdoc and Acrobat Reader (print)
* [svn-r9335] James Laird2004-09-293-4/+4
| | | | | | | | | | | | Purpose: Bug fix Description: Fix bugs found by daily tests. Platforms tested: copper
* [svn-r9334] James Laird2004-09-2845-2157/+2686
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Purpose: Feature Description: (Same change to release branch) Datatypes and groups now use H5FO "file object" code that was previously only used by datasets. These objects will hold a file open if the file is closed but they have not yet been closed. If these objects are unlinked then relinked, they will not be destroyed. If they are opened twice (even by two different names), both IDs will "see" changes made to the object using the other ID. When an object is opened using two different names (e.g., if a dataset was opened under one name, then mounted and opened under its new name), calling H5Iget_name() on a given hid_t will return the name used to open that hid_t, not the current name of the object (this is a feature, and a change from the previous behavior of datasets). Solution: Used H5FO code that was already in place for datasets. Broke H5D_t's, H5T_t's, and H5G_t's into a "shared" struct and a private struct. The shared structs (H5D_shared_t, etc.) hold the object's information and are used by all IDs that point to a given object in the file. The private structs are pointed to by the hid_t and contain the object's group entry information (including its name) and a pointer to the shared struct for that object. This changed the naming of structs throughout the library (e.g., datatype->size is now datatype->shared->size). I added an updated H5Tinit.c to windows.zip. Platforms tested: Visual Studio 7, sleipnir, arabica, verbena Misc. update:
* [svn-r9331] Purpose:Quincey Koziol2004-09-281-4/+3
| | | | | | | | | | | Bug fix Description: Another attempt to fix the address overflow in the core VFL, hopefully one that works on 64-bit platforms. Platforms tested: AIX 5.1 (copper)
* [svn-r9328] Purpose:Quincey Koziol2004-09-283-13/+4
| | | | | | | | | | | | | Bug fix. Description: Fix off-by-one error in Core VFL driver which would cause spurious address or size overflow errors when an odd valued address or size was checked. Platforms tested: FreeBSD 4.10 (sleipnir) Linux 2.4 (heping) Solaris 2.7 (arabica)
* [svn-r9326] Purpose:Xuan Bai2004-09-271-21/+20
| | | | | | | | | | | | | | Update. Description: Update installation documenation. Solution: Platforms tested: Not necessary. Misc. update:
* [svn-r9325] Purpose:Xuan Bai2004-09-271-0/+0
| | | | | | | | | | | | | | | Update. Description: Update installhdf5lib.bat batch file. Cleaned two redundant scripts in the batch file. Solution: Clean script. Platforms tested: Windows XP. Misc. update:
* [svn-r9323] Purpose:Quincey Koziol2004-09-273-67/+202
| | | | | | | | | | | | | Bug fix Description: Fix situation where deleting a chunked datasets with B-tree nodes that weren't in the metadata cache would die with a core dump. Platforms tested: FreeBSD 4.10 (sleipnir) Linux 2.4 (heping) Solaris 2.7 (arabica)
* [svn-r9322] Purpose:Quincey Koziol2004-09-271-0/+2
| | | | | | | | | | | | | Bug fix Description: Fix situation where deleting a chunked datasets with B-tree nodes that weren't in the metadata cache would die with a core dump. Platforms tested: FreeBSD 4.10 (sleipnir) Linux 2.4 (heping) Solaris 2.7 (arabica)
* [svn-r9320] Purpose:Albert Cheng2004-09-251-1/+7
| | | | | | | | | | | | | Feature Description: Added code to support the -configname feature. Platforms tested: no h5committest which does not test this command. ran it by hand in eirene comparing tg-login1 and tg-login2. Misc. update:
* [svn-r9318] Purpose:Albert Cheng2004-09-241-45/+43
| | | | | | | | | | | | | | | | | | | | | | | | Code clean up Description: The tests used to have their own test file names due to the original program layout. Now that it is using the common test interface, individual test can be invoked at will (via -o). There is no need to have different test filenames. Only requirement is that certain read tests must follow immediately the corresponding write test since they use the same file. I have combined all test file names into just one common file name. This reduces the printout of test file name, very beneficial when the test is run by large number of processes. It makes future code maintenance easier too. Platforms tested: Tested in Eirene(PP) only. No h5committest because this is limited to the parallel tests and the changes are trivial. Misc. update:
* [svn-r9315] Purpose:MuQun Yang2004-09-231-0/+0
| | | | | | | | | | | | | Fix a small bug inside installhdf5.lib. Description: Solution: Platforms tested: Misc. update: windows xp
* [svn-r9313] Purpose:Quincey Koziol2004-09-232-3/+11
| | | | | | | | | | Bug fix. Description: Allow I/O to occur on 0 element selections. Platforms tested: h5committest
* [svn-r9311] Purpose:Quincey Koziol2004-09-221-0/+36
| | | | | | | | | | | | | | Code optimization Description: Avoid performing a check on the number of objects in a group (which currently involves iterating over all entries in the group's B-tree) before calling H5G_get_obj<foo>_by_idx. Instead, just have H5G_get_obj<foo>_by_idx() notice when you've walked off the end and return fail then. Platforms tested: FreeBSD 4.10 (sleipnir) h5committest
* [svn-r9308] Purpose: Post 1.6.3 release maintenanceElena Pourmal2004-09-221-2/+2
| | | | | | | | | | Description: Changed version number to 1.6.3-post0 Solution: ran bin/h5vers script on eirene Platforms tested: Misc. update:
* [svn-r9307] Purpose: Post 1.6.3 release maintenanceElena Pourmal2004-09-222-227/+676
| | | | | | | | | | Description: Updated the files after 1.6.3 release Solution: ran bin/h5vers script on eirene Platforms tested: Misc. update:
* [svn-r9306] Purpose: Post 1.6.3 release maintenanceElena Pourmal2004-09-227-31/+31
| | | | | | | | | | Description: Changed the version number to 1.6.3-post0 Solution: ran bin/h5vers script on eirene Platforms tested: Misc. update:
* [svn-r9304] Purpose: Release maintenancehdf5-1_6_3Elena Pourmal2004-09-2210-145/+344
| | | | | | | | | | Description: I changed the version number to 1.6.3 Solution: Ran bin/h5vers -s 1.6.3 on eirene Platforms tested: Misc. update:
* [svn-r9303] Updated the Fortran Sample program to use the INCLUDE instead of theAlbert Cheng2004-09-221-2/+8
| | | | USE statement.
* [svn-r9302] Updated with Sample MPIO programs.Albert Cheng2004-09-221-13/+181
|
* [svn-r9301] Updated with LLNL machine information.Albert Cheng2004-09-221-4/+7
|
* [svn-r9300] Updated with Tflop information.Albert Cheng2004-09-221-1/+1
|
* [svn-r9299] Updated with LANL machines information.Albert Cheng2004-09-221-0/+5
|
* [svn-r9296] Description:Frank Baker2004-09-211-11/+22
| | | | | | Added 4 new Fortran90 subroutines. Platforms tested: Mozilla
* [svn-r9295] Purpose: Maintenance before the releaseElena Pourmal2004-09-211-9/+17
| | | | | | | | | | | | Description: Added information about new Fortran functions; Documented that Windows installation instruction files for F90 and C++ were deleted from the distribution. Solution: Platforms tested: Misc. update:
* [svn-r9294] Description:Frank Baker2004-09-211-13/+140
| | | | | | | | Fill in sections: Bug Fixes since... -- Documentation Documentation -- HDF5 Library documentation Supported Configuration Features Summary Minor copy edits (spelling corrections only)
* [svn-r9293] Purpose:Frank Baker2004-09-211-1/+1
| | | | Correct release number in header (1.6. ==> 1.6.3)
* [svn-r9292] Purpose: MaintenanceElena Pourmal2004-09-211-2/+0
| | | | | | | | | | | | Description: Removed entries for INSTALL_Windows_withF90.txt INSTALL_Windows_withcpp.txt since files were deleted from CVS. Solution: Platforms tested: arabica with bin/chkmanifest Misc. update:
* [svn-r9291] Description:Frank Baker2004-09-211-9/+29
| | | | | | | | Add links to HDF5 High Level APIs and to HDF5 high level RM Add JHI hyperlink Other minor formatting adjustments and copy edits Platforms tested: Mozilla
* [svn-r9290] Purpose: MaintenanceElena Pourmal2004-09-212-193/+0
| | | | | | | | | | | | Description: Removed instruction files for Windows that are not needed anymore. F90 and C++ instrucitons are in the INSTALL_Windwos.txt file now. Solution: Platforms tested: Misc. update: Updated MANIFEST file will be cheked in after this one.
* [svn-r9289] Purpose: MaintenanceElena Pourmal2004-09-211-1/+3
| | | | | | | | | | Description: Updated "Tools" section under "Fixed bugs" section. Solution: Platforms tested: Misc. update:
* [svn-r9288] Purpose: MaintenanceElena Pourmal2004-09-211-2/+13
| | | | | Description: Added information about two sets of SZIP binaries: with encoder and without encoder.
* [svn-r9287] Purpose:John Mainzer2004-09-201-4/+16
| | | | | | | | | | | | | | | | | | | | | | | Add recomendation that users add the "-qxlf90=autodealloc" flag to FFLAGS when building parallel on the IBM SP platform. Description: See above. Solution: Added the suggestion. Also cleaned up a few minor typos in passing. Platforms tested: none needed -- documentatin change only. Misc. update:
* [svn-r9286] Purpose:Frank Baker2004-09-201-5/+23
| | | | | | | | h5dump -- Add 5 new options Add notes prefacing the 4 subsetting options (start, count, stride, block) Platforms tested: Mozilla
* [svn-r9285] Purpose:Frank Baker2004-09-191-4/+8
| | | | | | | | | Moved the newly-added "C++ Design Spec" to the "HDF5 Library Development Documentation" section of the index page. Platforms tested: Mozilla Misc. update:
* [svn-r9284] Purpose:Frank Baker2004-09-191-3/+5
| | | | | | | | Add link to the first draft of the "C++ Design Specification" (which is posted on the HDF5 website at HDF5/doc_resource/cpplus/cpp_Design_040912.pdf) Platforms tested: Mozilla, Adobe Acrobat Reader, Apple Preview
* [svn-r9283] Description:Frank Baker2004-09-191-11/+13
| | | | | | | | | | | Move "Printer-friendly docs" up a bit for improved visibility Link HDF logo to HDF website Minor modification in notes regarding docs served from NCSA (and added such a note to the new UG entry) Removed the link to the HDF5 Ref Manual from the "HDF5 and Foreign Langauges" heading since that link is no longer appropriate Platforms tested: Mozilla
* [svn-r9282] Purpose:Frank Baker2004-09-191-1/+1
| | | | | | | Updated "Last modified" line to indicate that the document was last modified in July 2004 Platforms tested: Mozilla
* [svn-r9281] Purpose:Frank Baker2004-09-1912-14/+16
| | | | | | Updated docs footer for "Release 1.6.3, September 2004" Platforms tested: Mozilla
* [svn-r9280] Purpose:Frank Baker2004-09-191-2/+2
| | | | | | | | Update heading and footer for "Release 1.6.3, September 2004" Platforms tested: Mozilla Misc. update:
* [svn-r9279] Description:Frank Baker2004-09-1915-170/+261
| | | | | | | Updated nav bar, with pointer to RM PDF Updated docs footer for "Release 1.6.3, September 2004" Platforms tested: Mozilla
* [svn-r9278] Purpose:Frank Baker2004-09-192-5/+7
| | | | | | | | Footer.lbi -- Change docs footer to "Describes HDF5 Release 1.6.3, September 2004" NavBar_RM.lbi -- Add link to Ref Manual PDF in RM navigation bar Platforms tested: Mozilla
* [svn-r9277] Purpose:Frank Baker2004-09-191-4/+3
| | | | | | | | | Formatting update for PDF version of the HDF5 Reference Manual for Release 1.6.3. Platforms tested: HTMLdoc, Adobe Acrobat Reader, Mozilla Misc. update:
* [svn-r9276] Purpose:Frank Baker2004-09-191-4/+3
| | | | | | Formatting update for PDF version Platforms tested: HTMLdoc, Adobe Acrobat Reader, Mozilla
* [svn-r9275] Purpose:Frank Baker2004-09-1918-112/+125
| | | | | | | Formatting updates enabling generation of the PDF version of the HDF5 Reference Manual for Release 1.6.3. Platforms tested: HTMLdoc, Adobe Acrobat Reader, Mozilla
* [svn-r9270] Purpose:Xuan Bai2004-09-171-20/+20
| | | | | | | | | | | | | | Update. Description: Correct some typos in the previous version. Solution: Platforms tested: Not necessay. Misc. update:
* [svn-r9269] Purpose:MuQun Yang2004-09-161-1/+43
| | | | | | | | | | | | Add information about windows improvement in the release.txt. Description: Solution: Platforms tested: Misc. update: