X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2FChangeLog;h=27f8ade3bb3a033039e79d85d8167681bd408541;hb=6b40f1315cf46ca2417c10ce08bcf62941bdd305;hp=5b0318f7f106b211246b7867030d01abd74c30e8;hpb=458d169f64134f4e0a9d9b72398666a01761fcf8;p=pspp-builds.git diff --git a/src/output/ChangeLog b/src/output/ChangeLog index 5b0318f7..27f8ade3 100644 --- a/src/output/ChangeLog +++ b/src/output/ChangeLog @@ -1,3 +1,41 @@ +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