[koha-commits] main Koha release repository branch master updated. v3.16.00-469-g68bcac1

Git repo owner gitmaster at git.koha-community.org
Sun Aug 24 18:25:22 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  68bcac15d8eb43fd1c1529dc86f834431a8c77ce (commit)
       via  a6c278f8e0b214ec31428394c1e0cdc4b58cdfc0 (commit)
       via  11446fcb0ed74f58bfcdaa971666dad62bf16304 (commit)
       via  d1be7a1506df1ab51a4a0d0d1fb8d500ec11df48 (commit)
       via  07ae4a2fb5f14a12cc8764b4b95fe59d8605d7a1 (commit)
       via  44b3ad5e35e38a1f20a9080221d115d9cf256578 (commit)
       via  81e34a5495c2b26ed7f1ff9f012a339c249d2cc1 (commit)
       via  cbd66ee8477d6f900547cde097530a262d72d56a (commit)
       via  d7c2faa795af0604bf0830534f1a37a2676e1d7b (commit)
       via  95adc7a1f476cb28c435249e695a21b5276acf90 (commit)
       via  ca0b0279fdad6f362ade79f3caf6fdd0df9dc97e (commit)
      from  6d1b50682c49a2475e7594c399cb18451c017746 (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 68bcac15d8eb43fd1c1529dc86f834431a8c77ce
Author: Marc Véron <veron at veron.ch>
Date:   Tue Jul 29 15:27:08 2014 +0200

    Bug 12744 - Set language in staff client should have 'Cancel' link
    
    Test plan
    
    Without patch:
    Click on Library name in head of any staff client page anc choose 'Set library'
    Result: Form 'Set library' with no 'Cancel' near 'Submit' button
    
    With patch:
    Form displays 'Cancel' link.
    This link closes the form and takes you back to the page where you came from.
    
    New patch without empty "onclick" attribute.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Nice patch, no problems found.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit a6c278f8e0b214ec31428394c1e0cdc4b58cdfc0
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Sun Aug 24 13:09:33 2014 -0300

    Bug 12720: (QA followup) use API instead of plain SQL
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 11446fcb0ed74f58bfcdaa971666dad62bf16304
Author: David Cook <dcook at prosentient.com.au>
Date:   Wed Aug 6 15:25:17 2014 +1000

    Bug 12720 - Turn off Authority logging when running "bulkmarcimport.pl"
    
    This patch turns off the AuthoritiesLogging syspref when running the
    bulkmarcimport.pl script.
    
    It also temporarily disables the syspref caching which will have
    been making the CataloguingLogging handling ineffectual. (That is,
    updating the CataloguingLogging syspref in the script wouldn't
    have an effect as the original cached value would be used anyway.)
    
    _TEST PLAN_
    
    0) Turn on "AuthoritiesLogging" syspref
    1) Load an authority record using bulkmarcimport.pl
    2) Note a new Authorities entry in action_logs
    
    3) Apply the patch
    
    4) Repeat Step 1
    5) Note that no new entry is made in action_logs
    
    (Bonus points: Do the same thing with CataloguingLogging and a
    bibliographic record.)
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Tested with biblio and auth imports.
    Work as described, no koha-qa errors.
    
    Note: If you begin to load a big file and get impatient and hit ^C,
    seems that current syspref value is lost...
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passes tests and QA script.
    Patch copies what was already done for the CatalougingLog, no problems found.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit d1be7a1506df1ab51a4a0d0d1fb8d500ec11df48
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Thu Aug 21 15:08:15 2014 -0300

    Bug 12800: running unit tests that use Koha::Cache breaks cache usage from Apache
    
    If the user runs:
    
     $ prove t/Cache.t
    
    with it's system user, two situations can happen:
    
    1) If MEMCACHED_NAMESPACE is set on koha-httpd.xml other than the default 'koha', then
     Apache sets /tmp/sharefile-koha-<namespace> and the problem is not present: running
     the test creates /tmp/sharefile-koha-koha != /tmp/sharefile-koha-<namespace>
    => SUCCESS: no problem
    
    2) If MEMCACHED_NAMESPACE is not set (or eq 'koha'), then there is a permission problem
    either running the unit tests, or when using any funcitonality on the UI that needs
    Koha::Cache.
    Explanation: the one that is run first will set the /tmp/sharefile-koha-koha ownership
    so it will be either the dev's sys user, or www-data (or whatever apache is using).
    
    This patch sets a namespace for the unit tests, so there is no collision.
    
    To test:
    - On your dev setup, having MEMCACHED_NAMESPACE unset on koha-httpd.conf
    - Edit a marc framework. If it fails, remove /tmp/sharefile-koha-koha, and try again
      -> fixed. Now try running
      $ prove t/Cache.t
    => FAIL: test fails because of permission problem
    - Apply the patch
    - Re-run the test
    => SUCCESS: test passes
    Try changing the order, etc.
    
    The temporary file that is used is deleted after the tests are run.
    
    Sponsored-by: Universidad Nacional de Cordoba
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 07ae4a2fb5f14a12cc8764b4b95fe59d8605d7a1
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Fri Aug 22 15:28:16 2014 -0300

    Bug 7143: update the es-ES translation attribution as of 3.12 onwards
    
    The currently maintained stable releases translations are/were done by
    the following individuals and it should be acknowledged in the about page.
    
    This patch also removes the venezuelian spanish translation, that was removed
    long time ago.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>

