[koha-commits] main Koha release repository branch master updated. v3.18.00-700-gbc9cb1e

Git repo owner gitmaster at git.koha-community.org
Mon Apr 20 15:24:35 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, master has been updated
       via  bc9cb1e187a09bbb2cf85274f888ce086454a4cd (commit)
       via  20dc9ce5a1255fa7722e23b9300de19ec35eda16 (commit)
       via  832fa0987bd5d7241d0366f1e1e85b8bcd1feabc (commit)
       via  d8a5d2359f43749cfe8d637f98d1d91613696413 (commit)
       via  ec50dc7fd82fc8b727e27403b0a4a9b2d4aa983c (commit)
       via  9dbedfd854a255fc5f2e9479db96131ce87f2ee4 (commit)
       via  54469a1b4ca61123a58998f1097792b9a86563dc (commit)
       via  8b874355e327ac3306789b72827d0092edccfe5a (commit)
       via  ba0f84b46c5c565600575ef61d413067c768fa14 (commit)
       via  a6c9bd0eb55c32d5632625144775271f20aa15f7 (commit)
       via  c8ea5ca91597cf8b43ffbbaf6edb63c1053adead (commit)
       via  4b0b273cb078c17b82818211576fb7b3b17c2703 (commit)
       via  dbd8602280192e4e4cd9915ad8c345a2d40dfb72 (commit)
       via  3e3559e763ad66cdc32b92896d5be1681dccebb9 (commit)
      from  f8f6500274eeb6055dd388a54740d4b6271894f6 (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 bc9cb1e187a09bbb2cf85274f888ce086454a4cd
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Apr 15 13:47:29 2015 +0200

    Bug 13998: Reintroduce use of Koha::Database for C4::Ratings
    
    It has been removed by bug 13852, because before bug 13852,
    Koha::Database was used in C4:Members which was used by
    C4::VirtualShelves which was used by C4::Auth which was finally used by
    C4::Ratings...
    
    Test plan:
    At the opac, record detail page, note the record using the stars.
    Without this patch it does not work.
    
    Signed-off-by: Nick Clemens <nick at quecheelibrary.org>
    Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de>
    
    http://bugs.koha-community.org/show_bug.cgi?id=12998
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 20dc9ce5a1255fa7722e23b9300de19ec35eda16
Author: Marc Véron <veron at veron.ch>
Date:   Thu Mar 26 15:04:07 2015 +0100

    Bug 13917: OPAC: Putting holds still possible by URL even if turned off by system preference
    
    To test:
    
    1)
    Prepare an URL that put's a hold in OPAC (see comment #1), e.g.
    [YOUR SERVER]/cgi-bin/koha/opac-reserve.pl?biblionumbers=1
    
    2)
    Set system preference 'RequestOnOpac' to 'Don't allow patrons to place holds on items from the OPAC.'
    
    3)
    Go diectly to this URL.
    Result: The page displays to confirm hold (wrong)
    
    4)
    Apply patch
    
    5)
    Repeat step 3
    Result: Redirect to 404 page (OK)
    
    6)
    Set system preference to "Allow"
    
    7)
    Repeat step 3
    Result: The page displays to confirm hold (OK), like it would be from link in OPAC.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 832fa0987bd5d7241d0366f1e1e85b8bcd1feabc
Author: Yohann Dufour <dufour.yohann at gmail.com>
Date:   Fri Jul 18 16:42:51 2014 +0200

    Bug 12604: refactoring Category.t with TestBuilder
    
    The tests have been refactored with the module TestBuilder.
    
    Test plan:
    1/ Apply the patch 12603
    2/ The command : prove t/db_dependent/Category.t has to be a success without error or warning :
    t/db_dependent/Category.t .. ok
    All tests successful.
    Files=1, Tests=3,  1 wallclock secs ( 0.03 usr  0.01 sys +  1.05 cusr  0.05 csys =  1.14 CPU)
    Result: PASS
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit d8a5d2359f43749cfe8d637f98d1d91613696413
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Jul 25 08:38:45 2014 -0400

    Bug 12603: (QA Followup)
    
    * Fix syntax error
    * Remove Schema files for nonexistant tables
    * Fix circular dependency
      * Makes unpushed followup for bug 11518 unnessary
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit ec50dc7fd82fc8b727e27403b0a4a9b2d4aa983c
Author: Yohann Dufour <dufour.yohann at gmail.com>
Date:   Fri Jul 18 16:23:07 2014 +0200

    Bug 12603: creating TestBuilder to simplify tests
    
    This patch contains a new module t::lib::TestBuilder which allows to write tests easier and it contains the unit tests of this module.
    For more information, see the documentation of the module.
    
    This module uses the DBIx::Class schema and works with a clean DBIx::Class schema. In order to use it, you have to remove the current circular dependence (existing in the DBIx::Class) by applying the last patch of the bug 11518.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 9dbedfd854a255fc5f2e9479db96131ce87f2ee4
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Mon Apr 13 12:17:12 2015 +0200

    Bug 13981 - Transliterate rule for oe and ae
    
    NOTE : I use HTML codes for special characters to avoir encoding issues in patch file.
    
    In ICU configuration, add a transliterate rule for
    œ = oe
    æ = ae
    
    Test plan :
    - Without patch
    - Create a record R1 with title containing for example "cœur"
    - Create a record R2 with title containing for example "coeur"
    - Index those records
    - Search for "cœur"
    => You only find R1
    - Search for "coeur"
    => You only find R2
    - Apply patch
    - Restart zebra
    - Index R1 and R2
    - Search for "cœur"
    => You find R1 and R2
    - Search for "coeur"
    => You find R1 and R2
    (Same test plan for ae)
    
    ------
    Tested with all variants of Ae ae Oe oe. Search worked as expected.
    Note: The words with special characters were not highlighted, but I think this can be done in an other bug.
    Signed-off-by: Marc Veron <veron at veron.ch>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 54469a1b4ca61123a58998f1097792b9a86563dc
Author: Marc Véron <veron at veron.ch>
Date:   Sun Apr 19 21:04:21 2015 +0200

    Bug 14014 - Argument "" isn't numeric in numeric gt (>) in circulation.tt
    
    To test:
    
    Do some checkouts
    In intranet-error.log you get lines similar to:
    circulation.pl: Argument "" isn't numeric in numeric gt (>) at /usr/share/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt line 217.
    
    Apply patch
    The warning  should no longer appear.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    To reproduce the confirmation message must be displayed.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 8b874355e327ac3306789b72827d0092edccfe5a
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Sat Nov 22 10:09:50 2014 -0300

    Bug 13322: Update MARC21 frameworks to Update No. 19
    
    Summary of changes:
    1) Bibliographic
    - Added fields 370 and 388
    - 382s is non repeatable
    - $g added to 650 and 651
    - $g now repeatable on 100,110,111,130,240,243,246,247,
      600,610,611,630,700,710,711,730,800,810,811 and 830
    
    2) Authority
    - Added field 388
    - New $g on 150,151,450,451,550,551,750 and 751
    - New $i on 700,710,711,730,748,750,751,755,762,780,781,782 and 785
    - New $4 on 700,710,711,730,748,750,751,755,762,780,781,782,785 and 788
    - $g now repeatable on 100,110,111,130,400,410,411,430,500,
      510,511,530,700,710,711 and 730
    
    This patch updates MARC21 frameworks to Update No. 19 (October 2014)
    Also updates values on database for MARC21 installs.
    
    To test
    1. Apply the patch
    2. Run updatedatbase.pl, check that runs without error
    3. Remove default frameworks, bibliographic and authorities (all of them),
    load again. Check that both files load without errors.
    4. Verify changes
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit ba0f84b46c5c565600575ef61d413067c768fa14
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Fri Apr 17 17:04:59 2015 +0200

    Bug 9978: (followup) Replace license header with the correct license (GPLv3+)
    
    There was another form of the v2.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit a6c9bd0eb55c32d5632625144775271f20aa15f7
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Apr 8 17:09:04 2015 +0200

    Bug 9978: Replace license header with the correct license (GPLv3+)
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de>
    
    http://bugs.koha-community.org/show_bug.cgi?id=9987
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit c8ea5ca91597cf8b43ffbbaf6edb63c1053adead
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Tue Apr 14 15:43:44 2015 +0200

    Bug 10285: Remove links from the error pages
    
    The error page (400, 401, 402, 403, 404, 405 and 500) displays parts the old
    staff client main page.
    
    The user can easily browses using navigation links.
    
    Test plan:
    Go on the 400.pl, 401.pl, 402.pl, 403.pl, 404.pl, 405.pl and 500.pl
    pages, and confirm all is fine and you don't get the old style blocks.
    
    Signed-off-by: Nick Clemens <nick at quecheelibrary.org>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    http://bugs.koha-community.org/show_bug.cgi?id=10258
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 4b0b273cb078c17b82818211576fb7b3b17c2703
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Apr 16 13:01:03 2015 +0200

    Bug 12847: Items issued today is considered as overdue
    
    The date comparisons in C4::Members::IssueSlip does not work as
    expected.
    Is an item is issue yesterday and due today (23:59), it should not be
    considered as an overdue yet.
    
    Test plan:
    Define a valid issue slip (code ISSUESLIP)
    Check 2 items out and update the issuedate value for one of them as
    yesterday (using the mariadb/mysql cli or similar)
    Print the slip
    Before this patch the item marked as issued yesterday is considered as
    overdue.
    
    Special cases:
    - hourly loans
    - Quick slip is impacted too
    
    Signed-off-by: Nick Clemens <nick at quecheelibrary.org>
    Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit dbd8602280192e4e4cd9915ad8c345a2d40dfb72
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Apr 9 16:05:59 2015 +0200

    Bug 13975: Remove compilation warning about encoding pragma deprecation
    
    Test plan:
    0/ Does not apply the patch
    1/ Launch the export_borrowers.pl script to export data with unicode characters
     % perl misc/export_borrowers.pl -w "borrowernumber=42" --field borrowernumber --field surname --field firstname
      Use of the encoding pragma is deprecated at misc/export_borrowers.pl
      7874,JOUBU,صةصةصة
    2/ Apply this patch
    3/ Repeat 1
     % perl misc/export_borrowers.pl -w "borrowernumber=42" --field borrowernumber --field surname --field firstname
      7874,JOUBU,صةصةصة
    
    Note that the deprecated message is gone and the encoding is correct.
    
    Signed-off-by: Frederic Demians <f.demians at tamil.fr>
    
      I confirm the warning (on Perl version above 5.14). And that the patch fix
      the warning.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

commit 3e3559e763ad66cdc32b92896d5be1681dccebb9
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Apr 14 14:21:40 2015 +1200

    Bug 13979: updates to allow installation on jessie
    
    This patch makes the build script keep the shipped YUI JavaScript library
    instead of explicitly deleting it and using the one the operating system
    provides.
    
    Development is done against the YUI library we ship, so this makes sense
    even if Debian still shipped it.
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>

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

