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. v0.6.1-1449-gfcb7


From: Ben Pfaff
Subject: [Pspp-commits] [SCM] GNU PSPP branch, master, updated. v0.6.1-1449-gfcb75da
Date: Mon, 09 Aug 2010 18:27:51 +0000

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  fcb75da3200f19842a2eb12ca00063a727a226fd (commit)
       via  a7b5ed72c52e462c75a2fed485ed65aaf09a1d39 (commit)
       via  63554ee77cd82daea8a2b04e0d0cffc418542369 (commit)
       via  dd714f7d6e14e5fcad0014170201d23d116d4246 (commit)
       via  e0cd0149b4b578632eb263a52e93c8a1fed3daba (commit)
       via  d4135192829ae81ec367c3e42289822e2629aeef (commit)
       via  bf5a28ae469e2d82c1bc651de990e495da372621 (commit)
       via  2af80cd685f559c2170f6c4080fdea65bd8f466c (commit)
       via  33c65b85425187f4cb06f7c8302e49d571c4c3a7 (commit)
       via  9a507f96979c87bd3be7774e802225c6eea12a23 (commit)
      from  36ecb7330415c542f02ffb28459926bfcf0bd160 (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 fcb75da3200f19842a2eb12ca00063a727a226fd
Author: Ben Pfaff <address@hidden>
Date:   Sun Aug 8 13:50:49 2010 -0700

    Implement SAVE TRANSLATE to comma- and tab-delimited text formats.

commit a7b5ed72c52e462c75a2fed485ed65aaf09a1d39
Author: Ben Pfaff <address@hidden>
Date:   Sat Aug 7 13:47:33 2010 -0700

    SAVE: Fix UNSELECTED=RETAIN with a filter variable.
    
    Apparently this had never been tested.  It assert-failed consistently
    because the filter variable being saved was from the dictionary before
    reading the data, but the dictionary after reading the data was
    different due to the temporary transformation used to drop the
    filtered data.

commit 63554ee77cd82daea8a2b04e0d0cffc418542369
Author: Ben Pfaff <address@hidden>
Date:   Fri Aug 6 16:32:04 2010 -0700

    DATA LIST: Don't report an error for an empty final field in LIST format.
    
    Also add test to prevent inadvertent regressions.

commit dd714f7d6e14e5fcad0014170201d23d116d4246
Author: Ben Pfaff <address@hidden>
Date:   Sat Aug 7 19:34:24 2010 -0700

    DATA LIST: Fix output column reporting for FREE and LIST formats.
    
    Also, add tests to prevent inadvertent regressions.

commit e0cd0149b4b578632eb263a52e93c8a1fed3daba
Author: Ben Pfaff <address@hidden>
Date:   Sat Aug 7 18:42:07 2010 -0700

    DATA LIST: Convert tests to use Autotest.

commit d4135192829ae81ec367c3e42289822e2629aeef
Author: Ben Pfaff <address@hidden>
Date:   Mon Aug 2 22:41:19 2010 -0700

    sys-file-writer: Consistently use "goto error" to exit.

commit bf5a28ae469e2d82c1bc651de990e495da372621
Author: Ben Pfaff <address@hidden>
Date:   Mon Aug 2 22:40:57 2010 -0700

    sys-file-writer: Make write_error(), close_writer() static.
    
    These functions were never meant to be public (and they were not declared
    in a header file).

commit 2af80cd685f559c2170f6c4080fdea65bd8f466c
Author: Ben Pfaff <address@hidden>
Date:   Mon Aug 2 22:11:57 2010 -0700

    sys-file-writer: Fix comment.

commit 33c65b85425187f4cb06f7c8302e49d571c4c3a7
Author: Ben Pfaff <address@hidden>
Date:   Mon Aug 2 22:11:13 2010 -0700

    Replace S_I[RWX]{USR,GRP,OTH} macros by their values.
    
    POSIX 2008 guarantees that these macros have their traditional Unix values,
    so it should no be longer necessary to use the macros for portability's
    sake.  Personally, I find the values easier to read, especially when
    several of them are OR'd together.

commit 9a507f96979c87bd3be7774e802225c6eea12a23
Author: Ben Pfaff <address@hidden>
Date:   Sun Aug 1 21:19:50 2010 -0700

    i18n: Make a few strings more generic for translators.
    
    This should reduce the amount of work required by translators, by reducing
    the number of unique strings to be translated.

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

Summary of changes:
 NEWS                                     |    5 +-
 doc/files.texi                           |  135 ++++++++
 src/data/automake.mk                     |    2 +
 src/data/csv-file-writer.c               |  493 ++++++++++++++++++++++++++++++
 src/data/csv-file-writer.h               |   44 +++
 src/data/por-file-writer.c               |    6 +-
 src/data/procedure.c                     |   19 +-
 src/data/procedure.h                     |    3 +-
 src/data/sys-file-writer.c               |   20 +-
 src/language/command.def                 |    2 +-
 src/language/data-io/automake.mk         |    1 +
 src/language/data-io/data-parser.c       |   16 +-
 src/language/data-io/data-writer.c       |    7 +-
 src/language/data-io/get-data.c          |    6 +-
 src/language/data-io/get.c               |    4 +-
 src/language/data-io/save-translate.c    |  288 +++++++++++++++++
 src/language/data-io/save.c              |   11 +-
 src/language/utilities/permissions.c     |    6 +-
 tests/automake.mk                        |    4 +-
 tests/command/data-list.sh               |  212 -------------
 tests/language/data-io/data-list.at      |  201 ++++++++++++
 tests/language/data-io/save-translate.at |   92 ++++++
 tests/language/data-io/save.at           |   31 ++
 23 files changed, 1346 insertions(+), 262 deletions(-)
 create mode 100644 src/data/csv-file-writer.c
 create mode 100644 src/data/csv-file-writer.h
 create mode 100644 src/language/data-io/save-translate.c
 delete mode 100755 tests/command/data-list.sh
 create mode 100644 tests/language/data-io/data-list.at
 create mode 100644 tests/language/data-io/save-translate.at
 create mode 100644 tests/language/data-io/save.at


hooks/post-receive
-- 
GNU PSPP



reply via email to

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