X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2FChangeLog;h=8c7c2215a60f29f9d80c665c90c8cb01a85ccf62;hb=f1bdc3abd95899162c3cbbdb63a74145383cbb91;hp=526769593992b970775dc9374f6a5fb3611586ab;hpb=847f28dc2b47bda50561ff1547af42053a56eb78;p=pspp-builds.git diff --git a/src/output/ChangeLog b/src/output/ChangeLog index 52676959..8c7c2215 100644 --- a/src/output/ChangeLog +++ b/src/output/ChangeLog @@ -1,3 +1,85 @@ +2007-09-08 John Darrington + + * postscript.c html.c: Remove #include "getline.h" to concurr with + new gnulib arrangements. + +2007-08-23 Ben Pfaff + + Implement journaling. Bug #17240. + + * automake.mk (output_sources): Add journal.c, journal.h. + + * journal.c: New file. + + * journal.h: New file. + +2007-08-16 Ben Pfaff + + * output.c output.h: export function outp_configure_driver_line. + * ascii.c: Added an "append" property. + +2007-08-12 Ben Pfaff + + Add support for charts to ASCII driver. Bug #16364. + Thanks to John Darrington for review. + + * ascii.c (struct ascii_driver_ext): Add chart_type, + chart_file_name, chart_cnt members. + (ascii_open_driver): Initialize new members. + (static array option_tab): Add new options, reorganize slightly. + (handle_option): Handle new options. + (ascii_submit): New function. + (ascii_chart_initialise): Implement. + (ascii_chart_finalise): Implement. + + * chart.c (chart_init_separate): New function. + (chart_finalise_separate): New function. + + * dummy-chart.c (chart_init_separate): New function. + (chart_finalise_separate): New function. + + * html.c (html_open_driver): Don't free chart_file_name. + (html_close_driver): Do free chart_file_name. + (handle_option): Only give an error for chart-files options that + don't contain "#". + (html_initialise_chart): Use new chart_init_separate. + (html_finalise_chart): Use new chart_finalise_separate. + +2007-07-25 Ben Pfaff + + Allow the user to specify an initialization string to write at the + beginning of an ASCII output file. + * ascii.c (struct ascii_driver_ext): New member `init'. + (ascii_open_driver): Initialize `init'. + (ascii_close_driver): Parse `init'. + (ascii_open_page): Write `init' to output file. + + * output.c (get_option_token): Fix parsing of octal constants. + +2007-07-25 Ben Pfaff + + Make interactive output go to the terminal (bug #17213), by + causing the UI to flush output to the user when it prompts for a + command. + + * ascii.c (ascii_open_driver): Move the file open into + ascii_open_page, so that we can re-open after a flush. + (ascii_close_driver): Close file using ascii_flush. + (ascii_open_page): Open the output file if it's not already open. + Use fn_open so that we can support pipes. + (ascii_close_page): Do nothing if output file not open. + (ascii_flush): New function. + (static var ascii_class): Add ascii_flush. + + * manager.c (som_flush): New function. + + * output.c (outp_flush): New function. + +Tue Feb 20 07:03:48 2007 Ben Pfaff + + * html.c: Don't need to include "getlogin_r.h" anymore, because + gnulib merged it into . + Sun Feb 18 11:20:35 2007 Ben Pfaff * postscript.c: Add missing _() around message.