[koha-commits] main Koha release repository branch 3.20.x updated. v3.20.01-30-g8dd172c

Git repo owner gitmaster at git.koha-community.org
Wed Jul 8 23:15:31 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, 3.20.x has been updated
       via  8dd172cde0bc9da6f1267250f829e7eb10601d68 (commit)
       via  487dd985eb86c5555c941c23e82049794aa2ee33 (commit)
       via  5a7c1634c6fcdd1b6568e87145868f7e9ebf2611 (commit)
       via  a36eeb458c8bb0944cb53fb12d6a59348f29b38f (commit)
       via  2413ae8bd9d38791769c861cc455c8f26e6e7708 (commit)
       via  31b3f8d1be3c3d130d68fb1e427b1ad5f2280ef7 (commit)
       via  d8530b61042ce4cef0d54fa4f3b751a3b4de4eb9 (commit)
      from  fe6ee44cab4c5513b9097cee4e6e13f6c4d09a91 (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 8dd172cde0bc9da6f1267250f829e7eb10601d68
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Mon Jun 8 05:29:16 2015 +0200

    Bug 13874: 'Rotating collections' are a circulation tool
    
    Moves the entry for 'Rotating collections' from the Catalog
    column to the 'Patrons and circulation' column.
    
    To test:
    - Verify the entry has been moved on the tools home page
    
    NOTE: I agree that collections makes more sense under the new
          column.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at unc.edu.ar>
    (cherry picked from commit da8ec2d37a43c87ad5b087511dd8e4ce082f022f)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 487dd985eb86c5555c941c23e82049794aa2ee33
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Wed Apr 15 12:33:29 2015 -0400

    Bug 14001: Inventory has bad $_ references
    
    After receiving an error while attempt a simple inventory run,
    Two lines were changed from:
        ...$_->...
    to
        ...$item->...
    since the loop variable is $item. And $_ is not set to the
    expected hash reference, when there is a loop variable.
    
    This also helps explain the "Why are there blank dates on my
    last seen field?" problem that has been mentioned by users.
    
    TEST PLAN
    ---------
     1) Apply this patch after a reset to master.
     2) Log in to staff client
     3) Add one item via z39.50, setting barcode to a known value (BARCODE1)
     4) Wait for the reindex
     5) Home -> Tools -> Inventory/Stocktaking
     6) Browse for a file with the barcode in it
     7) Set the library dropdown to the library branch of the added item.
     8) Check 'Compare barcodes list to results:'
     9) Click 'Submit'
        -- This should not die under plack.
           This should not generate blank last seen dates.
           The last seen dates should be as expected.
    10) run koha qa test tools
    11) Confirm the two change point correspond to the two change points
        in the patch which shall not be pushed to master.
    
    The test result comply with expected outcome outlined in test plan.
    
    Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg at gmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at unc.edu.ar>
    (cherry picked from commit 3ebc081962247ce0c598da810451c459909842bc)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 5a7c1634c6fcdd1b6568e87145868f7e9ebf2611
Author: Katrin Fischer <katrin.fischer at bsz-bw.de>
Date:   Wed Jun 17 12:28:39 2015 +0200

    Bug 14401: Zebra index configuration doesn't allow exact search for C.
    
    2 lines in the Zebra configuration files prevent an exact search for C.,
    while all other [A-Z]. searches work correctly.
    
    After taking a look at the  /etc/zebradb/etc/word-phrase-utf.chr
    those 2 lines cause the problem:
    
    map (^c\.)          @
    map (^C\.)          @
    
    I propose to remove them.
    
    To test:
    - Catalog a record with an item with callnumber: C.
    - Catalog a record with an item with callnumber: B.
    - Try seaching for the second using callnum,ext:B. (exact field search)
      - Verify search works.
    - Try searching for the other with callnum,ext:C.
      - Verify no result.
    - Apply the patch - copy the zebra config file if necessary into the right spot
    - Reindex
    - Repeat searches - both should not bring up the correct record.
    
    Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg at gmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at unc.edu.ar>
    (cherry picked from commit f86743d893b61a4609d2f02a175db9944710067e)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit a36eeb458c8bb0944cb53fb12d6a59348f29b38f
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed May 27 12:25:34 2015 +1200

    Bug 14394: fix documentation of OpacHiddenItems
    
    The current documentation of OpacHiddenItems told people to go and read
    a file on the server, which most people don't have access to. This
    replaces it with a link to the wiki.
    
    http://bugs.koha-community.org/show_bug.cgi?id=14394
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    
    It doesn't apply for some reason. Fixed
    Added target attribute to open in new window/tab,
    hope you don't mind.
    
    Updated documentation
    No errors
    
    Belongs to Aleisha or Robin?
    Update assignee please :)
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at unc.edu.ar>
    (cherry picked from commit 865321f3726c3b6065ef72107017c4171630d140)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 2413ae8bd9d38791769c861cc455c8f26e6e7708
