[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.4.1-276-g3c951
From: |
Ben Pfaff |
Subject: |
[Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.4.1-276-g3c95184 |
Date: |
Wed, 6 Jan 2021 23:30:15 -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 3c95184e5b984dbb02d67941f6253eb9783ed43c (commit)
via b0486442675e454c1e542a7098e5f127b2757787 (commit)
via 07da9f454c17fb961cae09f6d7d505f7abb281c0 (commit)
via 81e3a36c830463d97ff4f5937a670206cc26e193 (commit)
via 4daafd79f8b250b1651c1b66a3171a654abf252d (commit)
from b7479c9a558c9d46c5685724b0a67f8ba2e7956c (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 3c95184e5b984dbb02d67941f6253eb9783ed43c
Author: Ben Pfaff <blp@cs.stanford.edu>
Date: Wed Jan 6 20:27:54 2021 -0800
pivot-table: Implement SET SMALL.
commit b0486442675e454c1e542a7098e5f127b2757787
Author: Ben Pfaff <blp@cs.stanford.edu>
Date: Wed Jan 6 17:03:43 2021 -0800
pivot-table: Incorporate format settings.
This allows pivot tables to save the decimal point and custom
currency settings that were in effect when they were created,
and to honor the ones read from an .spv file.
commit 07da9f454c17fb961cae09f6d7d505f7abb281c0
Author: Ben Pfaff <blp@cs.stanford.edu>
Date: Wed Jan 6 16:24:46 2021 -0800
Make data input and output take a fmt_settings structure.
This will allow pivot_table formatting to supply its own.
commit 81e3a36c830463d97ff4f5937a670206cc26e193
Author: Ben Pfaff <blp@cs.stanford.edu>
Date: Wed Jan 6 15:24:01 2021 -0800
format: Move epoch into struct fmt_settings.
commit 4daafd79f8b250b1651c1b66a3171a654abf252d
Author: Ben Pfaff <blp@cs.stanford.edu>
Date: Wed Jan 6 15:07:19 2021 -0800
format: Make format settings structure smaller and cheaper.
Until now, there has only been one copy of the fmt_settings structure in a
given PSPP process, so it hardly mattered what size it was. In an upcoming
commit, there will be one copy per pivot table, so it becomes more
important. This commit shrinks it.
-----------------------------------------------------------------------
Summary of changes:
Smake | 1 +
doc/utilities.texi | 9 +
src/data/calendar.c | 6 +-
src/data/calendar.h | 6 +-
src/data/csv-file-writer.c | 3 +-
src/data/data-in.c | 43 ++--
src/data/data-in.h | 7 +-
src/data/data-out.c | 88 +++++----
src/data/data-out.h | 11 +-
src/data/format-guesser.c | 6 +-
src/data/format.c | 337 +++++++++++++++++++++-----------
src/data/format.h | 54 +++--
src/data/gnumeric-reader.c | 6 +-
src/data/ods-reader.c | 8 +-
src/data/psql-reader.c | 3 +-
src/data/settings.c | 146 +++-----------
src/data/settings.h | 6 +-
src/data/variable.c | 3 +-
src/language/data-io/data-list.c | 8 +-
src/language/data-io/data-parser.c | 6 +-
src/language/data-io/get-data.c | 6 +-
src/language/data-io/matrix-reader.c | 2 +-
src/language/data-io/print.c | 5 +-
src/language/data-io/save-translate.c | 2 +-
src/language/dictionary/mrsets.c | 3 +-
src/language/expressions/helpers.c | 6 +-
src/language/expressions/operations.def | 8 +-
src/language/lexer/value-parser.c | 3 +-
src/language/stats/crosstabs.q | 3 +-
src/language/stats/flip.c | 5 +-
src/language/utilities/set.q | 34 +---
src/language/xforms/recode.c | 3 +-
src/math/box-whisker.c | 5 +-
src/output/pivot-table.c | 134 +++++++------
src/output/pivot-table.h | 11 +-
src/output/spv/spv-legacy-decoder.c | 11 +-
src/output/spv/spv-light-decoder.c | 22 ++-
src/output/spv/spv-writer.c | 24 ++-
src/ui/gui/helper.c | 6 +-
src/ui/gui/missing-val-dialog.c | 3 +-
src/ui/gui/psppire-data-store.c | 13 +-
src/ui/gui/psppire-import-textfile.c | 1 +
src/ui/gui/psppire-value-entry.c | 2 +-
src/ui/gui/var-type-dialog.c | 6 +-
src/ui/syntax-gen.c | 6 +-
tests/language/stats/examine.at | 1 +
tests/language/stats/factor.at | 1 +
tests/language/stats/logistic.at | 2 +-
tests/output/pivot-table.at | 72 +++++++
49 files changed, 676 insertions(+), 481 deletions(-)
hooks/post-receive
--
GNU PSPP
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v1.4.1-276-g3c95184,
Ben Pfaff <=