[koha-commits] main Koha release repository branch master updated. v3.18.00-617-g4f60138

Git repo owner gitmaster at git.koha-community.org
Thu Apr 9 19:54:12 CEST 2015


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 "main Koha release repository".

The branch, master has been updated
       via  4f60138080cba847a53b7373c0c98ec42766b8df (commit)
       via  0ab2ebfc59d2a0e2f9515156951251f7d738a5eb (commit)
       via  816508dcd163772fd74bbfd60d9dc6522e410e86 (commit)
       via  3da4fe274728eebde736e9f7da2e9a692623a9e1 (commit)
       via  16828155809fb8d977b04ac2a89df8a2ba239518 (commit)
       via  7a94c50fa6b51e25586d3a02a72cb17987649e7a (commit)
       via  9be1d927bbe76671c419c5107eb3fe64300072df (commit)
       via  975b055c08f7e0a6b2b00b0de04d899b8b318743 (commit)
      from  bde795f8fa488a2284d1d23667fb489bea6343f9 (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 4f60138080cba847a53b7373c0c98ec42766b8df
Author: Marc Véron <veron at veron.ch>
Date:   Sun Mar 29 11:44:19 2015 +0200

    Bug 8796 - patron cards not starting on designated card
    
    The patron cards always printed from position 1 on the print form, because patroncards/create-pdf.pl expected start_label as parameter and got star_card instead.
    
    To verify and test:
    1)
    Go to Home > Tools >Patron card creator >Manage batches
    2)
    Select a batch anc click "Export"
    
    3)
    Set "Enter starting card number" e.g. to 5
    4)
    Export
    5)
    Download PDF and view it
    
    Result: The first card is always printed on position 1 (top left) instead of position 5.
    
    Apply patch
    Repeat steps above
    Step 3) should now read "Enter starting card position"
    
    Result after step 5)
    The first card ist printed at the correct position on the printing form.
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Works as expected
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Rebased for current master and tested. /MV
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 0ab2ebfc59d2a0e2f9515156951251f7d738a5eb
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Dec 12 08:08:53 2014 -0500

    Bug 13349 [QA Followup]
    
    I don't think we need the library label. Also switched to displaying the
    library name, rather than just the branchcode.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 816508dcd163772fd74bbfd60d9dc6522e410e86
Author: David Roberts <david.roberts at ptfs-europe.com>
Date:   Wed Nov 26 16:25:28 2014 +0000

    Bug 13349 - Allow library code to display against users pending changes -update screen
    
    http://bugs.koha-community.org/show_bug.cgi?id=13349
    
    To test:
    Ensure OPACPatronDetails is set to enabled
    Apply the patch
    Log into the OPAC and update your patron details (address, phone number etc)
    Log into the staff client and view pending patron changes.
    The branchcode of the library to which the patron belongs should display next to the user's name.
    
    Followed test plan, works as expected
    Signed-off-by: Marc Veron <veron at veron.ch>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 3da4fe274728eebde736e9f7da2e9a692623a9e1
Author: Olli-Antti Kivilahti <olli-antti.kivilahti at jns.fi>
Date:   Thu Jan 22 15:46:48 2015 +0200

    Bug 13611 - Serial enumeration not visible in the opac-user.pl when browsing own holds.
    
    Having placed holds on Serial Items with an enumchron, and browsing the
    opac-user.pl's "Holds"-tab, the user cannot see which numbers of
    magazines/serials he has on hold.
    
    This patch appends the koha.items.enumchron after the title component in the
    opac-user.pl's Holds-view.
    
    Signed-off-by: Nicole C. Engard <nengard at bywatersolutions.com>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 16828155809fb8d977b04ac2a89df8a2ba239518
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Thu Oct 30 11:59:28 2014 +0100

    Bug 13166 - add all restrictions purge to cleanup_database.pl
    
    Bug 12760 adds the ability to purge expired restrictions older than some days.
    
    But if you want to purge all expired restrictions, using "--restrictions 0" does not work, it's like "--restrictions" so it uses default purge days.
    
    This patch adds a new option "--all-restrictions" to purge all expired restrictions.
    
    Test plan :
    - Select a borrower
    - Create a restriction with expiration date in the futur
    - Create a restriction expired since 1 day
    - Create a restriction expired since 10 days
    - run without argument "misc/cronjobs/cleanup_database.pl"
    => You see help text for --all-restrictions option
    - run "misc/cronjobs/cleanup_database.pl -v --restrictions --all-restrictions"
    => You get the message : You can not specify both --restrictions and --all-restrictions
    - run "misc/cronjobs/cleanup_database.pl -v --restrictions 30"
    => no restriction is removed
    - run "misc/cronjobs/cleanup_database.pl -v --restrictions 9"
    => restriction expired since 10 days is removed
    - run "misc/cronjobs/cleanup_database.pl -v --all-restrictions"
    => restriction expired since 1 day is removed
    
    Signed-off-by: Larry Baerveldt <larry at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 7a94c50fa6b51e25586d3a02a72cb17987649e7a
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Thu Apr 9 16:52:29 2015 +0200

    Bug 13940 : (QA followup) Add test for ModOAISet
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 9be1d927bbe76671c419c5107eb3fe64300072df
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Thu Apr 9 16:22:48 2015 +0200

    Bug 13940 : (QA followup) Add tests for the 2 warnings which was not tested
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 975b055c08f7e0a6b2b00b0de04d899b8b318743
Author: Julian FIOL <julian.fiol at biblibre.com>
Date:   Fri Mar 27 14:44:01 2015 +0100

    Bug 13940 : Testing C4::OAI::Sets
    
    Testing C4::OAI::Sets in t/db_dependent/OAI/Sets.t
    Adding &DelOAISetsBiblio in @EXPORT at the beginning
    of OAI/Sets.pm, it was the only one missing
    
    TEST PLAN
    ---------
    
    1. Apply patch
    2. prove -v t/db_dependent/OAI/Sets.t
    -- All 145 tests should run successfully without any error or warning
    3. Run koha qa test tools
       -- No issues found.
    
    Additionally, I comfirmed why DelOAISetsBiblio was added in
    the list of exported functions.
    
    $ grep "^sub " C4/OAI/Sets.pm | sort > check1
    $ for i in `grep "\&[A-Z]" C4/OAI/Sets.pm | xargs `; do echo $i; done | sort > check2
    
    Of course the outputs have a little extra around them, so
    $ vi check1
    $ vi check2
    $ diff check1 check2
    
    Lo and behold, it was that one function. Necessary for 100% coverage.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/OAI/Sets.pm                                     |    2 +-
 .../prog/en/modules/members/members-update.tt      |    3 +-
 .../prog/en/modules/patroncards/print.tt           |    2 +-
 .../opac-tmpl/bootstrap/en/modules/opac-user.tt    |    8 +-
 misc/cronjobs/cleanup_database.pl                  |   25 +-
 opac/opac-user.pl                                  |    1 +
 patroncards/create-pdf.pl                          |    4 +-
 t/db_dependent/OAI/Sets.t                          |  635 ++++++++++++++++++++
 8 files changed, 669 insertions(+), 11 deletions(-)
 create mode 100644 t/db_dependent/OAI/Sets.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list