[koha-commits] main Koha release repository branch master updated. v3.14.00-653-gaa722ab

Git repo owner gitmaster at git.koha-community.org
Mon Apr 7 17:22:15 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  aa722ab694e1fc3141cda47f00f9b553e152265a (commit)
       via  5935654bacddfaba2b8019817d857f0f092cd20d (commit)
       via  b5ae30cd6376ded9c7e63f0e3fcc34d043640e0e (commit)
       via  3fc5aeb7456fbda97b6fbc0fb66ddbc3aa253439 (commit)
      from  15b4f9bbe990224067aea8ac9ddfd02d524c84ad (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 aa722ab694e1fc3141cda47f00f9b553e152265a
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Jan 15 14:51:11 2014 -0500

    Bug 11570 - Upgrade jQueryUI to latest version in the staff client
    
    This patch upgrades the version of jQueryUI included in the Koha staff
    client from v1.8.23 to v.1.10.4. The upgrade introduces a few minor API
    changes which require the updates in this patch:
    
    - In CSS, the term "active" is used instead of "selected"
    - Autocomplete functions use slightly changed parameters
    
    Changes to the default jQueryUI CSS allows us to remove some instances
    of "!important" from jQueryUI-related CSS in the staff client's main CSS
    file.
    
    To test:
    
    Testing changes to autocomplete:
    
    - Enable the CircAutocompl system preference. Try searching in the
      header's "Check out" tab. Autocomplete should look correct and
      function correctly.
    
    - In Circulation -> Overdues: The patron attribute authorized value
      filter (must have patron attributes enabled, and a patron attribute
      defined which uses authorized values.
    
    - Course reserves -> Course -> Edit: Searching for an instructor
    
    - In the unimarc_field_210c_bis.pl plugin:
      1. Link the publisher name field in your MARC structure to
         the unimarc_field_210c_bis.pl plugin.
      2. Open a MARC record for editing and click the "tag editor" link to
         launch the plugin.
      3. Type the first few letters of a publisher which exists in your
         database. You should get an autocomplete menu of publishers
         which match your search.
      4. Select one and click the "choose" button to fill the field in the
         MARC editor.
    
    - Tools -> Patron lists: Add a list or choose an existing list and add
      patrons. Perform a search for a patron.
    
    - Placing a hold: After choose a title and clicking "Place hold,"
      search for a patron.
    
    - Tags management: The sidebar filter for "reviewer" should let you
      search by patron name.
    
    Other jQueryUI widget changes:
    
    - Check tabs appearance in header search, biblio detail, cataloging, and
      circulation patron fines pages.
    
    To confirm other jQueryUI widgets still function correctly:
    
    - Check accordion (collapsing sections) in Patrons -> Patrons requesting
      modifications and the MARC subfield structure edit screen.
    
    - Check datepickers, especially in Circulation with the added timepicker.
      Test a linked datepicker, for example in Reports -> Stats wizards ->
      Circulation where the value in one date field affects what dates are
      available in the matching field.
    
    - Check the calendar interface in Tools -> Calendar
    
    To confirm that the new jQueryUI default CSS is more flexible (fixing
    Bug 11042), add the following CSS to your IntranetUserCSS system
    preference and confirm that the header search active tab border color
    changes (hash mark escaped so that it will appear in commit msg):
    
    \#header_search ul.ui-tabs-nav li.ui-tabs-active {
      background-color: #FFFFF1;
      border: 1px solid #800000;
      border-top: 0 !important;
      top: -2px;
    }
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 5935654bacddfaba2b8019817d857f0f092cd20d
Author: Matthias Meusburger <matthias.meusburger at biblibre.com>
Date:   Wed Feb 26 16:59:14 2014 +0100

    Bug 11850: Add -append option to bulkmarcimport.pl to append to logfile
    
    Signed-off-by: Magnus Enger <digitalutvikling at gmail.com>
    Keeps current behaviour as default.
    The -append option is described in the POD and works as expected.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Works as described.
    Adding a date/time to the output might
    be good, to make it easier to find the entry you were looking for.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit b5ae30cd6376ded9c7e63f0e3fcc34d043640e0e
Author: Pasi Kallinen <pasi.kallinen at pttk.fi>
Date:   Wed Apr 2 14:30:03 2014 +0300

    Bug 12024: fix add to list opening the list adding UI in two windows
    
    In Item details, when using the menu toolbar for Add To > List,
    the list adding UI opens in a popup window, and also in the original
    window. The original window should stay showing the item details page.
    
    This patch corrects this behavior, which has been observed in Chromium
    on Ubuntu and Chrome on Windows.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Works fixing problem. No koha-qa errors.
    
    Test:
    1. On staff, go to detail of some biblio,
    click add to List, described behavior
    
    2. With patch applied, original windows stay on item detail
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Patch passes all tests and QA script, works as described.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 3fc5aeb7456fbda97b6fbc0fb66ddbc3aa253439
Author: Liz Rea <liz at catalyst.net.nz>
Date:   Thu Apr 3 16:25:35 2014 +1300

    Bug 12032: disable automatic URL conversion by TinyMCE in news
    
    To test:
    
    * create a news item with a link in it that is within the same domain
    
    example: my koha was at http://demo.mykoha.co.nz, I created a link in a
    news item to http://demo-intra.mykoha.co.nz
    
    * note that when the item is saved, the url changes to ../../../../ (or
    something like)
    
    * apply the patch
    
    * edit the link again, and save it
    
    * note that the link is saved correctly
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passes all tests and QA script.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 .../jquery/images/ui-bg_flat_0_aaaaaa_40x100.png   |  Bin 180 -> 212 bytes
 .../jquery/images/ui-bg_flat_75_ffffff_40x100.png  |  Bin 178 -> 208 bytes
 .../jquery/images/ui-bg_glass_55_fbf9ee_1x400.png  |  Bin 120 -> 335 bytes
 .../jquery/images/ui-bg_glass_65_ffffff_1x400.png  |  Bin 105 -> 207 bytes
 .../jquery/images/ui-bg_glass_75_dadada_1x400.png  |  Bin 111 -> 262 bytes
 .../jquery/images/ui-bg_glass_75_e6e6e6_1x400.png  |  Bin 110 -> 262 bytes
 .../jquery/images/ui-bg_glass_95_fef1ec_1x400.png  |  Bin 119 -> 332 bytes
 .../ui-bg_highlight-soft_75_cccccc_1x100.png       |  Bin 101 -> 280 bytes
 .../lib/jquery/images/ui-icons_222222_256x240.png  |  Bin 4369 -> 6922 bytes
 .../lib/jquery/images/ui-icons_2e83ff_256x240.png  |  Bin 4369 -> 4549 bytes
 .../lib/jquery/images/ui-icons_454545_256x240.png  |  Bin 4369 -> 6992 bytes
 .../lib/jquery/images/ui-icons_888888_256x240.png  |  Bin 4369 -> 6999 bytes
 .../lib/jquery/images/ui-icons_cd0a0a_256x240.png  |  Bin 4369 -> 4549 bytes
 koha-tmpl/intranet-tmpl/lib/jquery/jquery-ui.css   |  539 +-------------------
 koha-tmpl/intranet-tmpl/lib/jquery/jquery-ui.js    |   76 +--
 .../intranet-tmpl/prog/en/css/staff-global.css     |   27 +-
 .../intranet-tmpl/prog/en/includes/cat-toolbar.inc |    4 +-
 .../prog/en/includes/patron-search-box.inc         |    4 +-
 koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js |    2 +-
 .../value_builder/unimarc_field_210c_bis.tt        |    4 +-
 .../intranet-tmpl/prog/en/modules/circ/overdue.tt  |    4 +-
 .../prog/en/modules/course_reserves/course.tt      |    4 +-
 .../prog/en/modules/patron_lists/list.tt           |    4 +-
 .../prog/en/modules/reserve/request.tt             |    4 +-
 .../intranet-tmpl/prog/en/modules/tags/review.tt   |    4 +-
 .../prog/en/modules/tools/koha-news.tt             |    2 +
 misc/migration_tools/bulkmarcimport.pl             |   10 +-
 27 files changed, 56 insertions(+), 632 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list