a02521dae91256dd09d026d385c8f1403ec9af68
[pspp-builds.git] / src / ui / terminal / ChangeLog
1 Sun Feb 18 13:28:26 2007  Ben Pfaff  <blp@gnu.org>
2
3         * msg-ui.c: Don't include exit.h, because gnulib fixes up stdlib.h
4         as necessary.  Do include stdlib.h, because exit.h did so for us
5         and we need it.
6
7 Thu Feb  8 15:07:04 2007  Ben Pfaff  <blp@gnu.org>
8
9         * read-line.c (readln_initialize): Instead of only supporting
10         history in unix, always support history, and only support a
11         history file when $HOME is defined.
12         (readln_uninitialize): Ditto.
13         (welcome) Call readln_initialize instead of duplicating code.
14
15 Sun Dec 10 11:13:53 2006  Ben Pfaff  <blp@gnu.org>
16
17         * command-line.c (pre_syntax_message): Use term "syntax" instead
18         of "script".
19
20 Sat Dec  9 07:21:02 WST 2006 John Darrington <john@darrington.wattle.id.au>
21
22         * msg-ui.c (msg_ui_done): call msg_locator_done.
23
24 Sun Dec  3 11:57:00 2006  Ben Pfaff  <blp@gnu.org>
25
26         * read-line.c (read_interactive): Always read GETL_INTERACTIVE
27         lines.
28         
29 Thu Nov 16 20:46:35 WST 2006 John Darrington <john@darrington.wattle.id.au>
30
31         * main.c: Connect debugger on errors.
32
33 Tue Nov  7 20:54:32 WST 2006 John Darrington <john@darrington.wattle.id.au>
34
35         * command-line.c msg-ui.c msg-ui.h main.c: Added an -e
36         option to set the file for error messages.
37
38 Sat Nov  4 15:48:04 2006  Ben Pfaff  <blp@gnu.org>
39
40         * msg-ui.c (handle_msg): Only write message to terminal if
41         get_error_routing_to_terminal() returns true.
42
43 Fri Jul  7 20:03:42 2006  Ben Pfaff  <blp@gnu.org>
44
45         * main.c: (main) Register SIGABRT with bug_handler also.
46         (bug_handler) Handle SIGABRT also.
47
48 Tue Jun 27 22:44:56 2006  Ben Pfaff  <blp@gnu.org>
49
50         Fix regression in command name completion reported by John
51         Darrington.  Now completion is again state-dependent and occurs
52         only on the first line of a command.
53         
54         * main.c (main): Reading of first token in command moved into
55         cmd_parse.
56         (execute_command) Removed.
57
58         * read-line.c: [HAVE_READLINE] (readln_initialize) Postpone
59         setting rl_attempted_completion_function until readln_read.
60         [HAVE_READLINE] (readln_read) Change param from const char * to
61         enum getl_prompt_style.  Set rl_attempted_completion_function
62         based on style.
63         [HAVE_READLINE] (complete_command_name) New function.
64         [HAVE_READLINE] (dont_complete) New function.
65         [HAVE_READLINE] (command_generator) New function.
66
67 Tue Jun 27 08:23:07 2006  Ben Pfaff  <blp@gnu.org>
68
69         * automake.mk (src_ui_terminal_pspp_LDADD): Add $(LIBICONV).
70         Thanks to Jason Stover for reporting the omission.
71
72 Thu May  4 21:50:59 2006  Ben Pfaff  <blp@gnu.org>
73
74         Continue reforming procedure execution.  In this phase, move
75         procedure.c and procedure.h from src to src/data.  Update
76         makefiles and #includes accordingly.
77
78         * automake.mk: (src_ui_terminal_pspp_SOURCES) Remove
79         src/procedure.c and src/procedure.h.
80         (src_ui_terminal_pspp_LDADD) Move libexpressions.a later in list
81         to make the link work.
82
83 Wed May  3 23:09:37 2006  Ben Pfaff  <blp@gnu.org>
84
85         Continue reforming procedure execution.  In this phase, get rid of
86         many global variables, consolidating procedure execution in
87         procedure.c.  Encapsulate transformations in new "struct
88         trns_chain".  Also, change implementation of N OF CASES, FILTER,
89         and PROCESS IF from special cases to transformations.
90          
91         * main.c: (main) Use proc_init().
92         (terminate) Use proc_done().
93
94 Wed Apr 26 13:34:54 2006  Ben Pfaff  <blp@gnu.org>
95
96         Improve command name completion in readline.
97         
98         * read-line.c (readln_initialize): Set up readline to only break
99         words for completion at new-line.  That way we can complete a
100         whole command name.  Also, set rl_attempted_completion_function
101         instead of rl_completion_entry_function so we can disable
102         completing on file names, which is usually not what we want in
103         PSPP.
104
105 Wed Apr 26 13:31:00 2006  Ben Pfaff  <blp@gnu.org>
106
107         Improve the way we handle the various parsing "states".  Until now
108         we've hard-coded the state transitions in the command definition
109         file, but that's error-prone and, worse, it's redundant--we can
110         figure out what state we're in anyhow.  We can cleanly handle
111         INPUT PROGRAM and FILE TYPE with a nested command-processing loop.
112         
113         * automake.mk (src_ui_terminal_pspp_LDADD): Move libui earlier to
114         avoid link errors.
115
116         * main.c (main): Handle new CMD_* results.
117         (execute_command) Move most per-command actions into cmd_parse().
118         (handle_error) Removed.  cmd_parse() handles command failure.
119
120 Tue Apr 25 11:08:17 2006  Ben Pfaff  <blp@gnu.org>
121
122         Finish reforming error message support.  In this phase, move
123         message.c into libpspp.
124         
125         * automake.mk: Remove message.c from sources.
126
127 Tue Apr 25 10:58:19 2006  Ben Pfaff  <blp@gnu.org>
128
129         Continue reforming error message support.  In this phase, drop
130         actual message printing from core code, substituting a callback,
131         and add the callback to each UI.  Also, move verbose_msg() into
132         its own module.
133
134         * automake.mk (src_ui_terminal_libui_a_SOURCES): Add msg-ui.c,
135         msg-ui.h.
136
137         * command-line.c: (parse_command_line) Call
138         verbose_increment_level() instead of increment err_verbosity
139         directly, now that we have a little abstraction.
140
141         * msg-ui.c: New file.
142
143         * msg-ui.h: New file.
144
145         * main.c: (main) Call msg_ui_init().  Use any_errors().
146         (terminate) Call msg_ui_done().  Make termination order more
147         rational.
148
149         * read-line.c: (readln_read) Use reset_msg_count() now we have a
150         little abstraction.
151
152 Tue Apr 25 09:39:46 2006  Ben Pfaff  <blp@gnu.org>
153
154         * main.c: (terminate) Mark static and NO_RETURN.  If called
155         recursively, which can only happen via signal, just exit instead
156         of trying to gracefully shut down.      
157
158 Fri Mar 31 10:33:37 2006  Ben Pfaff  <blp@gnu.org>
159
160         * command-line.c: (var pre_syntax_message) -d and -u are no longer
161         supported.
162
163 Sat Mar 11 14:18:39 WST 2006 John Darrington <john@darrington.wattle.id.au>
164
165         * automake.mk: Moved the pspp binary here.
166
167 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
168         
169         * Moved files from src directory