summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r537] Changes since 19980722Robb Matzke1998-07-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./src/H5A.c ./src/H5Apublic.h ./test/tattr.c Switched the order of the second and third argument of H5Aget_name() to make it consistent with other functions that take buffers and buffer sizes. ./src/H5G.c ./src/H5Gpublic.h ./src/H5Gprivate.h The H5Gget_comment() function returns the size of the comment including the null terminator. If the object has no comment then zero is returned. If an error occurs then a negative value is returned. ./MANIFEST ./tools/Makefile.in ./tools/h5tools.h [NEW] ./tools/h5dump.c [NEW] Created a library for printing values of datasets in a way that looks nice. It's not done yet, but I needed it for debugging the contents of files from Jim Reus. ./tools/h5ls.c Added the `-d' and `--dump' options which cause the contents of a dataset to be printed. Added `-w N' and `--width=N' options to control how wide the raw data output should be. If you want single-column output then say `-w1'. Printing dataset values can now handle datasets of any integer or floating point atomic type. As a special case, integers which are one byte wide are treated a character strings for now. Sample output: $ h5ls --dump --width=60 banana.hdf ARCHIVE 0:0:0:744 Dataset {52/Inf} Data: (0) "U struct complex { double R; double I; };\012V" (43) " double;\012" U 0:0:0:2500 Dataset {256/512} Data: printing of compound data types is not implemented yet V 0:0:0:3928 Dataset {256/512} Data: (0) 0, 0.015625, 0.03125, 0.046875, 0.0625, (5) 0.078125, 0.09375, 0.109375, 0.125, 0.140625, (10) 0.15625, 0.171875, 0.1875, 0.203125, 0.21875, (15) 0.234375, 0.25, 0.265625, 0.28125, 0.296875, ...
* [svn-r535] Changed H5Sget_class to H5Sextent_class in docsQuincey Koziol1998-07-231-7/+6
|
* [svn-r534] Version updateQuincey Koziol1998-07-231-3/+3
|
* [svn-r522] Changes since 19980720Robb Matzke1998-07-201-1/+27
| | | | | | | | | | | | | | | | | | | | ---------------------- ./src/H5Gpublic.h ./src/H5Gprivate.h ./src/H5G.c ./test/dsets.c ./doc/html/Groups.html Added the H5Gset_comment() and H5Gget_comment() functions described in an earlier e-mail. ./src/H5.c Fixed a bug in the tracing code that caused certain data space enum types to not be printed. Nested case statements can get confusing to the eyes! ./tools/h5ls.c Prints the first 50 bytes or so of object comments.
* [svn-r518] Changes since 19980720Robb Matzke1998-07-201-29/+61
| | | | | | | | | | | | | | | | | | | | ---------------------- ./doc/html/H5.format.html ./src/H5Oattr.c ./src/H5Odtype.c ./src/H5Oefl.c ./src/H5Olayout.c ./src/H5Osdspace.c ./src/H5Oshared.c Added version numbers to some object header messages so we can update them easier in the future. The library currently just gives up if the version numbers don't match, but in the future the library could handle multiple versions of a message. ./test/testhdf5.c Removed an argument from the H5version() call that I missed last time.
* [svn-r517] Changes since 19980720Robb Matzke1998-07-201-25/+17
| | | | | | | | | | | | | | | | | | | | | ---------------------- ./bin/release The archive names have only three parts to a version number. Instead of `hdf5-1.2.3d.tar.gz' they will be named like `hdf5-1.2.3.tar.gz'. ./src/H5public.h ./src/H5.c Dropped the patch level from the version number. The version number is now a major number, a minor number, and a release number. ./doc/html/Version.html Updated to get rid of patch numbers. ./tools/h5repart.c Added a `-V' flag like for `h5ls' that prints the version number.
* [svn-r516] Changes since 19980720Robb Matzke1998-07-201-9/+24
| | | | | | | | | | | | | | | ---------------------- ./doc/html/H5.format.html ./src/H5F.c ./src/H5Gprivate.h ./src/H5Oshared.c Added file alignment fields: the boot block has an extra reserved address field. The symbol table entry scratch pad space was reduced from 24 bytes to 16 bytes. The index permutation was moved earlier in the data type message for compound data types and extra padding was added. Four bytes of padding was added to the shared message format.
* [svn-r515] Changes since 19980715Robb Matzke1998-07-202-262/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./doc/html/H5.format.html ./src/H5Gent.c ./src/H5Gprivate.h ./src/H5Oattr.c ./src/H5Oprivate.h ./src/H5Oshared.c ./src/H5HG.c ./src/H5HGprivate.h Added padding fields in symbol table entries, attribute messages, shared messages, and global heap objects to insure that things are aligned on 8-byte boundaries in the file, and thus in memory. Otherwise some little endian machines complain (DEC Alpha) during encoding/decoding of file meta data. I chose to add alignment to the file rather than rewriting the ENCODE/DECODE macros for the little endian case. Completely rewrote the section on attribute messages. More alignment stuff will follow. ./src/H5detect.c Fixed a typo `nd'->`dn' ./test/dtypes.c Commented out conversion tests to/from `long double' on machines where it's the same size as `double' to get rid of compiler warnings. ./doc/html/Big.html Fixed a couple typos.
* [svn-r509] Added a couple of lines from the prevous file on the web-site ↵Quincey Koziol1998-07-151-0/+5
| | | | | | | which pointed people to the ftp server for the distribution and to the project plan for the code development.
* [svn-r506] Fixing a broken image link.Frank Baker1998-07-151-1/+1
|
* [svn-r505] Fixing a broken link.Frank Baker1998-07-151-2/+3
|
* [svn-r504] HDF5 Reference ManualFrank Baker1998-07-152-10/+70
| | | | | RM_H5Z.html -- Compression functions, H5Z Interface Updated for Alpha2.
* [svn-r503] HDF5 Reference ManualFrank Baker1998-07-1512-0/+6701
| | | | Updated for Alpha2.
* [svn-r502] HDF5 Reference ManualFrank Baker1998-07-1511-1157/+1456
| | | | | | Final updates for Alpha2. All currently-implemented functions added. Technical content verified.
* [svn-r501] Introduction to HDF5.Frank Baker1998-07-151-0/+1
| | | | | H5.intro.html is a derived HTML file. Edits should be made via the MS Word source file ../src/H5.intro.doc.
* [svn-r500] Introduction to HDF5Frank Baker1998-07-151-0/+0
| | | | | Source file -- Microsoft Word. The derived HTML file is hdf/doc/html/H5.intro.html.
* [svn-r497] Introduction to HDF5Frank Baker1998-07-151-803/+3149
| | | | Updated for Alpha 2
* [svn-r492] Changed Reference Manual link to to point to newFrank Baker1998-07-141-1/+1
| | | | HDF5 Reference Manual (multiple file version).
* [svn-r486] DDL descriptionRuey-Hsia Li1998-07-141-0/+239
| | | | C: ----------------------------------------------------------------------
* [svn-r479] Updates for Alpha2.Frank Baker1998-07-104-375/+735
| | | | Add missing functions. General technical edit.
* [svn-r475] HDF5 Reference Manual files.Elena Pourmal1998-07-0810-0/+5989
| | | | | Main file is RM_H5Front.html. Created from the Alpha1 Ref. Manual, Alpha1 User's Guide Documents and the Alpha2 Source Code.
* [svn-r474] HDF5 Glossary.Frank Baker1998-07-081-0/+53
| | | | Created from Alpha1 Reference Manual.
* [svn-r471] Changes since 19980708Robb Matzke1998-07-082-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./MANIFEST Alphabetized. `d' comes before `e' :-) ./bin/release Added the `-batch' option which causes the script to not ask questions and to automatically update the minor version number and set the patch level back to `a'. This is intended to be used for the daily snapshots: #! /bin/sh set -e cd ~/hdf5 make distclean make test bin/release -batch tar compress gzip bzip2 mv ./releases/* /repository ./src/H5Z.c Removed warnings about unused variables when the zlib.h header file is present but libz.a isn't. ./INSTALL ./configure.in ./doc/html/tracing.html Made API tracing the default (you still need to define the HDF5_TRACE environment variable to get results) and change the name from `--disable-tracing' to `--disable-trace' to make it consistent with the other switches. Changed `site config file' to `host config file' to match the documentation. ./doc/html/H5.user.html Added a reference to the `tracing.html' file.
* [svn-r467] Restructuring documentation.Quincey Koziol1998-07-0871-0/+20819
|
* [svn-r453] Minor tweaking of picturesQuincey Koziol1998-07-061-12/+12
|
* [svn-r175] Minor formatting tweaksQuincey Koziol1998-01-271-233/+233
|
* [svn-r167] Pipeline as currently implemented.Robb Matzke1998-01-231-0/+136
|
* [svn-r166] Initial version of I/O pipeline graphQuincey Koziol1998-01-221-0/+715
|
* [svn-r23] A user's view of a basic HDF5 file.Quincey Koziol1997-08-111-0/+1203
|
* [svn-r22] Reasonable, high-level BNF-like description of the structure of an ↵Quincey Koziol1997-08-111-0/+552
| | | | HDF5 file.
* [svn-r21] [Very] Basic flowchart of allowable excecution flow through the ↵Quincey Koziol1997-08-111-0/+216
HDF5 library.