[koha-commits] main Koha release repository branch master updated. v3.12.00-beta1-1074-g8363e54

Git repo owner gitmaster at git.koha-community.org
Sun Sep 8 08:52:10 CEST 2013


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  8363e5440ed2cf0f6976ce1e8a965272089ec887 (commit)
       via  7bc1077763ef0ff84fe658deec59a9c1a961155a (commit)
       via  0a304e52e7861c1bf15f3f7eeed0f2548768d920 (commit)
       via  1c19e6b1b6d4f5ea1f4d982f96d76305a5cd127d (commit)
       via  7b71c6588587784665c724da99a9add1b54464bb (commit)
       via  0f219a31be615faba830ee69d7328ad8c01642b3 (commit)
       via  2d0bdc80fda5344cd3ef6613d26676267a82142a (commit)
      from  794f0f28c931ae885232c23d02f94bfed66158f5 (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 8363e5440ed2cf0f6976ce1e8a965272089ec887
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Sun Sep 8 06:58:49 2013 +0000

    Bug 10320: (follow-up) handle OverDrive authentication failure more gracefully
    
    When calling the overdrive_proxy service, if for some reason the
    credentials are not accepted by OverDrive, return HTTP status 400
    (as intended) rather than an internal server error.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 7bc1077763ef0ff84fe658deec59a9c1a961155a
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Sun Sep 8 06:49:19 2013 +0000

    Bug 10320: DBrev 3.13.00.017
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 0a304e52e7861c1bf15f3f7eeed0f2548768d920
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Sun Sep 8 06:47:18 2013 +0000

    Bug 10320: (follow-up) tidy up new system preferences
    
    - added to sysprefs.sql
    - fixed typo in updatedatabase.pl
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 1c19e6b1b6d4f5ea1f4d982f96d76305a5cd127d
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Sun Sep 8 06:42:10 2013 +0000

    Bug 10320: (follow-up) correct license statement
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 7b71c6588587784665c724da99a9add1b54464bb
Author: Jesse Weaver <pianohacker at gmail.com>
Date:   Tue Jul 30 10:49:57 2013 -0600

    Bug 10320: (follow-up) Fix copyright and style errors
    
    This patch fixes a copypasta'd copyright statement, and some incorrect
    POD and indentation.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 0f219a31be615faba830ee69d7328ad8c01642b3
Author: Jesse Weaver <pianohacker at gmail.com>
Date:   Thu Jul 18 09:48:19 2013 -0600

    Followup for bug 10320: minor bugfixes and style improvements
    
    Switch to the new method of showing star ratings. Also, fix some
    translation bugs, an error that occurred when caching was disabled and
    add a stub unit test.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

commit 2d0bdc80fda5344cd3ef6613d26676267a82142a
Author: Jesse Weaver <pianohacker at gmail.com>
Date:   Thu May 16 17:11:15 2013 -0600

    Bug 10320 - Integrate OverDrive search into OPAC
    
    Show any relevant results from the OverDrive ebook/audiobook service
    on the OPAC search. This is done by showing a link with "Found xx
    results in the library's OverDrive collection" at the top of search
    results and linking to a page that shows the full results.
    
    This requires an OverDrive developer account, and is enabled by
    setting the OverDriveClientKey and OverDriveClientSecret
    system preferences.  In addition, this patch adds the
    OverDriveLibraryID system preference.
    
    Signed-off-by: Srdjan <srdjan at catalyst.net.nz>
    Signed-off-by: Henry Bankhead <hbankhead at losgatosca.gov>
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 C4/External/OverDrive.pm                           |  143 ++++++++++++++++
 installer/data/mysql/sysprefs.sql                  |    3 +
 installer/data/mysql/updatedatabase.pl             |   15 ++
 .../admin/preferences/enhanced_content.pref        |   11 ++
 koha-tmpl/opac-tmpl/ccsr/en/css/opac.css           |   17 ++-
 koha-tmpl/opac-tmpl/ccsr/en/js/overdrive.js        |   61 +++++++
 koha-tmpl/opac-tmpl/prog/en/css/opac.css           |   15 ++
 koha-tmpl/opac-tmpl/prog/en/js/overdrive.js        |   61 +++++++
 .../prog/en/modules/opac-overdrive-search.tt       |  171 ++++++++++++++++++++
 .../opac-tmpl/prog/en/modules/opac-results.tt      |   28 +++-
 kohaversion.pl                                     |    2 +-
 opac/opac-overdrive-search.pl                      |   45 +++++
 opac/opac-search.pl                                |    6 +
 opac/svc/overdrive_proxy                           |   82 ++++++++++
 t/{Bookseller.t => External_Overdrive.t}           |    5 +-
 15 files changed, 658 insertions(+), 7 deletions(-)
 create mode 100644 C4/External/OverDrive.pm
 create mode 100644 koha-tmpl/opac-tmpl/ccsr/en/js/overdrive.js
 create mode 100644 koha-tmpl/opac-tmpl/prog/en/js/overdrive.js
 create mode 100644 koha-tmpl/opac-tmpl/prog/en/modules/opac-overdrive-search.tt
 create mode 100755 opac/opac-overdrive-search.pl
 create mode 100755 opac/svc/overdrive_proxy
 copy t/{Bookseller.t => External_Overdrive.t} (58%)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list