Commit Graph

8145 Commits

Author SHA1 Message Date
Raymond Lu
bea1e576c5 [svn-r11711] Purpose: Bug fix for Windows
Description: Windows doesn't have unistd.h file.

Solution: Put #ifdef H5_HAVE_UNISTD_H for #include<unistd.h>.

Platforms tested: fuss - simple change.
2005-11-14 17:05:22 -05:00
Albert Cheng
485edae92b [svn-r11710] Purpose:
Bug fix.

Description:
Removed a debugging print command in the edit script.

Tested in Redstorm.
2005-11-13 21:06:52 -05:00
Fang Guo
029355ade3 [svn-r11709] Purpose:
Maintenance on Windows
Description:
Fix typos
Solution:

Platforms tested:

Misc. update:
2005-11-11 16:54:53 -05:00
Pedro Vicente Nunes
b96e820618 [svn-r11708] Purpose:
documentation improve

Description:
added a more complete description for each function in the comments
that matches the online documentation

Solution:

Platforms tested:
solaris

Misc. update:
2005-11-11 14:39:40 -05:00
Albert Cheng
f70640457b [svn-r11696] Purpose:
Improvement

Description:
The previous HTML files strategy was to expect the very first comment
block is the copyright notice. That did not work well as more and more
other comments appear now.

Solution:
Changed the strategy to look for the only the essential body of copyright
notice.  This no longer verifies this body of text is a comment block. But
the previous strategy is not really bullet-proof either.

Platforms tested:
tested in heping.
2005-11-09 17:23:58 -05:00
Albert Cheng
9c0f8180e7 [svn-r11695] Purpose:
Improvement

Description:
The previous HTML files strategy was to expect the very first comment
block is the copyright notice. That did not work well as more and more
other comments appear now.

Solution:
Changed the strategy to look for the only the essential body of copyright
notice.  This no longer verifies this body of text is a comment block. But
the previous strategy is not really bullet-proof either.

Platforms tested:
tested in heping.
2005-11-09 17:23:58 -05:00
Raymond Lu
73d95bbae9 [svn-r11694] Purpose: Bug fix
Description: lex.yy.c for H5LTtext_to_dtype() has been failing to compile
on 64-bit SunOS.  It has malloc() call but doesn't include stdlib.h.

Solution:  Include stdlib.h in H5LTanalyze.l.

Platforms tested: shanti - simple change.
2005-11-09 15:15:03 -05:00
Raymond Lu
e5e17162c0 [svn-r11693] Purpose: Added copyright
Description: Put copyright in the new files for H5LTtext_to_dtype().


Platforms tested: fuss - simple change.
2005-11-08 16:58:31 -05:00
Fang Guo
1baf9cf104 [svn-r11692] Purpose:
Maintenance on Windows.
Description:
Update solution file
Solution:

Platforms tested:

Misc. update:
2005-11-07 17:58:24 -05:00
Fang Guo
8429c835ef [svn-r11691] Purpose:
Maintenance on Windows
Description:
Adding the new function H5LTtext_to_dtype() for converting text description to data type

Solution:

Platforms tested:
Windows XP
Misc. update:
2005-11-07 17:48:48 -05:00
Fang Guo
3f48ca1265 [svn-r11690] Purpose:
Maintenance on Windows
Description:
Adding the new function H5LTtext_to_dtype() for converting text description to data type
Solution:

Platforms tested:
Windows XP
Misc. update:
2005-11-07 17:48:05 -05:00
Raymond Lu
370d940cd0 [svn-r11689] Purpose: Bug fix
Description: The g++ on sleipnir had troubles to compile the H5LTtext_to_dtype()
code.

Solution: Fixed problems at different places.

Platforms tested: h5committest and g++ on sleipnir.
2005-11-07 17:14:02 -05:00
Quincey Koziol
0891038562 [svn-r11686] Purpose:
New feature

Description:
    Add in baseline "object copy" code from Peter [in the form of a new API
routine: H5Gcopy()].  There's still some work to do (like handling variable-
length datatypes and possibly support for references) and it hasn't been tested
on mounted files yet, but the core functionality is there and working
correctly.

    I've also got a set of patches to update the 1.6 branch with tweaks to
keep the branches mostly in sync, but Elena will kill me if I import them
before the 1.6.5 release is out... :-)

Platforms tested:
    FreeBSD 4.11 (sleipnir)
    h5committested
2005-11-06 22:13:53 -05:00
Raymond Lu
23e994958b [svn-r11683]
Purpose: Minor bug fix

Description: Static function test_text_dtype() has static subroutines defined after itself.  The gcc compiler on sleipnir complained.

Solution: put test_text_dtype() after subroutine's definition.

Platforms tested: sleipnir with gcc 4.0 where the complaints happened.  Simple change.
2005-11-04 16:29:23 -05:00
James Laird
1c709d9057 [svn-r11681] Purpose:
Updated RELEASE.txt

Description:
Mentioned that h5c++ and h5fc now support linking against shared libraries.

