[Getdata-commits] SF.net SVN: getdata:[876] trunk/getdata
Scientific Database Format
Brought to you by:
ketiltrout
|
From: <ket...@us...> - 2014-02-13 21:26:21
|
Revision: 876
http://sourceforge.net/p/getdata/code/876
Author: ketiltrout
Date: 2014-02-13 21:26:18 +0000 (Thu, 13 Feb 2014)
Log Message:
-----------
Typos.
Modified Paths:
--------------
trunk/getdata/ChangeLog
trunk/getdata/NEWS
trunk/getdata/bindings/python/pyfragment.c
trunk/getdata/doc/README.f77
Modified: trunk/getdata/ChangeLog
===================================================================
--- trunk/getdata/ChangeLog 2013-12-17 23:55:22 UTC (rev 875)
+++ trunk/getdata/ChangeLog 2014-02-13 21:26:18 UTC (rev 876)
@@ -1,3 +1,7 @@
+2014-02-21 D. V. Wiebe <ge...@ke...> svn:876
+ * bindings/python/pyfragment.c (gdpy_fragment_init): Fix typo in keyword
+ names.
+
2013-12-17 D. V. Wiebe <ge...@ke...> svn:875
* src/add.c (_GD_Add) src/fpos.c (_GD_GetFilePos _GD_WriteSeek _GD_Seek)
src/getdata.c (_GD_DoRaw) src/mod.c (_GD_Change) src/move.c
@@ -3067,7 +3071,7 @@
* util/dirfile2ascii.c util/checkdirfile.c: Update for new function names.
- * util/checkdirifle.c: Report standards version compliance.
+ * util/checkdirfile.c: Report standards version compliance.
* bindings/python/test/big_test.py bindings/cxx/test/big_test.cpp
bindings/f77/test/big_test.f bindings/f77/test/big_test95.f90
Modified: trunk/getdata/NEWS
===================================================================
--- trunk/getdata/NEWS 2013-12-17 23:55:22 UTC (rev 875)
+++ trunk/getdata/NEWS 2014-02-13 21:26:18 UTC (rev 876)
@@ -20,7 +20,7 @@
* BUG FIX: When performing a metadata update due to a renamed field, the field
codes containing subfields of the renamed field are now also updated,
- including field codes specifying meta subfield which do not exist.
+ including field codes specifying meta subfields which do not exist.
* BUG FIX: The gd_[m]add() functions now ignore zero-length scalar strings.
Previously they would store these invalid field codes, causing problems
@@ -117,8 +117,8 @@
field_end which is beyond the end of field, and then is required to
extrapolate outside of the specified frame range.
- * BUG FIX: gd_add_polynom() and similar now produce the correct error string
- when encountering a poly_ord out of range.
+ * BUG FIX: gd_error_string() now produces the correct string when reporting
+ an out-of-range poly_ord encountered by gd_add_polynom() and similar.
* BUG FIX: gd_alter_raw() and similar no longer fail when asked to re-encode
the data file of a RAW field which has not been previously accessed.
@@ -182,6 +182,9 @@
* IDL BUG FIX: the /UPDATEDB flag to gd_rename now operates as expected.
Previously it would act like /MOVE_DATA.
+ * PYTHON BUG FIX: The keyword for the "dirfile" parameter in the
+ getdata.fragment constructor is now properly spelled.
+
|==============================================================================|
New in verison 0.8.5:
@@ -1442,7 +1445,7 @@
Miscellaneous:
- * BUG FIX: The dirifle_madd_bit(3) manual page has been corrected to show
+ * BUG FIX: The dirfile_madd_bit(3) manual page has been corrected to show
the correct order or parameters for all the dirfile_madd_<field_type>
functions.
Modified: trunk/getdata/bindings/python/pyfragment.c
===================================================================
--- trunk/getdata/bindings/python/pyfragment.c 2013-12-17 23:55:22 UTC (rev 875)
+++ trunk/getdata/bindings/python/pyfragment.c 2014-02-13 21:26:18 UTC (rev 876)
@@ -50,7 +50,7 @@
static int gdpy_fragment_init(struct gdpy_fragment_t *self, PyObject *args,
PyObject *keys)
{
- char *keywords[] = {"dirifle", "index", NULL};
+ char *keywords[] = {"dirfile", "index", NULL};
dtrace("%p, %p, %p", self, args, keys);
Modified: trunk/getdata/doc/README.f77
===================================================================
--- trunk/getdata/doc/README.f77 2013-12-17 23:55:22 UTC (rev 875)
+++ trunk/getdata/doc/README.f77 2014-02-13 21:26:18 UTC (rev 876)
@@ -677,9 +677,9 @@
Input:
INTEGER dirfile_unit
- This wraps diriflename(3). The name of the dirfile will be returned in name.
- If the name of the dirfile is longer than name_len, it will return the actual
- length of the name in name_len and not modify the name argument.
+ This wraps gd_dirfilename(3). The name of the dirfile will be returned in
+ name. If the name of the dirfile is longer than name_len, it will return the
+ actual length of the name in name_len and not modify the name argument.
* GDREFE(name, name_len, dirfile_unit, field_code, field_code_len)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|