commit 44b3ad5e35e38a1f20a9080221d115d9cf256578
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Fri Aug 22 15:07:40 2014 -0300

    Bug 7143: Universidad Nacional de Cordoba is an institution that contributed to Koha
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>

commit 81e34a5495c2b26ed7f1ff9f012a339c249d2cc1
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Fri Aug 22 15:04:03 2014 -0300

    Bug 7143: Ohloh is now Open HUB
    
    Ohloh.net links are used in the about page. Their FQDN has changed a while ago.
    Old one is still redirected, but we need to fix it just in case the redirection
    is removed.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>

commit cbd66ee8477d6f900547cde097530a262d72d56a
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Fri Aug 22 14:53:06 2014 -0300

    Bug 7143: Full 3.18 release team acknowledged
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    
    Missing the Module Maintainers?
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>

commit d7c2faa795af0604bf0830534f1a37a2676e1d7b
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Jul 31 11:28:44 2014 -0400

    Bug 12507 - News does not always display in staff or OPAC
    
    News will not display on the last day of each month due to the
    way the date is calculated in the SQL code for grabbing news.
    
    Test Plan:
    1) Create a news item that should display
    2) Change your server's date to the last day of the month
    3) Note you can no longer see that news item
    4) Apply this patch
    5) Note you can now see your news item again
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 95adc7a1f476cb28c435249e695a21b5276acf90
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Thu Jun 19 16:01:03 2014 +0200

    Bug 12453 - Do not use by default Host-Item-Number in UNIMARC
    
    Actually, in default UNIMARC install, 461$9 is indexed as Host-Item-Number, meaning it is used for analytical itemnumber.
    
    But most UNIMARC catalog use the analytical relation using unimarc_field_4XX.pl plugin on 461$a. In fact, this plugin is defined in default UNIMARC frameworks.
    
    If Host-Item-Number is defined but 461$9 is used for something else, it will lead to odd bugs. For example, records containing analytical items can not be deleted.
    
    This patch comments the 461$9 indexing in UNIMARC zebra config.
    
    Test plan :
    - Create a fresh UNIMARC install
    - Create a record with 461$9 containing a value
    - Index the record
    - Perform a search on Host-Item-Number : ccl=Host-Item-Number,alwaysmatches=''
    => Without the patch you get a result
    => With the patch you get no result
    
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Code is clean, commenting out all the indexing of 461$9.
    Trusting the author that this is the correct thing to do :)
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit ca0b0279fdad6f362ade79f3caf6fdd0df9dc97e
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Jun 22 19:31:50 2014 +0200

    Bug 12465: Improve display of MARC21 710 in intranet and OPAC
    
    Currently, 710$a and $b and $b will not display correctly.
    This patch tries to improve the display adding the missing
    space between both subfields.
    
    Please test.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Tested, work as described on staff & opac for 710 detailed view.
    Add space and punctuation.
    No errors.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/NewsChannels.pm                                 |    2 +-
 .../unimarc/biblios/biblio-koha-indexdefs.xml      |    2 +
 .../unimarc/biblios/biblio-zebra-indexdefs.xsl     |    7 --
 etc/zebradb/marc_defs/unimarc/biblios/record.abs   |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |  116 ++++++++++++--------
 .../prog/en/modules/circ/selectbranchprinter.tt    |    5 +-
 .../prog/en/xslt/MARC21slim2intranetDetail.xsl     |   28 ++---
 .../prog/en/xslt/MARC21slim2intranetResults.xsl    |   23 ++--
 .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl    |   28 ++---
 .../bootstrap/en/xslt/MARC21slim2OPACResults.xsl   |   23 ++--
 misc/migration_tools/bulkmarcimport.pl             |   22 +++-
 t/Cache.t                                          |   28 ++++-
 12 files changed, 161 insertions(+), 125 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list