[Dsctl-devel] SF.net SVN: dsctl: [131] src
Status: Alpha
Brought to you by:
roger-linux
From: <rog...@us...> - 2007-07-21 22:02:50
|
Revision: 131 http://dsctl.svn.sourceforge.net/dsctl/?rev=131&view=rev Author: roger-linux Date: 2007-07-21 15:02:43 -0700 (Sat, 21 Jul 2007) Log Message: ----------- Renamed a variable (Trivial) Added a TODO items to the BUGS file. (I don't know xml for editing the TODO.xml file!) Signed-off-by: Roger <ro...@es...> Acked-by: Roger <ro...@es...> Modified Paths: -------------- BUGS src/human_commands.c Modified: BUGS =================================================================== --- BUGS 2007-07-21 17:30:42 UTC (rev 130) +++ BUGS 2007-07-21 22:02:43 UTC (rev 131) @@ -1,6 +1,35 @@ This file contains a list of known bugs and inefficiencies. ----------------------------------------------------------- -All known bugs have been fixed at this point. Please submit bugs to sourceforge -if you find any. Thanks. +Please submit bugs to the sourceforge mailing list if you +find any. Thanks. +1) "#ifdef, #include <termcap.h>, #include <ncurses.h>, +#include <curses.h> are not tested on non-ncurses based +systems. + +2) Console output needs more simplified output instead of +my raw output. + +3) Load command needs to be finished. Dump & Load need +more extensive testing. + +4) Needs a user interface for writing systems and system +data. Once this is done, ensure dump & load command co- +exist with the data layout nicely. + +5) Dump & Load from file instead of stdout. This should +dump system's data to each specifically named system named +file, and then can be loaded one at a time by the load +command. + +6) How about a true daemon mode for an init process? +Should also write a pid file as the unit cannot handle more +then one command request. Else, if two processes are +activated at the same time, the first will hang and the +second will output incomplete data from the scanner. + + +Grep TODO & FIXME for other little issues I've yet to +negate! + Modified: src/human_commands.c =================================================================== --- src/human_commands.c 2007-07-21 17:30:42 UTC (rev 130) +++ src/human_commands.c 2007-07-21 22:02:43 UTC (rev 131) @@ -202,6 +202,7 @@ char *ap = buf2; char *osd_clear, *osd_clear_line, *osd_up, *osd_cr; + /* I can't make the cursor invisible :- */ /*char *osd_invisible, *osd_visible; */ tgetent(buf, getenv("TERM")); @@ -214,7 +215,7 @@ /*osd_invisible = tgetstr("vi", &ap); */ /*osd_visible = tgetstr("ve", &ap); */ - while (daemon_mode != 0) /* simple endless loop */ + while (osd == 0) /* simple endless loop */ { int i = 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |