[koha-commits] main Koha release repository branch 3.8.x updated. v3.08.07-9-g3d0b417

Git repo owner gitmaster at git.koha-community.org
Mon Nov 26 01:23:22 CET 2012


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.8.x has been updated
       via  3d0b417cb0bcbfd39f7f63ab19b7a4acbb013b41 (commit)
       via  bd60418f9d767987971ec5cd18be383294c8f64d (commit)
       via  1d69301468a50e6154e0c4de0ebc6cfbf0c3e4a2 (commit)
       via  4718ea1a3ff8ce51a1824a0d95288893b92abdbe (commit)
       via  9d945a07f08d90bb212388619d17649959c568b5 (commit)
       via  ed8ca32b32bf41ac8128980ae7fe221f68f065a4 (commit)
       via  febf0512b36cbbb23e31afd68163c285b29e0ddc (commit)
       via  ece7fa151ff07d2fe8f6102f8d9b20e70fc553f9 (commit)
       via  aaf3b8ce8570bcc8b0ab6114850ba9e5d754350a (commit)
      from  c151fac643fcae8d6cb239180e208e59f1c29c60 (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 3d0b417cb0bcbfd39f7f63ab19b7a4acbb013b41
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Wed Nov 21 12:54:46 2012 -0300

    Bug 9078 - fixing exceptions broke tests
    
    Fixing the holiday exceptions arised a problem with how the test data was constructed.
    This made several tests fail.
    
    This patch fixes the add_holiday function. Tests should pass now.
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passed-QA-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit bd60418f9d767987971ec5cd18be383294c8f64d
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Wed Nov 21 10:43:11 2012 -0300

    Bug 9078 - is_holiday should honour holiday exceptions
    
    Make is_holiday return 0 for holiday exceptions.
    
    Note: This patch makes several current ok tests fail. My first guess is test data is not
    constructed ok. More on this later.
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passed-QA-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 1d69301468a50e6154e0c4de0ebc6cfbf0c3e4a2
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Fri Sep 21 12:50:26 2012 -0300

    Bug 8800 - useDaysMode=Datedue wrong behaviour (revisited)
    
    useDaysMode=Datedue wasn't used as advertised in the docs. Added
    next_open_day and prev_open_day subs to Koha::Calendar and some tests for them.
    
    - Koha::Calendar->addDate was rewritten in a more sane way (also split into
      addHours and addDays for convenience).
    - Fixed a bug introduced in Bug 8966 regarding dt truncation and dtSets->contains
    - Minor docs typos
    - Use the passed Calendar mode or default to 'Calendar' in Koha::Calendar->_mockinit.
    - Tests
    
    I'm writing some db-dependent tests for is_holiday, and hopefully for CalcDateDue so any
    rewrite/followup doesn't break things.
    
    Regards
    To+
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Passed-QA-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Conflicts:
    	t/Calendar.t
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 4718ea1a3ff8ce51a1824a0d95288893b92abdbe
Author: Mathieu Saby <mathieu.saby at univ-rennes2.fr>
Date:   Fri Nov 9 00:49:49 2012 +0100

    Bug 8954: Make languages list in advanced search translatable (revision 1)
    
    In opac-search.pl and search.pl, this patch moves the $lang variable from the end to the begining of the script, and use it as a parameter for getAllLanguages.
    In Languages.pm, getAllLanguages function is modified :
    - if no parameter is passed to the function, it returns english languages names
    - if a $lang parameter conforming to RFC4646 syntax is passed :
    -- the function returns languages names translated in $lang if possible
    -- if a language name is not translated in $lang in database, the function returns english language name
    To test, set your opac and staff interface in english and in other languages and check search.pl and opac-search.pl :
    - If language names in your languages_description table are translated in the same language you use for your GUI, the language names in dropdown list will be translated in this language (+native name).
    - If your GUI is in english, or in a language into whitch languages names are not translated in languages_description, the dropdown list will stay in english (+native name).
    
    Signed-off-by: Marc Veron <veron at veron.ch>
    
    Patch behaves as expected.
    
    With Opac language set to French I got all languages with French language name.
    With German (de-DE), I got only a few with German language names (and all other with English ones),
    this was due to missing entries for de-DE in table language_descriptions.
    This behaviour is consistent with the description above.
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    
    Tested language list in OPAC and staff advanced search is translated
    properly after applying the patch. Checked that language switcher still
    works like it should.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Fixed typo in POD.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 9d945a07f08d90bb212388619d17649959c568b5
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Nov 14 12:31:47 2012 -0500

    Bug 9077 [3.8.x] OPAC Social media links broken by fix for Bug 8973
    
    This patch returns the structure of the social media icons
    markup to the state it was in before the application of the
    patch for Bug 8973 and adds the missing filters which would
    have been added by that patch.
    
    To test, view any OPAC detail page in origin/3.8.x. After
    applying this patch the social media icons should appear
    normally.
    
    Signed-off-by: Srikanth Dhondi <srikanth at catalyst.net.nz>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit ed8ca32b32bf41ac8128980ae7fe221f68f065a4
Author: Mirko Tietgen <mirko at abunchofthings.net>
Date:   Tue Nov 20 17:39:01 2012 +0100

    Bug 9024: Fix typo
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit febf0512b36cbbb23e31afd68163c285b29e0ddc
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Wed Nov 7 16:04:06 2012 +0100

    Bug 9024: Add missing sample data to existing files
    
    Adds missing authorised values (enhancement)
    
    Adds missing slip notice templates (bug fix)
    Koha will complain if you try to print a slip and there is no notice
    defined for them, so this is not really an improvement, but kind of a bug fix.
    
    Signed-off-by: Mirko Tietgen <mirko at abunchofthings.net>
    Passed-QA-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit ece7fa151ff07d2fe8f6102f8d9b20e70fc553f9
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Wed Nov 7 15:39:48 2012 +0100

    Bug 9024: Adding sample patron attributes to German web installer
    
    Adds SHOW_BCODE as sample patron attribute to the German web installer.
    
    To test:
    - Run the web installer in German, make sure the new sample data shows up
    and can be installed.
    
    Signed-off-by: Mirko Tietgen <mirko at abunchofthings.net>
    Passed-QA-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit aaf3b8ce8570bcc8b0ab6114850ba9e5d754350a
Author: Jared Camins-Esakov <jcamins at cpbibliography.com>
Date:   Tue Nov 13 11:02:24 2012 -0500

    Bug 9070: [SIGNED-OFF] authority searches in auth_finder error out
    
    When using authority records imported into Koha from elsewhere, you
    can get an error like:
        Can't use string ("HASH(0xbc6c{30)") as a HASH ref while "strict refs" in use at /usr/share/koha/lib/C4/AuthoritiesMarc.pm line 363.
    in authorities/auth_finder.pl. This patch fixes that error.
    
    To test:
    1) You will need records imported from elsewhere.
    2) Use the authority control plugin in a bib record to search for one of
       those headings.
    3) Observe you get a nasty error.
    4) Apply patch.
    5) Repeat step 2.
    6) Observe the error is gone.
    7) Sign off.
    
    Signed-off-by: Magnus Enger <magnus at enger.priv.no>
    Works as advertised. No warning about "defined(%hash) is deprecated"
    under perl v5.10.1.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    
    Conflicts:
    	C4/AuthoritiesMarc.pm
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

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

Summary of changes:
 C4/AuthoritiesMarc.pm                              |    6 +
 C4/Circulation.pm                                  |    5 +-
 C4/Languages.pm                                    |   28 ++-
 Koha/Calendar.pm                                   |  213 +++++++++++++++-----
 catalogue/search.pl                                |    5 +-
 .../data/mysql/de-DE/mandatory/sample_notices.sql  |   90 ++++++++
 installer/data/mysql/de-DE/optional/auth_val.sql   |    4 +
 .../{en => de-DE}/optional/patron_atributes.sql    |    2 +-
 .../data/mysql/de-DE/optional/patron_atributes.txt |    2 +
 koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt |   12 +-
 opac/opac-search.pl                                |    5 +-
 t/Calendar.t                                       |   73 ++++++-
 12 files changed, 364 insertions(+), 81 deletions(-)
 copy installer/data/mysql/{en => de-DE}/optional/patron_atributes.sql (63%)
 create mode 100644 installer/data/mysql/de-DE/optional/patron_atributes.txt


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list