Platforms tested:
documentation change only
2005-11-04 15:16:34 -05:00
Quincey Koziol
96c039690f [svn-r11680] Purpose:
Code cleanup

Description:
    Clean up H5Dcreate a little, to prepare for coding standards discussion
today.

Platforms tested:
    Just eyeballed, too trivial to require testing.
2005-11-04 08:58:32 -05:00
Albert Cheng
613faa7bc5 [svn-r11678] Purpose:
Bug fix, feature.

Description:
Fix a bug to recognize "#xyz..." is a comment in the init file.
Add more binary data file types.
Added prunepath command.

Platforms tested:
heping.
2005-11-03 13:46:34 -05:00
Raymond Lu
4bd195c87e [svn-r11677] Purpose: Update
Misc. update: Update for the new feature H5LTtext_to_dtype() with new files in
HL library.
2005-11-03 09:12:41 -05:00
Raymond Lu
47b0c3b356 [svn-r11676] Purpose: New feature
Description: Adding the new function H5LTtext_to_dtype() for converting text description to data type.
The next step will be H5LTdtype_to_text().

Solution: Use Lex and Yacc to do parsing of the text.  H5LTanalyze.l is the lexer for analyzing the
input; H5LTparse.y is the parser.  They are not part of HL library, but are used to generate lex.yy.c
(from H5LTanalyze.l) as well as y.tab.c and y.tab.h (from H5LTparse.y).  The tools used to create
these source files are GNU FLEX and YACC on a Linux machine (fuss).  The commands are "lex H5LTanalyze.l"
and "yacc -d H5LTparse.y".  Detailed document will be added later.

Platforms tested: h5committest and fuss.

Misc. update: MANIFEST
2005-11-03 09:11:09 -05:00
Albert Cheng
7fd6ff2413 [svn-r11674] Description:
Added messages to remind platform watchers to check for processes
still running in the remote machine after timeout.

Platforms tested:
Just eyeballed.  Changes is trivial.
2005-11-02 17:54:33 -05:00
Albert Cheng
b28bbdc8e0 [svn-r11672] Purpose:
Added more Windows binary file types and exempted file.
2005-11-02 14:27:12 -05:00
James Laird
ddb4b4b51a [svn-r11668] Purpose:
Copyright fix

Description:
Added a blank line so that Automake would put the copyright at the top of
the file.


Platforms tested:
Trivial change

Misc. update:
2005-11-01 16:06:29 -05:00
Albert Cheng
ef0b313644 [svn-r11667] Purpose:
Updated the copyright notices.
2005-11-01 14:47:22 -05:00
Fang Guo
42a87cc9a9 [svn-r11666] Purpose:
Add in copyright notice
Description:

Solution:

Platforms tested:

Misc. update:
2005-11-01 14:15:15 -05:00
Albert Cheng
8d74b8be52 [svn-r11664] Purpose:
Forgot to remove a debug echo statment.  Fixed.
2005-11-01 14:14:11 -05:00
Fang Guo
54662429c3 [svn-r11663] Purpose:
Add copyright notice
Description:

Solution:

Platforms tested:

Misc. update:
2005-11-01 14:09:05 -05:00
Fang Guo
74e97fa905 [svn-r11661] Purpose:
add in copyright notice
Description:

Solution:

Platforms tested:

Misc. update:
2005-11-01 14:03:19 -05:00
Fang Guo
3aa57f1900 [svn-r11660] Purpose:
add in copyright notice
Description:

Solution:

Platforms tested:
Windows XP
Misc. update:
2005-11-01 14:01:18 -05:00
Fang Guo
2737d99bc2 [svn-r11659] Purpose:
Add in copyright notice
Description:

Solution:

Platforms tested:
Windows XP
Misc. update:
2005-11-01 14:00:13 -05:00
Fang Guo
21ceee1b28 [svn-r11658] Purpose:
add in copyright information
Description:

Solution:

Platforms tested:
Windows XP
Misc. update:
2005-11-01 13:52:18 -05:00
Fang Guo
7ab598f2ea [svn-r11657] Purpose:
Add copyright information
Description:

Solution:

Platforms tested:
Windows XP
Misc. update:
2005-11-01 13:50:21 -05:00
Fang Guo
f2685bb8b4 [svn-r11656] Purpose:
Add in copyright information
Description:

Solution:

Platforms tested:
Windows XP
Misc. update:
2005-11-01 13:46:25 -05:00
James Laird
e6930a615e [svn-r11655] Purpose:
Bug fix

Description:
Fixed a bug when using h5fc and h5c++ with static libraries.
Added high-level C++ and Fortran libraries to h5c++ and h5fc.

Solution:

Platforms tested:
mir, heping, shanti, sleipnir
2005-11-01 12:41:48 -05:00
Albert Cheng
0cc4fba8b7 [svn-r11654] Added copyright notice as an example. 2005-11-01 12:00:20 -05:00
Albert Cheng
ea9707ccdf [svn-r11652] Purpose:
Improvement