Summary of changes:
 C4/Accounts.pm                                     |   20 +-
 C4/Acquisition.pm                                  |   20 +-
 C4/Auth.pm                                         |   20 +-
 C4/Auth_with_cas.pm                                |   20 +-
 C4/Auth_with_ldap.pm                               |   20 +-
 C4/AuthoritiesMarc.pm                              |   20 +-
 C4/AuthoritiesMarc/MARC21.pm                       |   20 +-
 C4/AuthoritiesMarc/UNIMARC.pm                      |   20 +-
 C4/BackgroundJob.pm                                |   20 +-
 C4/Barcodes.pm                                     |   20 +-
 C4/Barcodes/EAN13.pm                               |   20 +-
 C4/Barcodes/ValueBuilder.pm                        |   20 +-
 C4/Barcodes/annual.pm                              |   20 +-
 C4/Barcodes/hbyymmincr.pm                          |   20 +-
 C4/Barcodes/incremental.pm                         |   20 +-
 C4/Biblio.pm                                       |   20 +-
 C4/Bookseller.pm                                   |   20 +-
 C4/Boolean.pm                                      |   20 +-
 C4/Branch.pm                                       |   20 +-
 C4/Breeding.pm                                     |   20 +-
 C4/Budgets.pm                                      |   20 +-
 C4/Calendar.pm                                     |   20 +-
 C4/Category.pm                                     |   20 +-
 C4/Charset.pm                                      |   20 +-
 C4/Circulation.pm                                  |   20 +-
 C4/ClassSortRoutine.pm                             |   20 +-
 C4/ClassSortRoutine/Dewey.pm                       |   20 +-
 C4/ClassSortRoutine/Generic.pm                     |   20 +-
 C4/ClassSortRoutine/LCC.pm                         |   20 +-
 C4/ClassSource.pm                                  |   20 +-
 C4/Context.pm                                      |   20 +-
 C4/Contract.pm                                     |   20 +-
 C4/CourseReserves.pm                               |   20 +-
 C4/Creators.pm                                     |   20 +-
 C4/Creators/Lib.pm                                 |   20 +-
 C4/Creators/PDF.pm                                 |   20 +-
 C4/Csv.pm                                          |   20 +-
 C4/Dates.pm                                        |   20 +-
 C4/Debug.pm                                        |   20 +-
 C4/External/Amazon.pm                              |   20 +-
 C4/External/BakerTaylor.pm                         |   20 +-
 C4/External/Syndetics.pm                           |   20 +-
 C4/Form/MessagingPreferences.pm                    |   20 +-
 C4/HTML5Media.pm                                   |   20 +-
 C4/Heading.pm                                      |   20 +-
 C4/Heading/MARC21.pm                               |   20 +-
 C4/Heading/UNIMARC.pm                              |   20 +-
 C4/HoldsQueue.pm                                   |   20 +-
 C4/ILSDI/Services.pm                               |   20 +-
 C4/Images.pm                                       |   20 +-
 C4/ImportBatch.pm                                  |   20 +-
 C4/ImportExportFramework.pm                        |   20 +-
 C4/Input.pm                                        |   20 +-
 C4/InstallAuth.pm                                  |   20 +-
 C4/Installer.pm                                    |   20 +-
 C4/ItemCirculationAlertPreference.pm               |   20 +-
 C4/ItemType.pm                                     |   20 +-
 C4/Items.pm                                        |   20 +-
 C4/Koha.pm                                         |   20 +-
 C4/Languages.pm                                    |   20 +-
 C4/Letters.pm                                      |   20 +-
 C4/Linker.pm                                       |   20 +-
 C4/Linker/Default.pm                               |   20 +-
 C4/Linker/FirstMatch.pm                            |   20 +-
 C4/Linker/LastMatch.pm                             |   20 +-
 C4/Log.pm                                          |   20 +-
 C4/Matcher.pm                                      |   20 +-
 C4/Members.pm                                      |   52 +--
 C4/Members/AttributeTypes.pm                       |   20 +-
 C4/Members/Attributes.pm                           |   20 +-
 C4/Members/Messaging.pm                            |   20 +-
 C4/Members/Statistics.pm                           |   20 +-
 C4/Message.pm                                      |   20 +-
 C4/OAI/Sets.pm                                     |   20 +-
 C4/Output.pm                                       |   20 +-
 C4/Output/JSONStream.pm                            |   20 +-
 C4/Overdues.pm                                     |   20 +-
 C4/Patroncards/Lib.pm                              |   20 +-
 C4/Patroncards/Patroncard.pm                       |   20 +-
 C4/Print.pm                                        |   20 +-
 C4/Ratings.pm                                      |   22 +-
 C4/Record.pm                                       |   20 +-
 C4/Reports.pm                                      |   20 +-
 C4/Reports/Guided.pm                               |   20 +-
 C4/Reserves.pm                                     |   20 +-
 C4/Review.pm                                       |   20 +-
 C4/Ris.pm                                          |   20 +-
 C4/RotatingCollections.pm                          |   20 +-
 C4/SIP/ILS/Transaction/FeePayment.pm               |   20 +-
 C4/SMS.pm                                          |   20 +-
 C4/SQLHelper.pm                                    |   20 +-
 C4/Scheduler.pm                                    |   20 +-
 C4/Scrubber.pm                                     |   20 +-
 C4/Search.pm                                       |   20 +-
 C4/Search/PazPar2.pm                               |   20 +-
 C4/Serials.pm                                      |   20 +-
 C4/Service.pm                                      |   20 +-
 C4/ShelfBrowser.pm                                 |   20 +-
 C4/SocialData.pm                                   |   20 +-
 C4/Stats.pm                                        |   20 +-
 C4/Suggestions.pm                                  |   20 +-
 C4/TTParser.pm                                     |   20 +-
 C4/Tags.pm                                         |   20 +-
 C4/Templates.pm                                    |   20 +-
 C4/TmplToken.pm                                    |   20 +-
 C4/TmplTokenType.pm                                |   20 +-
 C4/UploadedFile.pm                                 |   20 +-
 C4/Utils/DataTables.pm                             |   20 +-
 C4/VirtualShelves.pm                               |   20 +-
 C4/VirtualShelves/Page.pm                          |   20 +-
 C4/XISBN.pm                                        |   20 +-
 Koha/Borrower/Files.pm                             |   20 +-
 Koha/Borrower/Modifications.pm                     |   20 +-
 Koha/Cache.pm                                      |   20 +-
 Koha/Filter/MARC/EmbedSeeFromHeadings.pm           |   20 +-
 Koha/Filter/MARC/Null.pm                           |   20 +-
 Koha/Plugins.pm                                    |   20 +-
 Koha/Plugins/Base.pm                               |   20 +-
 Koha/Plugins/Handler.pm                            |   20 +-
 Koha/RecordProcessor.pm                            |   20 +-
 Koha/RecordProcessor/Base.pm                       |   20 +-
 Koha/Schema/Result/Closure.pm                      |   79 ----
 Koha/Schema/Result/ClosureRrule.pm                 |   69 ----
 Koha/SuggestionEngine.pm                           |   20 +-
 Koha/SuggestionEngine/Base.pm                      |   20 +-
 Koha/SuggestionEngine/Plugin/AuthorityFile.pm      |   20 +-
 Koha/SuggestionEngine/Plugin/ExplodedTerms.pm      |   20 +-
 Koha/SuggestionEngine/Plugin/Null.pm               |   20 +-
 Koha/Template/Plugin/Branches.pm                   |   20 +-
 Koha/Template/Plugin/ItemTypes.pm                  |   20 +-
 Koha/Template/Plugin/Koha.pm                       |   20 +-
 Koha/Template/Plugin/KohaDates.pm                  |   20 +-
 Makefile.PL                                        |   20 +-
 about.pl                                           |   20 +-
 acqui/acqui-home.pl                                |   20 +-
 acqui/addorder.pl                                  |   20 +-
 acqui/addorderiso2709.pl                           |   20 +-
 acqui/basket.pl                                    |   20 +-
 acqui/basketgroup.pl                               |   20 +-
 acqui/basketheader.pl                              |   20 +-
 acqui/booksellers.pl                               |   20 +-
 acqui/check_budget_total.pl                        |   20 +-
 acqui/check_duplicate_barcode_ajax.pl              |   20 +-
 acqui/check_uniqueness.pl                          |   20 +-
 acqui/currency.pl                                  |   20 +-
 acqui/finishreceive.pl                             |   20 +-
 acqui/histsearch.pl                                |   20 +-
 acqui/invoice.pl                                   |   20 +-
 acqui/invoices.pl                                  |   20 +-
 acqui/lateorders.pl                                |   20 +-
 acqui/modordernotes.pl                             |   20 +-
 acqui/neworderbiblio.pl                            |   20 +-
 acqui/neworderempty.pl                             |   20 +-
 acqui/newordersubscription.pl                      |   20 +-
 acqui/newordersuggestion.pl                        |   20 +-
 acqui/ordered.pl                                   |   20 +-
 acqui/orderreceive.pl                              |   20 +-
 acqui/parcel.pl                                    |   20 +-
 acqui/parcels.pl                                   |   20 +-
 acqui/pdfformat/layout2pages.pm                    |   20 +-
 acqui/pdfformat/layout2pagesde.pm                  |   20 +-
 acqui/pdfformat/layout3pages.pm                    |   20 +-
 acqui/spent.pl                                     |   20 +-
 acqui/supplier.pl                                  |   20 +-
 acqui/uncertainprice.pl                            |   20 +-
 acqui/updatesupplier.pl                            |   20 +-
 acqui/z3950_search.pl                              |   20 +-
 admin/admin-home.pl                                |   20 +-
 admin/aqbudgetperiods.pl                           |   20 +-
 admin/aqbudgets.pl                                 |   20 +-
 admin/aqcontract.pl                                |   20 +-
 admin/aqplan.pl                                    |   20 +-
 admin/auth_subfields_structure.pl                  |   20 +-
 admin/auth_tag_structure.pl                        |   20 +-
 admin/authorised_values.pl                         |   20 +-
 admin/authtypes.pl                                 |   20 +-
 admin/biblio_framework.pl                          |   20 +-
 admin/branch_transfer_limits.pl                    |   20 +-
 admin/branches.pl                                  |   20 +-
 admin/categorie.pl                                 |   20 +-
 admin/check_budget_parent.pl                       |   20 +-
 admin/check_parent_total.pl                        |   20 +-
 admin/checkmarc.pl                                 |   20 +-
 admin/cities.pl                                    |   20 +-
 admin/classsources.pl                              |   20 +-
 admin/clone-rules.pl                               |   20 +-
 admin/currency.pl                                  |   20 +-
 admin/fieldmapping.pl                              |   20 +-
 admin/import_export_framework.pl                   |   20 +-
 admin/item_circulation_alerts.pl                   |   20 +-
 admin/itemtypes.pl                                 |   20 +-
 admin/koha2marclinks.pl                            |   20 +-
 admin/marc_subfields_structure.pl                  |   20 +-
 admin/marctagstructure.pl                          |   20 +-
 admin/matching-rules.pl                            |   20 +-
 admin/oai_set_mappings.pl                          |   20 +-
 admin/oai_sets.pl                                  |   20 +-
 admin/patron-attr-types.pl                         |   20 +-
 admin/preferences.pl                               |   20 +-
 admin/printers.pl                                  |   20 +-
 admin/smart-rules.pl                               |   20 +-
 admin/stopwords.pl                                 |   20 +-
 admin/systempreferences.pl                         |   20 +-
 admin/transport-cost-matrix.pl                     |   20 +-
 authorities/auth_finder.pl                         |   20 +-
 authorities/authorities-home.pl                    |   20 +-
 authorities/authorities.pl                         |   20 +-
 authorities/blinddetail-biblio-search.pl           |   20 +-
 authorities/detail-biblio-search.pl                |   20 +-
 authorities/detail.pl                              |   20 +-
 authorities/ysearch.pl                             |   20 +-
 basket/basket.pl                                   |   20 +-
 basket/downloadcart.pl                             |   20 +-
 basket/sendbasket.pl                               |   20 +-
 catalogue/ISBDdetail.pl                            |   20 +-
 catalogue/MARCdetail.pl                            |   20 +-
 catalogue/detail.pl                                |   20 +-
 catalogue/getitem-ajax.pl                          |   20 +-
 catalogue/image.pl                                 |   20 +-
 catalogue/imageviewer.pl                           |   20 +-
 catalogue/issuehistory.pl                          |   20 +-
 catalogue/labeledMARCdetail.pl                     |   20 +-
 catalogue/moredetail.pl                            |   20 +-
 catalogue/search.pl                                |   20 +-
 catalogue/updateitem.pl                            |   20 +-
 cataloguing/addbiblio.pl                           |   20 +-
 cataloguing/addbooks.pl                            |   20 +-
 cataloguing/additem.pl                             |   20 +-
 cataloguing/linkitem.pl                            |   20 +-
 cataloguing/merge.pl                               |   20 +-
 cataloguing/moveitem.pl                            |   20 +-
 cataloguing/plugin_launcher.pl                     |   20 +-
 cataloguing/value_builder/barcode.pl               |   20 +-
 cataloguing/value_builder/barcode_manual.pl        |   20 +-
 cataloguing/value_builder/callnumber-KU.pl         |   20 +-
 cataloguing/value_builder/callnumber.pl            |   20 +-
 cataloguing/value_builder/dateaccessioned.pl       |   20 +-
 cataloguing/value_builder/macles.pl                |   20 +-
 cataloguing/value_builder/marc21_field_003.pl      |   20 +-
 cataloguing/value_builder/marc21_field_005.pl      |   20 +-
 cataloguing/value_builder/marc21_field_006.pl      |   20 +-
 cataloguing/value_builder/marc21_field_007.pl      |   20 +-
 cataloguing/value_builder/marc21_field_008.pl      |   20 +-
 .../value_builder/marc21_field_008_authorities.pl  |   20 +-
 cataloguing/value_builder/marc21_field_040c.pl     |   20 +-
 cataloguing/value_builder/marc21_field_040d.pl     |   20 +-
 cataloguing/value_builder/marc21_field_245h.pl     |   20 +-
 cataloguing/value_builder/marc21_leader.pl         |   20 +-
 .../value_builder/marc21_leader_authorities.pl     |   20 +-
 cataloguing/value_builder/marc21_leader_book.pl    |   20 +-
 .../value_builder/marc21_leader_computerfile.pl    |   20 +-
 cataloguing/value_builder/marc21_leader_video.pl   |   20 +-
 .../value_builder/marc21_linking_section.pl        |   20 +-
 cataloguing/value_builder/normarc_field_007.pl     |   20 +-
 cataloguing/value_builder/normarc_field_008.pl     |   20 +-
 cataloguing/value_builder/normarc_leader.pl        |   20 +-
 cataloguing/value_builder/stocknumber.pl           |   20 +-
 cataloguing/value_builder/stocknumberAV.pl         |   20 +-
 cataloguing/value_builder/stocknumberam123.pl      |   20 +-
 cataloguing/value_builder/unimarc_field_010.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_100.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_105.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_106.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_110.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_115a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_115b.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_116.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_117.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_120.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_121a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_121b.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_122.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_123a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_123d.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_123e.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_123f.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_123g.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_123i.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_123j.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_124.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_124a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_124b.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_124c.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_124d.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_124e.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_124f.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_124g.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_125.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_125a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_125b.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_126.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_126a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_126b.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_127.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_128a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_128b.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_128c.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_130.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_135a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_140.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_141.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_210c.pl    |   20 +-
 .../value_builder/unimarc_field_210c_bis.pl        |   20 +-
 cataloguing/value_builder/unimarc_field_225a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_4XX.pl     |   20 +-
 cataloguing/value_builder/unimarc_field_686a.pl    |   20 +-
 cataloguing/value_builder/unimarc_field_700-4.pl   |   20 +-
 cataloguing/value_builder/unimarc_leader.pl        |   20 +-
 cataloguing/ysearch.pl                             |   20 +-
 cataloguing/z3950_search.pl                        |   20 +-
 changelanguage.pl                                  |   20 +-
 circ/add_message.pl                                |   20 +-
 circ/bookcount.pl                                  |   20 +-
 circ/branchoverdues.pl                             |   20 +-
 circ/branchtransfers.pl                            |   20 +-
 circ/circulation-home.pl                           |   20 +-
 circ/circulation.pl                                |   20 +-
 circ/del_message.pl                                |   20 +-
 circ/hold-transfer-slip.pl                         |   20 +-
 circ/overdue.pl                                    |   20 +-
 circ/pendingreserves.pl                            |   20 +-
 circ/reserveratios.pl                              |   20 +-
 circ/returns.pl                                    |   20 +-
 circ/selectbranchprinter.pl                        |   20 +-
 circ/stats.pl                                      |   20 +-
 circ/transfer-slip.pl                              |   20 +-
 circ/transferstoreceive.pl                         |   20 +-
 circ/view_holdsqueue.pl                            |   20 +-
 circ/waitingreserves.pl                            |   20 +-
 circ/ypattrodue-attr-search-authvalue.pl           |   20 +-
 circ/ysearch.pl                                    |   20 +-
 course_reserves/add_items.pl                       |   20 +-
 course_reserves/course-details.pl                  |   20 +-
 course_reserves/course-reserves.pl                 |   20 +-
 course_reserves/course.pl                          |   20 +-
 course_reserves/mod_course.pl                      |   20 +-
 debian/build-git-snapshot                          |   20 +-
 debian/control                                     |    4 -
 debian/control.in                                  |    2 -
 debian/rules                                       |    2 -
 docs/CAS/CASProxy/examples/koha_webservice.pl      |   20 +-
 docs/CAS/CASProxy/examples/proxy_cas.pl            |   20 +-
 docs/CAS/CASProxy/examples/proxy_cas_callback.pl   |   20 +-
 docs/CAS/CASProxy/examples/proxy_cas_data.pl       |   20 +-
 edithelp.pl                                        |   20 +-
 etc/zebradb/etc/phrases-icu.xml                    |    4 +
 etc/zebradb/etc/words-icu.xml                      |    4 +
 fix-perl-path.PL                                   |   20 +-
 help.pl                                            |   20 +-
 install-CPAN.pl                                    |   20 +-
 install_misc/UpgradeBackup.pm                      |   20 +-
 install_misc/ubuntu-packages.sh                    |   20 +-
 .../marc21/mandatory/authorities_normal_marc21.sql |   80 ++--
 .../marc21/mandatory/marc21_framework_DEFAULT.sql  |   67 ++--
 installer/data/mysql/labels_upgrade.pl             |   20 +-
 installer/data/mysql/patroncards_upgrade.pl        |   20 +-
 installer/data/mysql/updatedatabase.pl             |  129 ++++++-
 .../prog/en/modules/circ/circulation.tt            |    3 +-
 .../intranet-tmpl/prog/en/modules/errors/400.tt    |   75 ----
 .../intranet-tmpl/prog/en/modules/errors/401.tt    |   74 ----
 .../intranet-tmpl/prog/en/modules/errors/402.tt    |   74 ----
 .../intranet-tmpl/prog/en/modules/errors/403.tt    |   74 ----
 .../intranet-tmpl/prog/en/modules/errors/404.tt    |   74 ----
 .../intranet-tmpl/prog/en/modules/errors/405.tt    |   74 ----
 .../intranet-tmpl/prog/en/modules/errors/500.tt    |   73 ----
 labels/label-create-csv.pl                         |   20 +-
 labels/label-create-pdf.pl                         |   20 +-
 labels/label-create-xml.pl                         |   20 +-
 labels/label-edit-batch.pl                         |   20 +-
 labels/label-edit-layout.pl                        |   20 +-
 labels/label-edit-profile.pl                       |   20 +-
 labels/label-edit-template.pl                      |   20 +-
 labels/label-home.pl                               |   20 +-
 labels/label-item-search.pl                        |   20 +-
 labels/label-manage.pl                             |   20 +-
 labels/label-print.pl                              |   20 +-
 labels/spinelabel-home.pl                          |   20 +-
 labels/spinelabel-print.pl                         |   20 +-
 members/boraccount.pl                              |   20 +-
 members/default_messageprefs.pl                    |   20 +-
 members/deletemem.pl                               |   20 +-
 members/files.pl                                   |   20 +-
 members/mancredit.pl                               |   20 +-
 members/maninvoice.pl                              |   20 +-
 members/member.pl                                  |   20 +-
 members/memberentry.pl                             |   20 +-
 members/members-home.pl                            |   20 +-
 members/members-update-do.pl                       |   20 +-
 members/members-update.pl                          |   20 +-
 members/moremember.pl                              |   20 +-
 members/notices.pl                                 |   20 +-
 members/patronimage.pl                             |   20 +-
 members/pay.pl                                     |   20 +-
 members/paycollect.pl                              |   20 +-
 members/printfeercpt.pl                            |   20 +-
 members/printinvoice.pl                            |   20 +-
 members/printslip.pl                               |   20 +-
 members/readingrec.pl                              |   20 +-
 members/routing-lists.pl                           |   20 +-
 members/setstatus.pl                               |   20 +-
 members/update-child.pl                            |   20 +-
 misc/admin/koha-preferences                        |   20 +-
 misc/batchupdateISBNs.pl                           |   20 +-
 misc/bin/connexion_import_daemon.pl                |   20 +-
 misc/bin/koha-index-daemon-ctl.sh                  |   20 +-
 misc/bin/koha-pazpar2-ctl.sh                       |   20 +-
 misc/bin/koha-zebra-ctl.sh                         |   20 +-
 misc/bin/set-selinux-labels.sh                     |   20 +-
 misc/cronjobs/MARC21_parse_test.pl                 |   20 +-
 misc/cronjobs/advance_notices.pl                   |   20 +-
 misc/cronjobs/batch_anonymise.pl                   |   20 +-
 misc/cronjobs/cart_to_shelf.pl                     |   20 +-
 misc/cronjobs/check-url-quick.pl                   |   20 +-
 misc/cronjobs/check-url.pl                         |   20 +-
 misc/cronjobs/cleanup_database.pl                  |   20 +-
 misc/cronjobs/cloud-kw.pl                          |   20 +-
 misc/cronjobs/create_koc_db.pl                     |   20 +-
 misc/cronjobs/delete_expired_opac_registrations.pl |   20 +-
 .../delete_unverified_opac_registrations.pl        |   20 +-
 misc/cronjobs/fines.pl                             |   20 +-
 misc/cronjobs/gather_print_notices.pl              |   20 +-
 misc/cronjobs/holds/auto_unsuspend_holds.pl        |   20 +-
 misc/cronjobs/holds/cancel_expired_holds.pl        |   20 +-
 misc/cronjobs/import_webservice_batch.pl           |   20 +-
 misc/cronjobs/j2a.pl                               |   20 +-
 misc/cronjobs/longoverdue.pl                       |   20 +-
 misc/cronjobs/overdue_notices.pl                   |   20 +-
 misc/cronjobs/process_message_queue.pl             |   20 +-
 misc/cronjobs/purge_suggestions.pl                 |   20 +-
 misc/cronjobs/runreport.pl                         |   20 +-
 misc/cronjobs/serialsUpdate.pl                     |   20 +-
 misc/cronjobs/staticfines.pl                       |   20 +-
 .../thirdparty/TalkingTech_itiva_inbound.pl        |   20 +-
 .../thirdparty/TalkingTech_itiva_outbound.pl       |   20 +-
 misc/cronjobs/update_totalissues.pl                |   20 +-
 misc/export_borrowers.pl                           |   22 +-
 misc/kohalib.pl                                    |   24 +-
 misc/maintenance/MARC21_utf8_flag_fix.pl           |   20 +-
 .../maintenance/borrowers-force-messaging-defaults |   20 +-
 misc/maintenance/cmp_sysprefs.pl                   |   20 +-
 misc/maintenance/fix_accountlines_date.pl          |   20 +-
 .../fix_accountlines_rmdupfines_bug8253.pl         |   20 +-
 misc/maintenance/fix_mysql_constraints.pl          |   20 +-
 .../maintenance/make_zebra_dom_cfg_from_record_abs |   20 +-
 misc/maintenance/remove_items_from_biblioitems.pl  |   20 +-
 misc/maintenance/touch_all_biblios.pl              |   20 +-
 misc/maintenance/touch_all_items.pl                |   20 +-
 misc/migration_tools/build_oai_sets.pl             |   20 +-
 misc/migration_tools/checkNonIndexedBiblios.pl     |   20 +-
 misc/migration_tools/koha-svc.pl                   |   20 +-
 misc/migration_tools/remove_unused_authorities.pl  |   20 +-
 misc/migration_tools/switch_marc21_series_info.pl  |   20 +-
 misc/mod_zebraqueue.pl                             |   20 +-
 misc/translator/LangInstaller.pm                   |   20 +-
 misc/translator/translate                          |   20 +-
 offline_circ/enqueue_koc.pl                        |   20 +-
 offline_circ/list.pl                               |   20 +-
 offline_circ/process.pl                            |   20 +-
 offline_circ/process_koc.pl                        |   20 +-
 offline_circ/service.pl                            |   20 +-
 opac/errors/400.pl                                 |   20 +-
 opac/errors/401.pl                                 |   20 +-
 opac/errors/402.pl                                 |   20 +-
 opac/errors/403.pl                                 |   20 +-
 opac/errors/404.pl                                 |   20 +-
 opac/errors/500.pl                                 |   20 +-
 opac/ilsdi.pl                                      |   20 +-
 opac/maintenance.pl                                |   20 +-
 opac/oai.pl                                        |   20 +-
 opac/opac-ISBDdetail.pl                            |   20 +-
 opac/opac-account.pl                               |   20 +-
 opac/opac-addbybiblionumber.pl                     |   20 +-
 opac/opac-alert-subscribe.pl                       |   20 +-
 opac/opac-authorities-home.pl                      |   20 +-
 opac/opac-authoritiesdetail.pl                     |   20 +-
 opac/opac-basket.pl                                |   20 +-
 opac/opac-browser.pl                               |   20 +-
 opac/opac-changelanguage.pl                        |   20 +-
 opac/opac-course-details.pl                        |   20 +-
 opac/opac-course-reserves.pl                       |   20 +-
 opac/opac-detail.pl                                |   20 +-
 opac/opac-downloadcart.pl                          |   20 +-
 opac/opac-downloadshelf.pl                         |   20 +-
 opac/opac-export.pl                                |   20 +-
 opac/opac-ics.pl                                   |   20 +-
 opac/opac-image.pl                                 |   20 +-
 opac/opac-imageviewer.pl                           |   20 +-
 opac/opac-memberentry.pl                           |   20 +-
 opac/opac-messaging.pl                             |   20 +-
 opac/opac-modrequest-suspend.pl                    |   20 +-
 opac/opac-modrequest.pl                            |   20 +-
 opac/opac-mymessages.pl                            |   20 +-
 opac/opac-passwd.pl                                |   20 +-
 opac/opac-patron-image.pl                          |   20 +-
 opac/opac-privacy.pl                               |   20 +-
 opac/opac-ratings-ajax.pl                          |   20 +-
 opac/opac-ratings.pl                               |   20 +-
 opac/opac-readingrecord.pl                         |   20 +-
 opac/opac-registration-verify.pl                   |   20 +-
 opac/opac-renew.pl                                 |   20 +-
 opac/opac-reserve.pl                               |   27 +-
 opac/opac-review.pl                                |   20 +-
 opac/opac-search-history.pl                        |   20 +-
 opac/opac-search.pl                                |   20 +-
 opac/opac-sendbasket.pl                            |   20 +-
 opac/opac-sendshelf.pl                             |   20 +-
 opac/opac-serial-issues.pl                         |   20 +-
 opac/opac-shelves.pl                               |   20 +-
 opac/opac-showreviews.pl                           |   20 +-
 opac/opac-suggestions.pl                           |   20 +-
 opac/opac-tags.pl                                  |   20 +-
 opac/opac-tags_subject.pl                          |   20 +-
 opac/opac-topissues.pl                             |   20 +-
 opac/opac-user.pl                                  |   20 +-
 opac/sco/help.pl                                   |   20 +-
 opac/sco/printslip.pl                              |   20 +-
 opac/sco/sco-main.pl                               |   20 +-
 opac/sco/sco-patron-image.pl                       |   20 +-
 opac/svc/suggestion                                |   20 +-
 opac/tracklinks.pl                                 |   20 +-
 opac/unapi                                         |   20 +-
 patroncards/card-print.pl                          |   20 +-
 patroncards/create-pdf.pl                          |   20 +-
 patroncards/edit-batch.pl                          |   20 +-
 patroncards/edit-layout.pl                         |   20 +-
 patroncards/edit-profile.pl                        |   20 +-
 patroncards/edit-template.pl                       |   20 +-
 patroncards/home.pl                                |   20 +-
 patroncards/manage.pl                              |   20 +-
 patroncards/print.pl                               |   20 +-
 plugins/plugins-home.pl                            |   20 +-
 plugins/plugins-uninstall.pl                       |   20 +-
 plugins/plugins-upload.pl                          |   20 +-
 plugins/run.pl                                     |   20 +-
 reports/acquisitions_stats.pl                      |   20 +-
 reports/bor_issues_top.pl                          |   20 +-
 reports/borrowers_out.pl                           |   20 +-
 reports/borrowers_stats.pl                         |   20 +-
 reports/cat_issues_top.pl                          |   20 +-
 reports/catalogue_out.pl                           |   20 +-
 reports/catalogue_stats.pl                         |   20 +-
 reports/dictionary.pl                              |   20 +-
 reports/guided_reports.pl                          |   20 +-
 reports/issues_avg_stats.pl                        |   20 +-
 reports/issues_by_borrower_category.plugin         |   20 +-
 reports/issues_stats.pl                            |   20 +-
 reports/itemslost.pl                               |   20 +-
 reports/itemtypes.plugin                           |   20 +-
 reports/manager.pl                                 |   20 +-
 reports/reports-home.pl                            |   20 +-
 reports/reservereport.pl                           |   20 +-
 reports/serials_stats.pl                           |   20 +-
 reports/stats.screen.pl                            |   20 +-
 reserve/modrequest.pl                              |   20 +-
 reserve/modrequest_suspendall.pl                   |   20 +-
 reserve/placerequest.pl                            |   20 +-
 reserve/renewscript.pl                             |   20 +-
 reserve/request.pl                                 |   20 +-
 reviews/reviewswaiting.pl                          |   20 +-
 rewrite-config.PL                                  |   20 +-
 rotating_collections/addItems.pl                   |   20 +-
 rotating_collections/editCollections.pl            |   20 +-
 rotating_collections/rotatingCollections.pl        |   20 +-
 rotating_collections/transferCollection.pl         |   20 +-
 serials/acqui-search-result.pl                     |   20 +-
 serials/acqui-search.pl                            |   20 +-
 serials/checkexpiration.pl                         |   20 +-
 serials/claims.pl                                  |   20 +-
 serials/reorder_members.pl                         |   20 +-
 serials/routing-preview.pl                         |   20 +-
 serials/routing.pl                                 |   20 +-
 serials/serial-issues.pl                           |   20 +-
 serials/serials-collection.pl                      |   20 +-
 serials/serials-edit.pl                            |   20 +-
 serials/serials-home.pl                            |   20 +-
 serials/serials-recieve.pl                         |   20 +-
 serials/serials-search.pl                          |   20 +-
 serials/subscription-add.pl                        |   20 +-
 serials/subscription-bib-search.pl                 |   20 +-
 serials/subscription-detail.pl                     |   20 +-
 serials/subscription-renew.pl                      |   20 +-
 serials/viewalerts.pl                              |   20 +-
 services/itemrecorddisplay.pl                      |   20 +-
 suggestion/suggestion.pl                           |   20 +-
 svc/authentication                                 |   20 +-
 svc/bib                                            |   20 +-
 svc/bib_profile                                    |   20 +-
 svc/config/systempreferences                       |   20 +-
 svc/import_bib                                     |   20 +-
 svc/members/add_to_list                            |   20 +-
 svc/members/search                                 |   20 +-
 svc/new_bib                                        |   20 +-
 t/00-checkdatabase-version.t                       |   20 +-
 t/00-merge-conflict-markers.t                      |   20 +-
 t/00-valid-xml.t                                   |   20 +-
 t/Koha_MetadataRecord.t                            |   20 +-
 t/Koha_Util_MARC.t                                 |   20 +-
 t/Labels.t                                         |   20 +-
 t/Labels_split_ccn.t                               |   20 +-
 t/Labels_split_ddcn.t                              |   20 +-
 t/Labels_split_lccn.t                              |   20 +-
 t/RecordProcessor.t                                |   20 +-
 t/db_dependent/Category.t                          |   55 ++-
 t/db_dependent/Koha_Authority.t                    |   20 +-
 t/db_dependent/Labels/t_Batch.t                    |   20 +-
 t/db_dependent/Labels/t_Layout.t                   |   20 +-
 t/db_dependent/Labels/t_Profile.t                  |   20 +-
 t/db_dependent/Labels/t_Template.t                 |   20 +-
 t/db_dependent/Members/IssueSlip.t                 |  394 +++++++++++++++++++
 t/db_dependent/Record/Record.t                     |   20 +-
 .../RecordProcessor_EmbedSeeFromHeadings.t         |   20 +-
 t/db_dependent/Reports/Guided.t                    |   20 +-
 t/db_dependent/TestBuilder.t                       |  249 ++++++++++++
 t/lib/TestBuilder.pm                               |  397 ++++++++++++++++++++
 tags/list.pl                                       |   20 +-
 tags/review.pl                                     |   20 +-
 test/progressbar.pl                                |   20 +-
 test/progressbarsubmit.pl                          |   20 +-
 tools/background-job-progress.pl                   |   20 +-
 tools/batchMod.pl                                  |   20 +-
 tools/cleanborrowers.pl                            |   20 +-
 tools/copy-holidays.pl                             |   20 +-
 tools/csv-profiles.pl                              |   20 +-
 tools/export.pl                                    |   20 +-
 tools/holidays.pl                                  |   20 +-
 tools/import_borrowers.pl                          |   20 +-
 tools/inventory.pl                                 |   20 +-
 tools/letter.pl                                    |   20 +-
 tools/manage-marc-import.pl                        |   20 +-
 tools/modborrowers.pl                              |   20 +-
 tools/overduerules.pl                              |   20 +-
 tools/picture-upload.pl                            |   20 +-
 tools/quotes-upload.pl                             |   20 +-
 tools/quotes.pl                                    |   20 +-
 tools/quotes/quotes-upload_ajax.pl                 |   20 +-
 tools/quotes/quotes_ajax.pl                        |   20 +-
 tools/scheduler.pl                                 |   20 +-
 tools/stage-marc-import.pl                         |   20 +-
 tools/tools-home.pl                                |   20 +-
 tools/upload-cover-image.pl                        |   20 +-
 tools/upload-file-progress.pl                      |   20 +-
 tools/upload-file.pl                               |   20 +-
 tools/viewlog.pl                                   |   20 +-
 virtualshelves/addbybiblionumber.pl                |   20 +-
 virtualshelves/downloadshelf.pl                    |   20 +-
 virtualshelves/sendshelf.pl                        |   20 +-
 virtualshelves/shelves.pl                          |   20 +-
 xt/author/show-template-structure.pl               |   20 +-
 xt/find-misplaced-executables                      |   20 +-
 xt/find-nonutf8                                    |   20 +-
 xt/permissions.t                                   |   20 +-
 xt/verify-debian-docbook.t                         |   20 +-
 xt/yaml_valid.pl                                   |   20 +-
 xt/yaml_valid.t                                    |   20 +-
 654 files changed, 7658 insertions(+), 7085 deletions(-)
 delete mode 100644 Koha/Schema/Result/Closure.pm
 delete mode 100644 Koha/Schema/Result/ClosureRrule.pm
 create mode 100644 t/db_dependent/Members/IssueSlip.t
 create mode 100644 t/db_dependent/TestBuilder.t
 create mode 100644 t/lib/TestBuilder.pm


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list