Author: Mark Tompsett <mtompset at hotmail.com>
Date:   Fri Jun 19 09:00:33 2015 -0400

    Bug 14422: Typo in updatedatabase.pl
    
    TEST PLAN
    ---------
     1) backup db
     2) git checkout -b my_3.6.x origin/3.6.x
     3) drop db and create blank one
     4) git reset --hard origin/3.6.x
     5) run web installer
     6) set HomeorHoldingBranchReturn system preference to 'holdingbranch'.
     7) create a Default checkout, hold rule
        home -> koha administration -> Circulation and fines rules
        -- I put 10 checkouts total and clicked 'Save'
        -- there currently is not 'returnbranch' in default_circ_rules.
     8) git reset --hard origin/3.20.x
        -- or whatever version you apply this to
           (3.8.x, 3.10.x, 3.14.x, 3.16.x, 3.18.x, or 3.20.x
            -- 3.21.00.008 deletes the systempreference involved)
     9) ./installer/data/mysql/updatedatabase.pl
    10) check HomeorHoldingBranchReturn systempreference
        -- Currently says 'holdingbranch', but
           the value of 'returnbranch' in default_circ_rules is
           'homebranch'.
    11) repeat steps 3-8
    12) apply this patch
    13) repeat steps 9-10
        -- Currently says 'holdingbranch', and
           the value of 'returnbranch' in default_circ_rules is
           'holdingbranch'.
    14) run koha qa test tools
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Tested using 3.6.x install, updated to 3.8.x
    Value is preserved
    No errors
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Note: I haven't followed the test plan, but the fix is trivial.
    Maybe it could worth to upate 3.21.00.008 and check the value of
    HomeOrHoldingBranchReturn before deleting it.
    We could raise a warning if HomeOrHoldingBranchReturn ==
    'holdingbranch'.
    Signed-off-by: Tomas Cohen Arazi <tomascohen at unc.edu.ar>
    
    (cherry picked from commit 8c91ca7903846da0cf7a73914a0b78484c0429df)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 31b3f8d1be3c3d130d68fb1e427b1ad5f2280ef7
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Mon Jun 8 02:15:03 2015 +0200

    Bug 4925: Remove Smithsonian as a delivered z39.50 target
    
    Removes the Smithsonian as a target installed with the
    sample data during installation.
    
    Also adds the newer LOC authority targets to files where
    they were missing.
    
    To test:
    - Verify the Smithsonian has been removed from all
      translated installers
    - Verify the files are still valid SQL and install
      correctly
    
    NOTE: There was tiny scope creep which included ensuring
          there were two Authority z39.50 servers as well.
          Text files properly reflect the removal.
          SQL 'source' of SQL files worked properly.
          Was able to Z39.50 search for all of the 'en'.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at unc.edu.ar>
    (cherry picked from commit 0ca21c1e488f150cca74beb9a67b285e5531f3b5)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit d8530b61042ce4cef0d54fa4f3b751a3b4de4eb9
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Apr 15 12:39:05 2015 +0200

    Bug 10172: Hide some uneeded stuffs on printing a record
    
    When printing a record from the OPAC or the staff interface, some
    uneeded blocks are displayed.
    
    OPAC:
    1/ Browse results
    2/ The view tags (Normal, MARC, ISBD)
    
    Intranet:
    1/ Marc view link
    2/ The Please upload one image link
    
    Test plan:
    On a record detail page (staff and OPAC), print the page and confirm
    these blocks no longer appear.
    
    Signed-off-by: Nick Clemens <nick at quecheelibrary.org>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at unc.edu.ar>
    (cherry picked from commit 68f0fe7b6f152a6db100525724c1ece507258652)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

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

Summary of changes:
 etc/zebradb/etc/word-phrase-utf.chr                         |    2 --
 .../data/mysql/de-DE/optional/sample_z3950_servers.sql      |    3 +--
 .../data/mysql/de-DE/optional/sample_z3950_servers.txt      |    3 ++-
 installer/data/mysql/en/optional/sample_z3950_servers.sql   |    3 +--
 installer/data/mysql/en/optional/sample_z3950_servers.txt   |    1 -
 .../data/mysql/es-ES/optional/sample_z3950_servers.sql      |   11 ++++++-----
 .../data/mysql/es-ES/optional/sample_z3950_servers.txt      |    3 ++-
 .../data/mysql/pl-PL/optional/sample_z3950_servers.sql      |    3 +--
 .../data/mysql/pl-PL/optional/sample_z3950_servers.txt      |    1 -
 installer/data/mysql/updatedatabase.pl                      |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/css/print.css               |    6 ++++++
 .../prog/en/modules/admin/preferences/opac.pref             |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt |    9 ++++-----
 koha-tmpl/opac-tmpl/bootstrap/css/print.css                 |    2 +-
 koha-tmpl/opac-tmpl/bootstrap/less/print.less               |    5 +++++
 tools/inventory.pl                                          |    4 ++--
 17 files changed, 34 insertions(+), 28 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list