1. JPSS
  2. h5edit

Commits

AuthorCommitMessageCommit dateIssues
Albert ChengAlbert Cheng
a8951c2f51eUpdated for v1.3.0 release.h5edit_1_3_0
Albert ChengAlbert Cheng
14c56b0917eUpdated for v1.3.0 release.
Albert ChengAlbert Cheng
cb218e43219Updated for v1.3.0 release.
Albert ChengAlbert Cheng
35ce453f747Generated from the MS-Word version.
Albert ChengAlbert Cheng
ceb5f2fbd11Added the segment management routines for the backup VFD to support better performance.Tested: Linux, Mac, Solaris (jam koala platypus ostrich emu duck swallow).
Mark EvansMark Evans
82588101fd5Updated for the 1.3.0 version.Tested: Adobe Reader
Albert ChengAlbert Cheng
aaa0b17ff06updated version number to 1.3.0-beta2
Mark EvansMark Evans
47cb62ef203Added back the sub-section that describes the MODIFY command. Made a few more edits.Tested: Acrobat Reader, Firefox
Mark EvansMark Evans
7665228231aRemoved the sub-section that described the MODIFY command.Tested: Firefox, Acrobat Reader
Joel PlutchakJoel Plutchak
f4c377c9a47Added/updated copyright information.
Albert ChengAlbert Cheng
1822ef69ee9updated version number to 1.3.0-beta1 for beta release.h5edit_1_3_0-beta1
Albert ChengAlbert Cheng
1df750cad1dupdated with the implementation info of backup vfd.
Albert ChengAlbert Cheng
1c9127cf667Updated with info.of initial implementation of Backup VFD.
Albert ChengAlbert Cheng
84d5a3571f1Initial installation of the backup VFD.
Mark EvansMark Evans
6c057a1d5caThis file uses a different format and has some edits and comments for the H5edit_User_Guide.docx file.
Albert ChengAlbert Cheng
405f540fc05cleaned out variables not used any more.Tested: koala
Albert ChengAlbert Cheng
26709bf08a0Post release v1.2.1 cleanup/reset. Changed release version information to v1.2.1-post0.Tested: koala.
Albert ChengAlbert Cheng
43654fae2c3Post v1.2.1 cleanup.Archived RELEASE.txt into History. Reset RELEASE.txt for next release.
Albert ChengAlbert Cheng
b7128ac2d90Updated with an example of MODIFY string type attribute.h5edit_1_2_1
Albert ChengAlbert Cheng
54609163923Updated with new feature that accepts "_" as attribute name character.
Albert ChengAlbert Cheng
80b0071aabeChanged version to 1.2.1 release. Update test files to match the version number.Tested: jam.
Albert ChengAlbert Cheng
883fd092382Added support to allow attribute names consist of "_".src/analyze.c: src/analyze.l: Parser now accepts "_" as part of identifiers. src/misc.c: Just some debug statements. test/testfiles/create-newatts-I3264BE.ref: test/testfiles/create-newatts-F32BE64LE.ref: test/testfiles/rename-atts12-dset111.ref: test/testfiles/rename-atts12-grrt.ref: test/testh5edit.sh: Updated test cases to use "_" in the attribute names. Tested: koala, jam, emu...
Albert ChengAlbert Cheng
314a5fc0f58Updated to reflect version number changes.
Albert ChengAlbert Cheng
2bbdb506a89MODIFY String attributes expected result file.
Albert ChengAlbert Cheng
e50735bcc99Updated RELEASE.txt with bug fix.Changed release to v1.2.1-snap0 since bug fix added a sub-feature.
Albert ChengAlbert Cheng
c9aad20e679Bug fix: JPSS-81 MODIFY does not handle a STRING type attribute.Added code to handle an existing STRING type attribute correctly. Tested: Jam, Koala, Duck, WrenJPSS-81
Albert ChengAlbert Cheng
05cffbbc534Deposit completed report.
Albert ChengAlbert Cheng
49e1cbd6a5aPost v1.2.0 cleanup.Archived RELEASE.txt into History. Reset RELEASE.txt for next release.
Albert ChengAlbert Cheng
877cd3fe46dPost release v1.2.0 cleanup/reset. Changed release version information to v1.2.0-post0.Revamped how version information is printed for option --version. i) change bin/setversion to produce H5EDIT_VER_INFO in h5edit.h; ii) Changed print_version in misc.c to use H5EDIT_VER_INFO to display version information.
Albert ChengAlbert Cheng
9f1df2e1c26Last cleanup of code before official release v1.2.0. Update version information for official release.Tested: all Unix THG development machine except Fred.h5edit_1_2_0
Albert ChengAlbert Cheng
f335751ddefUpdated for v1.2.0 release.Tested: eyeball.
Albert ChengAlbert Cheng
875d80f5237Added a known problem.
Albert ChengAlbert Cheng
bcefb90ac28Update version number to v1.2.0 since a new feature (MODIFY) is added. Updated the test file too.Tested: koala.
Albert ChengAlbert Cheng
8662dbf1fceUpdated with changes for v1.1.1 release.
Albert ChengAlbert Cheng
5b0f02da882Cleaned up the code in general. Eliminate all compilers warnings except 3.Tested: jam, koala, emu, ostrich, platypus, duck, wren.
Albert ChengAlbert Cheng
9d6dc880af7Bug fix: RENAME was not working.A line to assign attribute_name to attribute_name_new was missed, making attr_name_new incorrect. Fixed. Also cleaned out some old, not applicable code for the MODIFY command. Tested: koala.
Albert ChengAlbert Cheng
74d602dea31Bug fix: When an attribute of the root group (e.g. /attr2 ) is modified, the command fails to open the attached object ("/") because the code tried to open it by H5Dopen() first.Solution: Changed modify to use H5Oopen/H5Oclose to open/close all dataset or group objects. This not only fix the bug, it also simplifies the code in the routine. Tested: koala. src/modify_cmd.c: code simplified for the solution above. test/testh5edit.sh: test/testfiles/modify-atts12-dset111.ref: Added the "MODIFY /attr2 ..." test to verify the solution. Changed the expect output t...
Albert ChengAlbert Cheng
9d3f721698cCleaned up old code that handles attribute_name not defined. They are not needed any more.Tested: koala.
Albert ChengAlbert Cheng
bbf4c126bebSimplify the code for MODIFY command syntax to just one modify_cmd rule. Normally, object and attribute names are as two separated tokens. But if they are given as one combined token (<object/attribute>), it is splitted by split_object_attribute() function. This reduces a lot of duplicated code.Tested: koala.
Albert ChengAlbert Cheng
073d769b76cExpected test output for the MODIFY command.
Albert ChengAlbert Cheng
bcd636582f1New Feature: adding MODIFY command.Initial version check in. More work is needed. Tests passed in Jam, Koala, Ostrich, Emu, Duck, Wren, Platypus. RENAME is failing and its tested are temporay skipped in testh5edit.sh. src/modify_cmd.c: new source module to hand the MODIFY command. src/Makefile.am: src/Makefile.in: addition of modify_cmd.c source module to support the MODIFY command. test/testh5edit.sh: Added MODI...
Albert ChengAlbert Cheng
2fdc5b11d9fUpdated expected answer to reflect the new version number of 1.1.1.Tested: koala
Albert ChengAlbert Cheng
aca913bf2e8Changed version number 1.1.1 for next release.
Albert ChengAlbert Cheng
de9fb1ceb24Commit last changes made to Makefile.am (copyright header) but was notpropagated to this file.
Joel PlutchakJoel Plutchak
8c38f7a6cabDocumentation: Added copyright headers (text changes only). Addresses JPSS-66/JPSS-68Tested: koala2 JIRA Issues
Albert ChengAlbert Cheng
35ebecc9022New document of the Function Requirements and Testings Requirements of the MODIFY command.
Albert ChengAlbert Cheng
5f776f4796dPost v1.1.0 release aintenance. configure: configure.ac: src/h5edit.h: README: Changed to version number to 1.1.0-post1. doc/History: Archived RELEASE.txt into History. doc/RELEASE.txt: Reset RELEASE.txt for next release. bin/setversion: added examples into the remark section.Tested: only in Jam since changes are mostly simple text.
Albert ChengAlbert Cheng
5402405657fUpdated for the v1.1.0 release.
Albert ChengAlbert Cheng
656197da6fcUpdated for v1.1.0 release.
Albert ChengAlbert Cheng
ec9ca184283configure.ac: Added copyright notice. test/Makefile.in: test/Makefile.am: Makefile.in: Makefile.am: Updated Copyright to 2013.Tested: eyeballed only since all changes are in comment form, no code change.