* include/hb_io.h
* src/main/harbour.1
* src/rtl/gtdos/gtdos.c
* src/rtl/gtos2/gtos2.c
* src/rtl/gtpca/gtpca.c
* utils/hbmk2/hbmk2.1
* utils/hbtest/hbtest.1
* contrib/hbqt/hbmk2_qt.hbs
* contrib/hbide/idemisc.prg
* contrib/hbide/idesaveload.prg
* contrib/hbide/ideprojmanager.prg
* tests/sbartest.prg
* tests/videotst.prg
* tests/testhtml.prg
* tests/vidtest.prg
* tests/setkeys.prg
* tests/mousetst.prg
* TODO
* NEWS
* examples/guestbk/cgi.ch
* examples/hscript/cgi.ch
* "harbour project" name usage cleanup (except in license texts)
* minor cleanups (f.e. updated project description and mailing list name in hbide)
108 lines
2.8 KiB
Plaintext
108 lines
2.8 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
=======================================================================
|
|
|
|
Harbour TODO list
|
|
|
|
=======================================================================
|
|
Tasks for after v.1 release:
|
|
----------------------------
|
|
|
|
Assign to: <nobody>
|
|
Detail...: UNICODE (UTF-8) support.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
Assign to: Ryszard
|
|
Detail...: SQLRDD.
|
|
Status...: Working on it.
|
|
|
|
***
|
|
|
|
Assign to: <nobody>
|
|
Detail...: Add support for virtual file handles and registering some
|
|
meta handles so it will be possible to make:
|
|
h := fopen( "gzip:/tmp/myarchive.gz", FO_WRITE )
|
|
fwrite( h, cData )
|
|
fclose( h )
|
|
or:
|
|
h := fopen( "tcp:some.host:port", FO_WRITE )
|
|
...
|
|
or:
|
|
h := fopen( "|lpr -PLaserJet", FO_WRITE )
|
|
...
|
|
or:
|
|
h := fopen( "gunzip /tmp/myarchive.gz|", FO_READ )
|
|
...
|
|
etc.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
Assign to: Przemek
|
|
Detail...: Define multi platform platform API for GTs which can mix
|
|
graphics objects with standard text output. Now it's
|
|
possible in GTXWC, GTWVG and GTALLEG. This I will discuss
|
|
yet also with Harbour developers.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
Assign to: <nobody>
|
|
Detail...: Add support for remotely controlled GUI objects so we will
|
|
be able to create GUI programs with GTNET.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
Assign to: <nobody>
|
|
Detail...: Add NETRDD - meta RDD which will allow transport layer
|
|
between client application and server application with any
|
|
other chosen RDD driver. Idea similar to GTNET but for RDD
|
|
drivers - it's sth like ADS does.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
Assign to: Przemek
|
|
Detail...: Extended HB_IT_POINTER. In practice we can give them the
|
|
same functionality as for objects and use them for fast
|
|
creation objects at C level. We can also add HB_VALTYPE()
|
|
function which will return the extended type name, f.e.
|
|
"WINDOW", "FONT", "SOCKET" or anything what 3-rd party
|
|
programmers may want to use. It will greatly simplify
|
|
writing some libraries.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
Assign to: Jean-Francois Lefebvre (JFL)
|
|
Detail...: The following need to be added to the OO system:
|
|
Class Method, Multiple Constructor, Class init Support.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
Assign to: Ryszard
|
|
Detail...: Real strong typing in the compiler.
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
=======================================================================
|
|
|
|
Harbour TOFIX list
|
|
|
|
=======================================================================
|
|
|
|
Assign to: Przemek
|
|
Detail...: Clean RDD code to be safe for return from RT errors
|
|
Status...: Open.
|
|
|
|
***
|
|
|
|
=======================================================================
|