John's original code for patch #6210.
[pspp-builds.git] / src / ui / terminal / ChangeLog
1 2007-09-19  John Darrington <john@darrington.wattle.id.au>
2
3         * main.c: Moved get_termcap_viewport from src/data/settings.c 
4         Added a handler for SIGWINCH to call this function.  Adjusted
5         init_settings to suit new interface. 
6
7 2007-09-22  Ben Pfaff  <blp@gnu.org>
8
9         Bug #21128.  Reviewed by John Darrington.
10
11         * main.c (i18_init): Set up LC_PAPER locale, if available.  Don't
12         bother with LC_MONETARY locale, since we don't use it anywhere.
13
14 2007-08-26  Ben Pfaff  <blp@gnu.org>
15
16         Bug #17238.  Thanks to John Darrington for review.
17
18         * main.c (main): When testing mode is enabled, use a built-in
19         output driver configuration instead of reading it from the
20         configuration file.
21
22         * msg-ui.c (handle_msg): Send error message to non-screen output
23         devices also, if routing to listing files is enabled.
24
25 2007-08-23  Ben Pfaff  <blp@gnu.org>
26
27         Implement journaling.  Bug #17240.
28         
29         * msg-ui.c (handle_msg): Send message to write_journal function
30         as well as msg_file.
31         (dump_message): Change interface so that it takes a function
32         pointer instead of a FILE.
33         (write_stream): New function.
34         (write_journal): New function.
35         
36         * read-line.c (welcome): Call journal_enable, so that the journal
37         is enabled by default.
38
39 2007-07-25  Ben Pfaff  <blp@gnu.org>
40
41         Make interactive output go to the terminal (bug #17213), by
42         causing the UI to flush output to the user when it prompts for a
43         command.
44
45         * command-line.c (parse_command_line): Configure interactive
46         output devices if appropriate.
47
48         * read-line.c (readln_read): Flush output if this is a prompt for
49         the first line of a command.
50
51 2007-06-06  Ben Pfaff  <blp@gnu.org>
52
53         Adapt case sources, sinks, and clients of procedure code to the
54         new infrastructure.
55         
56         * main.c: No need for fastfile_factory any more.
57
58 2007-02-25  Ben Pfaff  <blp@gnu.org>
59
60         Thanks to Jason Stover for verifying that this patch helps under
61         NetBSD.
62
63         * main.c [HAVE_IEEE_FP]: Include <ieeefp.h>.
64         (fpu_init) [HAVE_IEEE_FP]: Use setfpmask to mask floating-point
65         exceptions.
66
67 Sun Feb 18 13:28:26 2007  Ben Pfaff  <blp@gnu.org>
68
69         * msg-ui.c: Don't include exit.h, because gnulib fixes up stdlib.h
70         as necessary.  Do include stdlib.h, because exit.h did so for us
71         and we need it.
72
73 Thu Feb  8 15:07:04 2007  Ben Pfaff  <blp@gnu.org>
74
75         * read-line.c (readln_initialize): Instead of only supporting
76         history in unix, always support history, and only support a
77         history file when $HOME is defined.
78         (readln_uninitialize): Ditto.
79         (welcome) Call readln_initialize instead of duplicating code.
80
81 Sun Dec 10 11:13:53 2006  Ben Pfaff  <blp@gnu.org>
82
83         * command-line.c (pre_syntax_message): Use term "syntax" instead
84         of "script".
85
86 Sat Dec  9 07:21:02 WST 2006 John Darrington <john@darrington.wattle.id.au>
87
88         * msg-ui.c (msg_ui_done): call msg_locator_done.
89
90 Sun Dec  3 11:57:00 2006  Ben Pfaff  <blp@gnu.org>
91
92         * read-line.c (read_interactive): Always read GETL_INTERACTIVE
93         lines.
94         
95 Thu Nov 16 20:46:35 WST 2006 John Darrington <john@darrington.wattle.id.au>
96
97         * main.c: Connect debugger on errors.
98
99 Tue Nov  7 20:54:32 WST 2006 John Darrington <john@darrington.wattle.id.au>
100
101         * command-line.c msg-ui.c msg-ui.h main.c: Added an -e
102         option to set the file for error messages.
103
104 Sat Nov  4 15:48:04 2006  Ben Pfaff  <blp@gnu.org>
105
106         * msg-ui.c (handle_msg): Only write message to terminal if
107         get_error_routing_to_terminal() returns true.
108
109 Fri Jul  7 20:03:42 2006  Ben Pfaff  <blp@gnu.org>
110
111         * main.c: (main) Register SIGABRT with bug_handler also.
112         (bug_handler) Handle SIGABRT also.
113
114 Tue Jun 27 22:44:56 2006  Ben Pfaff  <blp@gnu.org>
115
116         Fix regression in command name completion reported by John
117         Darrington.  Now completion is again state-dependent and occurs
118         only on the first line of a command.
119         
120         * main.c (main): Reading of first token in command moved into
121         cmd_parse.
122         (execute_command) Removed.
123
124         * read-line.c: [HAVE_READLINE] (readln_initialize) Postpone
125         setting rl_attempted_completion_function until readln_read.
126         [HAVE_READLINE] (readln_read) Change param from const char * to
127         enum getl_prompt_style.  Set rl_attempted_completion_function
128         based on style.
129         [HAVE_READLINE] (complete_command_name) New function.
130         [HAVE_READLINE] (dont_complete) New function.
131         [HAVE_READLINE] (command_generator) New function.
132
133 Tue Jun 27 08:23:07 2006  Ben Pfaff  <blp@gnu.org>
134
135         * automake.mk (src_ui_terminal_pspp_LDADD): Add $(LIBICONV).
136         Thanks to Jason Stover for reporting the omission.
137
138 Thu May  4 21:50:59 2006  Ben Pfaff  <blp@gnu.org>
139
140         Continue reforming procedure execution.  In this phase, move
141         procedure.c and procedure.h from src to src/data.  Update
142         makefiles and #includes accordingly.
143
144         * automake.mk: (src_ui_terminal_pspp_SOURCES) Remove
145         src/procedure.c and src/procedure.h.
146         (src_ui_terminal_pspp_LDADD) Move libexpressions.a later in list
147         to make the link work.
148
149 Wed May  3 23:09:37 2006  Ben Pfaff  <blp@gnu.org>
150
151         Continue reforming procedure execution.  In this phase, get rid of
152         many global variables, consolidating procedure execution in
153         procedure.c.  Encapsulate transformations in new "struct
154         trns_chain".  Also, change implementation of N OF CASES, FILTER,
155         and PROCESS IF from special cases to transformations.
156          
157         * main.c: (main) Use proc_init().
158         (terminate) Use proc_done().
159
160 Wed Apr 26 13:34:54 2006  Ben Pfaff  <blp@gnu.org>
161
162         Improve command name completion in readline.
163         
164         * read-line.c (readln_initialize): Set up readline to only break
165         words for completion at new-line.  That way we can complete a
166         whole command name.  Also, set rl_attempted_completion_function
167         instead of rl_completion_entry_function so we can disable
168         completing on file names, which is usually not what we want in
169         PSPP.
170
171 Wed Apr 26 13:31:00 2006  Ben Pfaff  <blp@gnu.org>
172
173         Improve the way we handle the various parsing "states".  Until now
174         we've hard-coded the state transitions in the command definition
175         file, but that's error-prone and, worse, it's redundant--we can
176         figure out what state we're in anyhow.  We can cleanly handle
177         INPUT PROGRAM and FILE TYPE with a nested command-processing loop.
178         
179         * automake.mk (src_ui_terminal_pspp_LDADD): Move libui earlier to
180         avoid link errors.
181
182         * main.c (main): Handle new CMD_* results.
183         (execute_command) Move most per-command actions into cmd_parse().
184         (handle_error) Removed.  cmd_parse() handles command failure.
185
186 Tue Apr 25 11:08:17 2006  Ben Pfaff  <blp@gnu.org>
187
188         Finish reforming error message support.  In this phase, move
189         message.c into libpspp.
190         
191         * automake.mk: Remove message.c from sources.
192
193 Tue Apr 25 10:58:19 2006  Ben Pfaff  <blp@gnu.org>
194
195         Continue reforming error message support.  In this phase, drop
196         actual message printing from core code, substituting a callback,
197         and add the callback to each UI.  Also, move verbose_msg() into
198         its own module.
199
200         * automake.mk (src_ui_terminal_libui_a_SOURCES): Add msg-ui.c,
201         msg-ui.h.
202
203         * command-line.c: (parse_command_line) Call
204         verbose_increment_level() instead of increment err_verbosity
205         directly, now that we have a little abstraction.
206
207         * msg-ui.c: New file.
208
209         * msg-ui.h: New file.
210
211         * main.c: (main) Call msg_ui_init().  Use any_errors().
212         (terminate) Call msg_ui_done().  Make termination order more
213         rational.
214
215         * read-line.c: (readln_read) Use reset_msg_count() now we have a
216         little abstraction.
217
218 Tue Apr 25 09:39:46 2006  Ben Pfaff  <blp@gnu.org>
219
220         * main.c: (terminate) Mark static and NO_RETURN.  If called
221         recursively, which can only happen via signal, just exit instead
222         of trying to gracefully shut down.      
223
224 Fri Mar 31 10:33:37 2006  Ben Pfaff  <blp@gnu.org>
225
226         * command-line.c: (var pre_syntax_message) -d and -u are no longer
227         supported.
228
229 Sat Mar 11 14:18:39 WST 2006 John Darrington <john@darrington.wattle.id.au>
230
231         * automake.mk: Moved the pspp binary here.
232
233 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
234         
235         * Moved files from src directory