X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fterminal%2FChangeLog;h=98ce96c7c51954c338ee3c8639bb45d28bdbc0a7;hb=3e15bceda1caf57a898ed98e147a6bc176d8b1fb;hp=9d35ada82d80b33934c4b05abdce419b634123f3;hpb=26790c082083ccc1ea32d6d76741d86f51874acb;p=pspp diff --git a/src/ui/terminal/ChangeLog b/src/ui/terminal/ChangeLog index 9d35ada82d..98ce96c7c5 100644 --- a/src/ui/terminal/ChangeLog +++ b/src/ui/terminal/ChangeLog @@ -1,3 +1,132 @@ +Thu Nov 16 20:46:35 WST 2006 John Darrington + + * main.c: Connect debugger on errors. + +Tue Nov 7 20:54:32 WST 2006 John Darrington + + * command-line.c msg-ui.c msg-ui.h main.c: Added an -e + option to set the file for error messages. + +Sat Nov 4 15:48:04 2006 Ben Pfaff + + * msg-ui.c (handle_msg): Only write message to terminal if + get_error_routing_to_terminal() returns true. + +Fri Jul 7 20:03:42 2006 Ben Pfaff + + * main.c: (main) Register SIGABRT with bug_handler also. + (bug_handler) Handle SIGABRT also. + +Tue Jun 27 22:44:56 2006 Ben Pfaff + + Fix regression in command name completion reported by John + Darrington. Now completion is again state-dependent and occurs + only on the first line of a command. + + * main.c (main): Reading of first token in command moved into + cmd_parse. + (execute_command) Removed. + + * read-line.c: [HAVE_READLINE] (readln_initialize) Postpone + setting rl_attempted_completion_function until readln_read. + [HAVE_READLINE] (readln_read) Change param from const char * to + enum getl_prompt_style. Set rl_attempted_completion_function + based on style. + [HAVE_READLINE] (complete_command_name) New function. + [HAVE_READLINE] (dont_complete) New function. + [HAVE_READLINE] (command_generator) New function. + +Tue Jun 27 08:23:07 2006 Ben Pfaff + + * automake.mk (src_ui_terminal_pspp_LDADD): Add $(LIBICONV). + Thanks to Jason Stover for reporting the omission. + +Thu May 4 21:50:59 2006 Ben Pfaff + + Continue reforming procedure execution. In this phase, move + procedure.c and procedure.h from src to src/data. Update + makefiles and #includes accordingly. + + * automake.mk: (src_ui_terminal_pspp_SOURCES) Remove + src/procedure.c and src/procedure.h. + (src_ui_terminal_pspp_LDADD) Move libexpressions.a later in list + to make the link work. + +Wed May 3 23:09:37 2006 Ben Pfaff + + Continue reforming procedure execution. In this phase, get rid of + many global variables, consolidating procedure execution in + procedure.c. Encapsulate transformations in new "struct + trns_chain". Also, change implementation of N OF CASES, FILTER, + and PROCESS IF from special cases to transformations. + + * main.c: (main) Use proc_init(). + (terminate) Use proc_done(). + +Wed Apr 26 13:34:54 2006 Ben Pfaff + + Improve command name completion in readline. + + * read-line.c (readln_initialize): Set up readline to only break + words for completion at new-line. That way we can complete a + whole command name. Also, set rl_attempted_completion_function + instead of rl_completion_entry_function so we can disable + completing on file names, which is usually not what we want in + PSPP. + +Wed Apr 26 13:31:00 2006 Ben Pfaff + + Improve the way we handle the various parsing "states". Until now + we've hard-coded the state transitions in the command definition + file, but that's error-prone and, worse, it's redundant--we can + figure out what state we're in anyhow. We can cleanly handle + INPUT PROGRAM and FILE TYPE with a nested command-processing loop. + + * automake.mk (src_ui_terminal_pspp_LDADD): Move libui earlier to + avoid link errors. + + * main.c (main): Handle new CMD_* results. + (execute_command) Move most per-command actions into cmd_parse(). + (handle_error) Removed. cmd_parse() handles command failure. + +Tue Apr 25 11:08:17 2006 Ben Pfaff + + Finish reforming error message support. In this phase, move + message.c into libpspp. + + * automake.mk: Remove message.c from sources. + +Tue Apr 25 10:58:19 2006 Ben Pfaff + + Continue reforming error message support. In this phase, drop + actual message printing from core code, substituting a callback, + and add the callback to each UI. Also, move verbose_msg() into + its own module. + + * automake.mk (src_ui_terminal_libui_a_SOURCES): Add msg-ui.c, + msg-ui.h. + + * command-line.c: (parse_command_line) Call + verbose_increment_level() instead of increment err_verbosity + directly, now that we have a little abstraction. + + * msg-ui.c: New file. + + * msg-ui.h: New file. + + * main.c: (main) Call msg_ui_init(). Use any_errors(). + (terminate) Call msg_ui_done(). Make termination order more + rational. + + * read-line.c: (readln_read) Use reset_msg_count() now we have a + little abstraction. + +Tue Apr 25 09:39:46 2006 Ben Pfaff + + * main.c: (terminate) Mark static and NO_RETURN. If called + recursively, which can only happen via signal, just exit instead + of trying to gracefully shut down. + Fri Mar 31 10:33:37 2006 Ben Pfaff * command-line.c: (var pre_syntax_message) -d and -u are no longer