pspp-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.4.1-336-g507eb


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.4.1-336-g507ebae
Date: Sun, 24 Jan 2021 23:52:34 -0500 (EST)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU PSPP".

The branch, master has been updated
       via  507ebaea36737618ef8265a60cd3e9005d9f3457 (commit)
       via  37a3446f43f6572f05783972df75ba6b9d1a0bea (commit)
       via  bd5e8f74de87b9061ff62615f48fb378e844e87d (commit)
       via  794fc7f31c6748f0f19db7d9b5e8345f00db86c3 (commit)
       via  0cee80a89e120a53ab9ba048346881a33e0863df (commit)
       via  a79d81c31cc3c74abccf7f71aab0e0b909df1a52 (commit)
      from  8a490bdb254cf8d37eb4ac4edf91c7ef933c92dd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 507ebaea36737618ef8265a60cd3e9005d9f3457
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Wed Jan 13 22:05:05 2021 -0800

    output: Make groups contain their subitems, and get rid of spv_item.
    
    Until now, the output subsystem has had two different ideas for output
    items: struct output_item, which is the primary representation, and
    struct spv_item, which represents an output item read from an .spv file.
    The biggest difference, until now, has been that spv_item contains its
    children, whereas output_item bracketed children inside open/close pairs.
    This commit unifies them under output_item, making output_item adopt the
    container abstraction.

commit 37a3446f43f6572f05783972df75ba6b9d1a0bea
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Fri Jan 15 21:52:14 2021 -0800

    output-item: Add basic support for visibility.

commit bd5e8f74de87b9061ff62615f48fb378e844e87d
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 23 15:25:29 2021 -0800

    zip-reader: Make the zip_reader reference counted.
    
    This will be useful in an upcoming commit.

commit 794fc7f31c6748f0f19db7d9b5e8345f00db86c3
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 23 14:34:03 2021 -0800

    zip-reader: Switch to a more usual error reporting mechanism.
    
    Having the client pass in a string buffer was clever but it gave the
    zip_reader some shared state with its client that will be difficult to
    deal with in future use cases.

commit 0cee80a89e120a53ab9ba048346881a33e0863df
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 23 14:37:27 2021 -0800

    zip-reader: Fix file descriptor leak in zip_reader_create().

commit a79d81c31cc3c74abccf7f71aab0e0b909df1a52
Author: Ben Pfaff <blp@cs.stanford.edu>
Date:   Sat Jan 23 11:59:36 2021 -0800

    zip-reader: Use endian conversion functions from integer-format.h.

-----------------------------------------------------------------------

Summary of changes:
 src/data/ods-reader.c              |  47 +-
 src/language/command.c             |  15 +-
 src/libpspp/zip-reader.c           | 447 +++++++++----------
 src/libpspp/zip-reader.h           |  37 +-
 src/output/ascii.c                 |  24 +-
 src/output/automake.mk             |   2 +
 src/output/cairo-fsm.c             |  12 +-
 src/output/cairo-pager.c           | 197 +++++----
 src/output/cairo.c                 |   8 +-
 src/output/csv.c                   |  15 +-
 src/output/driver-provider.h       |  12 +-
 src/output/driver.c                | 196 +++++----
 src/output/driver.h                |   3 +-
 src/output/html.c                  |  27 +-
 src/output/journal.c               |  15 +-
 src/output/msglog.c                |   7 +-
 src/output/odt.c                   |  14 +-
 src/output/output-item.c           | 325 ++++++++++++--
 src/output/output-item.h           | 108 ++++-
 src/output/select.c                | 359 ++++++++++++++++
 src/output/select.h                | 114 +++++
 src/output/spv-driver.c            |   9 +-
 src/output/spv/automake.mk         |   5 -
 src/output/spv/spv-dump.c          |  85 ----
 src/output/spv/spv-legacy-data.c   |   4 +-
 src/output/spv/spv-legacy-data.h   |   2 +
 src/output/spv/spv-output.c        |  38 --
 src/output/spv/spv-output.h        |  26 --
 src/output/spv/spv-select.c        | 262 ------------
 src/output/spv/spv-select.h        |  77 ----
 src/output/spv/spv-writer.c        |  11 +-
 src/output/spv/spv.c               | 855 +++++++++++--------------------------
 src/output/spv/spv.h               | 191 +--------
 src/output/tex.c                   |  14 +-
 src/ui/gui/psppire-output-view.c   |  39 +-
 src/ui/gui/psppire-output-window.c |   8 +-
 src/ui/gui/psppire-window.c        | 106 +----
 tests/libpspp/zip-test.c           |  24 +-
 tests/utilities/pspp-output.at     | 150 +++----
 utilities/pspp-output.c            | 737 ++++++++++++++------------------
 40 files changed, 2150 insertions(+), 2477 deletions(-)
 create mode 100644 src/output/select.c
 create mode 100644 src/output/select.h
 delete mode 100644 src/output/spv/spv-dump.c
 delete mode 100644 src/output/spv/spv-output.c
 delete mode 100644 src/output/spv/spv-output.h
 delete mode 100644 src/output/spv/spv-select.c
 delete mode 100644 src/output/spv/spv-select.h


hooks/post-receive
-- 
GNU PSPP



reply via email to

[Prev in Thread] Current Thread [Next in Thread]