Description:
The copyright notice of some files may contain some white spaces such
as tabs, trailing blanks and \r (common in Windows files).  Diff will
flag them as not matching.  Could not just use -b or -w of diff because
it will ignore embedded spaces and could not handle \r anyway.

Solution:
Added a RINSE function will remove all \r and trailing spaces and
expand tabs to proper number of spaces.  Now, diff can compare without
worry of cosmetic white spaces.

Platforms tested:
heping, applying on a Windows/copy_hdf.bat file.
2005-11-01 11:59:59 -05:00
Albert Cheng
c931d25499 [svn-r11648] Purpose:
Feature

Description:
Added copyright detection for Windows files, *.dsw, *.dsp, *.zip (these
are ignored), and *.bat files.

Platforms tested:
heping.
2005-11-01 10:08:36 -05:00
James Laird
617522e467 [svn-r11646] Purpose:
Bug fix/feature

Description:
Added support for -shlib in h5fc and h5c++.
Made check-install use -shlib when only shared libraries have been installed.

Solution:
h5fc and h5c++ didn't recognize -shlib.  Stole code from h5cc to link against
shared libraries.
When static libraries are disabled, the examples Makefiles will automatically
use the -shlib option to link against shared libraries.  Thus,
--disable-static and make check-install should work together.

Platforms tested:
heping(disable-static, enable-static, fortran, c++), modi4 (disable-static, fortran, c++, parallel, enable-static)
2005-10-31 16:35:49 -05:00
Albert Cheng
6a53f457cf [svn-r11642] Updated. 2005-10-31 14:21:14 -05:00
Albert Cheng
398f049289 [svn-r11641] Purpose:
New feature

Description:
A tool to fix configure file so that it can launch configure testing executable
via the proper launching command, e.g., yod.  (Thus the name yodconfigure
is used.)

Tested:
Red Storm, both parallel and serial configure.
2005-10-31 14:19:30 -05:00
Albert Cheng
00ed4bfbb7 [svn-r11639] Purpose:
Cleanup

Description:
Removed the redundent use of -Minform,warn which is the default anyway.

Platforms tested:
Heping with pgi compilers.
2005-10-31 13:37:41 -05:00
Albert Cheng
836cb7f7ba [svn-r11638] Purpose:
Bug fix.

Description:
PGI v6.0-5 pgf90 compiler has a bug in Mstandard that caused compiling
of legal logical value to fail.
We also have second thought of imposing -Mstandard and -Mdclchk on users
since these flags are included in h5fc.

Solution:
Removed -Mstandard until we can fix the v6.0-5 compiler error
and moved -Mdclchk to DEBUG_FFLAGS so that it is used during development
mode but not imposed on users for production release.

Platforms tested:
heping: production and development mode using v6.0-4 compiler.
mir: production and development mode using v6.0-4 compiler.
2005-10-31 13:24:32 -05:00
Albert Cheng
b24462f543 [svn-r11632] Purpose:
Bug fix.

Description:
chkcopyright has been changed to return an exit code whether it passes
or not.  Changed the detection accordingly.

Platforms tested:
heping.
2005-10-30 22:23:33 -05:00
Albert Cheng
599b91eb19 [svn-r11627] Purpose:
improvement.

Description:
It records passed files and reports numbers of both passed and failed files.
2005-10-30 01:00:50 -05:00
Albert Cheng
c5fc453056 [svn-r11626] Purpose:
Skip the copyright file itself.
2005-10-29 17:41:06 -05:00
Albert Cheng
aacf40d541 [svn-r11624] Purpose:
Added *.jpg and *.hdf5 as binary data files to be ignored.

Platforms tested:
heping.
2005-10-29 17:05:10 -05:00
Albert Cheng
c8b3b907b6 [svn-r11622] Purpose:
Improvement.

Description:
Added knowledge to recognized an HTML file by its content by looking for <html> tag.

Platforms tested:
heping.
2005-10-29 16:32:19 -05:00
Quincey Koziol
ebda068f2e [svn-r11619] Purpose:
Update copyrights.

Description:

Solution:
    This should address almost all of the "simple" cases in the repository.
There's still work to do, but it's going to require actually thinking about
the files in question instead of just copying & pasting.
2005-10-29 11:10:23 -05:00
Frank Baker
25733372e4 [svn-r11614]
Description:
    Correct typo in copyright notice.
Platforms tested:
    Ran hdf5/bin/chkcopyright without errors.
2005-10-28 15:28:20 -05:00
James Laird
91cbcdf42f [svn-r11612] Purpose:
Bug fix

Description:
Failed parallel tests now cause make to exit with an error.

Solution:
Edited config/conclude.am to throw an error if parallel test programs fail.

Platforms tested:
heping, modi4
2005-10-27 17:30:46 -05:00
Fang Guo
cef7b9f008 [svn-r11611] Purpose:
Maintenance on Windows
Description:
Add new h5diff test into batch file difftest.bat
Solution:

Platforms tested:
Windows XP
Misc. update:
2005-10-26 17:10:48 -05:00