From 90b0ab1937f9801ca95fac36456e06d32f459b9e Mon Sep 17 00:00:00 2001 From: Brian Hays Date: Tue, 21 Aug 2001 08:32:16 +0000 Subject: [PATCH] 2001-08-21 01:30 UTC-0800 Brian Hays --- harbour/ChangeLog | 8 ++- harbour/contrib/libgt/bitflags.c | 8 ++- harbour/todo.txt | 84 ++++++++++++++++++++++++++++++++ 3 files changed, 97 insertions(+), 3 deletions(-) create mode 100644 harbour/todo.txt diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 2c39c2c57d..c9bc1b3079 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +2001-08-21 01:30 UTC-0800 Brian Hays + * contrib/libgt/bitflags.c + added the cvs header + + todo.txt + first stab at a todo list + 2001-08-20 11:55 UTC-0800 Brian Hays * contrib/rdd_ads/ads1.c @@ -41,8 +47,6 @@ of the 12th parameter that is always NIL. See Harbour Archives, subject "XINDEX warning" for details - - 2001-08-21 06:47 GMT Dave Pearson * source/rtl/gtcrs/gtcrs.c * Fixed incorrectly named variable (Row -> uRow) in hb_gt_VertLine(). diff --git a/harbour/contrib/libgt/bitflags.c b/harbour/contrib/libgt/bitflags.c index 0f4cfe86f8..c1fd650e79 100644 --- a/harbour/contrib/libgt/bitflags.c +++ b/harbour/contrib/libgt/bitflags.c @@ -1,3 +1,7 @@ +/* + * $Id$ + */ + /* * File......: BITFLAGS.C * Author....: Dave Pearson @@ -9,13 +13,15 @@ * * This is an original work by Dave Pearson and is placed in the public * domain. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * Modification history: * --------------------- * * 8/19/2001 Modifications for Harbour by Brian Hays, also placed in * the public domain. - * */ diff --git a/harbour/todo.txt b/harbour/todo.txt new file mode 100644 index 0000000000..cb25381972 --- /dev/null +++ b/harbour/todo.txt @@ -0,0 +1,84 @@ +/* + * $Id$ + */ + + Harbour Project To-Do list + +======================================================================= +Tasks for v.1 beta: +_______________________________________________________________________ + + Topic Responsible developer(s) +=================================== ========================= + +Mlctopos() and Mpostolc() Ignacio Ortiz + +SET listener API David Holm + +DBFCDX support Ryszard Glab + +Fixing internal HVM/RTL handling of string ??? +items (Clipper passes a pointer to the same +allocated memory instead of creating +string copies) + +Finish HbMake Luiz Rafael Culik + +CaClipper remaining classes Luiz Rafael Culik + +Map Harbour functions 10 chars to be Luiz Rafael Culik +compatible with Caclipper + +Optimize out the need for the PUSHNIL ??? +opcode before each function call. + +Eliminate the "#pragma pack" type of hacks ??? +from the code (especially RDD), to make it +more multiplatform. This mostly involves +changing the direct writing of structures +to the disk. + +OO system Jean-Francois Lefebvre (JFL) + Adding Class Method + Adding Multiple Constructor + Adding Class init Support + + + +Integrate floating point methods to ??? +avoid inequalities at 13 or more +decimals. See DETAILS_FLOAT below. + +Add missing 5.3 ord* functions. Brian Hays +OrdKeyVal and others are still in +dummy.prg. Move dbcmd.c + +'SAVE TO' statement doesn't work ??? +like clipper's. Is memofile +support complete? + + +======================================================================= +Tasks for v.1 release: +_______________________________________________________________________ + + + + + +======================================================================= +Tasks for after v.1 release: +_______________________________________________________________________ + + + + +======================================================================= +Detail descriptions for Tasks: +_______________________________________________________________________ + +DETAILS_FLOAT + The building of the double in val.c is simply different than how it + gets created when coded in source or read from a dbf + See Harbour archives under the subject + Some numbers are not as equal as others