[koha-commits] main Koha release repository branch master updated. v3.16.00-521-g19f2f0e

Git repo owner gitmaster at git.koha-community.org
Mon Sep 1 16:06:51 CEST 2014


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  19f2f0e7764675d52e31e81684c7939938f5a6f1 (commit)
       via  31847c7bd5a4d6fd77bf6c15e08764a44658a05e (commit)
       via  7a325b55d16fa9e2a5e8b725d5eb00844d674451 (commit)
       via  b96a209ff70d2e74ac230f0f0acec22c74d5b9d6 (commit)
       via  16636c34d25054fd8d8f9dfbfcdfc6fe6fe7020b (commit)
       via  ecab8f3dd225080e6339c267d886ddc7eb9143d2 (commit)
      from  738f1001af6239a8893c3050ca21ea99854805b8 (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 19f2f0e7764675d52e31e81684c7939938f5a6f1
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Fri Jun 6 16:36:46 2014 +0200

    Bug 12309: Adapt zipcode wording to match the other patron pages
    
    Replace "Zip code" with "Zip/Postal code" which is used in
    members/memberentry.pl and members/moremember.pl.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 31847c7bd5a4d6fd77bf6c15e08764a44658a05e
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu May 22 09:23:45 2014 -0400

    Bug 12309 - Add more fields to batch patron modification tool
    
    It would be helpful to be able to use the batch patron modification tool
    to update city, state, zipcode, and country. This patch adds this
    functionality.
    
    This patch corrects an error in the batch modification script which
    would have incorrectly marked first name as required if surname was
    required.
    
    This patch also converts the table sorting configuration to use table
    header class names instead of index-based sorting for columns containing
    dates.
    
    To test, apply the patch and submit a batch of patrons to the batch
    patron modification tool (Tools -> Batch patron modification).
    
    In the list of patrons which will be modified you should see columns for
    city, state, zipcode, and country. Table sorting should work correctly
    without errors, including the registration and expiry date columns.
    
    In the list of fields which can be batch modified you should see inputs
    for city, state zipcode, and country. These fields should correctly
    reflect mandatory/not mandatory based on the BorrowerMandatoryField
    system preference.
    
    Submit batch changes to a variety of fields and confirm that changes are
    applied correctly. On the page of results the table should correctly
    show all fields and be sorted correctly.
    
    Signed-off-by: cachan <pierre.lorgue at ens-cachan.fr>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 7a325b55d16fa9e2a5e8b725d5eb00844d674451
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Wed Apr 9 22:30:35 2014 -0300

    Bug 12061 - tmpl_process3.pl - Include/exclude file by name
    
    This patch adds options to include/exclude files by matching their names.
    Also modifies current code to check only filenames (not dirs)
    Checking is case insensitive !!
    
    NOTE: The difference between -f and -m is subtle, but important.
    They differs mainly on update,: -f do a merge, -m a replace
    
    To test after patch:
    
    A) Include only 'normarc'
    1. create
    cd misc/translator
    perl tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/bootstrap/en -s normarc.po -r -m normarc
    - check provenance of strings
    egrep "^#:" normarc.po | cut -d":" -f2 | sort | uniq
    - only files with normarc in their names must be present
    
    2. update
    perl tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/bootstrap/en -s normarc.po -r -m normarc
    - repeat check
    
    3. install
    mkdir test
    perl tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/bootstrap/en -o ./test -s normarc.po -r -m normarc
    - check name of created files
    
    rm -rf test normarc.po
    
    B) Exclude
    4. create
    perl tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/bootstrap/en -s xnormarc.po -r -n normarc
    - check provenance
    egrep "^#:" xnormarc.po | cut -d":" -f2 | sort | uniq | grep -i normarc
    - there must be no results
    
    5. update
    perl tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/bootstrap/en -s xnormarc.po -r -n normarc
    - check provenance
    
    6. install
    mkdir test
    perl tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/bootstrap/en -o ./test -s xnormarc.po -r -n normarc
    - check files
    find test | grep -i normarc
    - there must be no results
    
    You can also try another combination, use for example "-m patron -m user -m bottom" (or use -n)
    or mixed "-m marc -n normarc", do create/install and look filenames
    
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit b96a209ff70d2e74ac230f0f0acec22c74d5b9d6
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Sun Apr 6 21:39:08 2014 -0300

    Bug 12061 - tmpl_process3.pl - Multiple source dir
    
    This patch adds the option to use multiple source
    dirs for tmpl_process3.pl on create/update actions.
    
    To test after patch:
    A) Old
    1. install
    cd misc/translator
    perl tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/bootstrap/en -s bootstrap.po -r
    
    2. update
    perl tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/bootstrap -s bootstrap.po -r
    
    3. install
    mkdir test
    perl tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/bootstrap -s bootstrap.po -r -o ./test -q
    - check same number of files
    ls -lR ../../koha-tmpl/opac-tmpl/bootstrap | wc -l
    ls -lR ./test | wc -l
    
    rm -f bootstrap.po
    
    B) New
    4. create from multiple sources
    perl tmpl_process3.pl create -i ../../koha-tmpl/opac-tmpl/prog/en -i ../../koha-tmpl/opac-tmpl/bootstrap/en -i ../../koha-tmpl/opac-tmpl/ccsr/en -s opac.po -r
    
    5. update from multiple source
    perl tmpl_process3.pl update -i ../../koha-tmpl/opac-tmpl/prog/en -i ../../koha-tmpl/opac-tmpl/bootstrap/en -i ../../koha-tmpl/opac-tmpl/ccsr/en -s opac.po -r
    
    6. install (must give an error)
    perl tmpl_process3.pl install -i ../../koha-tmpl/opac-tmpl/prog/en -i ../../koha-tmpl/opac-tmpl/bootstrap -s opac.po -r -o ./test
    
    7. updated help
    perl tmpl_process3.pl --help
    
    Any other functionality must not be affected
    
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 16636c34d25054fd8d8f9dfbfcdfc6fe6fe7020b
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Sun Apr 6 19:21:47 2014 -0300

    Bug 12061 - tmpl_process3.pl - Remove obsoleted strings/backups
    
    This patch modifies the update process for PO files,
    removing obsoleted strings. Currently they are removed
    manually as part of the standar procedure of strings update.
    Also backup files (*~) need to be removed manually.
    
    To test:
    1. Update translation files for any language, ej. fi-FI
    (cd misc/translation; perl translate update fi-FI)
    
    2. Check existence of obsoleted strings
    egrep "#~ msg" misc/translator/po/fi-FI-*
    
    3. Check existence of backup files
    ls misc/translator/po/fi-FI-*~
    
    4. Reset to HEAD and clean
    
    5. Apply the patch
    
    6. Update again, check there are no more obsoleted
    strings nor backup files
    
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit ecab8f3dd225080e6339c267d886ddc7eb9143d2
Author: Liz Rea <liz at catalyst.net.nz>
Date:   Thu Aug 28 10:28:33 2014 +1200

    Bug 12837 - barcode entry box out of alignment
    
    To test:
    
    Load up a circulation page, note that the middle of the barcode field doesn't line up with the Check-out button.
    note that the date-select tickbox is also not aligned with the rest of the things on it's line
    
    Apply the patch
    
    Reload the page, verify that things are now in alignment.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 .../intranet-tmpl/prog/en/css/staff-global.css     |    4 +-
 .../prog/en/modules/tools/modborrowers.tt          |   28 ++++++--
 misc/translator/tmpl_process3.pl                   |   76 +++++++++++++-------
 tools/modborrowers.pl                              |   31 +++++++-
 4 files changed, 102 insertions(+), 37 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list