From gitmaster at git.koha-community.org Wed Dec 2 08:55:39 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Dec 2015 07:55:39 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-3-g674260e Message-ID: 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.20.x has been updated via 674260ed4696bbf3b5a1bbeb33359caaaca5d974 (commit) via d92680e6b7ce99b86c5648bd356266e3d9d8e672 (commit) via 916f31971317cfbcf261085c06017e5738b0326e (commit) from eb95e2beb18dd5cbb6ed54520f958b5a17423625 (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 674260ed4696bbf3b5a1bbeb33359caaaca5d974 Author: Tomas Cohen Arazi Date: Wed Nov 4 12:09:06 2015 -0300 Bug 14978: (RM followup) DBIx update Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 3cab4d1efd25268441c88ce74d5a4b568773c8aa) Signed-off-by: Fr?d?ric Demians commit d92680e6b7ce99b86c5648bd356266e3d9d8e672 Author: Fr?d?ric Demians Date: Wed Dec 2 08:32:45 2015 +0100 Bug 14978: DBRev 3.20.06.001 Signed-off-by: Fr?d?ric Demians commit 916f31971317cfbcf261085c06017e5738b0326e Author: Jonathan Druart Date: Thu Oct 8 09:15:57 2015 +0100 Bug 14978: Add unique key constraint on issues.itemnumber The constraint might have existed before bug 14069. For these DB, this patch will restore it, for others, it will add it :) Test plan: > show create table issues; should not return "unique key itemnumber" Execute the updatedb entry twice > show create table issues; should return only one "unique key itemnumber" Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 9e1d8d8c5e357a56f88c78eca52ccbb37902d43c) Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- Koha/Schema/Result/Issue.pm | 18 ++++++++++++++++-- Koha/Schema/Result/Item.pm | 12 ++++++------ installer/data/mysql/kohastructure.sql | 1 + installer/data/mysql/updatedatabase.pl | 10 +++++++++- 5 files changed, 33 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 4 15:14:08 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Dec 2015 14:14:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-2-gd456acc Message-ID: 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 d456acc7bfd2507ac7eaaf32bd6da1f023655886 (commit) from 3dfb6252faf6abec64cfc50a090aa0ce7d272115 (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 d456acc7bfd2507ac7eaaf32bd6da1f023655886 Author: Jonathan Druart Date: Wed Nov 25 17:08:43 2015 +0000 Bug 15256: Fix items table display on the detail page Bug 14966 fixed a bug but introduced another one: With IndependentBranches set to 'prevent', if the librarian (without the superlibrarian permission) can edit items but not all, the table is broken. DataTables raises the following warning: "DataTables warning: table id=DataTables_Table_1 - Requested unknown parameter '8' for row0." And does not display correctly. Test plan: 1/ Create a biblio record with 1+ items located in different places. 2/ Create/use a patron with the permission to edit items 3/ Set the IndependentBranches pref to 'prevent' 4/ With this patron logged in, go on the record detail page. Without this patch, the display is broken (only 1 edit link and 1 td missing, DataTables raises a warning). With this patch, the display is correct. Signed-off-by: Fr?d?ric Demians See the warning, and the broken table. Solved by this patch. Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 4 15:25:22 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Dec 2015 14:25:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-3-gd9cef35 Message-ID: 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 d9cef35b75770104494c2f4a01d975f367b515bf (commit) from d456acc7bfd2507ac7eaaf32bd6da1f023655886 (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 d9cef35b75770104494c2f4a01d975f367b515bf Author: Katrin Fischer Date: Wed Nov 25 18:18:04 2015 +0100 Bug 15250: Fix Perl error on acqisition stats page To test: - Go to reports -> Acquisitions statistics - Populate with the following values: Acquisitions statistics Received on. Row: checked Column: checked From: 01/01/2015 To: Un-selected Cell value Count items Output: To screen into the browser: checked - Running the report will trigger the following error: Software error: Can't locate object method "field" via package "aqorders.datereceived" (perhaps you forgot to load "aqorders.datereceived"?) at /usr/share/koha/intranet/cgi-bin/reports/acquisitions_stats.pl line 293. - Apply the patch and repeat test - Verify the report now works correctly Note: Patch was created from notes and suggested fix on the bug report, written by Barton Chittenden. Signed-off-by: Brendan Gallagher Signed-off-by: Jonathan Druart ----------------------------------------------------------------------- Summary of changes: reports/acquisitions_stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 4 15:49:00 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Dec 2015 14:49:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-5-gfc05098 Message-ID: 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 fc050984699e6831fdb354c77d065a08567beb9f (commit) via 717878982f985b9f40f9eedec5e576efd62976ff (commit) from d9cef35b75770104494c2f4a01d975f367b515bf (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 fc050984699e6831fdb354c77d065a08567beb9f Author: Kyle M Hall Date: Tue Dec 1 17:49:55 2015 +0000 Bug 13024 [QA Followup] - Add nonpublic note to relatives' checkouts Signed-off-by: Jonathan Druart commit 717878982f985b9f40f9eedec5e576efd62976ff Author: Kyle M Hall Date: Fri Apr 24 10:41:58 2015 -0400 Bug 13024 - Nonpublic note not appearing in the staff client The nonpublic note for items is not displayed in the staff client. It should be displayed in the following areas: 1) Checkouts (circulation.pl) 2) Checkins (returns.pl) 3) Record details ( moredetail.pl ) Test Plan: 1) Ensure your non-public note field is mapped to the items.itemnotes_nonpublic database column 2) Edit an item, add a test nonpublic note 3) Check out the item, verify the note is visible in the checkouts table 4) Check in the item, verify the note is visible in the checkins table 5) View the item details, verify the note is visible and editable if your account has the rights to edit items Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart ----------------------------------------------------------------------- Summary of changes: catalogue/updateitem.pl | 9 ++++- circ/returns.pl | 23 ++++++------ koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 16 +++++++++ .../prog/en/modules/catalogue/moredetail.tt | 38 ++++++++++++++------ .../intranet-tmpl/prog/en/modules/circ/returns.tt | 6 ++-- svc/checkouts | 33 +++++++++-------- 6 files changed, 83 insertions(+), 42 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 4 17:12:28 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Dec 2015 16:12:28 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-6-ga06793d Message-ID: 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 a06793dc584212dde20f985740691b7e49074c76 (commit) from fc050984699e6831fdb354c77d065a08567beb9f (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 a06793dc584212dde20f985740691b7e49074c76 Author: Nicholas van Oudtshoorn Date: Thu May 15 13:27:48 2014 +0800 BUG 11602: [ENH] Fix localcover display Adds a css class of thumbnail to local covers. Don't show the 1px "No image found" image (since we'll ususally try another image provider) Signed-off-by: Hector Castro Box with "No cover image availabe" fixed when syspref OPACLocalCoverImages set to display Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 4 17:16:23 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Dec 2015 16:16:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-8-ga901ed1 Message-ID: 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 a901ed155a56a2c4ab95bb7bc951e2a0a7d04277 (commit) via 0f7f6a5cb32cd2e68bc39e8464147852347be310 (commit) from a06793dc584212dde20f985740691b7e49074c76 (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 a901ed155a56a2c4ab95bb7bc951e2a0a7d04277 Author: Jonathan Druart Date: Wed Nov 25 16:40:37 2015 +0000 Bug 12152: Holds to pull report - Display location descriptions ...instead of their code Test plan: Same as before, confirm the the location codes are replaced with their descriptions. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 0f7f6a5cb32cd2e68bc39e8464147852347be310 Author: Katrin Fischer Date: Sun Nov 22 03:38:30 2015 +0100 Bug 12152: Holds to pull report - Show branch names and item type descriptions The 'Holds to pull' report shows branch and itemtype codes without this patch. With the patch, names and descriptions should display. To test: - Make sure there are some holds for available items in your system - Go to Circulation > Holds to pull - Verify changes mentioned above in the list of holds shown Signed-off-by: David Cook Works as described, although as Magnus mentioned, Locations still use codes instead of descriptions. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 4 20:23:57 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Dec 2015 19:23:57 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-5-gc5c9545 Message-ID: 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.20.x has been updated via c5c954506f5400b8732ee37c52d86c009215ec8f (commit) via 80c433c4449469831c95a9d59ef952ef161cb96a (commit) from 674260ed4696bbf3b5a1bbeb33359caaaca5d974 (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 c5c954506f5400b8732ee37c52d86c009215ec8f Author: Jonathan Druart Date: Thu Oct 1 11:58:41 2015 +0100 Bug 5371: (follow-up) Force no caching for private pages at the OPAC Same as previous patch for opac-messaging.pl and opac-readingrecord.pl Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit a988e9425ce1f8f4bf28b46473adac941d634973) Signed-off-by: Fr?d?ric Demians commit 80c433c4449469831c95a9d59ef952ef161cb96a Author: Jonathan Druart Date: Thu Sep 17 12:45:15 2015 +0100 Bug 5371: Force no caching for private pages at the OPAC In order no to slow too much the browsing, it is certainly not a good idea to add this cache-control value for all pages at the OPAC. This patch just adds where the author found it could be useful. Test plan: 1/ Login at the OPAC 2/ Go on the account page (opac/opac-account.pl) 3/ Click log out 4/ Use the back button of your browser Without this patch you will see the previous page. With this patch, the previous page will be reloaded and you will be redirected to the login form. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 542ab0bce949eba3abc98ff1c433fe6099db105d) Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: opac/opac-account.pl | 3 +-- opac/opac-basket.pl | 2 +- opac/opac-browser.pl | 2 +- opac/opac-discharge.pl | 2 +- opac/opac-memberentry.pl | 2 +- opac/opac-messaging.pl | 2 +- opac/opac-mymessages.pl | 2 +- opac/opac-passwd.pl | 2 +- opac/opac-privacy.pl | 2 +- opac/opac-readingrecord.pl | 2 +- opac/opac-reserve.pl | 3 +-- opac/opac-search-history.pl | 2 +- opac/opac-user.pl | 3 +-- 13 files changed, 13 insertions(+), 16 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Dec 5 02:33:49 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 05 Dec 2015 01:33:49 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-6-g3ee174b Message-ID: 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.20.x has been updated via 3ee174b759630752dec9c53066fa79ef056e180c (commit) from c5c954506f5400b8732ee37c52d86c009215ec8f (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 3ee174b759630752dec9c53066fa79ef056e180c Author: Galen Charlton Date: Sat Dec 5 01:26:11 2015 +0000 new Debian package maintainer Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: debian/control | 2 +- debian/control.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Dec 5 02:33:49 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 05 Dec 2015 01:33:49 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-1-gcd7be51 Message-ID: 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.22.x has been updated via cd7be5133df2d1899fa1d68cc2e61dc8298d1e32 (commit) from a225d7a2048d8c7ee6b1b550e829b143eff5a4d1 (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 cd7be5133df2d1899fa1d68cc2e61dc8298d1e32 Author: Galen Charlton Date: Sat Dec 5 01:26:11 2015 +0000 new Debian package maintainer Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: debian/control | 2 +- debian/control.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Dec 5 02:33:49 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 05 Dec 2015 01:33:49 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-9-g29cd4ae Message-ID: 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 29cd4ae9bd4dee43e8ea375aa49d792fdbe9df10 (commit) from a901ed155a56a2c4ab95bb7bc951e2a0a7d04277 (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 29cd4ae9bd4dee43e8ea375aa49d792fdbe9df10 Author: Galen Charlton Date: Sat Dec 5 01:26:11 2015 +0000 new Debian package maintainer Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: debian/control | 2 +- debian/control.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Dec 5 08:30:00 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 05 Dec 2015 07:30:00 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-8-gc122b9b Message-ID: 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.20.x has been updated via c122b9b6f89c75a7ac7f7e91d8b71991bfe819b8 (commit) via c8afcd1311031b779337c30230280c67c4be9d1e (commit) from 3ee174b759630752dec9c53066fa79ef056e180c (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 c122b9b6f89c75a7ac7f7e91d8b71991bfe819b8 Author: Fr?d?ric Demians Date: Sat Dec 5 08:31:59 2015 +0100 Revert "Bug 11190: sitemap.pl -- Generate a Catalog sitemap" This reverts commit ed166abbf3e4e0510d6fd14f9843b7fad1a5b686. Signed-off-by: Fr?d?ric Demians commit c8afcd1311031b779337c30230280c67c4be9d1e Author: Fr?d?ric Demians Date: Sat Dec 5 08:29:57 2015 +0100 Revert "Bug 11190: sitemap.pl -- Generate a Catalog sitemap" This reverts commit e0a8173d10cc0f307dd95118e294c727c285e142. This feature introduces new dependencies, and make UT failing without them, which prevents package building. Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: C4/Installer/PerlDependencies.pm | 15 --- Koha/Sitemapper.pm | 89 ------------------ Koha/Sitemapper/Writer.pm | 125 ------------------------ misc/cronjobs/sitemap.pl | 127 ------------------------- t/db_dependent/Sitemapper.t | 193 -------------------------------------- 5 files changed, 549 deletions(-) delete mode 100644 Koha/Sitemapper.pm delete mode 100644 Koha/Sitemapper/Writer.pm delete mode 100755 misc/cronjobs/sitemap.pl delete mode 100755 t/db_dependent/Sitemapper.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 7 07:31:19 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Dec 2015 06:31:19 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-10-g7747465 Message-ID: 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.20.x has been updated via 774746597678bf176f4d067e90e5d40db4e942b8 (commit) via 4f3af04623f2d37b863a1e94a862fc32becfd568 (commit) from c122b9b6f89c75a7ac7f7e91d8b71991bfe819b8 (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 774746597678bf176f4d067e90e5d40db4e942b8 Author: Jonathan Druart Date: Tue Dec 1 10:17:11 2015 +0000 Bug 15270: Add regression tests for Koha::Objects->find Signed-off-by: Magnus Enger Signed-off-by: Katrin Fischer Signed-off-by: Fr?d?ric Demians commit 4f3af04623f2d37b863a1e94a862fc32becfd568 Author: Jonathan Druart Date: Tue Dec 1 10:16:43 2015 +0000 Bug 15270: Make Koha::Objects->find return undef instead of crashing On 3.20.05, if AnonymousPatron is set to a nonexistent borrowernumber, the about.pl crashes with DBIC result type isn't of the type Borrower at /home/koha/src/Koha/Objects.pm line 87. This was fixed on master by commit 6882949b1b3bd1284e3d2877244a64edee3883ca Date: Wed Apr 8 06:38:34 2015 -0400 Bug 13967 - System preferences need a package Test plan: Set the AnonymousPatron pref to a nonexistent borrowernumber Go on about.pl Without this patch, you get the error. Signed-off-by: Magnus Enger Set AnonymousPatron pref to a nonexistent borrowernumber. Before the patch, about.pl shows a nasty error. After applying the patch the error is gone. Tests in t/db_dependent/Objects.t pass. Signed-off-by: Katrin Fischer Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: Koha/Objects.pm | 2 ++ t/{ImportBatch.t => db_dependent/Objects.t} | 16 ++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) copy t/{ImportBatch.t => db_dependent/Objects.t} (60%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 7 10:14:50 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Dec 2015 09:14:50 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-2-ged13f4f Message-ID: 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.22.x has been updated via ed13f4fe200352460b62376b01ba48d3ba51ae80 (commit) from cd7be5133df2d1899fa1d68cc2e61dc8298d1e32 (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 ed13f4fe200352460b62376b01ba48d3ba51ae80 Author: Jonathan Druart Date: Wed Nov 25 17:08:43 2015 +0000 Bug 15256: Fix items table display on the detail page Bug 14966 fixed a bug but introduced another one: With IndependentBranches set to 'prevent', if the librarian (without the superlibrarian permission) can edit items but not all, the table is broken. DataTables raises the following warning: "DataTables warning: table id=DataTables_Table_1 - Requested unknown parameter '8' for row0." And does not display correctly. Test plan: 1/ Create a biblio record with 1+ items located in different places. 2/ Create/use a patron with the permission to edit items 3/ Set the IndependentBranches pref to 'prevent' 4/ With this patron logged in, go on the record detail page. Without this patch, the display is broken (only 1 edit link and 1 td missing, DataTables raises a warning). With this patch, the display is correct. Signed-off-by: Fr?d?ric Demians See the warning, and the broken table. Solved by this patch. Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit d456acc7bfd2507ac7eaaf32bd6da1f023655886) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 7 11:07:08 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Dec 2015 10:07:08 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-3-gcd693a5 Message-ID: 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.22.x has been updated via cd693a52b8306f1bdc66804fb84fe17cadcd658f (commit) from ed13f4fe200352460b62376b01ba48d3ba51ae80 (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 cd693a52b8306f1bdc66804fb84fe17cadcd658f Author: Katrin Fischer Date: Wed Nov 25 18:18:04 2015 +0100 Bug 15250: Fix Perl error on acqisition stats page To test: - Go to reports -> Acquisitions statistics - Populate with the following values: Acquisitions statistics Received on. Row: checked Column: checked From: 01/01/2015 To: Un-selected Cell value Count items Output: To screen into the browser: checked - Running the report will trigger the following error: Software error: Can't locate object method "field" via package "aqorders.datereceived" (perhaps you forgot to load "aqorders.datereceived"?) at /usr/share/koha/intranet/cgi-bin/reports/acquisitions_stats.pl line 293. - Apply the patch and repeat test - Verify the report now works correctly Note: Patch was created from notes and suggested fix on the bug report, written by Barton Chittenden. Signed-off-by: Brendan Gallagher Signed-off-by: Jonathan Druart (cherry picked from commit d9cef35b75770104494c2f4a01d975f367b515bf) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: reports/acquisitions_stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 7 11:23:07 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Dec 2015 10:23:07 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-5-g13c4a8e Message-ID: 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.22.x has been updated via 13c4a8e77a0a798fb63edded881d56fdafc874f1 (commit) via a5b993672fc2b87a51d4944616e5f303992d4f3f (commit) from cd693a52b8306f1bdc66804fb84fe17cadcd658f (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 13c4a8e77a0a798fb63edded881d56fdafc874f1 Author: Kyle M Hall Date: Tue Dec 1 17:49:55 2015 +0000 Bug 13024 [QA Followup] - Add nonpublic note to relatives' checkouts Signed-off-by: Jonathan Druart (cherry picked from commit fc050984699e6831fdb354c77d065a08567beb9f) Signed-off-by: Julian Maurice commit a5b993672fc2b87a51d4944616e5f303992d4f3f Author: Kyle M Hall Date: Fri Apr 24 10:41:58 2015 -0400 Bug 13024 - Nonpublic note not appearing in the staff client The nonpublic note for items is not displayed in the staff client. It should be displayed in the following areas: 1) Checkouts (circulation.pl) 2) Checkins (returns.pl) 3) Record details ( moredetail.pl ) Test Plan: 1) Ensure your non-public note field is mapped to the items.itemnotes_nonpublic database column 2) Edit an item, add a test nonpublic note 3) Check out the item, verify the note is visible in the checkouts table 4) Check in the item, verify the note is visible in the checkins table 5) View the item details, verify the note is visible and editable if your account has the rights to edit items Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart (cherry picked from commit 717878982f985b9f40f9eedec5e576efd62976ff) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: catalogue/updateitem.pl | 9 ++++- circ/returns.pl | 23 ++++++------ koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 16 +++++++++ .../prog/en/modules/catalogue/moredetail.tt | 38 ++++++++++++++------ .../intranet-tmpl/prog/en/modules/circ/returns.tt | 6 ++-- svc/checkouts | 33 +++++++++-------- 6 files changed, 83 insertions(+), 42 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 7 11:36:09 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Dec 2015 10:36:09 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-6-g24ba596 Message-ID: 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.22.x has been updated via 24ba596672f6537db8fcb5b54bf5017bd6d41a6e (commit) from 13c4a8e77a0a798fb63edded881d56fdafc874f1 (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 24ba596672f6537db8fcb5b54bf5017bd6d41a6e Author: Nicholas van Oudtshoorn Date: Thu May 15 13:27:48 2014 +0800 BUG 11602: [ENH] Fix localcover display Adds a css class of thumbnail to local covers. Don't show the 1px "No image found" image (since we'll ususally try another image provider) Signed-off-by: Hector Castro Box with "No cover image availabe" fixed when syspref OPACLocalCoverImages set to display Signed-off-by: Katrin Fischer (cherry picked from commit a06793dc584212dde20f985740691b7e49074c76) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 7 11:39:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Dec 2015 10:39:36 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-8-g0ee6451 Message-ID: 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.22.x has been updated via 0ee6451023ca0c973052bcf685e9ab329a390927 (commit) via 773d7e2d1faa449ea1bd6f28d2422a195388686e (commit) from 24ba596672f6537db8fcb5b54bf5017bd6d41a6e (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 0ee6451023ca0c973052bcf685e9ab329a390927 Author: Jonathan Druart Date: Wed Nov 25 16:40:37 2015 +0000 Bug 12152: Holds to pull report - Display location descriptions ...instead of their code Test plan: Same as before, confirm the the location codes are replaced with their descriptions. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a901ed155a56a2c4ab95bb7bc951e2a0a7d04277) Signed-off-by: Julian Maurice commit 773d7e2d1faa449ea1bd6f28d2422a195388686e Author: Katrin Fischer Date: Sun Nov 22 03:38:30 2015 +0100 Bug 12152: Holds to pull report - Show branch names and item type descriptions The 'Holds to pull' report shows branch and itemtype codes without this patch. With the patch, names and descriptions should display. To test: - Make sure there are some holds for available items in your system - Go to Circulation > Holds to pull - Verify changes mentioned above in the list of holds shown Signed-off-by: David Cook Works as described, although as Magnus mentioned, Locations still use codes instead of descriptions. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 0f7f6a5cb32cd2e68bc39e8464147852347be310) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 7 14:09:09 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Dec 2015 13:09:09 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-17-g217c503 Message-ID: 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.20.x has been updated via 217c50382a436cecd159a63eb1f93f4802214a46 (commit) via 7e577fe266d2f775e15cdaed60951ca6de86ad2f (commit) via 6a6d051f9169f8c4a69dd978644b3031ca32803a (commit) via 1029f25cf44b05e2cf590a63f20eb86ff0d8c426 (commit) via 1a49ebf90bdb44ebf40b1437d362f0db9cceabc7 (commit) via d52ae9be236ec1355991b060afef0d50b500164f (commit) via a6d5c091df0b15e00719d5a14f42ac7fd4f61e5b (commit) from 774746597678bf176f4d067e90e5d40db4e942b8 (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 217c50382a436cecd159a63eb1f93f4802214a46 Author: Jonathan Druart Date: Wed Nov 25 16:40:37 2015 +0000 Bug 12152: Holds to pull report - Display location descriptions ...instead of their code Test plan: Same as before, confirm the the location codes are replaced with their descriptions. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a901ed155a56a2c4ab95bb7bc951e2a0a7d04277) Signed-off-by: Julian Maurice (cherry picked from commit 0ee6451023ca0c973052bcf685e9ab329a390927) Signed-off-by: Fr?d?ric Demians commit 7e577fe266d2f775e15cdaed60951ca6de86ad2f Author: Katrin Fischer Date: Sun Nov 22 03:38:30 2015 +0100 Bug 12152: Holds to pull report - Show branch names and item type descriptions The 'Holds to pull' report shows branch and itemtype codes without this patch. With the patch, names and descriptions should display. To test: - Make sure there are some holds for available items in your system - Go to Circulation > Holds to pull - Verify changes mentioned above in the list of holds shown Signed-off-by: David Cook Works as described, although as Magnus mentioned, Locations still use codes instead of descriptions. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 0f7f6a5cb32cd2e68bc39e8464147852347be310) Signed-off-by: Julian Maurice (cherry picked from commit 773d7e2d1faa449ea1bd6f28d2422a195388686e) Signed-off-by: Fr?d?ric Demians commit 6a6d051f9169f8c4a69dd978644b3031ca32803a Author: Nicholas van Oudtshoorn Date: Thu May 15 13:27:48 2014 +0800 BUG 11602: [ENH] Fix localcover display Adds a css class of thumbnail to local covers. Don't show the 1px "No image found" image (since we'll ususally try another image provider) Signed-off-by: Hector Castro Box with "No cover image availabe" fixed when syspref OPACLocalCoverImages set to display Signed-off-by: Katrin Fischer (cherry picked from commit a06793dc584212dde20f985740691b7e49074c76) Signed-off-by: Julian Maurice (cherry picked from commit 24ba596672f6537db8fcb5b54bf5017bd6d41a6e) Signed-off-by: Fr?d?ric Demians commit 1029f25cf44b05e2cf590a63f20eb86ff0d8c426 Author: Kyle M Hall Date: Tue Dec 1 17:49:55 2015 +0000 Bug 13024 [QA Followup] - Add nonpublic note to relatives' checkouts Signed-off-by: Jonathan Druart (cherry picked from commit fc050984699e6831fdb354c77d065a08567beb9f) Signed-off-by: Julian Maurice (cherry picked from commit 13c4a8e77a0a798fb63edded881d56fdafc874f1) Signed-off-by: Fr?d?ric Demians commit 1a49ebf90bdb44ebf40b1437d362f0db9cceabc7 Author: Kyle M Hall Date: Fri Apr 24 10:41:58 2015 -0400 Bug 13024 - Nonpublic note not appearing in the staff client The nonpublic note for items is not displayed in the staff client. It should be displayed in the following areas: 1) Checkouts (circulation.pl) 2) Checkins (returns.pl) 3) Record details ( moredetail.pl ) Test Plan: 1) Ensure your non-public note field is mapped to the items.itemnotes_nonpublic database column 2) Edit an item, add a test nonpublic note 3) Check out the item, verify the note is visible in the checkouts table 4) Check in the item, verify the note is visible in the checkins table 5) View the item details, verify the note is visible and editable if your account has the rights to edit items Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart (cherry picked from commit 717878982f985b9f40f9eedec5e576efd62976ff) Signed-off-by: Julian Maurice (cherry picked from commit a5b993672fc2b87a51d4944616e5f303992d4f3f) Signed-off-by: Fr?d?ric Demians commit d52ae9be236ec1355991b060afef0d50b500164f Author: Katrin Fischer Date: Wed Nov 25 18:18:04 2015 +0100 Bug 15250: Fix Perl error on acqisition stats page To test: - Go to reports -> Acquisitions statistics - Populate with the following values: Acquisitions statistics Received on. Row: checked Column: checked From: 01/01/2015 To: Un-selected Cell value Count items Output: To screen into the browser: checked - Running the report will trigger the following error: Software error: Can't locate object method "field" via package "aqorders.datereceived" (perhaps you forgot to load "aqorders.datereceived"?) at /usr/share/koha/intranet/cgi-bin/reports/acquisitions_stats.pl line 293. - Apply the patch and repeat test - Verify the report now works correctly Note: Patch was created from notes and suggested fix on the bug report, written by Barton Chittenden. Signed-off-by: Brendan Gallagher Signed-off-by: Jonathan Druart (cherry picked from commit d9cef35b75770104494c2f4a01d975f367b515bf) Signed-off-by: Julian Maurice (cherry picked from commit cd693a52b8306f1bdc66804fb84fe17cadcd658f) Signed-off-by: Fr?d?ric Demians commit a6d5c091df0b15e00719d5a14f42ac7fd4f61e5b Author: Jonathan Druart Date: Wed Nov 25 17:08:43 2015 +0000 Bug 15256: Fix items table display on the detail page Bug 14966 fixed a bug but introduced another one: With IndependentBranches set to 'prevent', if the librarian (without the superlibrarian permission) can edit items but not all, the table is broken. DataTables raises the following warning: "DataTables warning: table id=DataTables_Table_1 - Requested unknown parameter '8' for row0." And does not display correctly. Test plan: 1/ Create a biblio record with 1+ items located in different places. 2/ Create/use a patron with the permission to edit items 3/ Set the IndependentBranches pref to 'prevent' 4/ With this patron logged in, go on the record detail page. Without this patch, the display is broken (only 1 edit link and 1 td missing, DataTables raises a warning). With this patch, the display is correct. Signed-off-by: Fr?d?ric Demians See the warning, and the broken table. Solved by this patch. Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit d456acc7bfd2507ac7eaaf32bd6da1f023655886) Signed-off-by: Julian Maurice (cherry picked from commit ed13f4fe200352460b62376b01ba48d3ba51ae80) Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: catalogue/updateitem.pl | 9 ++++- circ/returns.pl | 23 ++++++------ koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 16 +++++++++ .../prog/en/modules/catalogue/detail.tt | 8 +++-- .../prog/en/modules/catalogue/moredetail.tt | 38 ++++++++++++++------ .../prog/en/modules/circ/pendingreserves.tt | 11 +++--- .../intranet-tmpl/prog/en/modules/circ/returns.tt | 6 ++-- koha-tmpl/opac-tmpl/bootstrap/js/localcovers.js | 3 +- reports/acquisitions_stats.pl | 2 +- svc/checkouts | 35 +++++++++--------- 10 files changed, 100 insertions(+), 51 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 04:19:53 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 03:19:53 +0000 Subject: [koha-commits] main Koha release repository branch 3.18.x updated. v3.18.12-60-g7a2cd9d Message-ID: 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.18.x has been updated via 7a2cd9dcc4097dbf57bb4f128dbaa5e6d892d32c (commit) via e5b4d4e894037581e60408786c00002f8d62c7f4 (commit) via fe792c6bce62892e66d54bbd80ef82babfbd27e6 (commit) via 84fa5ba37a81828079cff363cfc364979e0ad005 (commit) via cb3dec9af9da640f3e32996797cae64dbc531bab (commit) via f39504ec0293e681d47ffd9b438decd3a1014ba3 (commit) via b61d1c461bdaa22af48005e0d7a39c5d08ee0a3b (commit) via 14f3736051a0cc50b6b667a85bd20125e9e0bdd3 (commit) via 3399e3d4b8429393aefd9552ef8c74388f073b6b (commit) via bf9994fb34aa01bf9a635358f4adb64b8a7b26c4 (commit) via 6edc09cfef26158266979479de0c7e83566ccd64 (commit) via 5c9534a6ad5d0109b8876dda08c07294814c54ad (commit) via e8fcc11d46b053a90a0ea119c0f255017294e2af (commit) via a8d67f57c437b5a62c7eb5a2a985088af6be16fb (commit) via 08b4eb1b4f4dfa152c593d94b797f142206fc27c (commit) via b4aa4fcb2c43a45b0b35a62bf9ed40c8bd03d65b (commit) via 28834f0e9ab2220e5576b3497df23d66f7ceaca9 (commit) via bc20806f187e6b21b51fa11658fdf8da91ff3a55 (commit) via 3ae124e6af22472586258e10688dce8b26827442 (commit) via d7c768e98b76d8a33d56a3fdc249681dbf096026 (commit) via 1f0e4471d268d08bc9cb67508cd7a37581fb4865 (commit) via 781ccb9eaf82bf065d4e14b7f1eec890335be9dc (commit) via ec421d6c321b741db53551efdc9f4ef61ef0b969 (commit) via 786f21a8c10b81fbfd4710e00f4568b2f53ce872 (commit) via e7afb75fe4999382387c237fe409d7be6beb5595 (commit) via b1a26201782577f913824ea045eccf1e039cba25 (commit) via a7f91406ede430c22efca73a7016f2ceb819d480 (commit) via 0a27e3517fb1da3c460f887b71f49bad85e1e7b6 (commit) via df64a9ca8a9574463fd6ef5e170ce14eeacfee00 (commit) via b46754d842bc6a03ca3051307e4f32f0892b733f (commit) via c11723f28aa32f24255c3c882ecfbbaa5f3dbe98 (commit) via 7e15f61a69df9d2f762b065295c9f2451bd96f8e (commit) via b958af6f1213ded4f49216405d4c67a78394673d (commit) via b10ccd466592250f2b40f182e9d5e1db91d1dcab (commit) via 37ca7f59fc7ab863cffff15b06d4b0d29844245a (commit) via 839f8312a27d904b4295cb801b3480298a9a897c (commit) via 9aa9a8ef3770a6a6845f37b90bbbdd8feada9c93 (commit) via 3c27f9c8c63122801770d794b4f5ebe7dbfd7353 (commit) via ede5e7c6884295e0dbe77618a03cd4a8cef723c6 (commit) via 9bcc69167c1f4fdb43119569f81ca912ce788ec9 (commit) via ed24d7a8d7252096f3a5a0667d9748c66451bd74 (commit) via 1ae8785540a56c41a7f53bb9c04deb442bd98c74 (commit) via 6d01b9fcbdf10b8163edb36af3465e91dcab9a7a (commit) via c61e33e6f0962026c32a9be80b05cb20ab17d7b7 (commit) via 744da173721dfe8a7bcd0e211a8f0d253e6aeb0e (commit) via 8e4c2bb2c7df66c13f11a408bed32da8fc1fc6dd (commit) via 1fe5ce9aa001ad57265adb7f76080cbe8ae5edd8 (commit) via 477da3c192ac65581a5e1f810789ced86cce5146 (commit) via ce5b361fc81938695b3a7271f803d1322d93b63b (commit) via 4bf09f1c515ae78b8623b23a10118c156896dc00 (commit) via c543002df14deca891ca740e129c5e93bdca269f (commit) via eda3170f22804233ca2a3678dd5e64858c2c1358 (commit) via 1a319d293c1da08f71e32a447e8c41f7ac5a25bd (commit) from ba048481d80f36f6436619d64a3cd9ffdbaa2924 (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 7a2cd9dcc4097dbf57bb4f128dbaa5e6d892d32c Author: Jonathan Druart Date: Wed Nov 25 16:40:37 2015 +0000 Bug 12152: Holds to pull report - Display location descriptions ...instead of their code Test plan: Same as before, confirm the the location codes are replaced with their descriptions. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a901ed155a56a2c4ab95bb7bc951e2a0a7d04277) Signed-off-by: Julian Maurice (cherry picked from commit 0ee6451023ca0c973052bcf685e9ab329a390927) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 217c50382a436cecd159a63eb1f93f4802214a46) Signed-off-by: Liz Rea commit e5b4d4e894037581e60408786c00002f8d62c7f4 Author: Katrin Fischer Date: Sun Nov 22 03:38:30 2015 +0100 Bug 12152: Holds to pull report - Show branch names and item type descriptions The 'Holds to pull' report shows branch and itemtype codes without this patch. With the patch, names and descriptions should display. To test: - Make sure there are some holds for available items in your system - Go to Circulation > Holds to pull - Verify changes mentioned above in the list of holds shown Signed-off-by: David Cook Works as described, although as Magnus mentioned, Locations still use codes instead of descriptions. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 0f7f6a5cb32cd2e68bc39e8464147852347be310) Signed-off-by: Julian Maurice (cherry picked from commit 773d7e2d1faa449ea1bd6f28d2422a195388686e) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 7e577fe266d2f775e15cdaed60951ca6de86ad2f) Signed-off-by: Liz Rea commit fe792c6bce62892e66d54bbd80ef82babfbd27e6 Author: Katrin Fischer Date: Wed Nov 25 18:18:04 2015 +0100 Bug 15250: Fix Perl error on acqisition stats page To test: - Go to reports -> Acquisitions statistics - Populate with the following values: Acquisitions statistics Received on. Row: checked Column: checked From: 01/01/2015 To: Un-selected Cell value Count items Output: To screen into the browser: checked - Running the report will trigger the following error: Software error: Can't locate object method "field" via package "aqorders.datereceived" (perhaps you forgot to load "aqorders.datereceived"?) at /usr/share/koha/intranet/cgi-bin/reports/acquisitions_stats.pl line 293. - Apply the patch and repeat test - Verify the report now works correctly Note: Patch was created from notes and suggested fix on the bug report, written by Barton Chittenden. Signed-off-by: Brendan Gallagher Signed-off-by: Jonathan Druart (cherry picked from commit d9cef35b75770104494c2f4a01d975f367b515bf) Signed-off-by: Julian Maurice (cherry picked from commit cd693a52b8306f1bdc66804fb84fe17cadcd658f) Signed-off-by: Fr?d?ric Demians (cherry picked from commit d52ae9be236ec1355991b060afef0d50b500164f) Signed-off-by: Liz Rea commit 84fa5ba37a81828079cff363cfc364979e0ad005 Author: Jonathan Druart Date: Wed Nov 25 17:08:43 2015 +0000 Bug 15256: Fix items table display on the detail page Bug 14966 fixed a bug but introduced another one: With IndependentBranches set to 'prevent', if the librarian (without the superlibrarian permission) can edit items but not all, the table is broken. DataTables raises the following warning: "DataTables warning: table id=DataTables_Table_1 - Requested unknown parameter '8' for row0." And does not display correctly. Test plan: 1/ Create a biblio record with 1+ items located in different places. 2/ Create/use a patron with the permission to edit items 3/ Set the IndependentBranches pref to 'prevent' 4/ With this patron logged in, go on the record detail page. Without this patch, the display is broken (only 1 edit link and 1 td missing, DataTables raises a warning). With this patch, the display is correct. Signed-off-by: Fr?d?ric Demians See the warning, and the broken table. Solved by this patch. Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit d456acc7bfd2507ac7eaaf32bd6da1f023655886) Signed-off-by: Julian Maurice (cherry picked from commit ed13f4fe200352460b62376b01ba48d3ba51ae80) Signed-off-by: Fr?d?ric Demians (cherry picked from commit a6d5c091df0b15e00719d5a14f42ac7fd4f61e5b) Signed-off-by: Liz Rea commit cb3dec9af9da640f3e32996797cae64dbc531bab Author: Galen Charlton Date: Sat Dec 5 01:26:11 2015 +0000 new Debian package maintainer Signed-off-by: Galen Charlton (cherry picked from commit 3ee174b759630752dec9c53066fa79ef056e180c) Signed-off-by: Liz Rea commit f39504ec0293e681d47ffd9b438decd3a1014ba3 Author: Jonathan Druart Date: Thu Oct 1 11:58:41 2015 +0100 Bug 5371: (follow-up) Force no caching for private pages at the OPAC Same as previous patch for opac-messaging.pl and opac-readingrecord.pl Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit a988e9425ce1f8f4bf28b46473adac941d634973) Signed-off-by: Fr?d?ric Demians (cherry picked from commit c5c954506f5400b8732ee37c52d86c009215ec8f) Signed-off-by: Liz Rea commit b61d1c461bdaa22af48005e0d7a39c5d08ee0a3b Author: Jonathan Druart Date: Thu Sep 17 12:45:15 2015 +0100 Bug 5371: Force no caching for private pages at the OPAC In order no to slow too much the browsing, it is certainly not a good idea to add this cache-control value for all pages at the OPAC. This patch just adds where the author found it could be useful. Test plan: 1/ Login at the OPAC 2/ Go on the account page (opac/opac-account.pl) 3/ Click log out 4/ Use the back button of your browser Without this patch you will see the previous page. With this patch, the previous page will be reloaded and you will be redirected to the login form. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 542ab0bce949eba3abc98ff1c433fe6099db105d) Signed-off-by: Fr?d?ric Demians Conflicts: opac/opac-discharge.pl commit 14f3736051a0cc50b6b667a85bd20125e9e0bdd3 Author: David Cook Date: Tue Nov 17 17:18:05 2015 +1100 Bug 15198: Change wording of OpacSuppression system preference Signed-off-by: Hector Castro Paragraph rewording successfully Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 30a0365e915cce4e9b08bde790db69ef6d8ce9bd) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 2f5b29ef19d85c40ed386be3fb4490387471d35c) Signed-off-by: Liz Rea commit 3399e3d4b8429393aefd9552ef8c74388f073b6b Author: David Cook Date: Tue Nov 17 13:03:59 2015 +1100 Bug 15198: Make OpacSuppression work even if there are no records suppressed This patch adds the Zebra special attribute 14 to ccl.properties and opac-search.pl, so that we can turn on OpacSuppression and still return results even if there are no records in Zebra for the Suppress index. _TEST PLAN_ Before applying: 1) Make sure that you have no suppressed records indexed in Zebra 2) Turn on OpacSuppression system preference 3) Search using a keyword which should bring up records 4) Note that no records are returned in the results 5) Change UseQueryParser system preference to "Try" 6) Repeat steps 3-4 Apply the patch. After applying: 7) Repeat step 3 (ie search using a keyword which should bring up records) 8) Confirm that records are appearing in the results! 9) Change UseQueryParser system preference to "Do not try" 10) Repeat step 3 11) Confirm that records are appearing in the results! Signed-off-by: Hector Castro Works as advertised. No more, won't need to have at least one record with the value "1" in the field mapped with this index. All records in OPAC returned. Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit dd9a4ed6c6fbc078d43880e4adf8cfe28179888d) Signed-off-by: Fr?d?ric Demians (cherry picked from commit c0928321a062fed31ce4ca841237be36d3e14cc2) Signed-off-by: Liz Rea commit bf9994fb34aa01bf9a635358f4adb64b8a7b26c4 Author: Jonathan Druart Date: Sun May 24 17:52:25 2015 +0200 Bug 14264: Fix export of late orders when translated Bug 7298 tried to fix this issue, but it was not correct. We have 3 files in acqui/csv: basketgroup.tt, basket.tt and lateorders.tt The first 2 don't contain translatable string, and are not modified on translating the templates (`translate install`) On the contrary, lateorders.tt has some strings to translate ('Author:', 'Published by:', etc.). After being translated, all carriage returns between TT tags are removed. Test plan: 1/ choose a language and update + translate the templates for instance: cd misc/translate; ./translate update es-ES; ./translate install es-ES 2/ Go to acqui/lateorders.pl using this language 3/ Generate a csv for 1+ late orders and confirm the first line only contains the headers. Signed-off-by: Laurence Lefaucheur Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit b2706884a1916827229ad6f818790ec47a43cbf5) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 9fa3b18924addd2c468435b13bc1fc84157fff28) Signed-off-by: Liz Rea commit 6edc09cfef26158266979479de0c7e83566ccd64 Author: Jonathan Druart Date: Tue Sep 22 12:11:34 2015 +0100 Bug 4502: Changing wording again... Signed-off-by: Bernardo Gonzalez Kriegel Just a string patch, others are signed. No errors Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 379329861d19b178f14d360d9fee2518a462d8a7) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 9d691b2a85d494b66352d2d3de05480fe170fd89) Signed-off-by: Liz Rea commit 5c9534a6ad5d0109b8876dda08c07294814c54ad Author: Mark Tompsett Date: Mon Apr 6 19:50:30 2015 -0400 Bug 4502: An attempt to make things more sensible. The reason the budget_period_id was not defined was because in two cases it was not passed! This patch adds those missing parameters. And as a result, cuts out the attempt to default the authcat to '' unless the budget_period_id is defined. Additionally, the start and end months don't seem to be passed, so rather than have it blow up, checking them forces the else case logic. budget_period_id is the budget id. If you have two budgets, you can craft a URL to work with budget_period_id matching those two ids. Anything else should trigger the new error which was modified to reflect more of what the problem is. Follow the test plan in comment #6. Feel free to also to attempt crafting URLs and triggering errors. Signed-off-by: Bernardo Gonzalez Kriegel Well, works and does not explode any more No errors To trigger the new message simply put /cgi-bin/koha/admin/aqplan.pl on your staff page, an intriguing 'Planning for by Asort1' appears :) Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit fea7b9b4d444a6bdf3f1326c54eddd68670be7f7) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 4ca1bac3106728450cef9feb9df942e78a1256a9) Signed-off-by: Liz Rea commit e8fcc11d46b053a90a0ea119c0f255017294e2af Author: Jonathan Druart Date: Tue Mar 24 15:54:37 2015 +0100 Bug 4502: Catch software error if no active budget defined TEST PLAN --------- 0) Back up your database. 1) In mysql client: > DROP DATABASE {your koha database name}; > CREATE DATABASE {your koha database name}; > QUIT; 2) Go to the staff client, and install all the default and optional things -- except patrons. :) 3) Log into staff client. 4) Create a patron -> New Patron -> Staff 5) Enter data and Save 6) More -> Set Permissions 7) Make superlibrarian 8) Log out 9) Log in as new superlibrarian 10) Acquisitions -> Budgets -> New Budget 11) Enter a non-active budget with some funds. -- Once saved, it should list in the inactive budgets. 12) Click on the name. 13) Click on one of the Planning submenu options. 14) Click the 'Submit' button in the Filter area. -- This should trigger the blow up. 15) Apply the patch 16) Repeat steps 12-15 -- The kaboom is avoided and a nice message given. NOTE: This does not solve all the problems in this ugly, ugly module area. It does solve the one thing it is meant to: that nasty kaboom. Signed-off-by: Mark Tompsett Signed-off-by: Bernardo Gonzalez Kriegel Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 0a391237710aec779b000c3dff219e54b22fb76a) Signed-off-by: Fr?d?ric Demians (cherry picked from commit e5d59cad73a4b6c16aca72bf478ce8df4e5f8f3e) Signed-off-by: Liz Rea commit a8d67f57c437b5a62c7eb5a2a985088af6be16fb Author: Liz Rea Date: Fri Dec 11 14:35:58 2015 +1300 3.18 rmaint followup: fixing forbidden pattern in C4/SIP/ILS.pm commit 08b4eb1b4f4dfa152c593d94b797f142206fc27c Author: Kyle M Hall Date: Mon Mar 2 06:06:58 2015 -0800 Bug 13411: (QA followup) Add logging Signed-off-by: Brendan A Gallagher Signed-off-by: Tomas Cohen Arazi (cherry picked from commit feafa273e443e56021959153e91bd999a68daf29) Signed-off-by: Fr?d?ric Demians (cherry picked from commit fc5804e6f1c175e40708b0a7604c4bf7ba5344bd) Signed-off-by: Liz Rea commit b4aa4fcb2c43a45b0b35a62bf9ed40c8bd03d65b Author: Kyle M Hall Date: Thu Aug 27 10:56:22 2015 -0400 Bug 13411: Koha's SIP server returns not ok for checking in items that are not checked out If an item is not checked out when a checkin via SIP2 is attempted, Koha's SIP server sends back an "ok" of 0, and the AF message "Item not checked out". I am not entirely sure this is good and correct behavior by the SIP2 protocol. In particular, this will cause SIP2 book sorting devices to fail on all items that are not checked out, causing them all to be put into the "special handling" been that should be reserved for things like items checked in at the wrong library and items on hold. Test Plan: 1) Apply the patch for bug 13159 so you can use the new enhanced SIP2 command line emulator 2) Use a command similar to the following to check in an item: sip_cli_emulator.pl -a localhost -su -sp -l --item -m checkin 3) Note the 3rd character is 0, and there is an AF field saying the item is not checked out 4) Apply this patch 5) Restart the SIP server 6) Repeat steps 2-3, note that nothing has changed 7) In the SIP config file, Add the parameter checked_in_ok="1" to the SIP account you are using. 8) Restart the SIP server 9) Repeat steps 2-3, note that this time the 3rd character is 1, and you do not recieve the item not checked out message. Signed-off-by: Benjamin Rokseth Signed-off-by: Brendan A Gallagher Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 181d3aa56de8377c67247db26932c4e5a7cb83d9) Signed-off-by: Fr?d?ric Demians (cherry picked from commit c87520d90a99c06a7f6194643ead55c1ebd3a867) Signed-off-by: Liz Rea commit 28834f0e9ab2220e5576b3497df23d66f7ceaca9 Author: Fr?d?ric Demians Date: Wed Nov 11 18:59:35 2015 +0100 Bug 15175: Respect IntranetBiblioDefaultView syspref Respect IntranetBiblioDefaultView on intra search result page, on cover image link, when XSLTResultsDisplay is empty. TO TEST: 1. Empty XSLTResultsDisplay 2. Activate intranet local and Amazon cover images 3. Play changing IntranetBiblioDefault, and observe the links respectively on biblio record title and cover image. Title's link is OK, cover image link goes to detail.pl page independently of IntranetBiblioDefault. 4. Apply the patch. 5. Repeat 3. Signed-off-by: Hector Castro Link to right display according with IntranetBiblioDefaultView is fixed. Signed-off-by: Katrin Fischer http://bugs.koha-community.org/show_bug.cgi?id=14175 Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 0fe08231f427bdc65b1ff1219ad7507c284f1dbd) Signed-off-by: Fr?d?ric Demians (cherry picked from commit c9d030f75f338fea183895010e8787ae1fe48c67) Signed-off-by: Liz Rea commit bc20806f187e6b21b51fa11658fdf8da91ff3a55 Author: Jonathan Druart Date: Fri Nov 13 15:45:04 2015 +0000 Bug 15114: Fix typo in opac-suggestion template There is a $ in front of the loggedinusername variable, which is obviously not what is expected here. It fixes the wrong warning message "You are not authorized to see pending purchase suggestions." when it should be "There are no pending purchase suggestions." Signed-off-by: Fr?d?ric Demians Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 621f2ce9ac960d93466c9da5b4c6559e71519e3d) Signed-off-by: Fr?d?ric Demians (cherry picked from commit c262b16abec3d23eea864eed91dd132685ff6285) Signed-off-by: Liz Rea commit 3ae124e6af22472586258e10688dce8b26827442 Author: Jonathan Druart Date: Fri Nov 13 09:17:49 2015 +0000 Bug 15109 - Regression in patron search results ordering In Koha 3.16 or earlier, before the introduction of the ajax datatable for patron searching, the search results were ordered by name. In master, the results are currently ordered by cardnumber, which is not very useful. Test Plan: 1) Do a "browse by last name" or a patron search 2) Note the results are sorted by card number 3) Apply this patch 4) Reload the page, start a new search 5) Note the results are sorted by name Signed-off-by: Nicole Engard Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit cc65a5fed2afd27b2a45af49d6fe08d54fef7de9) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 1524cb1119db421bd67a22e461cb53bdadd75ec7) Signed-off-by: Liz Rea commit d7c768e98b76d8a33d56a3fdc249681dbf096026 Author: David Cook Date: Tue Nov 17 12:36:16 2015 +1100 Bug 15182: Conditionally load Koha::NorwegianPatronDB This patch loads Koha::NorwegianPatronDB if it can, or adds a warning to the log if it can't load it. Since the Koha::NorwegianPatronDB functionality in C4::Members is wrapped in system preferences, the loading of the module is irrelevant unless one actually wants to use the module and its associated functionality. NOTE: This patch fixes a problem where we were getting errors saying Crypt::GCrypt couldn't be loaded even though it's not a required dependency. This patch will likely only affect people not using Debian-based systems where libcrypt-gcrypt-perl is available. The current version of Crypt::GCrypt doesn't build so it's not an option for most non-Debian users to install this not required dependency in order to work around this issue... Signed-off-by: Hector Castro Works as advertised for Debian-based systems Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 1801a9462e190231f3303b01247b834f6e1d99bd) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 3b510cee00e5960eff43800d9df978123061b9b6) Signed-off-by: Liz Rea commit 1f0e4471d268d08bc9cb67508cd7a37581fb4865 Author: Fr?d?ric Demians Date: Thu Nov 5 08:45:25 2015 +0100 Bug 15133: encode correctly email generated by runreport.pl /misc/cronjobs/runreport.pl send badly encoded email in text/csv (partially ok in HTML). TEST: 1. Send by email a report containing a subject with accented characters and resultset with accented characters. For example: ./runreport.pl --subject="???" --to=me at home.org 1 ./runreport.pl --format=html --subject="???" --to=me at home.org 1 The first email contains badly encoded subject & message. The second email contains badly encoded subject, but correct message. 2. Apply the patch 3. Repeat 1 => No more strange characters. Signed-off-by: Liz Rea Characters are correctly encoded now, thanks for that good spot. Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 9515db57bdd13cdff33d9056963455fb850ad877) Signed-off-by: Fr?d?ric Demians (cherry picked from commit bfbddd183c9c97b05b1e9305ff5e8f45ac19c179) Signed-off-by: Liz Rea commit 781ccb9eaf82bf065d4e14b7f1eec890335be9dc Author: Liz Rea Date: Wed Nov 4 15:33:40 2015 +1300 Bug 15120: runreport.pl cronjob doesn't allow custom subjects anymore To test, well do something like misc/cronjobs/runreport.pl --subject="My fancy subject!" --to=you at youraddress.com 1 where 1 is the number of your favourite saved report. Success is your email arrives with the subject "My fancy subject!" Failure is (with --subject defined) you get either the description of the report, or "Koha saved report" as the subject. This is success without --subject defined. Signed-off-by: Frederic Demians Bug repeatable and fixed by this patch. Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 4f8476e09c2de223f73692521b8f8e533ef8400f) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 5288b0d9b579a90e287348c8650d9d92a36f8ca2) Signed-off-by: Liz Rea commit ec421d6c321b741db53551efdc9f4ef61ef0b969 Author: Fridolin Somers Date: Thu Jul 16 17:48:14 2015 +0200 Bug 14542: Transliterate rule for all single quote forms Single quotes in common language (not in programming) are usually ', but there is also the form known as ’ in HTML. See https://fr.wikipedia.org/wiki/Apostrophe_%28typographie%29 This bug proposes to transliterate all forms into a space. Test plan : (I'll use the code ’ instead of the unicode character) - Without the patch - Create a record with title : L’avion d’argile - Index this record - Search for "L’avion d’argile" => You find the record - Search for "L'avion d'argile" => You do not find the record - Apply patch - Search for "L’avion d’argile" => You find the record - Search for "L'avion d'argile" => You find the record - Search for "L avion d argile" => You find the record Signed-off-by: Frederic Demians Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit b11eb03a4c9674f4f4dedadaa8790257e30fb1d0) Signed-off-by: Fr?d?ric Demians (cherry picked from commit c7f90a22be27a8960b6429a5a7e66bf77371f8da) Signed-off-by: Liz Rea commit 786f21a8c10b81fbfd4710e00f4568b2f53ce872 Author: Fridolin Somers Date: Wed Apr 29 12:35:00 2015 +0200 Bug 14078: (followup) converting from ISO5426 is not complete Conversion of MARC from ISO5426 is defined in C4::Charset::char_decode5426(). Each character or combined characters conversion is defined in a map. This patch adds missing conversions. See http://www.gymel.com/charsets/MAB2.html Signed-off-by: Frederic Demians Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 636050f9be374fc15acad8b047c1ae227d38b225) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 27d0b204889dacc8cb4ad472a853b7f642b4b0ea) Signed-off-by: Liz Rea commit e7afb75fe4999382387c237fe409d7be6beb5595 Author: Fridolin Somers Date: Wed Apr 29 12:24:23 2015 +0200 Bug 14078: converting from ISO5426 is not complete Conversion of MARC from ISO5426 is defined in C4::Charset::char_decode5426(). Each character or combined characters conversion is defined in a map. This patch changes some odd actual conversions. In char_decode5426(), only characters between 0xC0 and 0xDF will be used for combining with following charater : ($char >= 0xC0 && $char <= 0xDF) So conversion like "$chars{0x81d1}=0x00b0" will never be used. Rules for "h with breve below" use combining with 0xf9 but looks like the correct caracter is 0xd5. See http://www.gymel.com/charsets/MAB2.html Signed-off-by: Frederic Demians Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 5e3882bcecede59f24a6b3c4aa9c4324390a29c3) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 2ceab7145e2c337a8737d2f3a4b20ff9a6c20315) Signed-off-by: Liz Rea commit b1a26201782577f913824ea045eccf1e039cba25 Author: Hector Castro Date: Sat Nov 7 00:16:02 2015 -0600 Bug 15154: Allow correct translation for upload local cover image To test: -Set syspref LocalCoverImages and OPACLocalCoverImages to Allow -A new tab 'Images' appear in bib record detail on Intranet. -Notice about the phrase "Please upload one" -Apply the patch and reload the page. -New phrase appear "Select the image file to upload" with button Upload -Update translation files : cd misc/translator; perl translate update es-ES -You will see in es-ES-staff-prog.po the new entry "Select the image file to upload. %sUpload%s" -You can see the result installing the translation cd misc/translator ; perl translate install es-ES Signed-off-by: Frederic Demians A native English speaker could confirm that the wording is ok: Please select the image file to upload Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit dfa757af927aaa5b80a4dd8c90210d12531cfcd7) Signed-off-by: Fr?d?ric Demians (cherry picked from commit ffa12f38437792b927e7189ec9fbe3f3429065a9) Signed-off-by: Liz Rea commit a7f91406ede430c22efca73a7016f2ceb819d480 Author: Jonathan Druart Date: Fri Nov 13 15:18:56 2015 +0000 Bug 15137: Display ISBN and author info when sending list by email Disclaimer: this is not caused by bug 14544 :) And can be backported! Both isbn and author information are missing when a list is sent by email. Emails sent from OPAC and staff should be (almost) the same. Test plan: 1/ Sent a list by email (Button "Send list") 2/ The email you will receive should contain the isbn and author info Signed-off-by: Bernardo Gonzalez Kriegel On top of last patch of Bug 14544 Works ok, mail with authors and ISBN No errors Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit eb286ebbc3c594e8e81e1e8b1848ca1d52b8bccb) Signed-off-by: Fr?d?ric Demians (cherry picked from commit caf0e23032c0ced4bba07ab4d888bd74695c9110) Signed-off-by: Liz Rea commit 0a27e3517fb1da3c460f887b71f49bad85e1e7b6 Author: Jonathan Druart Date: Thu Sep 17 14:31:55 2015 +0100 Bug 6657: Prevent biblionumber to be duplicated If the biblionumber field is displayed in the framework, on editing a biblio the field/subfield will be duplicated. To prevent that this patch adds a check when building the field list. Test plan: 1/ map biblio.biblionumber with 999$c 2/ Display 999$c in a framework 3/ Edit a biblio using this framework 4/ Save => The field should not have been duplicated 5/ map biblio.biblionumber with 001 6/ Display 001 in a framework 7/ Edit a biblio using this framework 8/ Save => The field should not have been duplicated Signed-off-by: Bernardo Gonzalez Kriegel Works as described, aldo removes duplicate values. No errors Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 9ae556a21243ecae669bda2c5f42a67769ae9d78) Signed-off-by: Fr?d?ric Demians (cherry picked from commit c32edbd6e1d25583b8bf040e472727b0058a87d6) Signed-off-by: Liz Rea commit df64a9ca8a9574463fd6ef5e170ce14eeacfee00 Author: Kyle M Hall Date: Thu Oct 29 07:48:02 2015 -0400 Bug 15079: Batch Delete Records Error When using the batch deletion tool, if the script attempts to delete an undeletable item, the script will die with the error: Label not found for "next BIBLIONUMBER" at /usr/share/koha/intranet/cgi-bin/tools/batch_delete_records.pl line 172. Test Plan: 1) Attempt to batch delete a record with an item that cannot be deleted 2) Note error 3) Apply this patch 4) Repeat step 1 5) Note the error no longer occurs Signed-off-by: Hector Castro Works as advertised. Follow comment 5 to reproduce the issue Signed-off-by: Jonathan Druart I have not tested this patch, but looking at the code it is obviously a mistake. If an error occured, we rollback and skip this record. Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 706a31b50d52ef1ba48c568d7e60c376cfe87983) Signed-off-by: Fr?d?ric Demians (cherry picked from commit dc39e4b410c173d497ce41651dbf39d6a72dd461) Signed-off-by: Liz Rea commit b46754d842bc6a03ca3051307e4f32f0892b733f Author: Aleisha Date: Tue Jul 21 18:38:58 2015 +0000 Bug 14553: Silencing warn triggered when clearing item rating on OPAC To test: 1) Go to any item and clear the star rating (don't have to set a rating first) 2) Notice the warn 3) Apply patch and reload page 4) Clear star rating 5) Notice no warn 6) Click a star to add a rating 7) Make sure your rating, the average rating and amount of votes are all correct 8) Could be beneficial to log in as another user and try to add a rating on the same item from their account. Check the average rating is cacalculated and amount of votes increases 9) Confirm still no warns Signed-off-by: Frederic Demians Can see the warning in logs, and its disappearance with this patch. Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 94c5f8d5f06b588da0903c9607349adbf16344be) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 0a325ab7ba740b69819d89bb1d6de18015289cae) Signed-off-by: Liz Rea commit c11723f28aa32f24255c3c882ecfbbaa5f3dbe98 Author: Jonathan Druart Date: Tue Nov 10 15:17:12 2015 +0000 Bug 14735: Save cache_expiry on modifying a report The cache_expiry is not saved when updating a SQL report. Test plan: 0/ Enable memcached 1/ Create a sql report 2/ Edit it and change the cache expiry value 3/ Edit again => The value should have been updated. Signed-off-by: Frederic Demians Repeatable bug. Solved with this patch. Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 27a15d5a429620dbad0a16292d714e3389ea057e) (cherry picked from commit eeb9a6c1e577245387604987a5ed1cd5c1ab1411) Signed-off-by: Liz Rea commit 7e15f61a69df9d2f762b065295c9f2451bd96f8e Author: Jonathan Druart Date: Tue Nov 10 09:06:32 2015 +0000 Bug 14575: Fix typo in opac-basket.tt No more typo in the codebase. Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit a0460ecc0abbe5f69554ab3885775e55b6a25fe0) (cherry picked from commit da2dfc07e3391492ae218389467d2959d92cec3e) Signed-off-by: Liz Rea commit b958af6f1213ded4f49216405d4c67a78394673d Author: David Cook Date: Tue Jul 21 13:09:39 2015 +1000 Bug 14575: OPACURLOpenInNewWindow should apply to item-level urls too This patch applies the OPACURLOpenInNewWindow system preference to item-level urls (in addition to the pre-existing bib-level url handling). _TEST PLAN_ Before applying: 1) Set OPACURLOpenInNewWindow to "don't" and click on an item-level url 2) Note that the current tab changes to that url 3) Set OPACURLOpenInNewWindow to "do" and click on an item-level url 4) Note that the current tab changes to that url Apply the patch. After applying: 5) Click on an item-level url 6) Note that the url opens in a new tab (as OPACURLOpenInNewWindow should be set to "do") 7) Set OPACURLOpenInNewWindow to "don't" and click on an item-level url 8) Note that the url opens in the current tab 9) Repeat the above steps 5-8 alternating "TrackClicks" between "Don't track" and either "Track" or "Track anonymously". Followed test plan. Works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit e815d1e010a20b73327cba1eaa78d08f06ec50a8) (cherry picked from commit 219df070e8beaede19914e995e7eb60be37ae854) Signed-off-by: Liz Rea commit b10ccd466592250f2b40f182e9d5e1db91d1dcab Author: Colin Campbell Date: Tue Oct 20 14:19:35 2015 +0100 Bug 15036: Do not overwrite complete status in basket ops Reopening or closing a basket should preserve the completed status for receipted orders. This patch excludes orderlines with the completed status from having their status rewritten as a result of the change in basket status Made the subroutines involved more efficient by removing an unnecessary loop and by not fetching a large amount of superfluous data Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 4a4dbbf1237c93e0233eef0600015c9be3320bf0) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 9dace4e21e33f1b92e1e2db7ef72435539895794) Signed-off-by: Liz Rea commit 37ca7f59fc7ab863cffff15b06d4b0d29844245a Author: Fridolin Somers Date: Tue Sep 22 09:49:39 2015 +0200 Bug 14867: userid not generated when defined in BorrowerUnwantedField When userid is not provided when creating a new patron, it is generated using surname and firstname. The bug is when userid is defined in syspref BorrowerUnwantedField, the input text is missing in patron creation form. When saving you always get an alert message : "Username/password already exists". No patron can be created. This patch corrects by adding this case to userid generation conditions. Test plan : - add 'userid' in syspref BorrowerUnwantedField - try to create a new patron : /cgi-bin/koha/members/memberentry.pl - there is not input text for userid - choose non-existing surname and firstname - click on save => Without patch : patron is not created, you see the alert message "Username/password already exists" => With patch : patron is created, userid is generated with surname and firstname - remove 'userid' in syspref BorrowerUnwantedField and check it can be defined in patron creation form Signed-off-by: Fr?d?ric Demians The issue is there, and this patch fixes it. Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 0cbc65111c735e699d94d50ad09c17fb7b7b8913) (cherry picked from commit ee185cfd1afed08d20f226ef8a2c62df2c96b6e8) Signed-off-by: Liz Rea commit 839f8312a27d904b4295cb801b3480298a9a897c Author: Jonathan Druart Date: Thu Jul 2 16:42:16 2015 +0100 Bug 14388: Funds should be sorted by budget_code Before this patch, the funds were sorted by budget_id, which does not make any sense. This patch adds a sort by budget_code on the fund list (acqui/acqui-home.pl and admin/aqbudgets.pl) Test plan: On both pages (acqui/acqui-home.pl and admin/aqbudgets.pl) confirm that the funds are now sorted by fund code (DB column budget_code) Signed-off-by: Nicole Engard Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit e0032c46e98b4cf31d76abb93d12041ea362d81e) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 1cd654313bd539e22eacf4322fc419331ed80d44) Signed-off-by: Liz Rea commit 9aa9a8ef3770a6a6845f37b90bbbdd8feada9c93 Author: Joonas Kylm?l? Date: Mon Aug 17 12:40:05 2015 +0000 Bug 14687: Patron's transaction history changes items' order after paying fines. Sorts Patron's accounting data consistently from newest to oldest. It doesn't depend on anymore to timestamp (which can be same for multiple entries) from database but instead uses accountline's id to sort. Signed-off-by: Liz Rea Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 307fe0ac533c2dc8116a183d104c864717a91fc5) Signed-off-by: Fr?d?ric Demians (cherry picked from commit eea56d412461d9b673306697dcf5335d8686afc8) Signed-off-by: Liz Rea commit 3c27f9c8c63122801770d794b4f5ebe7dbfd7353 Author: Jonathan Druart Date: Tue Sep 22 11:16:28 2015 +0100 Bug 12540: Display "Every" on editing a MMT action if previously selected On creating a marc modification template action, the "All" is changed with "Every" if the condition field is the same as the original field. But on editing, the "All" value is not replaced. For consistency, it should. Test plan: 1/ Create the following action: Copy field 650$x to 650$y if 650$z matches "foobar" Note that the "All" is replaced with "Every" when the condition is the same field as the original field. 2/ Save 3/ Edit the action. The "Every" should be selected. Without this patch, "All" is selected. Signed-off-by: Alex Arnaud Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 384dceeef583c444ac8350c928a2e1aed34e536b) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 868bdc355d9f5d7e098fd00eff2fbc29597659c7) Signed-off-by: Liz Rea commit ede5e7c6884295e0dbe77618a03cd4a8cef723c6 Author: Tomas Cohen Arazi Date: Fri Nov 6 11:21:56 2015 -0300 Bug 15151: Avoid DB access to load C4::Members In order to avoid loading Koha::NorwegianPatronDB a DB query was used. Instead, a require should be used. This causes non-db_dependent tests that load C4::Members to fail. To test: - Shut mysql down $ sudo service mysql stop - Run the tests: prove t/Circulation_barcodedecode.t => FAIL: DB connection is expected, tests fail - Apply the patch - Run the tests: prove t/Circulation_barcodedecode.t => SUCCESS: Tests pass - Sign off .-D Signed-off-by: Kyle M Hall Signed-off-by: Martin Renvoize Signed-off-by: Tomas Cohen Arazi cherry-picked from f25fe6ddb4a340f12613784dc841ab5bfd672d6b Signed-off-by: Fr?d?ric Demians (cherry picked from commit bc668dccd3af3fba14e04a764499b0d762c63455) Signed-off-by: Liz Rea commit 9bcc69167c1f4fdb43119569f81ca912ce788ec9 Author: Mason James Date: Wed Sep 16 13:56:23 2015 +1200 Bug 15035: Anti-spam for opac-suggestions - FOLLOW-UP to test this patch... 1/ enable 'suggestion' and 'AnonSuggestions' sysprefs 2/ edit the koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt file, to reveal the hidden 'negcap' field replace line 87 opac-suggestions.tt, from...
  • to ...
  • 3/ attempt to add another suggestion, and populate the 'negcap' field adding the suggestion is supposed to fail, but actually succeeds!? :/ 4/ apply patch 5/ repeat step 3, suggestion attempt should fail as expected modified: opac-suggestions.pl Signed-off-by: Bernardo Gonzalez Kriegel Confirmed insertion with negcap before patch. With negcap value suggestion fails silently Without negcap suggestion is inserted No errors Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 6b31947c3bb6517ecdc7d21440ba79895c270749) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 49d2b2c84dbd85da2a2495ac3b81e450f4e522b4) Signed-off-by: Liz Rea commit ed24d7a8d7252096f3a5a0667d9748c66451bd74 Author: Lyon3 Team Date: Wed Nov 4 17:06:10 2015 +0100 Bug 15130: useless unitialization warnings when updating authorities Signed-off-by: Frederic Demians Fixes a trivial coding error. Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 6c94dc79878c727b47f0617548613e1b7f5794a3) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 34ae0f50aedc693091d462a000fe93bc02b63e82) Signed-off-by: Liz Rea commit 1ae8785540a56c41a7f53bb9c04deb442bd98c74 Author: Indranil Das Gupta Date: Mon Aug 3 09:57:53 2015 +0530 Bug 14632: Fix alert message for single item batch Fixes the incorrect msg "Please select at least label to delete." for attempts to delete from single patron batches. Notifies the user that doing so will delete the batch. It disallows direct deletion, instead suggests the users to use the 'Delete batch' option assuming the users know what they are doing. Test plan ========= 1/ Load a single patron batch in edit mode and attempt to delete the single record. The JS alert message will inform that "Please select at least label to delete." 2/ Apply patch and refresh page and try to delete the single record again. 3/ This time the alert will inform the user that doing so will delete the batch and should that be desired action to choose the 'Delete batch' option from the toolbar. Signed-off-by: Frederic Demians It works as before but with an understantable warning message. Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 85ae12e5864d8fd35f42a53c66440f00f7f4a35d) Signed-off-by: Fr?d?ric Demians (cherry picked from commit a698cd39dba4595b9094c097db8d4108d11f1a4f) Signed-off-by: Liz Rea commit 6d01b9fcbdf10b8163edb36af3465e91dcab9a7a Author: Marc V?ron Date: Wed Nov 4 10:13:46 2015 +0100 Bug 15117: Transfer Order: Better user information and translation handling While transferring an order, a untranslatable JavaScript confirmation dialog pops up. This patch moves the information about the order to be transferred to the top of the screen to better inform the user what order is to be transferred, and simplifies the confirmation dialog. To test: - Apply patch - Transfer an order from a basket to another basket - Verify, that on top of the screen an information is displayed about which order from which vendor and basket is to be transferred - Verify that the transfer works OK - Update a po lang file and confirm you see the string and you are able to translate it. Signed-off-by: Frederic Demians Dialog box with readable & translatable info. Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 571ec9a94b9323cd23f9012d9b1f837fd9bf974c) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 57a8479bf36f530a55fd93ba67fe965efb0e0373) Signed-off-by: Liz Rea commit c61e33e6f0962026c32a9be80b05cb20ab17d7b7 Author: Colin Campbell Date: Tue Aug 11 16:51:53 2015 +0100 Bug 14673: Work around change to AddIssue return Return from AddIssue used to be due date or undef. Now it is less straightforward returning am issue object if an issue row is created or undef. If the issue is a renewal undef is returned. As that case was not handled properly it caused the server site to crash the listener causing a communications error on the client. Signed-off-by: Frederic Demians Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit b4967bf0ed60c5cca0c7f60591d21d2919f477a1) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 374f5f4a38883d351d441412cfdf4785bbe7f4b6) Signed-off-by: Liz Rea commit 744da173721dfe8a7bcd0e211a8f0d253e6aeb0e Author: Marc V?ron Date: Fri Sep 4 09:50:07 2015 +0200 Bug 14781: Creation of barcode types 2of5 not functional This patch fixes the rendering of "COOP2of5" or "Industrial2of5" barcodes in the label creator module. To test: - Create a label layout with COOP2of5 barcode type - Create labels (make sure that the items's barcode values are numeric only!) - Export batch and download PDF. Without patch: - No barcodes rendered With patch - Barcodes should render as expected. Test for both barcode types. Signed-off-by: Bernardo Gonzalez Kriegel Works as described, tested both formats. Non digit barcode is not printed. No koha-qa errors, no t/ & xt/ errors Signed-off-by: Katrin Fischer Note: To be printed, barcode should be numerical. Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 2b88f0cb38d74da93a723fd1cf3cbcf68030649e) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 0d0b4ae8486888a37ab09bd1e8f211c30e43b943) Signed-off-by: Liz Rea commit 8e4c2bb2c7df66c13f11a408bed32da8fc1fc6dd Author: Sophie Meynieux Date: Wed Nov 4 19:04:26 2015 +0100 Bug 14157: Notices tab in the patron record should not depend on EnhancedMessagingPreferences to display Overdue and Hold notices can be sent even if EnhancedMessagingPreference is set to "Don't Allow", so Notices tab have to be visible in all cases. Test plan : - without patch : - set EnhancedMessagingPreference to "Don't Allow" and go to patron record : there is no Notices tab - set EnhancedMessagingPreference to "Allow" and og to patron record: there is a Notices tab - apply this patch : - go to patron record, you cas see a Notices tab - change the value of EnhanceMessagingPreferences, Notices tab is always visible. Followed test plan, works as expected Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 471b1a8b69ff3842fbddda1e0aa068d439c85a0d) Signed-off-by: Fr?d?ric Demians Conflicts: koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc 3.20 had some other new (unrelated) things, resolved conflict and retested, all ok. commit 1fe5ce9aa001ad57265adb7f76080cbe8ae5edd8 Author: Fridolin Somers Date: Mon Oct 26 08:44:17 2015 +0100 Bug 15059: Line break in html attribute in branchoverdues.tt In circ/branchoverdues.tt, there is a line break inside href attribute. This generates an attribute with a lot of spaces %20. Test plan : - at intranet go to ciculation module - click on "Overdues with fines" - look at links "Phone", "Notice" and "Considered lost" => Without patch the URL contains a lot of spaces => With patch the URL is correct Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 3e0b35c15db408593b0d1a1a4c381750f8d3bec8) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 345d4a0341fc7452f11c7faabefdb2750af36ca6) Signed-off-by: Liz Rea commit 477da3c192ac65581a5e1f810789ced86cce5146 Author: Jonathan Druart Date: Wed Sep 2 17:13:41 2015 +0100 Bug 10799: Limit the SCO user to the SCO module The SCO user should only be allowed to access to the SCO module. This patch make the session ends if the user tries to access another page after the SCO module. Test plan: 0/ Configure the SCO module correctly 1/ Go on the sco main page (sco/sco-main.pl) 2/ Try to go somewhere else: you should not be logged in Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 02feeca14f4c27a05f46920545734c3a9e5455d7) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 7853b503ab8aadd98d5908768dd4252208850b04) Signed-off-by: Liz Rea commit ce5b361fc81938695b3a7271f803d1322d93b63b Author: Bernardo Gonzalez Kriegel Date: Tue Nov 3 12:16:08 2015 -0300 Bug 15061: Can't add item to rotating collection This patch prevents adding items to invalid (empty) rotating collection id To test: 1) Go to /cgi-bin/koha/rotating_collections/addItems.pl 2) Try to add an item, you get error show in attached pictures 3) Apply the patch 4) Go again to /cgi-bin/koha/rotating_collections/addItems.pl 5) Can't add any items I don't know if this is a real problem Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit fff73a73837d577214fa3a9198fa97f8a50471f3) Signed-off-by: Fr?d?ric Demians (cherry picked from commit a6878413151477d87955c1af30994dfa5415d180) Signed-off-by: Liz Rea commit 4bf09f1c515ae78b8623b23a10118c156896dc00 Author: Marc V?ron Date: Tue Oct 27 12:38:32 2015 +0100 Bug 15068: Get rid of warnings in members/summary-print.pl This patch removes warnings when printing a summary from a member's detail page, like: - use of uninitialized value in sprintf at /usr/share/kohaclone/members/summary-print.pl line 47 - Use of uninitialized value $roadtype in concatenation (.) or string at /usr/share/kohaclone/members/summary-print.pl line 61 - Use of uninitialized value in addition (+) at /usr/share/kohaclone/members/summary-print.pl line 87 - Argument "2015-11-03 23:59:00" isn't numeric in numeric comparison (<=>) at /usr/share/kohaclone/members/summary-print.pl line 103 To test: - Apply patch - Go to a detail page with a member who has a lot of fines - Print summary - Verify that warnings like the ones above do no longer appear. Signed-off-by: Frederic Demians Have been able to see those warnings in Apache log file, and notice their disappearance after applying this patch. Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit c292dde75b5e206045cef47d0be51235159a4b6d) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 95d9e029c8ef612b5802c6e8951344cb0f678aaf) Signed-off-by: Liz Rea commit c543002df14deca891ca740e129c5e93bdca269f Author: Joonas Kylm?l? Date: Tue Sep 8 10:23:37 2015 +0000 Bug 14773: Move help link back out of the dropdown menu This moves the help link back out of the dropdown menu like it used to be. To test: 1. Notice that in intra the help link is inside the dropdown menu. 2. Apply the patch 3. Notice that the help link is now clearly visible in the top right corner of the page. Sponsored-by: Vaara-kirjastot Signed-off-by: Nicole Engard Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 47e2b8f7d8360c059a66032f80dbb5f68b8fa925) (cherry picked from commit 7d6a7e0b1b15cef23309a19799a16c6d930e1c08) Signed-off-by: Liz Rea commit eda3170f22804233ca2a3678dd5e64858c2c1358 Author: Nicole C. Engard Date: Fri Oct 30 15:28:09 2015 -0500 Bug 15094: Update link to Windows Offline Circ This patch updates the link on the main circulation page to point to the newest release of the offline circulation tool. To test: * Go to Circulation * Click 'Get desktop application' * Confirm the link goes to github Signed-off-by: Bernardo Gonzalez Kriegel Link Ok No errors Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 17bcc6a242fce21e759653b2b6c6778cdda336e8) Signed-off-by: Fr?d?ric Demians (cherry picked from commit fdfd9464287473e7a790688cc865eb5aaee16ed3) Signed-off-by: Liz Rea commit 1a319d293c1da08f71e32a447e8c41f7ac5a25bd Author: Kyle M Hall Date: Wed Oct 14 08:48:30 2015 -0400 Bug 15010: Import patron tool creates 'duplicate' restrictions ( debarments ) If a patron has restrictions and a CSV file of patrons to be overwritten is uploaded but has no debarred / debarredcomment columns, the a new restriction will be added that combines all the existing restrictions ( i.e. a new debarment based on the existing borrowers.debarred and borrowers.debarredcomment fields ). Test Plan: 1) Create a patron with one or more restrictions 2) Import a CSV file that updates that patron, but with no debarred columns 3) Note a new restrictions is created 4) Delete the new restriction 5) Apply this patch 6) Re-import the CSV file again 7) Note that no new restriction is created 8) Add debarred and debarredcomment columns to the CSV file with a test date and description 9) Re-import the CSV file again 10) Note the new restriction is added to the patron Signed-off-by: Kyle M Hall Signed-off-by: Daniel Grobani Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit fd123903651435c56ca14d88897e9ce4d7a38bb5) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 37e7a6fe7801cacf6f89fd96b34d6b3939c9d409) Signed-off-by: Liz Rea ----------------------------------------------------------------------- Summary of changes: C4/Acquisition.pm | 46 +++++------------- C4/Auth.pm | 23 +++++++++ C4/AuthoritiesMarc.pm | 2 +- C4/Biblio.pm | 4 +- C4/Budgets.pm | 4 +- C4/Charset.pm | 49 +++++++++++++++++--- C4/Labels/Label.pm | 4 +- C4/Members.pm | 15 +++--- C4/SIP/ILS.pm | 45 ++++++++++-------- C4/SIP/ILS/Transaction.pm | 20 ++++++++ C4/SIP/ILS/Transaction/Checkout.pm | 8 +--- C4/SIP/ILS/Transaction/Renew.pm | 6 +-- C4/SIP/Sip/MsgType.pm | 2 +- acqui/lateorders-export.pl | 4 +- acqui/transferorder.pl | 4 ++ admin/aqplan.pl | 2 +- debian/control | 2 +- debian/control.in | 2 +- etc/SIPconfig.xml | 2 +- etc/zebradb/ccl.properties | 2 +- etc/zebradb/etc/words-icu.xml | 2 + .../intranet-tmpl/prog/en/includes/circ-menu.inc | 2 - .../intranet-tmpl/prog/en/includes/header.inc | 6 +-- .../prog/en/includes/members-menu.inc | 2 - .../prog/en/modules/acqui/csv/lateorders.tt | 4 +- .../prog/en/modules/acqui/transferorder.tt | 21 ++++++++- .../intranet-tmpl/prog/en/modules/admin/aqplan.tt | 4 ++ .../en/modules/admin/preferences/cataloguing.pref | 2 +- .../prog/en/modules/catalogue/detail.tt | 12 +++-- .../prog/en/modules/catalogue/results.tt | 16 +++++-- .../prog/en/modules/circ/branchoverdues.tt | 9 ++-- .../prog/en/modules/circ/circulation-home.tt | 2 +- .../prog/en/modules/circ/pendingreserves.tt | 11 +++-- .../prog/en/modules/members/member.tt | 4 +- .../prog/en/modules/patroncards/edit-batch.tt | 10 ++-- .../en/modules/rotating_collections/addItems.tt | 11 +++-- .../modules/tools/marc_modification_templates.tt | 2 +- .../prog/en/modules/virtualshelves/sendshelf.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-basket.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-detail.tt | 8 ++++ .../bootstrap/en/modules/opac-suggestions.tt | 2 +- members/memberentry.pl | 5 +- members/summary-print.pl | 18 ++++--- misc/cronjobs/runreport.pl | 42 +++++++---------- opac/opac-account.pl | 3 +- opac/opac-basket.pl | 2 +- opac/opac-browser.pl | 2 +- opac/opac-memberentry.pl | 2 +- opac/opac-messaging.pl | 2 +- opac/opac-mymessages.pl | 2 +- opac/opac-passwd.pl | 2 +- opac/opac-privacy.pl | 2 +- opac/opac-ratings-ajax.pl | 5 +- opac/opac-readingrecord.pl | 2 +- opac/opac-reserve.pl | 3 +- opac/opac-search-history.pl | 2 +- opac/opac-search.pl | 4 +- opac/opac-suggestions.pl | 5 +- opac/opac-user.pl | 3 +- reports/acquisitions_stats.pl | 2 +- reports/guided_reports.pl | 1 + t/Circulation_barcodedecode.t | 34 +++++--------- t/db_dependent/Budgets.t | 22 +++++---- tools/batch_delete_records.pl | 2 +- tools/import_borrowers.pl | 5 +- virtualshelves/sendshelf.pl | 2 + 66 files changed, 330 insertions(+), 224 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 16:18:49 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 15:18:49 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-11-g879b138 Message-ID: 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 879b1386ff3a274d0884dc0b48afa6064c35eed7 (commit) via 4f6bcc5cc9c3fff9e009277f20790b6005be005c (commit) from 29cd4ae9bd4dee43e8ea375aa49d792fdbe9df10 (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 879b1386ff3a274d0884dc0b48afa6064c35eed7 Author: Tomas Cohen Arazi Date: Thu Dec 3 11:23:54 2015 -0300 Bug 15290: SQL reports headers encoding problem To test: - Create an SQL report with column names containing UTF characters - Run the report => FAIL: The column names are double encoded - Export the report => FAIL: The column names are double encoded in the exported file - Apply the patch - Re-run the report (reload works) => SUCCESS: Encoding correct - Export the report => SUCCESS: Encoding correct - Sign off :-D Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 4f6bcc5cc9c3fff9e009277f20790b6005be005c Author: Hector Castro Date: Thu Dec 3 13:20:40 2015 -0600 Bug 15290: (follow-up)SQL reports headers encoding problem Fix SQL row data and headers enconding problem To test: -Apply patches -Follow previous test plan -Notice the headers and row data is displayed in UTF-8 without double encoding -Save in Comma separated text, Tab seprated text, and Open Document. -Verify in the three options the file exported is Ok Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: reports/guided_reports.pl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 16:22:39 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 15:22:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-12-g9e518de Message-ID: 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 9e518de90f3baafc5d44eefd423e3ee2a491c60d (commit) from 879b1386ff3a274d0884dc0b48afa6064c35eed7 (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 9e518de90f3baafc5d44eefd423e3ee2a491c60d Author: Katrin Fischer Date: Sun Nov 22 03:25:58 2015 +0100 Bug 14349: Checkouts and Fines tab missing category description on the left When navigating the tabs in the patron account, for 2 tabs the patron category description is missing above the tabs. To test: - Go to a patron account in staff - Click through the tabs - Verify that for Checkouts and Fines the category description is missing above the tabs - Apply patch - Verify the description is now shown Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: circ/circulation.pl | 1 + members/pay.pl | 1 + 2 files changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 16:30:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 15:30:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-13-gf4870f6 Message-ID: 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 f4870f6666127f0f0b2c49cc4f89cadd0241a8b9 (commit) from 9e518de90f3baafc5d44eefd423e3ee2a491c60d (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 f4870f6666127f0f0b2c49cc4f89cadd0241a8b9 Author: Fridolin Somers Date: Mon Nov 23 09:19:06 2015 +0100 Bug 14599 - Saved auth login and password are used in patron creation from If one save the login and password used to authenticate in staff interface, when creating a new patron, those login and password are filled in the corresponding inputs in the form. This behaviour is awkward from web browser. A trick is provided by http://stackoverflow.com/questions/10738090/why-firefox-autocomplete-even-with-different-input-name I found that the best way is to use an hidden disabled input between userid and password. Test plan : - Log into Koha - Allow the browser to save the userid/password - Be sure that you have only one userid/password for this Koha - Loggout - Re log to check the browser autocomplets the authentication form - Create a new patron => Without patch your saved userid/password have been added to the form => With patch your saved userid/password have not been added to the form Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart This is not elegant but it works. Note that the problem does not exist with Chromium Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 3 +++ 1 file changed, 3 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 16:38:56 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 15:38:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-14-g169015a Message-ID: 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 169015af947e52895e784375c4c654c110c7f1a9 (commit) from f4870f6666127f0f0b2c49cc4f89cadd0241a8b9 (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 169015af947e52895e784375c4c654c110c7f1a9 Author: Katrin Fischer Date: Sun Nov 22 01:18:04 2015 +0100 Bug 9184: Acq - Don't show authority batches when ordering from staged file When ordering from a staged file, the list of files should only include imports of bilbiographic and no authority data. To test - start without the patch: 1) Stage an authority file 2) Stage a bilbiographic file 3) Create a new basked in acquisitions 4) Create a new order line selecting "From a staged file" 5) Verify that both files are shown 6) Apply patch 7) Verify that only the bibliographc file shows in the list now Signed-off-by: Hector Castro Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: acqui/addorderiso2709.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 16:50:37 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 15:50:37 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-15-g11e4c42 Message-ID: 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 11e4c42e05090a25bf9fa03275f708d1f1c4fde7 (commit) from 169015af947e52895e784375c4c654c110c7f1a9 (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 11e4c42e05090a25bf9fa03275f708d1f1c4fde7 Author: Bernardo Gonzalez Kriegel Date: Sat Nov 28 11:33:37 2015 -0300 Bug 11038: Enable use of IntranetUserCSS on staff client login page This patch enable use of IntranetUserCss on staff client login page. To test: 1) Add something to IntranetUserCSS to modify login page, for example #login h1 a { height:30px; } 2) Logout from staff client, no changes on login page. 3) Apply the patch 4) Reload, now logo is cut in half :) Bonus) Login again an try changing image, add #login h1 { background: url(http://example.com/img/other-logo.png) no-repeat top center; } and fix height. Logout and check This also affects 3.20 and perhaps earlier versions. Re-upload to fix examples Works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 1 + koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:04:09 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:04:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-17-ga102ccd Message-ID: 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 a102ccd48f72327d8d84d3782259b1417b75336b (commit) via 84a0f1acf6ef052cc83eb4c0f6c07127b4cfaae2 (commit) from 11e4c42e05090a25bf9fa03275f708d1f1c4fde7 (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 a102ccd48f72327d8d84d3782259b1417b75336b Author: Katrin Fischer Date: Thu Nov 26 00:29:34 2015 +0100 Bug 15216: Returns - Show collection description The table of returns displays the collection code instead of the description. This patch fixes that. Same as first patch: To test: - Check out some items - Return the items - Verify the changes in the table of returned items Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 84a0f1acf6ef052cc83eb4c0f6c07127b4cfaae2 Author: Katrin Fischer Date: Sun Nov 22 02:23:11 2015 +0100 Bug 15216: Returns - Show branch names and item type description Changes the table with returned items to display the branch names for home and holding branch and the itemtype description instead of the codes. To test: - Check out some items - Return the items - Verify the changes in the table of returned items Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:06:16 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:06:16 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-10-g8cc6e11 Message-ID: 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.22.x has been updated via 8cc6e1170a167ac11530f0376d616969f412de57 (commit) via 333593c011cfe83501516ecf719808b8408b846e (commit) from 0ee6451023ca0c973052bcf685e9ab329a390927 (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 8cc6e1170a167ac11530f0376d616969f412de57 Author: Hector Castro Date: Thu Dec 3 13:20:40 2015 -0600 Bug 15290: (follow-up)SQL reports headers encoding problem Fix SQL row data and headers enconding problem To test: -Apply patches -Follow previous test plan -Notice the headers and row data is displayed in UTF-8 without double encoding -Save in Comma separated text, Tab seprated text, and Open Document. -Verify in the three options the file exported is Ok Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 4f6bcc5cc9c3fff9e009277f20790b6005be005c) Signed-off-by: Julian Maurice commit 333593c011cfe83501516ecf719808b8408b846e Author: Tomas Cohen Arazi Date: Thu Dec 3 11:23:54 2015 -0300 Bug 15290: SQL reports headers encoding problem To test: - Create an SQL report with column names containing UTF characters - Run the report => FAIL: The column names are double encoded - Export the report => FAIL: The column names are double encoded in the exported file - Apply the patch - Re-run the report (reload works) => SUCCESS: Encoding correct - Export the report => SUCCESS: Encoding correct - Sign off :-D Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 879b1386ff3a274d0884dc0b48afa6064c35eed7) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: reports/guided_reports.pl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:08:57 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:08:57 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-18-gae5962c Message-ID: 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 ae5962cab435fe5119cf743a2ea0b9e501985ff9 (commit) from a102ccd48f72327d8d84d3782259b1417b75336b (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 ae5962cab435fe5119cf743a2ea0b9e501985ff9 Author: Marc V?ron Date: Tue Dec 1 20:22:27 2015 +0100 Bug 15244: t/db_dependent/Reserves.t depends on external data/configuration Test 14 in t/db_dependent/Reserves.t fails if syspref LocalHoldsPriority is set to "[Give] priority for filling holds to patrons whose... To verify: - Set syspref as above and run test. Test 14 fails. - Set syspref to [Don't give] and run test agein, it passes OK. To test: - Apply patch - Run test again with syspref set / not set Expected result: In both cases test should pass (AMended to change bug title) Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Reserves.t | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:09:55 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:09:55 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-11-gdf1a9a9 Message-ID: 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.22.x has been updated via df1a9a98fd6f3186a05f9eeead63de1e2b3c39ff (commit) from 8cc6e1170a167ac11530f0376d616969f412de57 (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 df1a9a98fd6f3186a05f9eeead63de1e2b3c39ff Author: Katrin Fischer Date: Sun Nov 22 03:25:58 2015 +0100 Bug 14349: Checkouts and Fines tab missing category description on the left When navigating the tabs in the patron account, for 2 tabs the patron category description is missing above the tabs. To test: - Go to a patron account in staff - Click through the tabs - Verify that for Checkouts and Fines the category description is missing above the tabs - Apply patch - Verify the description is now shown Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 9e518de90f3baafc5d44eefd423e3ee2a491c60d) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: circ/circulation.pl | 1 + members/pay.pl | 1 + 2 files changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:14:13 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:14:13 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-12-g3f9d68e Message-ID: 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.22.x has been updated via 3f9d68e599f7e5915f8982fd199030c32c3d8cf3 (commit) from df1a9a98fd6f3186a05f9eeead63de1e2b3c39ff (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 3f9d68e599f7e5915f8982fd199030c32c3d8cf3 Author: Fridolin Somers Date: Mon Nov 23 09:19:06 2015 +0100 Bug 14599 - Saved auth login and password are used in patron creation from If one save the login and password used to authenticate in staff interface, when creating a new patron, those login and password are filled in the corresponding inputs in the form. This behaviour is awkward from web browser. A trick is provided by http://stackoverflow.com/questions/10738090/why-firefox-autocomplete-even-with-different-input-name I found that the best way is to use an hidden disabled input between userid and password. Test plan : - Log into Koha - Allow the browser to save the userid/password - Be sure that you have only one userid/password for this Koha - Loggout - Re log to check the browser autocomplets the authentication form - Create a new patron => Without patch your saved userid/password have been added to the form => With patch your saved userid/password have not been added to the form Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart This is not elegant but it works. Note that the problem does not exist with Chromium Signed-off-by: Kyle M Hall (cherry picked from commit f4870f6666127f0f0b2c49cc4f89cadd0241a8b9) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 3 +++ 1 file changed, 3 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:15:22 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:15:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-19-g48df0b8 Message-ID: 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 48df0b8a2d50a0a4b9a17efd5e0711425ed5e09e (commit) from ae5962cab435fe5119cf743a2ea0b9e501985ff9 (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 48df0b8a2d50a0a4b9a17efd5e0711425ed5e09e Author: Julian Maurice Date: Mon Dec 7 15:25:25 2015 +0100 Bug 15325: Fix --table option of rebuild_zebra.pl Option's value given on command line was never used and 'biblioitems' was used instead. Test plan: 1. git checkout master 2. perl misc/migration_tools/rebuild_zebra.pl -b -t items --where "price = 42" 3. You should see errors printed on screen about an unknown column 4. Apply patch 5. perl misc/migration_tools/rebuild_zebra.pl -b -t items --where "price = 42" 6. No errors \o/ Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: misc/migration_tools/rebuild_zebra.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:20:31 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:20:31 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-20-gc6f7496 Message-ID: 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 c6f7496422a593fdfe4dd2633aed4b190703d03d (commit) from 48df0b8a2d50a0a4b9a17efd5e0711425ed5e09e (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 c6f7496422a593fdfe4dd2633aed4b190703d03d Author: Blou Date: Thu Sep 17 11:33:38 2015 -0400 Bug 14846 - Items with no holdingbranch causes svc/holds to crash When trying to display the holds for a user, if an item has no holdingbranch, it causes the svc/holds service to crash and the display to freeze. Tentative steps to reproduce on any DB: 1) put 1 or more items on hold for a given user. 2) go into the database and set the item.holdingbranch to NULL 3) In the user's page, in checkouts (circulation.pl), click the tab that should be written 1 Hold(s) 4) It will be "Processing" indefinitely. The cause is the svc/holds code that crashes. The fix will validate that there's an holdingbranch before proceding with the code. Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: svc/holds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:26:13 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:26:13 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-21-gf4b8c4e Message-ID: 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 f4b8c4ede9c83b1b78eb87c7fb31214299cbf2f2 (commit) from c6f7496422a593fdfe4dd2633aed4b190703d03d (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 f4b8c4ede9c83b1b78eb87c7fb31214299cbf2f2 Author: Katrin Fischer Date: Sun Nov 22 02:31:10 2015 +0100 Bug 15202: Fix date display when transferring an order The date a basket was created was not displayed according to the dateformat system preference. Also fixes wording of the message shown when there are no baskets for a chosen vendor. To test: - Create an order with an order line - Click on the "Transfer" link on the basket summary page - Search for a vendor without open baskets - Verify change of message shown: "There are no open baskets for this vendor." - Choose another vendor with open baskets - Verify the creation date of the basket is displayed correctly formatted. Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/acqui/transferorder.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:30:10 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:30:10 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-13-g0fba468 Message-ID: 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.22.x has been updated via 0fba468262928dddb08d8e49e3e1cff8cb1ff557 (commit) from 3f9d68e599f7e5915f8982fd199030c32c3d8cf3 (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 0fba468262928dddb08d8e49e3e1cff8cb1ff557 Author: Katrin Fischer Date: Sun Nov 22 01:18:04 2015 +0100 Bug 9184: Acq - Don't show authority batches when ordering from staged file When ordering from a staged file, the list of files should only include imports of bilbiographic and no authority data. To test - start without the patch: 1) Stage an authority file 2) Stage a bilbiographic file 3) Create a new basked in acquisitions 4) Create a new order line selecting "From a staged file" 5) Verify that both files are shown 6) Apply patch 7) Verify that only the bibliographc file shows in the list now Signed-off-by: Hector Castro Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 169015af947e52895e784375c4c654c110c7f1a9) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: acqui/addorderiso2709.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:30:37 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:30:37 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-22-g906d210 Message-ID: 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 906d2108b9054a68168219136d69e6d783f156fb (commit) from f4b8c4ede9c83b1b78eb87c7fb31214299cbf2f2 (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 906d2108b9054a68168219136d69e6d783f156fb Author: Bernardo Gonzalez Kriegel Date: Thu Dec 3 09:19:17 2015 -0300 Bug 14971: fix RIS export This patch removes a limit in RIS.pm print_isbn sub. To test: 1) Find in opac a book with an isbn with length(isbn) > 10 (with dashes or isbn13) 2) Export record to RIS format, check truncated SN field in exported file 3) Apply the patch 4) Export again, no more truncation Signed-off-by: jvr Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Ris.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:35:19 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:35:19 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-14-g14dc514 Message-ID: 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.22.x has been updated via 14dc51472a88796f7bf5579e50174d691e74a28a (commit) from 0fba468262928dddb08d8e49e3e1cff8cb1ff557 (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 14dc51472a88796f7bf5579e50174d691e74a28a Author: Bernardo Gonzalez Kriegel Date: Sat Nov 28 11:33:37 2015 -0300 Bug 11038: Enable use of IntranetUserCSS on staff client login page This patch enable use of IntranetUserCss on staff client login page. To test: 1) Add something to IntranetUserCSS to modify login page, for example #login h1 a { height:30px; } 2) Logout from staff client, no changes on login page. 3) Apply the patch 4) Reload, now logo is cut in half :) Bonus) Login again an try changing image, add #login h1 { background: url(http://example.com/img/other-logo.png) no-repeat top center; } and fix height. Logout and check This also affects 3.20 and perhaps earlier versions. Re-upload to fix examples Works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 11e4c42e05090a25bf9fa03275f708d1f1c4fde7) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 1 + koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:40:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:40:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-23-g3410608 Message-ID: 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 3410608b66fe0dd6e4c94fdcc185c7fb89b619c1 (commit) from 906d2108b9054a68168219136d69e6d783f156fb (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 3410608b66fe0dd6e4c94fdcc185c7fb89b619c1 Author: Fridolin Somers Date: Mon Nov 16 13:07:07 2015 +0100 Bug 15193 - Perl scripts missing exec permission Some perl scripts have 644 permissions instead of 755. I think some are special like install-CPAN.pl. This patch corrects some common perl scripts. Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: 0 files changed mode change 100644 => 100755 cataloguing/value_builder/marc21_linking_section.pl mode change 100644 => 100755 cataloguing/value_builder/unimarc_field_100_authorities.pl mode change 100644 => 100755 misc/cronjobs/nl-sync-from-koha.pl mode change 100644 => 100755 misc/cronjobs/nl-sync-to-koha.pl mode change 100644 => 100755 misc/cronjobs/social_data/get_report_social_data.pl mode change 100644 => 100755 misc/cronjobs/social_data/update_social_data.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:43:21 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:43:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-24-g353e30d Message-ID: 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 353e30d73e261a96077917004036c2c01e32c623 (commit) from 3410608b66fe0dd6e4c94fdcc185c7fb89b619c1 (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 353e30d73e261a96077917004036c2c01e32c623 Author: Kyle M Hall Date: Mon Apr 20 12:31:11 2015 -0700 Bug 13838 - Redirect to 'expired holds' tab after cancelling a hold When canceling a hold from the holds over tab, you are redirected back to the holds waiting tab. Instead, we should the librarian should continue to see the list of holds past the waiting length. Test Plan: 1) Apply this patch 2) Cancel a hold from the "Holds over" tab on circ/waitingreserves.pl 3) Note you are redirected back to the holds over tab Signed-off-by: Tom Misilo Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: circ/waitingreserves.pl | 5 ++++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:45:55 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:45:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-25-g186b4b7 Message-ID: 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 186b4b7e091a60a8914eca2a6a7550b12c430c69 (commit) from 353e30d73e261a96077917004036c2c01e32c623 (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 186b4b7e091a60a8914eca2a6a7550b12c430c69 Author: Marc V?ron Date: Fri Nov 20 19:05:02 2015 +0100 Bug 15230: Remove unused file circ/stats.pl and stats.tt from system This patch removes stats.pl and stats.tt from system. To test: - Verify that both files are not used and that the only reference in koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt is commented out. - Apply patch - Verify that the files are deleted and the reference is removed. - git grep 'stats.pl', verify that there are no more references to this file. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart See the following commit for more info on this script: commit 60105bd692a07639f275543365acfca4f464c1a2 Date: Tue Jul 8 20:02:34 2008 -0500 fix for 2008: Daily reconciliation report broken Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: circ/stats.pl | 189 -------------------- .../prog/en/modules/circ/circulation-home.tt | 1 - .../intranet-tmpl/prog/en/modules/circ/stats.tt | 55 ------ 3 files changed, 245 deletions(-) delete mode 100755 circ/stats.pl delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/circ/stats.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 17:50:14 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 16:50:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-26-gdba72d9 Message-ID: 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 dba72d903deb525250bfb8b633b88e2aa7b1b962 (commit) from 186b4b7e091a60a8914eca2a6a7550b12c430c69 (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 dba72d903deb525250bfb8b633b88e2aa7b1b962 Author: Liz Rea Date: Fri Nov 20 15:08:25 2015 +1300 Bug 15213 - fix buttons on patron lists To test: go to tools -> patron lists notice that the buttons are not misaligned anymore You may need to force refresh the page to see the original issue, and to see it fixed. http://bugs.koha-community.org/show_bug.cgi?id=15223 With patch buttons display nicely. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 11 18:09:13 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 11 Dec 2015 17:09:13 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-23-g32bc47f Message-ID: 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.20.x has been updated via 32bc47f6d488f3f2d81a234c029219d5861cf338 (commit) via 53eef72a2024173f76f007b840d090d5b42e8565 (commit) via 800c2df2e34bd3392d8302803e248fdf3e4f7491 (commit) via 0b7e0b8ab02063c92d9629a460aa1e09a9c0d1bd (commit) via ef7346872b323f06d57e16e6d9e1d98ac1e7c793 (commit) via 8f847dadc86595d259e760f18cbdb0225b5ccfc0 (commit) from 217c50382a436cecd159a63eb1f93f4802214a46 (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 32bc47f6d488f3f2d81a234c029219d5861cf338 Author: Bernardo Gonzalez Kriegel Date: Sat Nov 28 11:33:37 2015 -0300 Bug 11038: Enable use of IntranetUserCSS on staff client login page This patch enable use of IntranetUserCss on staff client login page. To test: 1) Add something to IntranetUserCSS to modify login page, for example #login h1 a { height:30px; } 2) Logout from staff client, no changes on login page. 3) Apply the patch 4) Reload, now logo is cut in half :) Bonus) Login again an try changing image, add #login h1 { background: url(http://example.com/img/other-logo.png) no-repeat top center; } and fix height. Logout and check This also affects 3.20 and perhaps earlier versions. Re-upload to fix examples Works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 11e4c42e05090a25bf9fa03275f708d1f1c4fde7) Signed-off-by: Julian Maurice (cherry picked from commit 14dc51472a88796f7bf5579e50174d691e74a28a) Signed-off-by: Fr?d?ric Demians Merging issue due to intranetusejs syspref renaming. Fixed. commit 53eef72a2024173f76f007b840d090d5b42e8565 Author: Katrin Fischer Date: Sun Nov 22 01:18:04 2015 +0100 Bug 9184: Acq - Don't show authority batches when ordering from staged file When ordering from a staged file, the list of files should only include imports of bilbiographic and no authority data. To test - start without the patch: 1) Stage an authority file 2) Stage a bilbiographic file 3) Create a new basked in acquisitions 4) Create a new order line selecting "From a staged file" 5) Verify that both files are shown 6) Apply patch 7) Verify that only the bibliographc file shows in the list now Signed-off-by: Hector Castro Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 169015af947e52895e784375c4c654c110c7f1a9) Signed-off-by: Julian Maurice (cherry picked from commit 0fba468262928dddb08d8e49e3e1cff8cb1ff557) Signed-off-by: Fr?d?ric Demians commit 800c2df2e34bd3392d8302803e248fdf3e4f7491 Author: Fridolin Somers Date: Mon Nov 23 09:19:06 2015 +0100 Bug 14599 - Saved auth login and password are used in patron creation from If one save the login and password used to authenticate in staff interface, when creating a new patron, those login and password are filled in the corresponding inputs in the form. This behaviour is awkward from web browser. A trick is provided by http://stackoverflow.com/questions/10738090/why-firefox-autocomplete-even-with-different-input-name I found that the best way is to use an hidden disabled input between userid and password. Test plan : - Log into Koha - Allow the browser to save the userid/password - Be sure that you have only one userid/password for this Koha - Loggout - Re log to check the browser autocomplets the authentication form - Create a new patron => Without patch your saved userid/password have been added to the form => With patch your saved userid/password have not been added to the form Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart This is not elegant but it works. Note that the problem does not exist with Chromium Signed-off-by: Kyle M Hall (cherry picked from commit f4870f6666127f0f0b2c49cc4f89cadd0241a8b9) Signed-off-by: Julian Maurice (cherry picked from commit 3f9d68e599f7e5915f8982fd199030c32c3d8cf3) Signed-off-by: Fr?d?ric Demians commit 0b7e0b8ab02063c92d9629a460aa1e09a9c0d1bd Author: Katrin Fischer Date: Sun Nov 22 03:25:58 2015 +0100 Bug 14349: Checkouts and Fines tab missing category description on the left When navigating the tabs in the patron account, for 2 tabs the patron category description is missing above the tabs. To test: - Go to a patron account in staff - Click through the tabs - Verify that for Checkouts and Fines the category description is missing above the tabs - Apply patch - Verify the description is now shown Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 9e518de90f3baafc5d44eefd423e3ee2a491c60d) Signed-off-by: Julian Maurice (cherry picked from commit df1a9a98fd6f3186a05f9eeead63de1e2b3c39ff) Signed-off-by: Fr?d?ric Demians commit ef7346872b323f06d57e16e6d9e1d98ac1e7c793 Author: Hector Castro Date: Thu Dec 3 13:20:40 2015 -0600 Bug 15290: (follow-up)SQL reports headers encoding problem Fix SQL row data and headers enconding problem To test: -Apply patches -Follow previous test plan -Notice the headers and row data is displayed in UTF-8 without double encoding -Save in Comma separated text, Tab seprated text, and Open Document. -Verify in the three options the file exported is Ok Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 4f6bcc5cc9c3fff9e009277f20790b6005be005c) Signed-off-by: Julian Maurice (cherry picked from commit 8cc6e1170a167ac11530f0376d616969f412de57) Signed-off-by: Fr?d?ric Demians commit 8f847dadc86595d259e760f18cbdb0225b5ccfc0 Author: Tomas Cohen Arazi Date: Thu Dec 3 11:23:54 2015 -0300 Bug 15290: SQL reports headers encoding problem To test: - Create an SQL report with column names containing UTF characters - Run the report => FAIL: The column names are double encoded - Export the report => FAIL: The column names are double encoded in the exported file - Apply the patch - Re-run the report (reload works) => SUCCESS: Encoding correct - Export the report => SUCCESS: Encoding correct - Sign off :-D Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 879b1386ff3a274d0884dc0b48afa6064c35eed7) Signed-off-by: Julian Maurice (cherry picked from commit 333593c011cfe83501516ecf719808b8408b846e) Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 1 + acqui/addorderiso2709.pl | 2 +- circ/circulation.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc | 1 + .../intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 3 +++ members/pay.pl | 1 + reports/guided_reports.pl | 9 +++++---- 7 files changed, 13 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:12:03 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:12:03 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-16-g552a9d0 Message-ID: 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.22.x has been updated via 552a9d066e722711b7049bf3b1864c7771a69719 (commit) via efeeffb0645ffd7c2b84629618ad0c60882e8517 (commit) from 14dc51472a88796f7bf5579e50174d691e74a28a (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 552a9d066e722711b7049bf3b1864c7771a69719 Author: Katrin Fischer Date: Thu Nov 26 00:29:34 2015 +0100 Bug 15216: Returns - Show collection description The table of returns displays the collection code instead of the description. This patch fixes that. Same as first patch: To test: - Check out some items - Return the items - Verify the changes in the table of returned items Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a102ccd48f72327d8d84d3782259b1417b75336b) Signed-off-by: Julian Maurice commit efeeffb0645ffd7c2b84629618ad0c60882e8517 Author: Katrin Fischer Date: Sun Nov 22 02:23:11 2015 +0100 Bug 15216: Returns - Show branch names and item type description Changes the table with returned items to display the branch names for home and holding branch and the itemtype description instead of the codes. To test: - Check out some items - Return the items - Verify the changes in the table of returned items Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 84a0f1acf6ef052cc83eb4c0f6c07127b4cfaae2) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:15:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:15:36 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-17-gdfa6509 Message-ID: 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.22.x has been updated via dfa650949d50c1c90a3950db9a7d2b6a265e3b76 (commit) from 552a9d066e722711b7049bf3b1864c7771a69719 (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 dfa650949d50c1c90a3950db9a7d2b6a265e3b76 Author: Marc V?ron Date: Tue Dec 1 20:22:27 2015 +0100 Bug 15244: t/db_dependent/Reserves.t depends on external data/configuration Test 14 in t/db_dependent/Reserves.t fails if syspref LocalHoldsPriority is set to "[Give] priority for filling holds to patrons whose... To verify: - Set syspref as above and run test. Test 14 fails. - Set syspref to [Don't give] and run test agein, it passes OK. To test: - Apply patch - Run test again with syspref set / not set Expected result: In both cases test should pass (AMended to change bug title) Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit ae5962cab435fe5119cf743a2ea0b9e501985ff9) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Reserves.t | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:17:11 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:17:11 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-18-g23837e1 Message-ID: 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.22.x has been updated via 23837e1c137a5933601712689dbe7c8d0711f252 (commit) from dfa650949d50c1c90a3950db9a7d2b6a265e3b76 (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 23837e1c137a5933601712689dbe7c8d0711f252 Author: Julian Maurice Date: Mon Dec 7 15:25:25 2015 +0100 Bug 15325: Fix --table option of rebuild_zebra.pl Option's value given on command line was never used and 'biblioitems' was used instead. Test plan: 1. git checkout master 2. perl misc/migration_tools/rebuild_zebra.pl -b -t items --where "price = 42" 3. You should see errors printed on screen about an unknown column 4. Apply patch 5. perl misc/migration_tools/rebuild_zebra.pl -b -t items --where "price = 42" 6. No errors \o/ Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 48df0b8a2d50a0a4b9a17efd5e0711425ed5e09e) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: misc/migration_tools/rebuild_zebra.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:20:30 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:20:30 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-19-g6012bc8 Message-ID: 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.22.x has been updated via 6012bc8b9988bd4cc2b6fbeecb5de32171f193b6 (commit) from 23837e1c137a5933601712689dbe7c8d0711f252 (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 6012bc8b9988bd4cc2b6fbeecb5de32171f193b6 Author: Blou Date: Thu Sep 17 11:33:38 2015 -0400 Bug 14846 - Items with no holdingbranch causes svc/holds to crash When trying to display the holds for a user, if an item has no holdingbranch, it causes the svc/holds service to crash and the display to freeze. Tentative steps to reproduce on any DB: 1) put 1 or more items on hold for a given user. 2) go into the database and set the item.holdingbranch to NULL 3) In the user's page, in checkouts (circulation.pl), click the tab that should be written 1 Hold(s) 4) It will be "Processing" indefinitely. The cause is the svc/holds code that crashes. The fix will validate that there's an holdingbranch before proceding with the code. Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit c6f7496422a593fdfe4dd2633aed4b190703d03d) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: svc/holds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:24:07 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:24:07 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-20-gccdc228 Message-ID: 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.22.x has been updated via ccdc2288a6279aa3745ffa2040cc489c0b71f196 (commit) from 6012bc8b9988bd4cc2b6fbeecb5de32171f193b6 (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 ccdc2288a6279aa3745ffa2040cc489c0b71f196 Author: Katrin Fischer Date: Sun Nov 22 02:31:10 2015 +0100 Bug 15202: Fix date display when transferring an order The date a basket was created was not displayed according to the dateformat system preference. Also fixes wording of the message shown when there are no baskets for a chosen vendor. To test: - Create an order with an order line - Click on the "Transfer" link on the basket summary page - Search for a vendor without open baskets - Verify change of message shown: "There are no open baskets for this vendor." - Choose another vendor with open baskets - Verify the creation date of the basket is displayed correctly formatted. Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart (cherry picked from commit f4b8c4ede9c83b1b78eb87c7fb31214299cbf2f2) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/acqui/transferorder.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:27:18 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:27:18 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-21-gf6d9e04 Message-ID: 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.22.x has been updated via f6d9e04b886c3d7d9378732f9cdc3eedffed8659 (commit) from ccdc2288a6279aa3745ffa2040cc489c0b71f196 (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 f6d9e04b886c3d7d9378732f9cdc3eedffed8659 Author: Bernardo Gonzalez Kriegel Date: Thu Dec 3 09:19:17 2015 -0300 Bug 14971: fix RIS export This patch removes a limit in RIS.pm print_isbn sub. To test: 1) Find in opac a book with an isbn with length(isbn) > 10 (with dashes or isbn13) 2) Export record to RIS format, check truncated SN field in exported file 3) Apply the patch 4) Export again, no more truncation Signed-off-by: jvr Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit 906d2108b9054a68168219136d69e6d783f156fb) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Ris.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:30:26 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:30:26 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-22-gbff51cb Message-ID: 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.22.x has been updated via bff51cb38c19678533ec11eddf68f5b9e0d74c30 (commit) from f6d9e04b886c3d7d9378732f9cdc3eedffed8659 (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 bff51cb38c19678533ec11eddf68f5b9e0d74c30 Author: Fridolin Somers Date: Mon Nov 16 13:07:07 2015 +0100 Bug 15193 - Perl scripts missing exec permission Some perl scripts have 644 permissions instead of 755. I think some are special like install-CPAN.pl. This patch corrects some common perl scripts. Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 3410608b66fe0dd6e4c94fdcc185c7fb89b619c1) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: 0 files changed mode change 100644 => 100755 cataloguing/value_builder/marc21_linking_section.pl mode change 100644 => 100755 cataloguing/value_builder/unimarc_field_100_authorities.pl mode change 100644 => 100755 misc/cronjobs/nl-sync-from-koha.pl mode change 100644 => 100755 misc/cronjobs/nl-sync-to-koha.pl mode change 100644 => 100755 misc/cronjobs/social_data/get_report_social_data.pl mode change 100644 => 100755 misc/cronjobs/social_data/update_social_data.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:39:29 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:39:29 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-23-gfddc423 Message-ID: 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.22.x has been updated via fddc423c09f2ad1243731e94ee30e9885c9a1e44 (commit) from bff51cb38c19678533ec11eddf68f5b9e0d74c30 (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 fddc423c09f2ad1243731e94ee30e9885c9a1e44 Author: Kyle M Hall Date: Mon Apr 20 12:31:11 2015 -0700 Bug 13838 - Redirect to 'expired holds' tab after cancelling a hold When canceling a hold from the holds over tab, you are redirected back to the holds waiting tab. Instead, we should the librarian should continue to see the list of holds past the waiting length. Test Plan: 1) Apply this patch 2) Cancel a hold from the "Holds over" tab on circ/waitingreserves.pl 3) Note you are redirected back to the holds over tab Signed-off-by: Tom Misilo Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 353e30d73e261a96077917004036c2c01e32c623) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: circ/waitingreserves.pl | 5 ++++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 08:42:29 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 07:42:29 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-24-g24048cb Message-ID: 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.22.x has been updated via 24048cbfe76b825e53e8042b30d6f2a34f2eeb7e (commit) from fddc423c09f2ad1243731e94ee30e9885c9a1e44 (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 24048cbfe76b825e53e8042b30d6f2a34f2eeb7e Author: Marc V?ron Date: Fri Nov 20 19:05:02 2015 +0100 Bug 15230: Remove unused file circ/stats.pl and stats.tt from system This patch removes stats.pl and stats.tt from system. To test: - Verify that both files are not used and that the only reference in koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt is commented out. - Apply patch - Verify that the files are deleted and the reference is removed. - git grep 'stats.pl', verify that there are no more references to this file. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart See the following commit for more info on this script: commit 60105bd692a07639f275543365acfca4f464c1a2 Date: Tue Jul 8 20:02:34 2008 -0500 fix for 2008: Daily reconciliation report broken Signed-off-by: Kyle M Hall (cherry picked from commit 186b4b7e091a60a8914eca2a6a7550b12c430c69) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: circ/stats.pl | 189 -------------------- .../prog/en/modules/circ/circulation-home.tt | 1 - .../intranet-tmpl/prog/en/modules/circ/stats.tt | 55 ------ 3 files changed, 245 deletions(-) delete mode 100755 circ/stats.pl delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/circ/stats.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 09:28:44 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 08:28:44 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.00-25-g34d6004 Message-ID: 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.22.x has been updated via 34d60046f9c3e4562d23067a23694ac6ca5e32d0 (commit) from 24048cbfe76b825e53e8042b30d6f2a34f2eeb7e (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 34d60046f9c3e4562d23067a23694ac6ca5e32d0 Author: Liz Rea Date: Fri Nov 20 15:08:25 2015 +1300 Bug 15223 - fix buttons on patron lists To test: go to tools -> patron lists notice that the buttons are not misaligned anymore You may need to force refresh the page to see the original issue, and to see it fixed. With patch buttons display nicely. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit dba72d903deb525250bfb8b633b88e2aa7b1b962) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Dec 14 18:55:28 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Dec 2015 17:55:28 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-31-g95cea53 Message-ID: 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.20.x has been updated via 95cea538decd94bf84698c1cdfe765d180b3d51d (commit) via 4b10d5b61011c82de00b65d270dd63dde2c7cfac (commit) via f2dfce1a95fda744ea4aea4b844343f601a1b0b5 (commit) via dd466e8320d9c4eef1d27b4f5a069c40cfb19601 (commit) via d0636d4800c09a7734df70e3d58c394014606dfc (commit) via e000b9f0f12162f68c22ddc6a2012dae3605a23b (commit) via 09e110b48255a634e78823dfc52d528c50d5c689 (commit) via 7a48270a212d69aa375e0124e1bfd1fc8a3baf63 (commit) from 32bc47f6d488f3f2d81a234c029219d5861cf338 (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 95cea538decd94bf84698c1cdfe765d180b3d51d Author: Kyle M Hall Date: Mon Apr 20 12:31:11 2015 -0700 Bug 13838 - Redirect to 'expired holds' tab after cancelling a hold When canceling a hold from the holds over tab, you are redirected back to the holds waiting tab. Instead, we should the librarian should continue to see the list of holds past the waiting length. Test Plan: 1) Apply this patch 2) Cancel a hold from the "Holds over" tab on circ/waitingreserves.pl 3) Note you are redirected back to the holds over tab Signed-off-by: Tom Misilo Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 353e30d73e261a96077917004036c2c01e32c623) Signed-off-by: Julian Maurice (cherry picked from commit fddc423c09f2ad1243731e94ee30e9885c9a1e44) Signed-off-by: Fr?d?ric Demians commit 4b10d5b61011c82de00b65d270dd63dde2c7cfac Author: Fridolin Somers Date: Mon Nov 16 13:07:07 2015 +0100 Bug 15193 - Perl scripts missing exec permission Some perl scripts have 644 permissions instead of 755. I think some are special like install-CPAN.pl. This patch corrects some common perl scripts. Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 3410608b66fe0dd6e4c94fdcc185c7fb89b619c1) Signed-off-by: Julian Maurice (cherry picked from commit bff51cb38c19678533ec11eddf68f5b9e0d74c30) Signed-off-by: Fr?d?ric Demians commit f2dfce1a95fda744ea4aea4b844343f601a1b0b5 Author: Bernardo Gonzalez Kriegel Date: Thu Dec 3 09:19:17 2015 -0300 Bug 14971: fix RIS export This patch removes a limit in RIS.pm print_isbn sub. To test: 1) Find in opac a book with an isbn with length(isbn) > 10 (with dashes or isbn13) 2) Export record to RIS format, check truncated SN field in exported file 3) Apply the patch 4) Export again, no more truncation Signed-off-by: jvr Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit 906d2108b9054a68168219136d69e6d783f156fb) Signed-off-by: Julian Maurice (cherry picked from commit f6d9e04b886c3d7d9378732f9cdc3eedffed8659) Signed-off-by: Fr?d?ric Demians commit dd466e8320d9c4eef1d27b4f5a069c40cfb19601 Author: Katrin Fischer Date: Sun Nov 22 02:31:10 2015 +0100 Bug 15202: Fix date display when transferring an order The date a basket was created was not displayed according to the dateformat system preference. Also fixes wording of the message shown when there are no baskets for a chosen vendor. To test: - Create an order with an order line - Click on the "Transfer" link on the basket summary page - Search for a vendor without open baskets - Verify change of message shown: "There are no open baskets for this vendor." - Choose another vendor with open baskets - Verify the creation date of the basket is displayed correctly formatted. Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart (cherry picked from commit f4b8c4ede9c83b1b78eb87c7fb31214299cbf2f2) Signed-off-by: Julian Maurice (cherry picked from commit ccdc2288a6279aa3745ffa2040cc489c0b71f196) Signed-off-by: Fr?d?ric Demians commit d0636d4800c09a7734df70e3d58c394014606dfc Author: Blou Date: Thu Sep 17 11:33:38 2015 -0400 Bug 14846 - Items with no holdingbranch causes svc/holds to crash When trying to display the holds for a user, if an item has no holdingbranch, it causes the svc/holds service to crash and the display to freeze. Tentative steps to reproduce on any DB: 1) put 1 or more items on hold for a given user. 2) go into the database and set the item.holdingbranch to NULL 3) In the user's page, in checkouts (circulation.pl), click the tab that should be written 1 Hold(s) 4) It will be "Processing" indefinitely. The cause is the svc/holds code that crashes. The fix will validate that there's an holdingbranch before proceding with the code. Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit c6f7496422a593fdfe4dd2633aed4b190703d03d) Signed-off-by: Julian Maurice (cherry picked from commit 6012bc8b9988bd4cc2b6fbeecb5de32171f193b6) Signed-off-by: Fr?d?ric Demians commit e000b9f0f12162f68c22ddc6a2012dae3605a23b Author: Marc V?ron Date: Tue Dec 1 20:22:27 2015 +0100 Bug 15244: t/db_dependent/Reserves.t depends on external data/configuration Test 14 in t/db_dependent/Reserves.t fails if syspref LocalHoldsPriority is set to "[Give] priority for filling holds to patrons whose... To verify: - Set syspref as above and run test. Test 14 fails. - Set syspref to [Don't give] and run test agein, it passes OK. To test: - Apply patch - Run test again with syspref set / not set Expected result: In both cases test should pass (AMended to change bug title) Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit ae5962cab435fe5119cf743a2ea0b9e501985ff9) Signed-off-by: Julian Maurice (cherry picked from commit dfa650949d50c1c90a3950db9a7d2b6a265e3b76) Signed-off-by: Fr?d?ric Demians commit 09e110b48255a634e78823dfc52d528c50d5c689 Author: Katrin Fischer Date: Thu Nov 26 00:29:34 2015 +0100 Bug 15216: Returns - Show collection description The table of returns displays the collection code instead of the description. This patch fixes that. Same as first patch: To test: - Check out some items - Return the items - Verify the changes in the table of returned items Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a102ccd48f72327d8d84d3782259b1417b75336b) Signed-off-by: Julian Maurice (cherry picked from commit 552a9d066e722711b7049bf3b1864c7771a69719) commit 7a48270a212d69aa375e0124e1bfd1fc8a3baf63 Author: Katrin Fischer Date: Sun Nov 22 02:23:11 2015 +0100 Bug 15216: Returns - Show branch names and item type description Changes the table with returned items to display the branch names for home and holding branch and the itemtype description instead of the codes. To test: - Check out some items - Return the items - Verify the changes in the table of returned items Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 84a0f1acf6ef052cc83eb4c0f6c07127b4cfaae2) Signed-off-by: Julian Maurice (cherry picked from commit efeeffb0645ffd7c2b84629618ad0c60882e8517) Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: C4/Ris.pm | 2 +- circ/waitingreserves.pl | 5 ++++- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/transferorder.tt | 5 +++-- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 7 ++++--- koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt | 3 +++ svc/holds | 4 ++-- t/db_dependent/Reserves.t | 4 ++++ 7 files changed, 21 insertions(+), 9 deletions(-) mode change 100644 => 100755 cataloguing/value_builder/marc21_linking_section.pl mode change 100644 => 100755 cataloguing/value_builder/unimarc_field_100_authorities.pl mode change 100644 => 100755 misc/cronjobs/nl-sync-from-koha.pl mode change 100644 => 100755 misc/cronjobs/nl-sync-to-koha.pl mode change 100644 => 100755 misc/cronjobs/social_data/get_report_social_data.pl mode change 100644 => 100755 misc/cronjobs/social_data/update_social_data.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 24 00:17:00 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 23 Dec 2015 23:17:00 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.18.13 created. v3.18.13 Message-ID: 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 annotated tag, v3.18.13 has been created at 6ed8ff504aa2269e4105b8afb57aed14b93fa47c (tag) tagging da3d62fdf62701300b0bd7cf63bd16ef092e3905 (commit) replaces v3.18.12 tagged by Liz Rea on Thu Dec 24 12:18:11 2015 +1300 - Log ----------------------------------------------------------------- Koha release 3.18.13 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJWeyuzAAoJEBuNTiU1Z9kHKucP/3dxQQ46vsjhcLQCkl9ZbGFj Ec3aP701xqjXRDGrR2rYIDjKtdTed8ROGq3Nydt4yYIy44LF2knJz7jzXNO/FS8k 7zV4u5tsdJL+EAOeyxEZuJZEKjuKpWmluUYw7yBrj802lbyp9jJLHDmgFaRYhRw6 pD8r3NranPmzS/4IpAhg3FZUnChpo3tL4JXmnM/J3SKB5iYROIT46N7yOtcyKMYO 1Z+iiZ+WkI5ZfbL+4dRRsyG0bEXaO/d+g1f7S5ckei0uJDSf88ImiojSZWsquBOc +c7cFowYPvgxKSFplC4XvepbGpeUQOoBLDsmyWmyF3Ch8HnQ83iuY6VGAruMIPQ4 jSppD1qnyeP98Ea9Ri/C1k2bVHb2kmuRRxQouXav/nQxynJmrJLiz+4+4SvrmRvf itTEKvtzXQvFdAGZkwA9ccrYzgWsYflwgKtH553ZBa4+p3Mp+665N8Bkl2mmNfWE +YhkFeZSLNo6oVBe39RU8y+BuvEF8dEppjwpDir6Z4yOW8BNkfbn7lk3UslnzPQQ GqoKmyEQRL49jcGj8xyvnPPyuRa0O2zGPFK07GyXgEJxqky5p4POOHdePd88w7mq qP7zvxM1jQojK5p76HA78G2cA7N9J7gm/KOW8iosFit5CPMd2uNjEs9Drim4jqBL DHa8orFk4Dpqz+7QASpM =nS95 -----END PGP SIGNATURE----- Aleisha (1): Bug 14553: Silencing warn triggered when clearing item rating on OPAC Bernardo Gonzalez Kriegel (2): Bug 15061: Can't add item to rotating collection Translation updates for Koha 3.18.13 release Colin Campbell (2): Bug 14673: Work around change to AddIssue return Bug 15036: Do not overwrite complete status in basket ops David Cook (4): Bug 14575: OPACURLOpenInNewWindow should apply to item-level urls too Bug 15182: Conditionally load Koha::NorwegianPatronDB Bug 15198: Make OpacSuppression work even if there are no records suppressed Bug 15198: Change wording of OpacSuppression system preference Fridolin Somers (5): Bug 15059: Line break in html attribute in branchoverdues.tt Bug 14867: userid not generated when defined in BorrowerUnwantedField Bug 14078: converting from ISO5426 is not complete Bug 14078: (followup) converting from ISO5426 is not complete Bug 14542: Transliterate rule for all single quote forms Fr?d?ric Demians (2): Bug 15133: encode correctly email generated by runreport.pl Bug 15175: Respect IntranetBiblioDefaultView syspref Galen Charlton (1): new Debian package maintainer Hector Castro (1): Bug 15154: Allow correct translation for upload local cover image Indranil Das Gupta (1): Bug 14632: Fix alert message for single item batch Jonathan Druart (18): Bug 10181: Make string translatable Bug 10181: Acq - Improve message for deleted records Bug 10799: Limit the SCO user to the SCO module Bug 12540: Display "Every" on editing a MMT action if previously selected Bug 14388: Funds should be sorted by budget_code Bug 14575: Fix typo in opac-basket.tt Bug 14735: Save cache_expiry on modifying a report Bug 6657: Prevent biblionumber to be duplicated Bug 15137: Display ISBN and author info when sending list by email Bug 15109 - Regression in patron search results ordering Bug 15114: Fix typo in opac-suggestion template Bug 4502: Catch software error if no active budget defined Bug 4502: Changing wording again... Bug 14264: Fix export of late orders when translated Bug 5371: Force no caching for private pages at the OPAC Bug 5371: (follow-up) Force no caching for private pages at the OPAC Bug 15256: Fix items table display on the detail page Bug 12152: Holds to pull report - Display location descriptions Joonas Kylm?l? (2): Bug 14773: Move help link back out of the dropdown menu Bug 14687: Patron's transaction history changes items' order after paying fines. Katrin Fischer (2): Bug 15250: Fix Perl error on acqisition stats page Bug 12152: Holds to pull report - Show branch names and item type descriptions Kyle M Hall (4): Bug 15010: Import patron tool creates 'duplicate' restrictions ( debarments ) Bug 15079: Batch Delete Records Error Bug 13411: Koha's SIP server returns not ok for checking in items that are not checked out Bug 13411: (QA followup) Add logging Liz Rea (7): Fixing updatedatabase after 3.18 Fixing number of tests, Circulation.t Contract.t test fails because 'active contract' is no longer active MoveItemFromBiblio.t requires testbuilder, which is not in 3.18. Removing tests. Bug 15120: runreport.pl cronjob doesn't allow custom subjects anymore 3.18 rmaint followup: fixing forbidden pattern in C4/SIP/ILS.pm Increment version for 3.18.13 release Lyon3 Team (1): Bug 15130: useless unitialization warnings when updating authorities Marc V?ron (3): Bug 15068: Get rid of warnings in members/summary-print.pl Bug 14781: Creation of barcode types 2of5 not functional Bug 15117: Transfer Order: Better user information and translation handling Mark Tompsett (1): Bug 4502: An attempt to make things more sensible. Mason James (1): Bug 15035: Anti-spam for opac-suggestions - FOLLOW-UP Nick Clemens (1): Bug 14739 - Add several patrons to a new batch will create a new batch per patron added Nicole C. Engard (1): Bug 15094: Update link to Windows Offline Circ Sophie Meynieux (1): Bug 14157: Notices tab in the patron record should not depend on EnhancedMessagingPreferences to display Tomas Cohen Arazi (1): Bug 15151: Avoid DB access to load C4::Members ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 24 00:23:29 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 23 Dec 2015 23:23:29 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.18.13 deleted. v3.18.12-62-gda3d62f Message-ID: 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 annotated tag, v3.18.13 has been deleted was 6ed8ff504aa2269e4105b8afb57aed14b93fa47c - Log ----------------------------------------------------------------- da3d62fdf62701300b0bd7cf63bd16ef092e3905 Increment version for 3.18.13 release ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 24 00:23:51 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 23 Dec 2015 23:23:51 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.18.13 created. v3.18.13 Message-ID: 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 annotated tag, v3.18.13 has been created at b22af142a5edbf1c6519e35ce707005df2725ea3 (tag) tagging b4d2e236ab91d3af3bf7a4f7fc891b90bc3316ee (commit) replaces v3.18.12 tagged by Liz Rea on Thu Dec 24 12:25:17 2015 +1300 - Log ----------------------------------------------------------------- Koha release 3.18.13 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJWey1dAAoJEBuNTiU1Z9kHhGEP/1M/xC4BE9vFIaXFnXla2c17 h0+rQih6vc2oR6qOQCxAcBYoNBhbZNgytIV1FwvpPVmLZd4j/DitLfa4ZIKJ/99G TAe69TDXhxuS+uMeiMi1A6sgWLcdqz6hrxikyCMPYrmP5tmH55WM5GwyLlPS/iOP JnGJDXhhZpv51o4Br/+AGAEg76UvrzyZD/xrNYSLkE0cdmA+/+LI28tAqi+3Vnlr cxGSWjgUHfOst2r61Dmwy5mNZOy5854ZPY2svBQrTnBDUUBKMLTlXNEU2Ghnbwa8 6j9bFrjCUCyz3DIA5E+v18HxJt2qzymMjmcnROAU1lSDoRhNW5nocQ3kXjSirhvk qLb8g45WBI2zvBQWSt7yTTExfQipyjZrppoHBVWEmDKikjEgNvi93M4lhtRHK5UQ daq/Oc7gF9rpB/ZK9f877PQfJe5ULR0XdgZXBUIzXZEF8eDyC56i5P6oU2Fy0clX xeIabG87JuixF0iK/m/zRnFnYMuO73LRbmvcAas3G8yTXtYhzTdj82b7lpwhP4d6 9VRFEv5v8tjHOb45UOunMlcxOa8uSxFKPVJ3Qj1Hmf/kRRNN0FxykbjhKfEyZXil 9NtSJ3w+m7+Tmos5dt/ZZsQ8MoojKcxXAlB4t2evmVCyPXmrqWEpowGECtIuK9Uy j9/xZ0SrEpBP6EosJBD6 =FOpI -----END PGP SIGNATURE----- Aleisha (1): Bug 14553: Silencing warn triggered when clearing item rating on OPAC Bernardo Gonzalez Kriegel (2): Bug 15061: Can't add item to rotating collection Translation updates for Koha 3.18.13 release Colin Campbell (2): Bug 14673: Work around change to AddIssue return Bug 15036: Do not overwrite complete status in basket ops David Cook (4): Bug 14575: OPACURLOpenInNewWindow should apply to item-level urls too Bug 15182: Conditionally load Koha::NorwegianPatronDB Bug 15198: Make OpacSuppression work even if there are no records suppressed Bug 15198: Change wording of OpacSuppression system preference Fridolin Somers (5): Bug 15059: Line break in html attribute in branchoverdues.tt Bug 14867: userid not generated when defined in BorrowerUnwantedField Bug 14078: converting from ISO5426 is not complete Bug 14078: (followup) converting from ISO5426 is not complete Bug 14542: Transliterate rule for all single quote forms Fr?d?ric Demians (2): Bug 15133: encode correctly email generated by runreport.pl Bug 15175: Respect IntranetBiblioDefaultView syspref Galen Charlton (1): new Debian package maintainer Hector Castro (1): Bug 15154: Allow correct translation for upload local cover image Indranil Das Gupta (1): Bug 14632: Fix alert message for single item batch Jonathan Druart (18): Bug 10181: Make string translatable Bug 10181: Acq - Improve message for deleted records Bug 10799: Limit the SCO user to the SCO module Bug 12540: Display "Every" on editing a MMT action if previously selected Bug 14388: Funds should be sorted by budget_code Bug 14575: Fix typo in opac-basket.tt Bug 14735: Save cache_expiry on modifying a report Bug 6657: Prevent biblionumber to be duplicated Bug 15137: Display ISBN and author info when sending list by email Bug 15109 - Regression in patron search results ordering Bug 15114: Fix typo in opac-suggestion template Bug 4502: Catch software error if no active budget defined Bug 4502: Changing wording again... Bug 14264: Fix export of late orders when translated Bug 5371: Force no caching for private pages at the OPAC Bug 5371: (follow-up) Force no caching for private pages at the OPAC Bug 15256: Fix items table display on the detail page Bug 12152: Holds to pull report - Display location descriptions Joonas Kylm?l? (2): Bug 14773: Move help link back out of the dropdown menu Bug 14687: Patron's transaction history changes items' order after paying fines. Katrin Fischer (2): Bug 15250: Fix Perl error on acqisition stats page Bug 12152: Holds to pull report - Show branch names and item type descriptions Kyle M Hall (4): Bug 15010: Import patron tool creates 'duplicate' restrictions ( debarments ) Bug 15079: Batch Delete Records Error Bug 13411: Koha's SIP server returns not ok for checking in items that are not checked out Bug 13411: (QA followup) Add logging Liz Rea (8): Fixing updatedatabase after 3.18 Fixing number of tests, Circulation.t Contract.t test fails because 'active contract' is no longer active MoveItemFromBiblio.t requires testbuilder, which is not in 3.18. Removing tests. Bug 15120: runreport.pl cronjob doesn't allow custom subjects anymore 3.18 rmaint followup: fixing forbidden pattern in C4/SIP/ILS.pm Increment version for 3.18.13 release Update release notes for 3.20.1 release Lyon3 Team (1): Bug 15130: useless unitialization warnings when updating authorities Marc V?ron (3): Bug 15068: Get rid of warnings in members/summary-print.pl Bug 14781: Creation of barcode types 2of5 not functional Bug 15117: Transfer Order: Better user information and translation handling Mark Tompsett (1): Bug 4502: An attempt to make things more sensible. Mason James (1): Bug 15035: Anti-spam for opac-suggestions - FOLLOW-UP Nick Clemens (1): Bug 14739 - Add several patrons to a new batch will create a new batch per patron added Nicole C. Engard (1): Bug 15094: Update link to Windows Offline Circ Sophie Meynieux (1): Bug 14157: Notices tab in the patron record should not depend on EnhancedMessagingPreferences to display Tomas Cohen Arazi (1): Bug 15151: Avoid DB access to load C4::Members ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 24 16:35:58 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 24 Dec 2015 15:35:58 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.06-33-g95a5b0d Message-ID: 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.20.x has been updated via 95a5b0ded05ece160c800a3aa9edfa2473c791fa (commit) via aa2a182b808b240296569f7dc095b20951cd7aa3 (commit) from 95cea538decd94bf84698c1cdfe765d180b3d51d (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 95a5b0ded05ece160c800a3aa9edfa2473c791fa Author: Bernardo Gonzalez Kriegel Date: Thu Dec 24 11:51:53 2015 -0300 Translation updates for Koha 3.20 release Signed-off-by: Fr?d?ric Demians commit aa2a182b808b240296569f7dc095b20951cd7aa3 Author: Fr?d?ric Demians Date: Thu Dec 24 16:19:47 2015 +0100 Version 3.20.7 Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 6 + misc/release_notes/release_notes_3_20_7.md | 263 ++ misc/translator/po/am-Ethi-marc-MARC21.po | 6 +- misc/translator/po/am-Ethi-marc-NORMARC.po | 2 +- misc/translator/po/am-Ethi-marc-UNIMARC.po | 2 +- misc/translator/po/am-Ethi-opac-bootstrap.po | 41 +- misc/translator/po/am-Ethi-pref.po | 2 +- misc/translator/po/am-Ethi-staff-help.po | 2 +- misc/translator/po/am-Ethi-staff-prog.po | 1205 ++++---- misc/translator/po/ar-Arab-marc-MARC21.po | 16 +- misc/translator/po/ar-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ar-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ar-Arab-opac-bootstrap.po | 43 +- misc/translator/po/ar-Arab-pref.po | 3100 +++++---------------- misc/translator/po/ar-Arab-staff-help.po | 2 +- misc/translator/po/ar-Arab-staff-prog.po | 1212 ++++---- misc/translator/po/az-AZ-marc-MARC21.po | 6 +- misc/translator/po/az-AZ-marc-NORMARC.po | 2 +- misc/translator/po/az-AZ-marc-UNIMARC.po | 2 +- misc/translator/po/az-AZ-opac-bootstrap.po | 41 +- misc/translator/po/az-AZ-pref.po | 2 +- misc/translator/po/az-AZ-staff-help.po | 2 +- misc/translator/po/az-AZ-staff-prog.po | 1209 ++++---- misc/translator/po/be-BY-marc-MARC21.po | 6 +- misc/translator/po/be-BY-marc-NORMARC.po | 2 +- misc/translator/po/be-BY-marc-UNIMARC.po | 2 +- misc/translator/po/be-BY-opac-bootstrap.po | 41 +- misc/translator/po/be-BY-pref.po | 2 +- misc/translator/po/be-BY-staff-help.po | 2 +- misc/translator/po/be-BY-staff-prog.po | 1209 ++++---- misc/translator/po/bg-Cyrl-marc-MARC21.po | 6 +- misc/translator/po/bg-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/bg-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/bg-Cyrl-opac-bootstrap.po | 41 +- misc/translator/po/bg-Cyrl-pref.po | 2 +- misc/translator/po/bg-Cyrl-staff-help.po | 2 +- misc/translator/po/bg-Cyrl-staff-prog.po | 1205 ++++---- misc/translator/po/bn-IN-marc-MARC21.po | 6 +- misc/translator/po/bn-IN-marc-NORMARC.po | 2 +- misc/translator/po/bn-IN-marc-UNIMARC.po | 2 +- misc/translator/po/bn-IN-opac-bootstrap.po | 41 +- misc/translator/po/bn-IN-pref.po | 2 +- misc/translator/po/bn-IN-staff-help.po | 2 +- misc/translator/po/bn-IN-staff-prog.po | 1205 ++++---- misc/translator/po/ca-ES-marc-MARC21.po | 6 +- misc/translator/po/ca-ES-marc-NORMARC.po | 2 +- misc/translator/po/ca-ES-marc-UNIMARC.po | 2 +- misc/translator/po/ca-ES-opac-bootstrap.po | 41 +- misc/translator/po/ca-ES-pref.po | 2 +- misc/translator/po/ca-ES-staff-help.po | 2 +- misc/translator/po/ca-ES-staff-prog.po | 1209 ++++---- misc/translator/po/cs-CZ-marc-MARC21.po | 6 +- misc/translator/po/cs-CZ-marc-NORMARC.po | 2 +- misc/translator/po/cs-CZ-marc-UNIMARC.po | 2 +- misc/translator/po/cs-CZ-opac-bootstrap.po | 41 +- misc/translator/po/cs-CZ-pref.po | 4 +- misc/translator/po/cs-CZ-staff-help.po | 2 +- misc/translator/po/cs-CZ-staff-prog.po | 1214 ++++---- misc/translator/po/da-DK-marc-MARC21.po | 6 +- misc/translator/po/da-DK-marc-NORMARC.po | 2 +- misc/translator/po/da-DK-marc-UNIMARC.po | 2 +- misc/translator/po/da-DK-opac-bootstrap.po | 41 +- misc/translator/po/da-DK-pref.po | 2 +- misc/translator/po/da-DK-staff-help.po | 2 +- misc/translator/po/da-DK-staff-prog.po | 1212 ++++---- misc/translator/po/de-CH-marc-MARC21.po | 6 +- misc/translator/po/de-CH-marc-NORMARC.po | 2 +- misc/translator/po/de-CH-marc-UNIMARC.po | 2 +- misc/translator/po/de-CH-opac-bootstrap.po | 45 +- misc/translator/po/de-CH-pref.po | 5 +- misc/translator/po/de-CH-staff-help.po | 2 +- misc/translator/po/de-CH-staff-prog.po | 1214 ++++---- misc/translator/po/de-DE-marc-MARC21.po | 6 +- misc/translator/po/de-DE-marc-NORMARC.po | 2 +- misc/translator/po/de-DE-marc-UNIMARC.po | 2 +- misc/translator/po/de-DE-opac-bootstrap.po | 41 +- misc/translator/po/de-DE-pref.po | 10 +- misc/translator/po/de-DE-staff-help.po | 2 +- misc/translator/po/de-DE-staff-prog.po | 1224 ++++---- misc/translator/po/el-GR-marc-MARC21.po | 6 +- misc/translator/po/el-GR-marc-NORMARC.po | 2 +- misc/translator/po/el-GR-marc-UNIMARC.po | 2 +- misc/translator/po/el-GR-opac-bootstrap.po | 91 +- misc/translator/po/el-GR-pref.po | 2 +- misc/translator/po/el-GR-staff-help.po | 2 +- misc/translator/po/el-GR-staff-prog.po | 1211 ++++---- misc/translator/po/en-GB-marc-MARC21.po | 6 +- misc/translator/po/en-GB-marc-NORMARC.po | 2 +- misc/translator/po/en-GB-marc-UNIMARC.po | 2 +- misc/translator/po/en-GB-opac-bootstrap.po | 41 +- misc/translator/po/en-GB-pref.po | 2 +- misc/translator/po/en-GB-staff-help.po | 2 +- misc/translator/po/en-GB-staff-prog.po | 1209 ++++---- misc/translator/po/en-NZ-marc-MARC21.po | 6 +- misc/translator/po/en-NZ-marc-NORMARC.po | 2 +- misc/translator/po/en-NZ-marc-UNIMARC.po | 2 +- misc/translator/po/en-NZ-opac-bootstrap.po | 41 +- misc/translator/po/en-NZ-pref.po | 4 +- misc/translator/po/en-NZ-staff-help.po | 2 +- misc/translator/po/en-NZ-staff-prog.po | 1211 ++++---- misc/translator/po/eo-marc-MARC21.po | 6 +- misc/translator/po/eo-marc-NORMARC.po | 2 +- misc/translator/po/eo-marc-UNIMARC.po | 2 +- misc/translator/po/eo-opac-bootstrap.po | 41 +- misc/translator/po/eo-pref.po | 2 +- misc/translator/po/eo-staff-help.po | 2 +- misc/translator/po/eo-staff-prog.po | 1205 ++++---- misc/translator/po/es-ES-marc-MARC21.po | 6 +- misc/translator/po/es-ES-marc-NORMARC.po | 6 +- misc/translator/po/es-ES-marc-UNIMARC.po | 2 +- misc/translator/po/es-ES-opac-bootstrap.po | 45 +- misc/translator/po/es-ES-pref.po | 8 +- misc/translator/po/es-ES-staff-help.po | 2 +- misc/translator/po/es-ES-staff-prog.po | 1218 ++++---- misc/translator/po/eu-marc-MARC21.po | 6 +- misc/translator/po/eu-marc-NORMARC.po | 2 +- misc/translator/po/eu-marc-UNIMARC.po | 2 +- misc/translator/po/eu-opac-bootstrap.po | 41 +- misc/translator/po/eu-pref.po | 2 +- misc/translator/po/eu-staff-help.po | 2 +- misc/translator/po/eu-staff-prog.po | 1206 ++++---- misc/translator/po/fa-Arab-marc-MARC21.po | 6 +- misc/translator/po/fa-Arab-marc-NORMARC.po | 2 +- misc/translator/po/fa-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/fa-Arab-opac-bootstrap.po | 41 +- misc/translator/po/fa-Arab-pref.po | 4 +- misc/translator/po/fa-Arab-staff-help.po | 2 +- misc/translator/po/fa-Arab-staff-prog.po | 1209 ++++---- misc/translator/po/fi-FI-marc-MARC21.po | 6 +- misc/translator/po/fi-FI-marc-NORMARC.po | 2 +- misc/translator/po/fi-FI-marc-UNIMARC.po | 2 +- misc/translator/po/fi-FI-opac-bootstrap.po | 41 +- misc/translator/po/fi-FI-pref.po | 4 +- misc/translator/po/fi-FI-staff-help.po | 2 +- misc/translator/po/fi-FI-staff-prog.po | 1214 ++++---- misc/translator/po/fo-FO-marc-MARC21.po | 6 +- misc/translator/po/fo-FO-marc-NORMARC.po | 2 +- misc/translator/po/fo-FO-marc-UNIMARC.po | 2 +- misc/translator/po/fo-FO-opac-bootstrap.po | 41 +- misc/translator/po/fo-FO-pref.po | 2 +- misc/translator/po/fo-FO-staff-help.po | 2 +- misc/translator/po/fo-FO-staff-prog.po | 1205 ++++---- misc/translator/po/fr-CA-marc-MARC21.po | 6 +- misc/translator/po/fr-CA-marc-NORMARC.po | 2 +- misc/translator/po/fr-CA-marc-UNIMARC.po | 2 +- misc/translator/po/fr-CA-opac-bootstrap.po | 41 +- misc/translator/po/fr-CA-pref.po | 4 +- misc/translator/po/fr-CA-staff-help.po | 2 +- misc/translator/po/fr-CA-staff-prog.po | 1215 ++++---- misc/translator/po/fr-FR-marc-MARC21.po | 6 +- misc/translator/po/fr-FR-marc-NORMARC.po | 2 +- misc/translator/po/fr-FR-marc-UNIMARC.po | 2 +- misc/translator/po/fr-FR-opac-bootstrap.po | 41 +- misc/translator/po/fr-FR-pref.po | 4 +- misc/translator/po/fr-FR-staff-help.po | 2 +- misc/translator/po/fr-FR-staff-prog.po | 1242 +++++---- misc/translator/po/gl-marc-MARC21.po | 6 +- misc/translator/po/gl-marc-NORMARC.po | 2 +- misc/translator/po/gl-marc-UNIMARC.po | 2 +- misc/translator/po/gl-opac-bootstrap.po | 41 +- misc/translator/po/gl-pref.po | 2 +- misc/translator/po/gl-staff-help.po | 2 +- misc/translator/po/gl-staff-prog.po | 1213 ++++---- misc/translator/po/he-Hebr-marc-MARC21.po | 6 +- misc/translator/po/he-Hebr-marc-NORMARC.po | 2 +- misc/translator/po/he-Hebr-marc-UNIMARC.po | 2 +- misc/translator/po/he-Hebr-opac-bootstrap.po | 41 +- misc/translator/po/he-Hebr-pref.po | 2 +- misc/translator/po/he-Hebr-staff-help.po | 2 +- misc/translator/po/he-Hebr-staff-prog.po | 1213 ++++---- misc/translator/po/hi-marc-MARC21.po | 6 +- misc/translator/po/hi-marc-NORMARC.po | 2 +- misc/translator/po/hi-marc-UNIMARC.po | 2 +- misc/translator/po/hi-opac-bootstrap.po | 41 +- misc/translator/po/hi-pref.po | 2 +- misc/translator/po/hi-staff-help.po | 2 +- misc/translator/po/hi-staff-prog.po | 1209 ++++---- misc/translator/po/hr-HR-marc-MARC21.po | 6 +- misc/translator/po/hr-HR-marc-NORMARC.po | 2 +- misc/translator/po/hr-HR-marc-UNIMARC.po | 2 +- misc/translator/po/hr-HR-opac-bootstrap.po | 41 +- misc/translator/po/hr-HR-pref.po | 2 +- misc/translator/po/hr-HR-staff-help.po | 2 +- misc/translator/po/hr-HR-staff-prog.po | 1212 ++++---- misc/translator/po/hu-HU-marc-MARC21.po | 6 +- misc/translator/po/hu-HU-marc-NORMARC.po | 2 +- misc/translator/po/hu-HU-marc-UNIMARC.po | 2 +- misc/translator/po/hu-HU-opac-bootstrap.po | 41 +- misc/translator/po/hu-HU-pref.po | 2 +- misc/translator/po/hu-HU-staff-help.po | 2 +- misc/translator/po/hu-HU-staff-prog.po | 1209 ++++---- misc/translator/po/hy-Armn-marc-MARC21.po | 6 +- misc/translator/po/hy-Armn-marc-NORMARC.po | 2 +- misc/translator/po/hy-Armn-marc-UNIMARC.po | 2 +- misc/translator/po/hy-Armn-opac-bootstrap.po | 41 +- misc/translator/po/hy-Armn-pref.po | 10 +- misc/translator/po/hy-Armn-staff-help.po | 2 +- misc/translator/po/hy-Armn-staff-prog.po | 1220 ++++---- misc/translator/po/id-ID-marc-MARC21.po | 6 +- misc/translator/po/id-ID-marc-NORMARC.po | 2 +- misc/translator/po/id-ID-marc-UNIMARC.po | 2 +- misc/translator/po/id-ID-opac-bootstrap.po | 41 +- misc/translator/po/id-ID-pref.po | 2 +- misc/translator/po/id-ID-staff-help.po | 2 +- misc/translator/po/id-ID-staff-prog.po | 1208 ++++---- misc/translator/po/is-IS-marc-MARC21.po | 6 +- misc/translator/po/is-IS-marc-NORMARC.po | 2 +- misc/translator/po/is-IS-marc-UNIMARC.po | 2 +- misc/translator/po/is-IS-opac-bootstrap.po | 41 +- misc/translator/po/is-IS-pref.po | 2 +- misc/translator/po/is-IS-staff-help.po | 2 +- misc/translator/po/is-IS-staff-prog.po | 1209 ++++---- misc/translator/po/it-IT-marc-MARC21.po | 6 +- misc/translator/po/it-IT-marc-NORMARC.po | 2 +- misc/translator/po/it-IT-marc-UNIMARC.po | 2 +- misc/translator/po/it-IT-opac-bootstrap.po | 58 +- misc/translator/po/it-IT-pref.po | 8 +- misc/translator/po/it-IT-staff-help.po | 8 +- misc/translator/po/it-IT-staff-prog.po | 1226 ++++---- misc/translator/po/ja-Jpan-JP-marc-MARC21.po | 6 +- misc/translator/po/ja-Jpan-JP-marc-NORMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-marc-UNIMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-opac-bootstrap.po | 41 +- misc/translator/po/ja-Jpan-JP-pref.po | 2 +- misc/translator/po/ja-Jpan-JP-staff-help.po | 2 +- misc/translator/po/ja-Jpan-JP-staff-prog.po | 1209 ++++---- misc/translator/po/ka-marc-MARC21.po | 6 +- misc/translator/po/ka-marc-NORMARC.po | 2 +- misc/translator/po/ka-marc-UNIMARC.po | 2 +- misc/translator/po/ka-opac-bootstrap.po | 41 +- misc/translator/po/ka-pref.po | 2 +- misc/translator/po/ka-staff-help.po | 2 +- misc/translator/po/ka-staff-prog.po | 1205 ++++---- misc/translator/po/km-KH-marc-MARC21.po | 6 +- misc/translator/po/km-KH-marc-NORMARC.po | 2 +- misc/translator/po/km-KH-marc-UNIMARC.po | 2 +- misc/translator/po/km-KH-opac-bootstrap.po | 41 +- misc/translator/po/km-KH-pref.po | 2 +- misc/translator/po/km-KH-staff-help.po | 2 +- misc/translator/po/km-KH-staff-prog.po | 1205 ++++---- misc/translator/po/kn-Knda-marc-MARC21.po | 6 +- misc/translator/po/kn-Knda-marc-NORMARC.po | 2 +- misc/translator/po/kn-Knda-marc-UNIMARC.po | 2 +- misc/translator/po/kn-Knda-opac-bootstrap.po | 41 +- misc/translator/po/kn-Knda-pref.po | 2 +- misc/translator/po/kn-Knda-staff-help.po | 2 +- misc/translator/po/kn-Knda-staff-prog.po | 1215 ++++---- misc/translator/po/ko-Kore-KP-marc-MARC21.po | 6 +- misc/translator/po/ko-Kore-KP-marc-NORMARC.po | 2 +- misc/translator/po/ko-Kore-KP-marc-UNIMARC.po | 2 +- misc/translator/po/ko-Kore-KP-opac-bootstrap.po | 41 +- misc/translator/po/ko-Kore-KP-pref.po | 2 +- misc/translator/po/ko-Kore-KP-staff-help.po | 2 +- misc/translator/po/ko-Kore-KP-staff-prog.po | 1214 ++++---- misc/translator/po/ku-Arab-marc-MARC21.po | 6 +- misc/translator/po/ku-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ku-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ku-Arab-opac-bootstrap.po | 41 +- misc/translator/po/ku-Arab-pref.po | 2 +- misc/translator/po/ku-Arab-staff-help.po | 2 +- misc/translator/po/ku-Arab-staff-prog.po | 1209 ++++---- misc/translator/po/lo-Laoo-marc-MARC21.po | 6 +- misc/translator/po/lo-Laoo-marc-NORMARC.po | 2 +- misc/translator/po/lo-Laoo-marc-UNIMARC.po | 2 +- misc/translator/po/lo-Laoo-opac-bootstrap.po | 41 +- misc/translator/po/lo-Laoo-pref.po | 2 +- misc/translator/po/lo-Laoo-staff-help.po | 2 +- misc/translator/po/lo-Laoo-staff-prog.po | 1207 ++++---- misc/translator/po/mi-NZ-marc-MARC21.po | 6 +- misc/translator/po/mi-NZ-marc-NORMARC.po | 2 +- misc/translator/po/mi-NZ-marc-UNIMARC.po | 2 +- misc/translator/po/mi-NZ-opac-bootstrap.po | 41 +- misc/translator/po/mi-NZ-pref.po | 2 +- misc/translator/po/mi-NZ-staff-help.po | 2 +- misc/translator/po/mi-NZ-staff-prog.po | 1209 ++++---- misc/translator/po/ml-marc-MARC21.po | 6 +- misc/translator/po/ml-marc-NORMARC.po | 2 +- misc/translator/po/ml-marc-UNIMARC.po | 2 +- misc/translator/po/ml-opac-bootstrap.po | 41 +- misc/translator/po/ml-pref.po | 2 +- misc/translator/po/ml-staff-help.po | 2 +- misc/translator/po/ml-staff-prog.po | 1205 ++++---- misc/translator/po/mon-marc-MARC21.po | 6 +- misc/translator/po/mon-marc-NORMARC.po | 2 +- misc/translator/po/mon-marc-UNIMARC.po | 2 +- misc/translator/po/mon-opac-bootstrap.po | 41 +- misc/translator/po/mon-pref.po | 2 +- misc/translator/po/mon-staff-help.po | 2 +- misc/translator/po/mon-staff-prog.po | 1209 ++++---- misc/translator/po/mr-marc-MARC21.po | 6 +- misc/translator/po/mr-marc-NORMARC.po | 2 +- misc/translator/po/mr-marc-UNIMARC.po | 2 +- misc/translator/po/mr-opac-bootstrap.po | 41 +- misc/translator/po/mr-pref.po | 2 +- misc/translator/po/mr-staff-help.po | 2 +- misc/translator/po/mr-staff-prog.po | 1211 ++++---- misc/translator/po/ms-MY-marc-MARC21.po | 6 +- misc/translator/po/ms-MY-marc-NORMARC.po | 2 +- misc/translator/po/ms-MY-marc-UNIMARC.po | 2 +- misc/translator/po/ms-MY-opac-bootstrap.po | 41 +- misc/translator/po/ms-MY-pref.po | 2 +- misc/translator/po/ms-MY-staff-help.po | 2 +- misc/translator/po/ms-MY-staff-prog.po | 1214 ++++---- misc/translator/po/nb-NO-marc-MARC21.po | 6 +- misc/translator/po/nb-NO-marc-NORMARC.po | 2 +- misc/translator/po/nb-NO-marc-UNIMARC.po | 2 +- misc/translator/po/nb-NO-opac-bootstrap.po | 41 +- misc/translator/po/nb-NO-pref.po | 4 +- misc/translator/po/nb-NO-staff-help.po | 2 +- misc/translator/po/nb-NO-staff-prog.po | 1211 ++++---- misc/translator/po/ne-NE-marc-MARC21.po | 6 +- misc/translator/po/ne-NE-marc-NORMARC.po | 2 +- misc/translator/po/ne-NE-marc-UNIMARC.po | 2 +- misc/translator/po/ne-NE-opac-bootstrap.po | 41 +- misc/translator/po/ne-NE-pref.po | 2 +- misc/translator/po/ne-NE-staff-help.po | 2 +- misc/translator/po/ne-NE-staff-prog.po | 1205 ++++---- misc/translator/po/nl-BE-marc-MARC21.po | 6 +- misc/translator/po/nl-BE-marc-NORMARC.po | 2 +- misc/translator/po/nl-BE-marc-UNIMARC.po | 2 +- misc/translator/po/nl-BE-opac-bootstrap.po | 41 +- misc/translator/po/nl-BE-pref.po | 2 +- misc/translator/po/nl-BE-staff-help.po | 2 +- misc/translator/po/nl-BE-staff-prog.po | 1208 ++++---- misc/translator/po/nl-NL-marc-MARC21.po | 6 +- misc/translator/po/nl-NL-marc-NORMARC.po | 2 +- misc/translator/po/nl-NL-marc-UNIMARC.po | 2 +- misc/translator/po/nl-NL-opac-bootstrap.po | 41 +- misc/translator/po/nl-NL-pref.po | 2 +- misc/translator/po/nl-NL-staff-help.po | 2 +- misc/translator/po/nl-NL-staff-prog.po | 1206 ++++---- misc/translator/po/nn-NO-marc-MARC21.po | 6 +- misc/translator/po/nn-NO-marc-NORMARC.po | 2 +- misc/translator/po/nn-NO-marc-UNIMARC.po | 2 +- misc/translator/po/nn-NO-opac-bootstrap.po | 41 +- misc/translator/po/nn-NO-pref.po | 2 +- misc/translator/po/nn-NO-staff-help.po | 2 +- misc/translator/po/nn-NO-staff-prog.po | 1209 ++++---- misc/translator/po/oc-marc-MARC21.po | 6 +- misc/translator/po/oc-marc-NORMARC.po | 2 +- misc/translator/po/oc-marc-UNIMARC.po | 2 +- misc/translator/po/oc-opac-bootstrap.po | 41 +- misc/translator/po/oc-pref.po | 2 +- misc/translator/po/oc-staff-help.po | 2 +- misc/translator/po/oc-staff-prog.po | 1205 ++++---- misc/translator/po/pbr-marc-MARC21.po | 6 +- misc/translator/po/pbr-marc-NORMARC.po | 2 +- misc/translator/po/pbr-marc-UNIMARC.po | 2 +- misc/translator/po/pbr-opac-bootstrap.po | 41 +- misc/translator/po/pbr-pref.po | 2 +- misc/translator/po/pbr-staff-help.po | 2 +- misc/translator/po/pbr-staff-prog.po | 1205 ++++---- misc/translator/po/pl-PL-marc-MARC21.po | 14 +- misc/translator/po/pl-PL-marc-NORMARC.po | 22 +- misc/translator/po/pl-PL-marc-UNIMARC.po | 2 +- misc/translator/po/pl-PL-opac-bootstrap.po | 61 +- misc/translator/po/pl-PL-pref.po | 16 +- misc/translator/po/pl-PL-staff-help.po | 2 +- misc/translator/po/pl-PL-staff-prog.po | 1236 ++++---- misc/translator/po/prs-marc-MARC21.po | 6 +- misc/translator/po/prs-marc-NORMARC.po | 2 +- misc/translator/po/prs-marc-UNIMARC.po | 2 +- misc/translator/po/prs-opac-bootstrap.po | 41 +- misc/translator/po/prs-pref.po | 2 +- misc/translator/po/prs-staff-help.po | 2 +- misc/translator/po/prs-staff-prog.po | 1207 ++++---- misc/translator/po/pt-BR-marc-MARC21.po | 6 +- misc/translator/po/pt-BR-marc-NORMARC.po | 2 +- misc/translator/po/pt-BR-marc-UNIMARC.po | 2 +- misc/translator/po/pt-BR-opac-bootstrap.po | 41 +- misc/translator/po/pt-BR-pref.po | 2 +- misc/translator/po/pt-BR-staff-help.po | 26 +- misc/translator/po/pt-BR-staff-prog.po | 1214 ++++---- misc/translator/po/pt-PT-marc-MARC21.po | 6 +- misc/translator/po/pt-PT-marc-NORMARC.po | 2 +- misc/translator/po/pt-PT-marc-UNIMARC.po | 2 +- misc/translator/po/pt-PT-opac-bootstrap.po | 44 +- misc/translator/po/pt-PT-pref.po | 5 +- misc/translator/po/pt-PT-staff-help.po | 11 +- misc/translator/po/pt-PT-staff-prog.po | 1214 ++++---- misc/translator/po/ro-RO-marc-MARC21.po | 6 +- misc/translator/po/ro-RO-marc-NORMARC.po | 2 +- misc/translator/po/ro-RO-marc-UNIMARC.po | 2 +- misc/translator/po/ro-RO-opac-bootstrap.po | 41 +- misc/translator/po/ro-RO-pref.po | 2 +- misc/translator/po/ro-RO-staff-help.po | 2 +- misc/translator/po/ro-RO-staff-prog.po | 1209 ++++---- misc/translator/po/ru-RU-marc-MARC21.po | 6 +- misc/translator/po/ru-RU-marc-NORMARC.po | 2 +- misc/translator/po/ru-RU-marc-UNIMARC.po | 2 +- misc/translator/po/ru-RU-opac-bootstrap.po | 41 +- misc/translator/po/ru-RU-pref.po | 2 +- misc/translator/po/ru-RU-staff-help.po | 2 +- misc/translator/po/ru-RU-staff-prog.po | 1209 ++++---- misc/translator/po/rw-RW-marc-MARC21.po | 6 +- misc/translator/po/rw-RW-marc-NORMARC.po | 2 +- misc/translator/po/rw-RW-marc-UNIMARC.po | 2 +- misc/translator/po/rw-RW-opac-bootstrap.po | 41 +- misc/translator/po/rw-RW-pref.po | 2 +- misc/translator/po/rw-RW-staff-help.po | 2 +- misc/translator/po/rw-RW-staff-prog.po | 1205 ++++---- misc/translator/po/sd-PK-marc-MARC21.po | 6 +- misc/translator/po/sd-PK-marc-NORMARC.po | 2 +- misc/translator/po/sd-PK-marc-UNIMARC.po | 2 +- misc/translator/po/sd-PK-opac-bootstrap.po | 41 +- misc/translator/po/sd-PK-pref.po | 2 +- misc/translator/po/sd-PK-staff-help.po | 2 +- misc/translator/po/sd-PK-staff-prog.po | 1205 ++++---- misc/translator/po/sk-SK-marc-MARC21.po | 6 +- misc/translator/po/sk-SK-marc-NORMARC.po | 2 +- misc/translator/po/sk-SK-marc-UNIMARC.po | 2 +- misc/translator/po/sk-SK-opac-bootstrap.po | 41 +- misc/translator/po/sk-SK-pref.po | 6 +- misc/translator/po/sk-SK-staff-help.po | 2 +- misc/translator/po/sk-SK-staff-prog.po | 1218 ++++---- misc/translator/po/sl-SI-marc-MARC21.po | 6 +- misc/translator/po/sl-SI-marc-NORMARC.po | 2 +- misc/translator/po/sl-SI-marc-UNIMARC.po | 2 +- misc/translator/po/sl-SI-opac-bootstrap.po | 41 +- misc/translator/po/sl-SI-pref.po | 2 +- misc/translator/po/sl-SI-staff-help.po | 2 +- misc/translator/po/sl-SI-staff-prog.po | 1205 ++++---- misc/translator/po/sq-AL-marc-MARC21.po | 6 +- misc/translator/po/sq-AL-marc-NORMARC.po | 2 +- misc/translator/po/sq-AL-marc-UNIMARC.po | 2 +- misc/translator/po/sq-AL-opac-bootstrap.po | 41 +- misc/translator/po/sq-AL-pref.po | 2 +- misc/translator/po/sq-AL-staff-help.po | 2 +- misc/translator/po/sq-AL-staff-prog.po | 1208 ++++---- misc/translator/po/sr-Cyrl-marc-MARC21.po | 6 +- misc/translator/po/sr-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/sr-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/sr-Cyrl-opac-bootstrap.po | 41 +- misc/translator/po/sr-Cyrl-pref.po | 2 +- misc/translator/po/sr-Cyrl-staff-help.po | 2 +- misc/translator/po/sr-Cyrl-staff-prog.po | 1206 ++++---- misc/translator/po/sv-SE-marc-MARC21.po | 6 +- misc/translator/po/sv-SE-marc-NORMARC.po | 2 +- misc/translator/po/sv-SE-marc-UNIMARC.po | 2 +- misc/translator/po/sv-SE-opac-bootstrap.po | 41 +- misc/translator/po/sv-SE-pref.po | 4 +- misc/translator/po/sv-SE-staff-help.po | 2 +- misc/translator/po/sv-SE-staff-prog.po | 1211 ++++---- misc/translator/po/sw-KE-marc-MARC21.po | 6 +- misc/translator/po/sw-KE-marc-NORMARC.po | 2 +- misc/translator/po/sw-KE-marc-UNIMARC.po | 2 +- misc/translator/po/sw-KE-opac-bootstrap.po | 41 +- misc/translator/po/sw-KE-pref.po | 2 +- misc/translator/po/sw-KE-staff-help.po | 2 +- misc/translator/po/sw-KE-staff-prog.po | 1205 ++++---- misc/translator/po/ta-LK-marc-MARC21.po | 6 +- misc/translator/po/ta-LK-marc-NORMARC.po | 2 +- misc/translator/po/ta-LK-marc-UNIMARC.po | 2 +- misc/translator/po/ta-LK-opac-bootstrap.po | 41 +- misc/translator/po/ta-LK-pref.po | 2 +- misc/translator/po/ta-LK-staff-help.po | 2 +- misc/translator/po/ta-LK-staff-prog.po | 1205 ++++---- misc/translator/po/ta-marc-MARC21.po | 6 +- misc/translator/po/ta-marc-NORMARC.po | 2 +- misc/translator/po/ta-marc-UNIMARC.po | 2 +- misc/translator/po/ta-opac-bootstrap.po | 41 +- misc/translator/po/ta-pref.po | 2 +- misc/translator/po/ta-staff-help.po | 2 +- misc/translator/po/ta-staff-prog.po | 1205 ++++---- misc/translator/po/tet-marc-MARC21.po | 6 +- misc/translator/po/tet-marc-NORMARC.po | 2 +- misc/translator/po/tet-marc-UNIMARC.po | 2 +- misc/translator/po/tet-opac-bootstrap.po | 41 +- misc/translator/po/tet-pref.po | 2 +- misc/translator/po/tet-staff-help.po | 2 +- misc/translator/po/tet-staff-prog.po | 1213 ++++---- misc/translator/po/th-TH-marc-MARC21.po | 6 +- misc/translator/po/th-TH-marc-NORMARC.po | 2 +- misc/translator/po/th-TH-marc-UNIMARC.po | 2 +- misc/translator/po/th-TH-opac-bootstrap.po | 41 +- misc/translator/po/th-TH-pref.po | 2 +- misc/translator/po/th-TH-staff-help.po | 2 +- misc/translator/po/th-TH-staff-prog.po | 1206 ++++---- misc/translator/po/tl-PH-marc-MARC21.po | 6 +- misc/translator/po/tl-PH-marc-NORMARC.po | 2 +- misc/translator/po/tl-PH-marc-UNIMARC.po | 2 +- misc/translator/po/tl-PH-opac-bootstrap.po | 41 +- misc/translator/po/tl-PH-pref.po | 2 +- misc/translator/po/tl-PH-staff-help.po | 2 +- misc/translator/po/tl-PH-staff-prog.po | 1215 ++++---- misc/translator/po/tr-TR-marc-MARC21.po | 76 +- misc/translator/po/tr-TR-marc-NORMARC.po | 2 +- misc/translator/po/tr-TR-marc-UNIMARC.po | 2 +- misc/translator/po/tr-TR-opac-bootstrap.po | 148 +- misc/translator/po/tr-TR-pref.po | 3403 ++++++----------------- misc/translator/po/tr-TR-staff-help.po | 2 +- misc/translator/po/tr-TR-staff-prog.po | 1822 ++++++------ misc/translator/po/uk-UA-marc-MARC21.po | 6 +- misc/translator/po/uk-UA-marc-NORMARC.po | 2 +- misc/translator/po/uk-UA-marc-UNIMARC.po | 2 +- misc/translator/po/uk-UA-opac-bootstrap.po | 41 +- misc/translator/po/uk-UA-pref.po | 2 +- misc/translator/po/uk-UA-staff-help.po | 2 +- misc/translator/po/uk-UA-staff-prog.po | 1209 ++++---- misc/translator/po/ur-Arab-marc-MARC21.po | 6 +- misc/translator/po/ur-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ur-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ur-Arab-opac-bootstrap.po | 41 +- misc/translator/po/ur-Arab-pref.po | 2 +- misc/translator/po/ur-Arab-staff-help.po | 2 +- misc/translator/po/ur-Arab-staff-prog.po | 1205 ++++---- misc/translator/po/vi-VN-marc-MARC21.po | 6 +- misc/translator/po/vi-VN-marc-NORMARC.po | 2 +- misc/translator/po/vi-VN-marc-UNIMARC.po | 2 +- misc/translator/po/vi-VN-opac-bootstrap.po | 53 +- misc/translator/po/vi-VN-pref.po | 2 +- misc/translator/po/vi-VN-staff-help.po | 2 +- misc/translator/po/vi-VN-staff-prog.po | 1215 ++++---- misc/translator/po/zh-Hans-CN-marc-MARC21.po | 6 +- misc/translator/po/zh-Hans-CN-marc-NORMARC.po | 2 +- misc/translator/po/zh-Hans-CN-marc-UNIMARC.po | 2 +- misc/translator/po/zh-Hans-CN-opac-bootstrap.po | 41 +- misc/translator/po/zh-Hans-CN-pref.po | 2 +- misc/translator/po/zh-Hans-CN-staff-help.po | 2 +- misc/translator/po/zh-Hans-CN-staff-prog.po | 1215 ++++---- misc/translator/po/zh-Hans-TW-marc-MARC21.po | 6 +- misc/translator/po/zh-Hans-TW-marc-NORMARC.po | 2 +- misc/translator/po/zh-Hans-TW-marc-UNIMARC.po | 2 +- misc/translator/po/zh-Hans-TW-opac-bootstrap.po | 41 +- misc/translator/po/zh-Hans-TW-pref.po | 4 +- misc/translator/po/zh-Hans-TW-staff-help.po | 2 +- misc/translator/po/zh-Hans-TW-staff-prog.po | 1214 ++++---- 528 files changed, 51242 insertions(+), 51512 deletions(-) create mode 100644 misc/release_notes/release_notes_3_20_7.md hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 24 16:37:35 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 24 Dec 2015 15:37:35 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.20.07 created. v3.20.07 Message-ID: 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 annotated tag, v3.20.07 has been created at 2306bfb94237043f5357b73ba02af733e0b5b081 (tag) tagging 95a5b0ded05ece160c800a3aa9edfa2473c791fa (commit) replaces v3.20.06 tagged by Fr?d?ric Demians on Thu Dec 24 16:39:59 2015 +0100 - Log ----------------------------------------------------------------- Koha release 3.20.07 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQEcBAABAgAGBQJWfBHPAAoJEGOGo5WRV8bucBsH/jxDH7+LMUfNJms28IyAykj9 QRIKVl0+MCdflIkzaVTYD8f/L7VSeDB/91KIwiPyTVrePez8NAZ+tHi20FFvEXuH 4G/Pcp78tZP772Fd4x2ypzamkc46Kd1ORmtcR9zWFC6PLYHwIuEzwD9oGfRcH3Gb 3DHEjSkBKC217R2TFRVNqKoSuuet3FeIIm6OL+OwXwdW1O1zZRx3bHRIZWS40cWi IxlMrpzB7qEc1sufVQXw/Hts3fobr9UE1e3vWuq5YMZFcgEWNJGliHYh1qx0RX7z N5kSYb6GoZ7IjOxv/eurvGyYSQyH1rj2UAqffwpi5/IM/LOcH152vkWGW0LLQ+U= =a92R -----END PGP SIGNATURE----- Bernardo Gonzalez Kriegel (3): Bug 11038: Enable use of IntranetUserCSS on staff client login page Bug 14971: fix RIS export Translation updates for Koha 3.20 release Blou (1): Bug 14846 - Items with no holdingbranch causes svc/holds to crash Fridolin Somers (2): Bug 14599 - Saved auth login and password are used in patron creation from Bug 15193 - Perl scripts missing exec permission Fr?d?ric Demians (4): Bug 14978: DBRev 3.20.06.001 Revert "Bug 11190: sitemap.pl -- Generate a Catalog sitemap" Revert "Bug 11190: sitemap.pl -- Generate a Catalog sitemap" Version 3.20.7 Galen Charlton (1): new Debian package maintainer Hector Castro (1): Bug 15290: (follow-up)SQL reports headers encoding problem Jonathan Druart (7): Bug 14978: Add unique key constraint on issues.itemnumber Bug 5371: Force no caching for private pages at the OPAC Bug 5371: (follow-up) Force no caching for private pages at the OPAC Bug 15270: Make Koha::Objects->find return undef instead of crashing Bug 15270: Add regression tests for Koha::Objects->find Bug 15256: Fix items table display on the detail page Bug 12152: Holds to pull report - Display location descriptions Katrin Fischer (7): Bug 15250: Fix Perl error on acqisition stats page Bug 12152: Holds to pull report - Show branch names and item type descriptions Bug 14349: Checkouts and Fines tab missing category description on the left Bug 9184: Acq - Don't show authority batches when ordering from staged file Bug 15216: Returns - Show branch names and item type description Bug 15216: Returns - Show collection description Bug 15202: Fix date display when transferring an order Kyle M Hall (3): Bug 13024 - Nonpublic note not appearing in the staff client Bug 13024 [QA Followup] - Add nonpublic note to relatives' checkouts Bug 13838 - Redirect to 'expired holds' tab after cancelling a hold Marc V?ron (1): Bug 15244: t/db_dependent/Reserves.t depends on external data/configuration Nicholas van Oudtshoorn (1): BUG 11602: [ENH] Fix localcover display Tomas Cohen Arazi (2): Bug 14978: (RM followup) DBIx update Bug 15290: SQL reports headers encoding problem ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 25 00:26:48 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 24 Dec 2015 23:26:48 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.22.01 created. v3.22.01 Message-ID: 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 annotated tag, v3.22.01 has been created at bae80195445206a84bfe093ea5511f47f2bca300 (tag) tagging cbf245a9624ba3dd7c89d84e0dee64f269e0d49b (commit) replaces v3.22.00 tagged by Julian Maurice on Fri Dec 25 00:24:22 2015 +0100 - Log ----------------------------------------------------------------- Koha release 3.22.01 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJWfH6mAAoJELCH1RJUPDmpyTgP/idSKNtQA0xtuD6h3eeNym3L 9Rhlyxz4U+FOHV985UWcxI9/rvRhjPWOpRTdUvf1jxMUVlXZHLri5AaQMCJXTNe5 Bh7wzWC+UwZDaVmfQ2n7dS9DG7qpwuTVOyGiBw5/M2NfSZQiHKDZZ+MJRdPUEcvl k8LszkKpUBDG2KzB/GFBbfFfVpDn/dl37cCcJaKKAwQqmWuc+apSacR3AavfE7Rg VCQ2ab6A8snpkClaY9dhxa/MVHhUniFXGGBarIJbkJI/e214rGDRfmHEupH1GYHp DqcCMWQAc5Cp1XFJG8l+RClQegIH1IA4qJSJfjSfXmjAGFtkhs7JsZRFUnjjn9g7 tJ6HVvqrbbMTH2XPe3ooLYW7ShWP0koNHtH2troLenq92FS1/0gfmLqtOl6Suiqi egPUgaLNTXUSs2o3KVZbAWtRlbQRylfxianmsnBfh1UaVihU7Xeu/aQ5bNr+EC3q mFfKsjHjHiKfXk8KEZX+bqOqWiJ8I6Go/fxvn3E3zIdV2yGhELvfDE+bPcdYvWhB ZUmGOgSV0ZGCM9EmBauH40K1KQyvlZer09F3FqoRnMJ5ZkBJLxlg+FpASZa3Nqts x2D1kfz1mSlI9HOgiHgFJYhc3WzjlTQnlU5BL8edAmaaEYXJ4ZPydkF/kNqTRjYr l1TsZGeZxN0p3OPITChv =Tvde -----END PGP SIGNATURE----- Bernardo Gonzalez Kriegel (3): Bug 11038: Enable use of IntranetUserCSS on staff client login page Bug 14971: fix RIS export Translation updates for Koha 3.22.1 release Blou (1): Bug 14846 - Items with no holdingbranch causes svc/holds to crash Fridolin Somers (2): Bug 14599 - Saved auth login and password are used in patron creation from Bug 15193 - Perl scripts missing exec permission Galen Charlton (1): new Debian package maintainer Hector Castro (1): Bug 15290: (follow-up)SQL reports headers encoding problem Jonathan Druart (2): Bug 15256: Fix items table display on the detail page Bug 12152: Holds to pull report - Display location descriptions Julian Maurice (3): Bug 15325: Fix --table option of rebuild_zebra.pl Update release notes for 3.22.1 release Increment version for 3.22.1 release Katrin Fischer (7): Bug 15250: Fix Perl error on acqisition stats page Bug 12152: Holds to pull report - Show branch names and item type descriptions Bug 14349: Checkouts and Fines tab missing category description on the left Bug 9184: Acq - Don't show authority batches when ordering from staged file Bug 15216: Returns - Show branch names and item type description Bug 15216: Returns - Show collection description Bug 15202: Fix date display when transferring an order Kyle M Hall (3): Bug 13024 - Nonpublic note not appearing in the staff client Bug 13024 [QA Followup] - Add nonpublic note to relatives' checkouts Bug 13838 - Redirect to 'expired holds' tab after cancelling a hold Liz Rea (1): Bug 15223 - fix buttons on patron lists Marc V?ron (2): Bug 15244: t/db_dependent/Reserves.t depends on external data/configuration Bug 15230: Remove unused file circ/stats.pl and stats.tt from system Nicholas van Oudtshoorn (1): BUG 11602: [ENH] Fix localcover display Tomas Cohen Arazi (1): Bug 15290: SQL reports headers encoding problem ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Dec 25 00:26:28 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 24 Dec 2015 23:26:28 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01 Message-ID: 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.22.x has been updated via cbf245a9624ba3dd7c89d84e0dee64f269e0d49b (commit) via 9f039cc7ad5de9561e1937e8b32b0533f70c6092 (commit) via 8dfe6fd2ee7fec611e87e252a5849c3ef3b10e75 (commit) from 34d60046f9c3e4562d23067a23694ac6ca5e32d0 (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 cbf245a9624ba3dd7c89d84e0dee64f269e0d49b Author: Julian Maurice Date: Fri Dec 25 00:10:09 2015 +0100 Increment version for 3.22.1 release Signed-off-by: Julian Maurice commit 9f039cc7ad5de9561e1937e8b32b0533f70c6092 Author: Bernardo Gonzalez Kriegel Date: Thu Dec 24 10:50:19 2015 -0300 Translation updates for Koha 3.22.1 release Signed-off-by: Julian Maurice commit 8dfe6fd2ee7fec611e87e252a5849c3ef3b10e75 Author: Julian Maurice Date: Fri Dec 25 00:01:05 2015 +0100 Update release notes for 3.22.1 release Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 6 + misc/release_notes/release_notes_3_22_1.txt | 305 + misc/translator/po/am-Ethi-marc-MARC21.po | 2 +- misc/translator/po/am-Ethi-marc-NORMARC.po | 2 +- misc/translator/po/am-Ethi-marc-UNIMARC.po | 2 +- misc/translator/po/am-Ethi-opac-bootstrap.po | 2 +- misc/translator/po/am-Ethi-pref.po | 2 +- misc/translator/po/am-Ethi-staff-help.po | 2 +- misc/translator/po/am-Ethi-staff-prog.po | 718 +- misc/translator/po/ar-Arab-marc-MARC21.po | 24 +- misc/translator/po/ar-Arab-marc-NORMARC.po | 14 +- misc/translator/po/ar-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ar-Arab-opac-bootstrap.po | 79 +- misc/translator/po/ar-Arab-pref.po | 18 +- misc/translator/po/ar-Arab-staff-help.po | 22 +- misc/translator/po/ar-Arab-staff-prog.po | 1520 ++-- misc/translator/po/az-AZ-marc-MARC21.po | 2 +- misc/translator/po/az-AZ-marc-NORMARC.po | 2 +- misc/translator/po/az-AZ-marc-UNIMARC.po | 2 +- misc/translator/po/az-AZ-opac-bootstrap.po | 2 +- misc/translator/po/az-AZ-pref.po | 2 +- misc/translator/po/az-AZ-staff-help.po | 2 +- misc/translator/po/az-AZ-staff-prog.po | 718 +- misc/translator/po/be-BY-marc-MARC21.po | 2 +- misc/translator/po/be-BY-marc-NORMARC.po | 2 +- misc/translator/po/be-BY-marc-UNIMARC.po | 2 +- misc/translator/po/be-BY-opac-bootstrap.po | 2 +- misc/translator/po/be-BY-pref.po | 2 +- misc/translator/po/be-BY-staff-help.po | 2 +- misc/translator/po/be-BY-staff-prog.po | 718 +- misc/translator/po/bg-Cyrl-marc-MARC21.po | 2 +- misc/translator/po/bg-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/bg-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/bg-Cyrl-opac-bootstrap.po | 2 +- misc/translator/po/bg-Cyrl-pref.po | 2 +- misc/translator/po/bg-Cyrl-staff-help.po | 2 +- misc/translator/po/bg-Cyrl-staff-prog.po | 718 +- misc/translator/po/bn-IN-marc-MARC21.po | 2 +- misc/translator/po/bn-IN-marc-NORMARC.po | 2 +- misc/translator/po/bn-IN-marc-UNIMARC.po | 2 +- misc/translator/po/bn-IN-opac-bootstrap.po | 2 +- misc/translator/po/bn-IN-pref.po | 2 +- misc/translator/po/bn-IN-staff-help.po | 2 +- misc/translator/po/bn-IN-staff-prog.po | 718 +- misc/translator/po/ca-ES-marc-MARC21.po | 2 +- misc/translator/po/ca-ES-marc-NORMARC.po | 2 +- misc/translator/po/ca-ES-marc-UNIMARC.po | 2 +- misc/translator/po/ca-ES-opac-bootstrap.po | 2 +- misc/translator/po/ca-ES-pref.po | 2 +- misc/translator/po/ca-ES-staff-help.po | 2 +- misc/translator/po/ca-ES-staff-prog.po | 718 +- misc/translator/po/cs-CZ-marc-MARC21.po | 2 +- misc/translator/po/cs-CZ-marc-NORMARC.po | 2 +- misc/translator/po/cs-CZ-marc-UNIMARC.po | 2 +- misc/translator/po/cs-CZ-opac-bootstrap.po | 6 +- misc/translator/po/cs-CZ-pref.po | 13 +- misc/translator/po/cs-CZ-staff-help.po | 6 +- misc/translator/po/cs-CZ-staff-prog.po | 767 +- misc/translator/po/da-DK-marc-MARC21.po | 270 +- misc/translator/po/da-DK-marc-NORMARC.po | 8 +- misc/translator/po/da-DK-marc-UNIMARC.po | 10 +- misc/translator/po/da-DK-opac-bootstrap.po | 79 +- misc/translator/po/da-DK-pref.po | 41 +- misc/translator/po/da-DK-staff-help.po | 9 +- misc/translator/po/da-DK-staff-prog.po | 1034 ++- misc/translator/po/de-CH-marc-MARC21.po | 33 +- misc/translator/po/de-CH-marc-NORMARC.po | 2 +- misc/translator/po/de-CH-marc-UNIMARC.po | 24 +- misc/translator/po/de-CH-opac-bootstrap.po | 2502 +++--- misc/translator/po/de-CH-pref.po | 3648 ++------ misc/translator/po/de-CH-staff-help.po | 30 +- misc/translator/po/de-CH-staff-prog.po | 9732 ++++++++++---------- misc/translator/po/de-DE-marc-MARC21.po | 2 +- misc/translator/po/de-DE-marc-NORMARC.po | 2 +- misc/translator/po/de-DE-marc-UNIMARC.po | 2 +- misc/translator/po/de-DE-opac-bootstrap.po | 29 +- misc/translator/po/de-DE-pref.po | 119 +- misc/translator/po/de-DE-staff-help.po | 2 +- misc/translator/po/de-DE-staff-prog.po | 808 +- misc/translator/po/el-GR-marc-MARC21.po | 2 +- misc/translator/po/el-GR-marc-NORMARC.po | 2 +- misc/translator/po/el-GR-marc-UNIMARC.po | 2 +- misc/translator/po/el-GR-opac-bootstrap.po | 133 +- misc/translator/po/el-GR-pref.po | 2 +- misc/translator/po/el-GR-staff-help.po | 2 +- misc/translator/po/el-GR-staff-prog.po | 720 +- misc/translator/po/en-GB-marc-MARC21.po | 2 +- misc/translator/po/en-GB-marc-NORMARC.po | 2 +- misc/translator/po/en-GB-marc-UNIMARC.po | 2 +- misc/translator/po/en-GB-opac-bootstrap.po | 2 +- misc/translator/po/en-GB-pref.po | 2 +- misc/translator/po/en-GB-staff-help.po | 2 +- misc/translator/po/en-GB-staff-prog.po | 718 +- misc/translator/po/en-NZ-marc-MARC21.po | 2 +- misc/translator/po/en-NZ-marc-NORMARC.po | 2 +- misc/translator/po/en-NZ-marc-UNIMARC.po | 2 +- misc/translator/po/en-NZ-opac-bootstrap.po | 2 +- misc/translator/po/en-NZ-pref.po | 4 +- misc/translator/po/en-NZ-staff-help.po | 2 +- misc/translator/po/en-NZ-staff-prog.po | 720 +- misc/translator/po/eo-marc-MARC21.po | 2 +- misc/translator/po/eo-marc-NORMARC.po | 2 +- misc/translator/po/eo-marc-UNIMARC.po | 2 +- misc/translator/po/eo-opac-bootstrap.po | 2 +- misc/translator/po/eo-pref.po | 2 +- misc/translator/po/eo-staff-help.po | 2 +- misc/translator/po/eo-staff-prog.po | 718 +- misc/translator/po/es-ES-marc-MARC21.po | 2 +- misc/translator/po/es-ES-marc-NORMARC.po | 2 +- misc/translator/po/es-ES-marc-UNIMARC.po | 2 +- misc/translator/po/es-ES-opac-bootstrap.po | 9 +- misc/translator/po/es-ES-pref.po | 14 +- misc/translator/po/es-ES-staff-help.po | 14 +- misc/translator/po/es-ES-staff-prog.po | 761 +- misc/translator/po/eu-marc-MARC21.po | 2 +- misc/translator/po/eu-marc-NORMARC.po | 2 +- misc/translator/po/eu-marc-UNIMARC.po | 2 +- misc/translator/po/eu-opac-bootstrap.po | 2 +- misc/translator/po/eu-pref.po | 2 +- misc/translator/po/eu-staff-help.po | 2 +- misc/translator/po/eu-staff-prog.po | 718 +- misc/translator/po/fa-Arab-marc-MARC21.po | 2 +- misc/translator/po/fa-Arab-marc-NORMARC.po | 2 +- misc/translator/po/fa-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/fa-Arab-opac-bootstrap.po | 2 +- misc/translator/po/fa-Arab-pref.po | 4 +- misc/translator/po/fa-Arab-staff-help.po | 2 +- misc/translator/po/fa-Arab-staff-prog.po | 718 +- misc/translator/po/fi-FI-marc-MARC21.po | 96 +- misc/translator/po/fi-FI-marc-NORMARC.po | 2 +- misc/translator/po/fi-FI-marc-UNIMARC.po | 2 +- misc/translator/po/fi-FI-opac-bootstrap.po | 2 +- misc/translator/po/fi-FI-pref.po | 4 +- misc/translator/po/fi-FI-staff-help.po | 2 +- misc/translator/po/fi-FI-staff-prog.po | 734 +- misc/translator/po/fo-FO-marc-MARC21.po | 2 +- misc/translator/po/fo-FO-marc-NORMARC.po | 2 +- misc/translator/po/fo-FO-marc-UNIMARC.po | 2 +- misc/translator/po/fo-FO-opac-bootstrap.po | 2 +- misc/translator/po/fo-FO-pref.po | 2 +- misc/translator/po/fo-FO-staff-help.po | 2 +- misc/translator/po/fo-FO-staff-prog.po | 718 +- misc/translator/po/fr-CA-marc-MARC21.po | 2 +- misc/translator/po/fr-CA-marc-NORMARC.po | 2 +- misc/translator/po/fr-CA-marc-UNIMARC.po | 2 +- misc/translator/po/fr-CA-opac-bootstrap.po | 2 +- misc/translator/po/fr-CA-pref.po | 4 +- misc/translator/po/fr-CA-staff-help.po | 2 +- misc/translator/po/fr-CA-staff-prog.po | 720 +- misc/translator/po/fr-FR-marc-MARC21.po | 2 +- misc/translator/po/fr-FR-marc-NORMARC.po | 2 +- misc/translator/po/fr-FR-marc-UNIMARC.po | 2 +- misc/translator/po/fr-FR-opac-bootstrap.po | 2 +- misc/translator/po/fr-FR-pref.po | 4 +- misc/translator/po/fr-FR-staff-help.po | 2 +- misc/translator/po/fr-FR-staff-prog.po | 744 +- misc/translator/po/gl-marc-MARC21.po | 2 +- misc/translator/po/gl-marc-NORMARC.po | 2 +- misc/translator/po/gl-marc-UNIMARC.po | 2 +- misc/translator/po/gl-opac-bootstrap.po | 2 +- misc/translator/po/gl-pref.po | 2 +- misc/translator/po/gl-staff-help.po | 2 +- misc/translator/po/gl-staff-prog.po | 718 +- misc/translator/po/he-Hebr-marc-MARC21.po | 2 +- misc/translator/po/he-Hebr-marc-NORMARC.po | 2 +- misc/translator/po/he-Hebr-marc-UNIMARC.po | 2 +- misc/translator/po/he-Hebr-opac-bootstrap.po | 2 +- misc/translator/po/he-Hebr-pref.po | 2 +- misc/translator/po/he-Hebr-staff-help.po | 2 +- misc/translator/po/he-Hebr-staff-prog.po | 718 +- misc/translator/po/hi-marc-MARC21.po | 2 +- misc/translator/po/hi-marc-NORMARC.po | 2 +- misc/translator/po/hi-marc-UNIMARC.po | 2 +- misc/translator/po/hi-opac-bootstrap.po | 2 +- misc/translator/po/hi-pref.po | 2 +- misc/translator/po/hi-staff-help.po | 2 +- misc/translator/po/hi-staff-prog.po | 718 +- misc/translator/po/hr-HR-marc-MARC21.po | 2 +- misc/translator/po/hr-HR-marc-NORMARC.po | 2 +- misc/translator/po/hr-HR-marc-UNIMARC.po | 2 +- misc/translator/po/hr-HR-opac-bootstrap.po | 2 +- misc/translator/po/hr-HR-pref.po | 2 +- misc/translator/po/hr-HR-staff-help.po | 2 +- misc/translator/po/hr-HR-staff-prog.po | 718 +- misc/translator/po/hu-HU-marc-MARC21.po | 2 +- misc/translator/po/hu-HU-marc-NORMARC.po | 2 +- misc/translator/po/hu-HU-marc-UNIMARC.po | 2 +- misc/translator/po/hu-HU-opac-bootstrap.po | 2 +- misc/translator/po/hu-HU-pref.po | 2 +- misc/translator/po/hu-HU-staff-help.po | 2 +- misc/translator/po/hu-HU-staff-prog.po | 718 +- misc/translator/po/hy-Armn-marc-MARC21.po | 2 +- misc/translator/po/hy-Armn-marc-NORMARC.po | 2 +- misc/translator/po/hy-Armn-marc-UNIMARC.po | 2 +- misc/translator/po/hy-Armn-opac-bootstrap.po | 6 +- misc/translator/po/hy-Armn-pref.po | 43 +- misc/translator/po/hy-Armn-staff-help.po | 8 +- misc/translator/po/hy-Armn-staff-prog.po | 1308 ++- misc/translator/po/id-ID-marc-MARC21.po | 2 +- misc/translator/po/id-ID-marc-NORMARC.po | 2 +- misc/translator/po/id-ID-marc-UNIMARC.po | 2 +- misc/translator/po/id-ID-opac-bootstrap.po | 2 +- misc/translator/po/id-ID-pref.po | 2 +- misc/translator/po/id-ID-staff-help.po | 2 +- misc/translator/po/id-ID-staff-prog.po | 720 +- misc/translator/po/is-IS-marc-MARC21.po | 2 +- misc/translator/po/is-IS-marc-NORMARC.po | 2 +- misc/translator/po/is-IS-marc-UNIMARC.po | 2 +- misc/translator/po/is-IS-opac-bootstrap.po | 2 +- misc/translator/po/is-IS-pref.po | 2 +- misc/translator/po/is-IS-staff-help.po | 2 +- misc/translator/po/is-IS-staff-prog.po | 718 +- misc/translator/po/it-IT-marc-MARC21.po | 2 +- misc/translator/po/it-IT-marc-NORMARC.po | 2 +- misc/translator/po/it-IT-marc-UNIMARC.po | 2 +- misc/translator/po/it-IT-opac-bootstrap.po | 2413 +++-- misc/translator/po/it-IT-pref.po | 13 +- misc/translator/po/it-IT-staff-help.po | 40 +- misc/translator/po/it-IT-staff-prog.po |10818 +++++++++++------------ misc/translator/po/ja-Jpan-JP-marc-MARC21.po | 2 +- misc/translator/po/ja-Jpan-JP-marc-NORMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-marc-UNIMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-opac-bootstrap.po | 2 +- misc/translator/po/ja-Jpan-JP-pref.po | 2 +- misc/translator/po/ja-Jpan-JP-staff-help.po | 2 +- misc/translator/po/ja-Jpan-JP-staff-prog.po | 718 +- misc/translator/po/ka-marc-MARC21.po | 2 +- misc/translator/po/ka-marc-NORMARC.po | 2 +- misc/translator/po/ka-marc-UNIMARC.po | 2 +- misc/translator/po/ka-opac-bootstrap.po | 2 +- misc/translator/po/ka-pref.po | 2 +- misc/translator/po/ka-staff-help.po | 2 +- misc/translator/po/ka-staff-prog.po | 718 +- misc/translator/po/km-KH-marc-MARC21.po | 2 +- misc/translator/po/km-KH-marc-NORMARC.po | 2 +- misc/translator/po/km-KH-marc-UNIMARC.po | 2 +- misc/translator/po/km-KH-opac-bootstrap.po | 2 +- misc/translator/po/km-KH-pref.po | 2 +- misc/translator/po/km-KH-staff-help.po | 2 +- misc/translator/po/km-KH-staff-prog.po | 718 +- misc/translator/po/kn-Knda-marc-MARC21.po | 2 +- misc/translator/po/kn-Knda-marc-NORMARC.po | 2 +- misc/translator/po/kn-Knda-marc-UNIMARC.po | 2 +- misc/translator/po/kn-Knda-opac-bootstrap.po | 2 +- misc/translator/po/kn-Knda-pref.po | 2 +- misc/translator/po/kn-Knda-staff-help.po | 2 +- misc/translator/po/kn-Knda-staff-prog.po | 718 +- misc/translator/po/ko-Kore-KP-marc-MARC21.po | 2 +- misc/translator/po/ko-Kore-KP-marc-NORMARC.po | 2 +- misc/translator/po/ko-Kore-KP-marc-UNIMARC.po | 2 +- misc/translator/po/ko-Kore-KP-opac-bootstrap.po | 2 +- misc/translator/po/ko-Kore-KP-pref.po | 2 +- misc/translator/po/ko-Kore-KP-staff-help.po | 2 +- misc/translator/po/ko-Kore-KP-staff-prog.po | 720 +- misc/translator/po/ku-Arab-marc-MARC21.po | 2 +- misc/translator/po/ku-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ku-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ku-Arab-opac-bootstrap.po | 2 +- misc/translator/po/ku-Arab-pref.po | 2 +- misc/translator/po/ku-Arab-staff-help.po | 2 +- misc/translator/po/ku-Arab-staff-prog.po | 718 +- misc/translator/po/lo-Laoo-marc-MARC21.po | 2 +- misc/translator/po/lo-Laoo-marc-NORMARC.po | 2 +- misc/translator/po/lo-Laoo-marc-UNIMARC.po | 2 +- misc/translator/po/lo-Laoo-opac-bootstrap.po | 2 +- misc/translator/po/lo-Laoo-pref.po | 2 +- misc/translator/po/lo-Laoo-staff-help.po | 2 +- misc/translator/po/lo-Laoo-staff-prog.po | 718 +- misc/translator/po/mi-NZ-marc-MARC21.po | 2 +- misc/translator/po/mi-NZ-marc-NORMARC.po | 2 +- misc/translator/po/mi-NZ-marc-UNIMARC.po | 2 +- misc/translator/po/mi-NZ-opac-bootstrap.po | 2 +- misc/translator/po/mi-NZ-pref.po | 2 +- misc/translator/po/mi-NZ-staff-help.po | 2 +- misc/translator/po/mi-NZ-staff-prog.po | 718 +- misc/translator/po/ml-marc-MARC21.po | 2 +- misc/translator/po/ml-marc-NORMARC.po | 2 +- misc/translator/po/ml-marc-UNIMARC.po | 2 +- misc/translator/po/ml-opac-bootstrap.po | 2 +- misc/translator/po/ml-pref.po | 2 +- misc/translator/po/ml-staff-help.po | 2 +- misc/translator/po/ml-staff-prog.po | 718 +- misc/translator/po/mon-marc-MARC21.po | 2 +- misc/translator/po/mon-marc-NORMARC.po | 2 +- misc/translator/po/mon-marc-UNIMARC.po | 2 +- misc/translator/po/mon-opac-bootstrap.po | 2 +- misc/translator/po/mon-pref.po | 2 +- misc/translator/po/mon-staff-help.po | 2 +- misc/translator/po/mon-staff-prog.po | 718 +- misc/translator/po/mr-marc-MARC21.po | 2 +- misc/translator/po/mr-marc-NORMARC.po | 2 +- misc/translator/po/mr-marc-UNIMARC.po | 2 +- misc/translator/po/mr-opac-bootstrap.po | 2 +- misc/translator/po/mr-pref.po | 2 +- misc/translator/po/mr-staff-help.po | 2 +- misc/translator/po/mr-staff-prog.po | 718 +- misc/translator/po/ms-MY-marc-MARC21.po | 62 +- misc/translator/po/ms-MY-marc-NORMARC.po | 2 +- misc/translator/po/ms-MY-marc-UNIMARC.po | 2 +- misc/translator/po/ms-MY-opac-bootstrap.po | 2 +- misc/translator/po/ms-MY-pref.po | 2 +- misc/translator/po/ms-MY-staff-help.po | 9 +- misc/translator/po/ms-MY-staff-prog.po | 722 +- misc/translator/po/nb-NO-marc-MARC21.po | 2 +- misc/translator/po/nb-NO-marc-NORMARC.po | 2 +- misc/translator/po/nb-NO-marc-UNIMARC.po | 2 +- misc/translator/po/nb-NO-opac-bootstrap.po | 2403 +++-- misc/translator/po/nb-NO-pref.po | 8 +- misc/translator/po/nb-NO-staff-help.po | 10 +- misc/translator/po/nb-NO-staff-prog.po | 3692 ++++---- misc/translator/po/ne-NE-marc-MARC21.po | 2 +- misc/translator/po/ne-NE-marc-NORMARC.po | 2 +- misc/translator/po/ne-NE-marc-UNIMARC.po | 2 +- misc/translator/po/ne-NE-opac-bootstrap.po | 2 +- misc/translator/po/ne-NE-pref.po | 2 +- misc/translator/po/ne-NE-staff-help.po | 2 +- misc/translator/po/ne-NE-staff-prog.po | 718 +- misc/translator/po/nl-BE-marc-MARC21.po | 2 +- misc/translator/po/nl-BE-marc-NORMARC.po | 2 +- misc/translator/po/nl-BE-marc-UNIMARC.po | 2 +- misc/translator/po/nl-BE-opac-bootstrap.po | 2 +- misc/translator/po/nl-BE-pref.po | 2 +- misc/translator/po/nl-BE-staff-help.po | 2 +- misc/translator/po/nl-BE-staff-prog.po | 718 +- misc/translator/po/nl-NL-marc-MARC21.po | 2 +- misc/translator/po/nl-NL-marc-NORMARC.po | 2 +- misc/translator/po/nl-NL-marc-UNIMARC.po | 2 +- misc/translator/po/nl-NL-opac-bootstrap.po | 2 +- misc/translator/po/nl-NL-pref.po | 2 +- misc/translator/po/nl-NL-staff-help.po | 2 +- misc/translator/po/nl-NL-staff-prog.po | 718 +- misc/translator/po/nn-NO-marc-MARC21.po | 2 +- misc/translator/po/nn-NO-marc-NORMARC.po | 2 +- misc/translator/po/nn-NO-marc-UNIMARC.po | 2 +- misc/translator/po/nn-NO-opac-bootstrap.po | 2 +- misc/translator/po/nn-NO-pref.po | 2 +- misc/translator/po/nn-NO-staff-help.po | 2 +- misc/translator/po/nn-NO-staff-prog.po | 718 +- misc/translator/po/oc-marc-MARC21.po | 2 +- misc/translator/po/oc-marc-NORMARC.po | 2 +- misc/translator/po/oc-marc-UNIMARC.po | 2 +- misc/translator/po/oc-opac-bootstrap.po | 2 +- misc/translator/po/oc-pref.po | 2 +- misc/translator/po/oc-staff-help.po | 2 +- misc/translator/po/oc-staff-prog.po | 718 +- misc/translator/po/pbr-marc-MARC21.po | 2 +- misc/translator/po/pbr-marc-NORMARC.po | 2 +- misc/translator/po/pbr-marc-UNIMARC.po | 2 +- misc/translator/po/pbr-opac-bootstrap.po | 2 +- misc/translator/po/pbr-pref.po | 2 +- misc/translator/po/pbr-staff-help.po | 2 +- misc/translator/po/pbr-staff-prog.po | 718 +- misc/translator/po/pl-PL-marc-MARC21.po | 22 +- misc/translator/po/pl-PL-marc-NORMARC.po | 22 +- misc/translator/po/pl-PL-marc-UNIMARC.po | 2 +- misc/translator/po/pl-PL-opac-bootstrap.po | 39 +- misc/translator/po/pl-PL-pref.po | 4 +- misc/translator/po/pl-PL-staff-help.po | 2 +- misc/translator/po/pl-PL-staff-prog.po | 720 +- misc/translator/po/prs-marc-MARC21.po | 2 +- misc/translator/po/prs-marc-NORMARC.po | 2 +- misc/translator/po/prs-marc-UNIMARC.po | 2 +- misc/translator/po/prs-opac-bootstrap.po | 2 +- misc/translator/po/prs-pref.po | 2 +- misc/translator/po/prs-staff-help.po | 2 +- misc/translator/po/prs-staff-prog.po | 718 +- misc/translator/po/pt-BR-marc-MARC21.po | 2 +- misc/translator/po/pt-BR-marc-NORMARC.po | 2 +- misc/translator/po/pt-BR-marc-UNIMARC.po | 2 +- misc/translator/po/pt-BR-opac-bootstrap.po | 20 +- misc/translator/po/pt-BR-pref.po | 294 +- misc/translator/po/pt-BR-staff-help.po | 845 +- misc/translator/po/pt-BR-staff-prog.po | 769 +- misc/translator/po/pt-PT-marc-MARC21.po | 2 +- misc/translator/po/pt-PT-marc-NORMARC.po | 2 +- misc/translator/po/pt-PT-marc-UNIMARC.po | 2 +- misc/translator/po/pt-PT-opac-bootstrap.po | 12 +- misc/translator/po/pt-PT-pref.po | 117 +- misc/translator/po/pt-PT-staff-help.po | 14 +- misc/translator/po/pt-PT-staff-prog.po | 773 +- misc/translator/po/ro-RO-marc-MARC21.po | 2 +- misc/translator/po/ro-RO-marc-NORMARC.po | 2 +- misc/translator/po/ro-RO-marc-UNIMARC.po | 2 +- misc/translator/po/ro-RO-opac-bootstrap.po | 2 +- misc/translator/po/ro-RO-pref.po | 2 +- misc/translator/po/ro-RO-staff-help.po | 2 +- misc/translator/po/ro-RO-staff-prog.po | 718 +- misc/translator/po/ru-RU-marc-MARC21.po | 2 +- misc/translator/po/ru-RU-marc-NORMARC.po | 2 +- misc/translator/po/ru-RU-marc-UNIMARC.po | 2 +- misc/translator/po/ru-RU-opac-bootstrap.po | 2 +- misc/translator/po/ru-RU-pref.po | 2 +- misc/translator/po/ru-RU-staff-help.po | 2 +- misc/translator/po/ru-RU-staff-prog.po | 718 +- misc/translator/po/rw-RW-marc-MARC21.po | 2 +- misc/translator/po/rw-RW-marc-NORMARC.po | 2 +- misc/translator/po/rw-RW-marc-UNIMARC.po | 2 +- misc/translator/po/rw-RW-opac-bootstrap.po | 2 +- misc/translator/po/rw-RW-pref.po | 2 +- misc/translator/po/rw-RW-staff-help.po | 2 +- misc/translator/po/rw-RW-staff-prog.po | 718 +- misc/translator/po/sd-PK-marc-MARC21.po | 2 +- misc/translator/po/sd-PK-marc-NORMARC.po | 2 +- misc/translator/po/sd-PK-marc-UNIMARC.po | 2 +- misc/translator/po/sd-PK-opac-bootstrap.po | 2 +- misc/translator/po/sd-PK-pref.po | 2 +- misc/translator/po/sd-PK-staff-help.po | 2 +- misc/translator/po/sd-PK-staff-prog.po | 718 +- misc/translator/po/sk-SK-marc-MARC21.po | 6 +- misc/translator/po/sk-SK-marc-NORMARC.po | 2 +- misc/translator/po/sk-SK-marc-UNIMARC.po | 2 +- misc/translator/po/sk-SK-opac-bootstrap.po | 14 +- misc/translator/po/sk-SK-pref.po | 66 +- misc/translator/po/sk-SK-staff-help.po | 2 +- misc/translator/po/sk-SK-staff-prog.po | 769 +- misc/translator/po/sl-SI-marc-MARC21.po | 2 +- misc/translator/po/sl-SI-marc-NORMARC.po | 2 +- misc/translator/po/sl-SI-marc-UNIMARC.po | 2 +- misc/translator/po/sl-SI-opac-bootstrap.po | 2 +- misc/translator/po/sl-SI-pref.po | 2 +- misc/translator/po/sl-SI-staff-help.po | 2 +- misc/translator/po/sl-SI-staff-prog.po | 718 +- misc/translator/po/sq-AL-marc-MARC21.po | 2 +- misc/translator/po/sq-AL-marc-NORMARC.po | 2 +- misc/translator/po/sq-AL-marc-UNIMARC.po | 2 +- misc/translator/po/sq-AL-opac-bootstrap.po | 2 +- misc/translator/po/sq-AL-pref.po | 2 +- misc/translator/po/sq-AL-staff-help.po | 2 +- misc/translator/po/sq-AL-staff-prog.po | 720 +- misc/translator/po/sr-Cyrl-marc-MARC21.po | 2 +- misc/translator/po/sr-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/sr-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/sr-Cyrl-opac-bootstrap.po | 2 +- misc/translator/po/sr-Cyrl-pref.po | 2 +- misc/translator/po/sr-Cyrl-staff-help.po | 2 +- misc/translator/po/sr-Cyrl-staff-prog.po | 718 +- misc/translator/po/sv-SE-marc-MARC21.po | 2 +- misc/translator/po/sv-SE-marc-NORMARC.po | 10 +- misc/translator/po/sv-SE-marc-UNIMARC.po | 2 +- misc/translator/po/sv-SE-opac-bootstrap.po | 2 +- misc/translator/po/sv-SE-pref.po | 4 +- misc/translator/po/sv-SE-staff-help.po | 2 +- misc/translator/po/sv-SE-staff-prog.po | 720 +- misc/translator/po/sw-KE-marc-MARC21.po | 2 +- misc/translator/po/sw-KE-marc-NORMARC.po | 2 +- misc/translator/po/sw-KE-marc-UNIMARC.po | 2 +- misc/translator/po/sw-KE-opac-bootstrap.po | 2 +- misc/translator/po/sw-KE-pref.po | 2 +- misc/translator/po/sw-KE-staff-help.po | 2 +- misc/translator/po/sw-KE-staff-prog.po | 718 +- misc/translator/po/ta-LK-marc-MARC21.po | 2 +- misc/translator/po/ta-LK-marc-NORMARC.po | 2 +- misc/translator/po/ta-LK-marc-UNIMARC.po | 2 +- misc/translator/po/ta-LK-opac-bootstrap.po | 2 +- misc/translator/po/ta-LK-pref.po | 2 +- misc/translator/po/ta-LK-staff-help.po | 2 +- misc/translator/po/ta-LK-staff-prog.po | 718 +- misc/translator/po/ta-marc-MARC21.po | 2 +- misc/translator/po/ta-marc-NORMARC.po | 2 +- misc/translator/po/ta-marc-UNIMARC.po | 2 +- misc/translator/po/ta-opac-bootstrap.po | 2 +- misc/translator/po/ta-pref.po | 2 +- misc/translator/po/ta-staff-help.po | 2 +- misc/translator/po/ta-staff-prog.po | 718 +- misc/translator/po/tet-marc-MARC21.po | 2 +- misc/translator/po/tet-marc-NORMARC.po | 2 +- misc/translator/po/tet-marc-UNIMARC.po | 2 +- misc/translator/po/tet-opac-bootstrap.po | 2 +- misc/translator/po/tet-pref.po | 2 +- misc/translator/po/tet-staff-help.po | 2 +- misc/translator/po/tet-staff-prog.po | 720 +- misc/translator/po/th-TH-marc-MARC21.po | 2 +- misc/translator/po/th-TH-marc-NORMARC.po | 2 +- misc/translator/po/th-TH-marc-UNIMARC.po | 2 +- misc/translator/po/th-TH-opac-bootstrap.po | 2 +- misc/translator/po/th-TH-pref.po | 2 +- misc/translator/po/th-TH-staff-help.po | 2 +- misc/translator/po/th-TH-staff-prog.po | 718 +- misc/translator/po/tl-PH-marc-MARC21.po | 2 +- misc/translator/po/tl-PH-marc-NORMARC.po | 2 +- misc/translator/po/tl-PH-marc-UNIMARC.po | 2 +- misc/translator/po/tl-PH-opac-bootstrap.po | 2 +- misc/translator/po/tl-PH-pref.po | 2 +- misc/translator/po/tl-PH-staff-help.po | 2 +- misc/translator/po/tl-PH-staff-prog.po | 722 +- misc/translator/po/tr-TR-marc-MARC21.po | 38 +- misc/translator/po/tr-TR-marc-NORMARC.po | 2 +- misc/translator/po/tr-TR-marc-UNIMARC.po | 2 +- misc/translator/po/tr-TR-opac-bootstrap.po | 17 +- misc/translator/po/tr-TR-pref.po | 95 +- misc/translator/po/tr-TR-staff-help.po | 30 +- misc/translator/po/tr-TR-staff-prog.po | 1601 ++-- misc/translator/po/uk-UA-marc-MARC21.po | 2 +- misc/translator/po/uk-UA-marc-NORMARC.po | 2 +- misc/translator/po/uk-UA-marc-UNIMARC.po | 2 +- misc/translator/po/uk-UA-opac-bootstrap.po | 12 +- misc/translator/po/uk-UA-pref.po | 2 +- misc/translator/po/uk-UA-staff-help.po | 2 +- misc/translator/po/uk-UA-staff-prog.po | 718 +- misc/translator/po/ur-Arab-marc-MARC21.po | 2 +- misc/translator/po/ur-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ur-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ur-Arab-opac-bootstrap.po | 2 +- misc/translator/po/ur-Arab-pref.po | 2 +- misc/translator/po/ur-Arab-staff-help.po | 2 +- misc/translator/po/ur-Arab-staff-prog.po | 718 +- misc/translator/po/vi-VN-marc-MARC21.po | 2 +- misc/translator/po/vi-VN-marc-NORMARC.po | 2 +- misc/translator/po/vi-VN-marc-UNIMARC.po | 2 +- misc/translator/po/vi-VN-opac-bootstrap.po | 2 +- misc/translator/po/vi-VN-pref.po | 2 +- misc/translator/po/vi-VN-staff-help.po | 2 +- misc/translator/po/vi-VN-staff-prog.po | 720 +- misc/translator/po/zh-Hans-CN-marc-MARC21.po | 1148 ++- misc/translator/po/zh-Hans-CN-marc-NORMARC.po | 78 +- misc/translator/po/zh-Hans-CN-marc-UNIMARC.po | 287 +- misc/translator/po/zh-Hans-CN-opac-bootstrap.po | 1870 ++-- misc/translator/po/zh-Hans-CN-pref.po | 1529 ++-- misc/translator/po/zh-Hans-CN-staff-help.po | 3392 +++---- misc/translator/po/zh-Hans-CN-staff-prog.po | 6915 +++++++-------- misc/translator/po/zh-Hans-TW-marc-MARC21.po | 36 +- misc/translator/po/zh-Hans-TW-marc-NORMARC.po | 8 +- misc/translator/po/zh-Hans-TW-marc-UNIMARC.po | 22 +- misc/translator/po/zh-Hans-TW-opac-bootstrap.po | 16 +- misc/translator/po/zh-Hans-TW-pref.po | 25 +- misc/translator/po/zh-Hans-TW-staff-help.po | 323 +- misc/translator/po/zh-Hans-TW-staff-prog.po | 879 +- 528 files changed, 52256 insertions(+), 56805 deletions(-) create mode 100644 misc/release_notes/release_notes_3_22_1.txt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Dec 26 19:44:39 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 26 Dec 2015 18:44:39 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.07-1-gd2fde14 Message-ID: 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.20.x has been updated via d2fde14375d5b58dfe8e0deba143abafea569f41 (commit) from 95a5b0ded05ece160c800a3aa9edfa2473c791fa (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 d2fde14375d5b58dfe8e0deba143abafea569f41 Author: Fr?d?ric Demians Date: Sat Dec 26 19:49:14 2015 +0100 Fix Koha.pm 3.20.7 version number ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Dec 26 19:48:30 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 26 Dec 2015 18:48:30 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.20.07.1 created. v3.20.07.1 Message-ID: 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 annotated tag, v3.20.07.1 has been created at 3db05e825ae8a41c1468684fcea7616a6cbb647c (tag) tagging d2fde14375d5b58dfe8e0deba143abafea569f41 (commit) replaces v3.20.07 tagged by Fr?d?ric Demians on Sat Dec 26 19:52:18 2015 +0100 - Log ----------------------------------------------------------------- Koha release 3.20.01 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQEcBAABAgAGBQJWfuHiAAoJEGOGo5WRV8bu9EcIAJi2ClDOsEjnuQI/d1bD3u1p TJgyqDZ3G43w6LIafTTmzpidyfekgO0e/pTJOqNB5+vLgtqkRX7XcoYzIPH8Vhra hFWpBa0wxtCwmOxg1BB8+I32XSgXXDmcl2p3CqwNd3FeFBjYHpYpvFBdjoMj9YKA gC3B1yyVcRLmMlL/5/zFEP0zca2YnMTyhXGAyslyxys7mN4tgbvBTWfrmyqjII4S 3kbc46W1AvSzofLRrnE9pZ5eTYJxhTkBTX1hbK1VamTSI+Iw3g6V06y6u+/lyLOy fcQvOI+m+WskSNbn51FqeuJq0jMgoRKhQttFq/IzKsKgIYah9k2C53FtZAShpEU= =HHKg -----END PGP SIGNATURE----- Fr?d?ric Demians (1): Fix Koha.pm 3.20.7 version number ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 10:30:17 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 09:30:17 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.07.1-1-ga90e8e2 Message-ID: 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.20.x has been updated via a90e8e2297210996a1967978b1dd3d0dc7056411 (commit) from d2fde14375d5b58dfe8e0deba143abafea569f41 (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 a90e8e2297210996a1967978b1dd3d0dc7056411 Author: Tomas Cohen Arazi Date: Mon Dec 28 10:57:41 2015 -0300 Bug 15431: svc/checkouts dies due to undefined variable (13024 merge problem) When bug 13024 was merged into 3.20.x, a bug was introduced by replacing the old way to fetch itemtype descriptions with the newer (3.22+). To test: - Perform a checkout on a patron - Check so all checkouts are shown immediately => FAIL: It keeps loading forever. The logs show the svc/checkouts script died - Apply the patch - Reload page => SUCCESS: It loads the circ information correctly - Sign off :-D Regards Signed-off-by: Fr?d?ric Demians Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: svc/checkouts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 14:15:30 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 13:15:30 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.07.1-3-gcaa2207 Message-ID: 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.20.x has been updated via caa2207302020f3b0c750971d282208252b44240 (commit) via 7761e8c5ff27ad41a3327ccd18a8b6959596362b (commit) from a90e8e2297210996a1967978b1dd3d0dc7056411 (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 caa2207302020f3b0c750971d282208252b44240 Author: Fr?d?ric Demians Date: Tue Dec 29 11:28:20 2015 +0100 Fix various failing tests on 3.20.x branch - t/db_dependant/Contract.t - t/db_dependent/Circulation_issue.t - t/db_dependent/Holds.t - t/Auth_with_shibboleth.t commit 7761e8c5ff27ad41a3327ccd18a8b6959596362b Author: Fr?d?ric Demians Date: Tue Dec 29 10:44:44 2015 +0100 Revert "Bug 15171: Display subscriptions which will expire in the future" This reverts commit 7368075d1e3640396ed64a5ed342147a5d31fa22. Fix test ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/serials/checkexpiration.tt | 2 +- serials/checkexpiration.pl | 5 ++--- t/Auth_with_shibboleth.t | 13 +++++-------- t/db_dependent/Circulation_issue.t | 10 +--------- t/db_dependent/Contract.t | 14 ++++++++------ t/db_dependent/Holds.t | 2 +- 6 files changed, 18 insertions(+), 28 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 16:17:02 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 15:17:02 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.07.1-4-g77589b5 Message-ID: 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.20.x has been updated via 77589b549c1b355cbf0fe0748fbaef76c8ec684f (commit) from caa2207302020f3b0c750971d282208252b44240 (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 77589b549c1b355cbf0fe0748fbaef76c8ec684f Author: Fr?d?ric Demians Date: Tue Dec 29 15:46:17 2015 +0100 Track down last 3 failing tests on Jenkins - Fix t/DateUtils.t - t/db_dependent/TestBuilder.t Upgrade this test verbosity in order to find out on which data source it fails on Jenkins. ----------------------------------------------------------------------- Summary of changes: t/DateUtils.t | 4 ++-- t/db_dependent/TestBuilder.t | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 20:27:48 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 19:27:48 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-27-g3f6a1d4 Message-ID: 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 3f6a1d47fd9a72792ce334d1fdce05fa53e7c1a2 (commit) from dba72d903deb525250bfb8b633b88e2aa7b1b962 (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 3f6a1d47fd9a72792ce334d1fdce05fa53e7c1a2 Author: Nicole C. Engard Date: Mon Aug 3 09:17:21 2015 -0500 Bug 14638: Update Serials Help The serials help file was out of date for 3.18+ To test: * apply patch * Go to serials > new subscription * Click help * Confirm help correct Signed-off-by: Aleisha Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../en/modules/help/serials/subscription-add.tt | 57 +++++++++++++------- 1 file changed, 38 insertions(+), 19 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 20:37:59 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 19:37:59 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-31-g4c5892e Message-ID: 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 4c5892eff7dc90cda2d1fd7eb838ca5f16fabe24 (commit) via d1057b80daa47cfda74f4bd217ced5d90963a3b8 (commit) via 8a87434f7a109641279ae7bbc4f1214f4985b491 (commit) via cc735a7ca4cfc90f636d8cd0f3a24b09312268bf (commit) from 3f6a1d47fd9a72792ce334d1fdce05fa53e7c1a2 (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 4c5892eff7dc90cda2d1fd7eb838ca5f16fabe24 Author: Kyle M Hall Date: Wed Apr 22 09:11:21 2015 -0400 Bug 11084 [QA Followup] - Document limitations of test mode Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher commit d1057b80daa47cfda74f4bd217ced5d90963a3b8 Author: Kyle M Hall Date: Wed Apr 22 08:58:08 2015 -0400 Bug 11084 [QA Followup] - Suppress userenv warning Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher commit 8a87434f7a109641279ae7bbc4f1214f4985b491 Author: Kyle M Hall Date: Thu Apr 16 07:50:09 2015 -0400 Bug 11084 [QA Followup] Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher commit cc735a7ca4cfc90f636d8cd0f3a24b09312268bf Author: Kyle M Hall Date: Sun Oct 20 14:02:52 2013 -0400 Bug 11084 - Delete biblios on Leader 05 == d Position 05 of the leader in MARC 21 indicates the record's status. A lower case 'd' indicates that the record is to be deleted (http://www.loc.gov/marc/authority/adleader.html). This patch adds a cronjob script that may be run nightly to delete records where position 05 of the leader is set to 'd'. Test Plan: 1) Edit one or more records, and set the leader position 05 to 'd'. 2) Run misc/cronjobs/delete_records_via_leader.pl -c -v 3) Those records should either be deleted, or an error message should state why they were not. Signed-off-by: Magnus Enger Works as advertised. Edited a record with an item to have leader05 = d, then ran delete_records_via_leader.pl with -c and got a message that the record could not be deleted because of the item. Removed the item and the script deleted the record. Tried with another record with an item, this time with the -i option and the record was deleted. Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 6 +- misc/cronjobs/delete_records_via_leader.pl | 120 ++++++++++++++++++++++++++++ 2 files changed, 125 insertions(+), 1 deletion(-) create mode 100755 misc/cronjobs/delete_records_via_leader.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 20:47:25 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 19:47:25 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-33-ga9fdfde Message-ID: 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 a9fdfde186810c71ca8b507b6440046b6c9426e9 (commit) via f9b9c78231339a54f1ba61df1b0a0b239a4f91c7 (commit) from 4c5892eff7dc90cda2d1fd7eb838ca5f16fabe24 (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 a9fdfde186810c71ca8b507b6440046b6c9426e9 Author: Barton Chittenden Date: Tue Oct 6 06:54:41 2015 -0700 Bug 14515 (QA Followup) fix letter.pl available fields. Add bibliotiems to the 'available fields' list for module 'Holds' (aka reserves). Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit f9b9c78231339a54f1ba61df1b0a0b239a4f91c7 Author: Barton Chittenden Date: Thu Jul 9 13:23:49 2015 -0700 Bug 14515: Add biblioitems to messages in C4/Reserves.pm http://bugs.koha-community.org/show_bug.cgi?id=14515 Signed-off-by: Danielle Aloia Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: C4/Reserves.pm | 60 ++++++++++++++++++++++++++++++++++++++++++++++--------- tools/letter.pl | 2 +- 2 files changed, 52 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 21:23:37 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 20:23:37 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-34-g5e80a64 Message-ID: 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 5e80a64ea39140c9918335fc472a441bb3fa9c6a (commit) from a9fdfde186810c71ca8b507b6440046b6c9426e9 (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 5e80a64ea39140c9918335fc472a441bb3fa9c6a Author: Marc V?ron Date: Wed Dec 9 18:36:21 2015 +0100 Bug 15345: Translatability: fix issue in facets (Availability') This patch fixes an issue with a splitted sentence in facets (Avalability) that leads to weird translations e.g.: German: 'Zeige nur Verf?gbar Exemplare' French: 'Montrer seulement disponible exemplaires' Additionally, the link "Show all items" gets it's own li tags to display nicely like the other links in the facets column and it removes superfluous dots. To test in OPAC and Staff client: - Apply patch - Do a search that results in more than one available items - In column "Refine your search", click on "Limit to currently available items" - Verify that the message "Showing only available items" and the link "Show all items" display nicely. Signed-off-by: Hector Castro use_zebra_facets set to 0 in koha-conf.xml to test. Works as described Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 21:25:05 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 20:25:05 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-35-g698fb01 Message-ID: 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 698fb010f55c0d68789299003f4ac55326142f72 (commit) from 5e80a64ea39140c9918335fc472a441bb3fa9c6a (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 698fb010f55c0d68789299003f4ac55326142f72 Author: Marc V?ron Date: Wed Dec 9 21:31:29 2015 +0100 Bug 15346: Translatability: fix sentence splitting issue in memberentrygen.tt Fix sentences in memberentrygen.tt that are split by tags, leading to wrong capitalization in German (because it can not be decided if a string is part of a sentence or a standalone sentence). Example: Es sind Keine Bibliotheken definiert. To test: - Apply patch - To trigger the messages, you have to edit a patron in a system where no libraries and no patron categories are defined - Alternatively, carefully review the changes in koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt Signed-off-by: Hector Castro Sentences fixed for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 21:29:15 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 20:29:15 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-36-g4983d5c Message-ID: 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 4983d5c4b9786479f849494efd3048f65ba26008 (commit) from 698fb010f55c0d68789299003f4ac55326142f72 (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 4983d5c4b9786479f849494efd3048f65ba26008 Author: Marc V?ron Date: Sun Dec 13 10:08:41 2015 +0100 Bug 15361: Translatability: Fix issue on Administration Columns settings This patch rewords the following sentence that is not correctly translatable due to splitting b tags: Changes made below will only apply to item subfields that are mapped to the items table. To test: - Apply patch - Verify that the rewording makes sese and that no sentences are split by tags. Signed-off-by: Hector Castro Rewording message displayed Ok for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 21:31:47 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 20:31:47 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-37-g984f641 Message-ID: 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 984f641417e20ab561b2670b5ed921dc4aa6a907 (commit) from 4983d5c4b9786479f849494efd3048f65ba26008 (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 984f641417e20ab561b2670b5ed921dc4aa6a907 Author: Marc V?ron Date: Sun Dec 13 10:47:53 2015 +0100 Bug 15362: Translatability: Fix issue on Administration 'Did you mean?' Fix sentence splitting by tags on didyoumean.tt leading to odd translations. To test: - Apply patch - Go to Home > Administration > Did you mean? - Verify that the information below the title displays properly and makes sense. - Disable Javascript, reload page - Verify that the warning about missing Javascript displays properly and makes sense. Signed-off-by: Hector Castro Works as descrived. Removed em tags for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/didyoumean.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 21:35:33 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 20:35:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-38-g2736327 Message-ID: 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 27363271be4b4cc308572dcf04049edf33fa1a7c (commit) from 984f641417e20ab561b2670b5ed921dc4aa6a907 (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 27363271be4b4cc308572dcf04049edf33fa1a7c Author: Marc V?ron Date: Sun Dec 13 11:58:52 2015 +0100 Bug 15363: Translatability: Fix issue with ambiguous 'all' on Administration > Set library checkin and transfer policy In branch_transfer_limits.tt, set ambiguous word 'all' (separated by tags) into a translatable context. To test: Apply patch - Go to Home > Administration > Set library checkin and transfer policy - Verify that the word 'all' is no longer separated by tags in "For all collection codes: " rsp. "For all item types: " (Switch with syspref 'BranchTransfersLimitsType') Signed-off-by: Hector Castro Works well for translation purpose Bug 15363: (followup) Move tags inside if statements Followup for comment #3 Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 21:41:31 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 20:41:31 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-39-gbc2e4ba Message-ID: 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 bc2e4ba86208e26d9890868d6deb5c65c263e907 (commit) from 27363271be4b4cc308572dcf04049edf33fa1a7c (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 bc2e4ba86208e26d9890868d6deb5c65c263e907 Author: Marc V?ron Date: Sun Dec 13 20:34:46 2015 +0100 Bug 15365: Translatability: Fix issue on Administration > Circulation and fine rules Fix translatability issue on smart-rules.tt to prevent odd translations (Sentences splitted by tags and newlines). To test: - Apply patch - Go to Administration > Circulation and fine rules - Verify that the lines "Note: " and "Important: " below "Default holds policy by item type" make sense and are not splitted by tags and (in html) by newlines. (Amended to fix commit message) Signed-off-by: Hector Castro strong Note and Important displayed Ok for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 21:44:07 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 20:44:07 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-40-g639ccd4 Message-ID: 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 639ccd469f4e00e1737e0dec6ee914d845907938 (commit) from bc2e4ba86208e26d9890868d6deb5c65c263e907 (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 639ccd469f4e00e1737e0dec6ee914d845907938 Author: Marc V?ron Date: Sun Dec 13 22:39:53 2015 +0100 Bug 15366 - Fix breadcrumbs and html page title in guided reports This patch fixes following issues with breadcrumbs and html page title in Home > Reports > Guided reports wizard: - Sometimes, breadcrumbs display a stray > at the end - While creating a report, steps are not displayed in breadcrumbs and do not appear in html page title - html page title is divided by newlines To test: - Apply patch - Go to Home > Reports > Guided reports wizard - Go to all pages including the steps for creating a new report and verify - that the breadcrumbs display properly and make sense - in html source, the page title makes sense and displays on one line. Signed-off-by: Hector Castro Works as descrived Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../en/modules/reports/guided_reports_start.tt | 57 ++++++++++---------- reports/guided_reports.pl | 2 +- 2 files changed, 29 insertions(+), 30 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 22:22:15 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 21:22:15 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-41-gb075135 Message-ID: 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 b07513526965720c7d558bd9c6176088304a2ee9 (commit) from 639ccd469f4e00e1737e0dec6ee914d845907938 (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 b07513526965720c7d558bd9c6176088304a2ee9 Author: Marc V?ron Date: Wed Dec 2 12:39:59 2015 +0100 Bug 15300: Translatability: Replace ambiguous 'From' and 'To' in members-update.tt This patch replaces semantically ambigous words "From" and "To" in koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt for better translatability. To test: - Apply patch - Make sure that patrons can request detail changes in OPAC (sysprefs opacuserlogin, OPACPatronDetails) - Log in to OPAC, request a change of personal details (cgi-bin/koha/opac-memberentry.pl) - Log in to staff client - Click link 'Patrons requesting modifications' or go to Home > Patrons > Update patron records - Verify that table headers make sense Signed-off-by: Hector Castro Rewording Ok for translation purpose Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 22:29:24 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 21:29:24 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-42-g466eebe Message-ID: 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 466eebe9e54837db8e50ae4c0f68214b54a40fa5 (commit) from b07513526965720c7d558bd9c6176088304a2ee9 (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 466eebe9e54837db8e50ae4c0f68214b54a40fa5 Author: Marc V?ron Date: Wed Dec 2 15:34:44 2015 +0100 Bug 15301: branchtransfers.tt: Remove ambiguous "To" and fix splitted sentence The file intranet-tmpl/prog/en/modules/circ/branchtransfers.tt contains two ambiguous words 'to' and a sentence splitted up by html tags, leading to weird translations. Example in German: "Sie k?nnen keine Exemplare aus itemtype transferieren BK f?r: Airfield" To test: - Apply patch - Set up transfer policies for item types and collection codes in Home > Administration > Set library checkin and transfer policy Make sure that you have rules that deny and others that allow transfers - Verify that syspref 'UseBranchTransferLimits' is set to 'Enforce' - Set 'BranchTransferLimitTypes' to 'item type' - Go to Home > Circulation > Transfers - Transfer an item that is allowed for item type - Verify that the table of transferred items displays information about Item type, Collection code and Destination - Transfer an item that is not allowed for the item type - Verify that the information about not allowing the transfer displays properly and is meaningfull - Set 'BranchTransferLimitTypes' to 'collection code' - Repeat the transfer steps above for allowed / not allowed collection code (Amended to add ids to table and 8 columns, see comment #2) (Amended for comment #5) Followup for comment #8 Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: circ/branchtransfers.pl | 10 ----- .../prog/en/modules/circ/branchtransfers.tt | 44 +++++++++++++------- 2 files changed, 29 insertions(+), 25 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Dec 29 23:44:30 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 22:44:30 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-44-gea0d5aa Message-ID: 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 ea0d5aa6bf7b0ff96fc75f04d6cb83dc37d4136a (commit) via 5843c76546d5769493099faed2fbce39fbe3b6f3 (commit) from 466eebe9e54837db8e50ae4c0f68214b54a40fa5 (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 ea0d5aa6bf7b0ff96fc75f04d6cb83dc37d4136a Author: Marc V?ron Date: Wed Dec 2 06:33:32 2015 +0100 Bug 15231: (followup) Remove stray tag This patch removes a stray tag (see comment #4) and a superfluous blank. Signed-off-by: Hector Castro Signed-off-by: Brendan A Gallagher commit 5843c76546d5769493099faed2fbce39fbe3b6f3 Author: Marc V?ron Date: Fri Nov 20 22:58:40 2015 +0100 Bug 15231 - Import patrons: Remove string splitting by html tags to avoid weird translations Some of the strings in Home > Tools > Import patrons contain html tags and therefore are splitted in the translation tool. This makes it nearly impossible to create correct translations from the partial strings. Additinally, the notes for Extended patron attributes never displayed (due to a bug). To test: - Apply patch - Enable Syspref 'ExtendedPAtronAttributes' - Go to Home > Tools > Import patrons and verify, that the Notes at the right of the screen make sense Signed-off-by: Hector Castro Split html tags removed, notes at right side it displayed correctly Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/tools/import_borrowers.tt | 36 +++++++++++++------- 1 file changed, 23 insertions(+), 13 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 00:02:00 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 23:02:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-45-g36c0658 Message-ID: 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 36c06583298649843309a4fc8696b1c638e16740 (commit) from ea0d5aa6bf7b0ff96fc75f04d6cb83dc37d4136a (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 36c06583298649843309a4fc8696b1c638e16740 Author: Marc V?ron Date: Sat Nov 21 01:31:00 2015 +0100 Bug 15232: Advanced Cataloging Editor: Fix translation issues This patch makes koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc to comply with Coding guidlines to avoid translation issues: "JS3: Avoid strings which mix text and markup Text mustn't contain HTML tags." To test: - Apply patch - Verify that code changes are correct (html markup moved out of function _(...) ) - Bonus test: Enable syspref 'EnableAdvancedCatalogingEditor' and verify that it works as before With type fix from: Hector Castro Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 00:26:30 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 23:26:30 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-47-g8f77dc8 Message-ID: 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 8f77dc86cec51f0f4eea1d627d82fd6b17499060 (commit) via 9b0d9a186a7bffc16af2e5b2f67de31eb468a7a5 (commit) from 36c06583298649843309a4fc8696b1c638e16740 (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 8f77dc86cec51f0f4eea1d627d82fd6b17499060 Author: Marc V?ron Date: Thu Dec 3 00:10:28 2015 +0100 Bug 15233: (followup) Remove 2 sentences. This patch removes 2 sentences (see comment #8) Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit 9b0d9a186a7bffc16af2e5b2f67de31eb468a7a5 Author: Marc V?ron Date: Sat Nov 21 02:10:24 2015 +0100 Bug 15233: Cataloging subfield editors: Clean up html and streamline text for better translatability This patch removes bold markup from explanatory text in auth_subfields_structure.tt and makes it the same as in marc_subfields_structure.tt for better translatibility. To test: - Apply patch - Verify that string changes make sense and that the explanatory text is the same in both files. Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/admin/auth_subfields_structure.tt | 4 ++-- .../prog/en/modules/admin/marc_subfields_structure.tt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 00:54:39 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Dec 2015 23:54:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-48-gf9586b0 Message-ID: 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 f9586b01998071ddfdfc130ead2f48b079ae7e68 (commit) from 8f77dc86cec51f0f4eea1d627d82fd6b17499060 (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 f9586b01998071ddfdfc130ead2f48b079ae7e68 Author: Marc V?ron Date: Sat Nov 21 02:32:30 2015 +0100 Bug 15236: Better translatibility in "Connect biblio.biblionumber to a MARC subfield" This patch moves html markup out of explanatory sentence in koha2marclinks.tt ("Connect biblio.biblionumber to a MARC subfield") for better translatability. To test: - Apply patch - Go to Home > Administration < Koha to MARC mapping and edit a tag - Verify that text change makes sense Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/koha2marclinks.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 01:27:38 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 00:27:38 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-49-gb0e833f Message-ID: 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 b0e833f9f5bffeb0940dd75eae150a247b5b520c (commit) from f9586b01998071ddfdfc130ead2f48b079ae7e68 (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 b0e833f9f5bffeb0940dd75eae150a247b5b520c Author: Marc V?ron Date: Sat Nov 21 03:09:55 2015 +0100 Bug 15237: Quote of the day: Better translatibility for editor and help This patch moves html markup out of explanatory text in Quote of the day editor and help for better translatibility (Home > Tools > Quote Editor). To test: - Apply patch - Go to Home > Tools > Quote Editor and related Help - Verify that text changes make sense. Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Amended patch: Make consistent space after "Note:" (inside the br tag) Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 02:11:27 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 01:11:27 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-50-g29a4300 Message-ID: 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 29a4300c0727b779e1a0e83a35cd772828debde2 (commit) from b0e833f9f5bffeb0940dd75eae150a247b5b520c (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 29a4300c0727b779e1a0e83a35cd772828debde2 Author: Marc V?ron Date: Sat Nov 21 03:25:56 2015 +0100 Bug 15238: Better translatability for Installer Step 1 This Bug streamlines html in installer/step1.tt for better translatibility. To test: Reviwe code and verify that changes in text make sense. Signed-off-by: Hector Castro To reproduce in Debian environment, remove a required module with dpkg -r. Rewording Ok for translation purposes Bug 15238: (followup) Remove word 'Note:' 'Note: ' removed as requested in comment #3 Signed-off-by: Hector Castro Word 'Note' removed Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 02:54:50 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 01:54:50 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-51-g391c8ec Message-ID: 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 391c8ec0bc682491faaf64494867237dfc01bd11 (commit) from 29a4300c0727b779e1a0e83a35cd772828debde2 (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 391c8ec0bc682491faaf64494867237dfc01bd11 Author: Nicole C. Engard Date: Thu Nov 19 09:31:01 2015 -0600 Bug 15220: Fix typo in circ rules help MaxFinesystem should be MaxFine system To test: * visit circ & fine rules * click help * confirm typo fixed Signed-off-by: Thomas Misilo Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/smart-rules.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 03:01:50 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 02:01:50 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-52-gd9c78c9 Message-ID: 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 d9c78c9a65c09f4fdaa6481ff7a456836bcd3b61 (commit) from 391c8ec0bc682491faaf64494867237dfc01bd11 (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 d9c78c9a65c09f4fdaa6481ff7a456836bcd3b61 Author: Katrin Fischer Date: Sun Nov 22 02:13:12 2015 +0100 Bug 15224: Label creator - fix tiny typo 'itemnunber' To test: - Go to Tools > Label creator > New > Label batch - Check text displayed in grey next to the text input field Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 03:03:58 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 02:03:58 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-54-gacf586a Message-ID: 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 acf586a45ab4a27939f0ba34cba58ae8ff500993 (commit) via 59e2b4e105b1f5c55b97665fce44bccd58f0c7a1 (commit) from d9c78c9a65c09f4fdaa6481ff7a456836bcd3b61 (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 acf586a45ab4a27939f0ba34cba58ae8ff500993 Author: Jonathan Druart Date: Wed Nov 25 16:14:35 2015 +0000 Bug 15229: Same fix for circulation.tt template (normal checkouts) Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit 59e2b4e105b1f5c55b97665fce44bccd58f0c7a1 Author: Katrin Fischer Date: Sun Nov 22 01:48:31 2015 +0100 Bug 15229: Fix tiny typos in error messages of batch checkout page Patch fixes some small spelling errors on the batch checkouts page. Also switches 'reserves' to 'holds'. To test: - Read the patch and verify that the changes are correct. Signed-off-by: Hector Castro Changes are correct, patch fixes capitalization and typo Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++-- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 03:17:18 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 02:17:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-56-gd36280e Message-ID: 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 d36280e36e1fa8779bf845fb0cc0de2ea835d486 (commit) via cee796629fb131966a8ebfa77ecbcf054c46fd02 (commit) from acf586a45ab4a27939f0ba34cba58ae8ff500993 (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 d36280e36e1fa8779bf845fb0cc0de2ea835d486 Author: Jonathan Druart Date: Wed Nov 25 16:45:50 2015 +0000 Bug 15101: Correct typo AllowPkiAuth vs AllowPKIAuth Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit cee796629fb131966a8ebfa77ecbcf054c46fd02 Author: Katrin Fischer Date: Sun Nov 22 02:43:36 2015 +0100 Bug 15101: Don't display sys pref AllowPkiAuth under CAS heading The system preference AllowPkiAuth display under the heading CAS authentication, but is actually a separate authentication option. Patch creates a separate heading for it. To test: - Go to Administration > System preferences > Tab Administration - Verify that AllowPkiAuth is now displayed separately Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: C4/UsageStats.pm | 2 +- .../intranet-tmpl/prog/en/modules/admin/preferences/admin.pref | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 03:29:55 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 02:29:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-58-ge89714e Message-ID: 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 e89714ea84acd8300a629a7acccc6eee90ff0ff0 (commit) via 5782da035f736765dceced4b2db9699b30e22017 (commit) from d36280e36e1fa8779bf845fb0cc0de2ea835d486 (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 e89714ea84acd8300a629a7acccc6eee90ff0ff0 Author: Hector Castro Date: Sun Nov 22 19:52:39 2015 -0600 Bug 15228: Switch "Items in batch number" Yet another line to switch "Items in batch number" to "Patrons in batch number" Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit 5782da035f736765dceced4b2db9699b30e22017 Author: Katrin Fischer Date: Sun Nov 22 02:04:12 2015 +0100 Bug 15228: Patron card batches - Improve translatability This patch removes the \n\n from a translatable string as those don't translate correctly to new lines. It also switches 'item' for 'patron' to avoid confusion with catalog items. To test: 1) Trigger changed error message - Create a new batch with 1 patron entry - Select patron in list using the checkbox - Click 'Remove selected patrons' in toolbar - Verify alert displays correctly 2) Verify that the page no longer uses "items" but patrons instead. Signed-off-by: Hector Castro Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 03:36:51 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 02:36:51 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-59-g558f291 Message-ID: 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 558f291465d60c082c0e9a4a15eb7ed87a3e3fde (commit) from e89714ea84acd8300a629a7acccc6eee90ff0ff0 (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 558f291465d60c082c0e9a4a15eb7ed87a3e3fde Author: Colin Campbell Date: Thu Nov 19 14:17:10 2015 +0000 Bug 15217 Remove redundant duplicate var declaration remove superfluous second declaration of template, borrowernumber and cookie which are never used Also removed the variables @results and @results_array which are declared but not used Signed-off-by: Fr?d?ric Demians As suggested by Colin, perl -wc catalogue/search.pl doesn't complain anymore after applying the patch. perlcritic confirms the 2 variables were unused. Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: catalogue/search.pl | 4 ---- 1 file changed, 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 03:48:07 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 02:48:07 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-60-gaf7fb9c Message-ID: 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 af7fb9cd48cdb47329e7b9bbe651e856e017aa13 (commit) from 558f291465d60c082c0e9a4a15eb7ed87a3e3fde (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 af7fb9cd48cdb47329e7b9bbe651e856e017aa13 Author: Jonathan Druart Date: Fri Dec 18 15:01:15 2015 +0000 Bug 15332: Sent DateTime object to DBIx::Class, not formatted dates If formatted dates are sent to DBIx::Class on update/insert, the date will be set as 0000-00-00 (except if the format is yyyy-mm-dd). Test plan: Use the batch patron modification tools to update the dateenrolled or dateexpiry values for at least 1 patron. Without this patch, the modified value will be updated to 0000-00-00, with this patch, the correct value will be set. Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: tools/modborrowers.pl | 5 +++++ 1 file changed, 5 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 04:02:40 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 03:02:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-62-g8814330 Message-ID: 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 881433043903ead9d37a434342e3b998bc86c17b (commit) via eb5fca30aa7005afaa34d394e1115eead969271b (commit) from af7fb9cd48cdb47329e7b9bbe651e856e017aa13 (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 881433043903ead9d37a434342e3b998bc86c17b Author: Kyle M Hall Date: Fri Dec 18 17:32:31 2015 +0000 Bug 15289 [QA Followup] - Fix minor language issue Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher commit eb5fca30aa7005afaa34d394e1115eead969271b Author: Alex Arnaud Date: Tue Dec 15 14:11:54 2015 +0100 Bug 15289 - borrowers permission allows to see patron's loans Test plan: - log with a user that have "borrowers" permission but not "Remaining circulation permissions" - go to a borrower's detail page (who has at least a loan) and click on "show checkouts" - check that you see loan(s) and that you can't renew and checkin - Do the same with a borrower that have "Remaining circulation permissions" - check that you see loan(s) and that you can renew and checkin Followed test plan. Works as expected. Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/checkouts-table.inc | 6 ++++-- koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 2 ++ .../intranet-tmpl/prog/en/modules/members/moremember.tt | 1 + svc/checkouts | 11 +++++++---- 5 files changed, 15 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 04:33:59 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 03:33:59 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-63-g0ca5c7e Message-ID: 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 0ca5c7ea4f6abfef26f4b158da1ae76210728c6a (commit) from 881433043903ead9d37a434342e3b998bc86c17b (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 0ca5c7ea4f6abfef26f4b158da1ae76210728c6a Author: Owen Leonard Date: Fri Dec 4 14:32:08 2015 -0500 Bug 15313 - Use Bootstrap modal for z39.50 search MARC and Card preview In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the cataloging Z39.50 search results page so that "MARC" and "Card" previews are displayed in Bootstrap modals. Because the modal is triggered from a pop-up window, the modal has been reformated to exclude the footer and reduce the size of the modal header. To test: 1. Apply the patch and navigate to Cataloging. 2. Click the "New from Z39.50/SRU button to open the search window. 3. Perform any search which will return results. 4. Test the visible "MARC" and "Card" links for multiple results and confirm that the correct data is shown each time. 5. Click anywhere in the results table to show the hidden menu and test the "MARC" and "Card" links it displays. Corrected: The original patch didn't address the hidden menu which appears if you click in any table cell. Followed test plan, works as expected (including click in table cell). Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/cataloguing/z3950_search.tt | 33 +++++++++++++++++--- 1 file changed, 29 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 04:37:26 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 03:37:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-64-g83b7d6e Message-ID: 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 83b7d6e0d398407c9ca7333f68b78f7478600286 (commit) from 0ca5c7ea4f6abfef26f4b158da1ae76210728c6a (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 83b7d6e0d398407c9ca7333f68b78f7478600286 Author: Owen Leonard Date: Fri Dec 4 18:49:39 2015 -0500 Bug 15314: Use Bootstrap modal for cataloging merge MARC preview In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the cataloging merge selection page so that the MARC preview is shown in a Boostrap modal. This patch also changes the preview link to be the text "View MARC" so that it is clear what it does. To test: 1. Apply the patch and navigate to Cataloging. 2. Perform a search which will return results from the catalog. 3. Select two records and click the "Merge selected" button to begin the merge process. 4. Test the "View MARC" link for both merge choices and confirm that the correct data is shown each time. Signed-off-by: Hector Castro Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/cataloguing/merge.tt | 33 ++++++++++++++++++-- 1 file changed, 30 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 04:40:54 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 03:40:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-65-gcd46c5d Message-ID: 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 cd46c5dc75f9381d4766b0bd70b3d089e53e539b (commit) from 83b7d6e0d398407c9ca7333f68b78f7478600286 (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 cd46c5dc75f9381d4766b0bd70b3d089e53e539b Author: Jonathan Druart Date: Tue Dec 8 15:10:46 2015 +0000 Bug 15324: Do not display 'Waiting holds:" if no holds are waiting Test plan: - Make sure that you have a patron A with waiting holds and a patron B without waiting holds - Go to the checkout page for patron A (Home > Circulation > Checkouts > ...) - At the right, there is a title "Waiting holds:" and a list of holds waiting - Go to the checkout page for patron B => Without this patch "Waiting holds:" is displayed Sign-off on Jonathan's patch Signed-off-by: Marc V?ron http://bugs.koha-community.org/show_bug.cgi?id=14324 Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: circ/circulation.pl | 3 ++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 04:49:12 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 03:49:12 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-66-g7d16555 Message-ID: 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 7d16555427db2ee3bf39840df43f134e369ff113 (commit) from cd46c5dc75f9381d4766b0bd70b3d089e53e539b (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 7d16555427db2ee3bf39840df43f134e369ff113 Author: Hector Castro Date: Mon Nov 9 11:05:39 2015 -0600 Bug 15170 - Add 264 field to MARC21*DC.xsl Modify MARC21*DC.xsl to add RDA 264 field To test: - Copy from LOC z39.50 the Maxwell's handbook for RDA (ISBN 9780838911723) - Look the field 264 in framework, save record - Open this URL in OPAC /cgi-bin/koha/unapi?id=koha:biblionumber:41201&format=marcxml And play with id (the number of new record for Maxwell book) & format parameters Test format=rdfdc, format=srw_dc and format=oai_dc - Notice that and are not present - Apply this patch - Reload the URL for the three formats - You will see the tags publisher and date are taken from 264 Signed-off-by: Fr?d?ric Demians Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2DC.xsl | 14 ++++++++++++++ .../intranet-tmpl/prog/en/xslt/MARC21slim2OAIDC.xsl | 12 ++++++++++++ .../intranet-tmpl/prog/en/xslt/MARC21slim2RDFDC.xsl | 14 ++++++++++++++ .../intranet-tmpl/prog/en/xslt/MARC21slim2SRWDC.xsl | 12 ++++++++++++ 4 files changed, 52 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 04:55:00 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 03:55:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-67-g65c5fa4 Message-ID: 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 65c5fa4385a8e080cfd46a8197b4417bcd579b6a (commit) from 7d16555427db2ee3bf39840df43f134e369ff113 (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 65c5fa4385a8e080cfd46a8197b4417bcd579b6a Author: Nick Date: Wed Nov 18 11:49:15 2015 -0500 Bug 15210 - Novelist throws an error if no ISBN This patch makes opac-detail.tt check for an ISBN before attempting to load Novelist content and prevents a js error which breaks other code. To test: 1 - Enable novelist 2 - Add a visible change to OPACUserJS eg: $(document).ready(function() {$("body").css("background-color","pink");}); 3 - Load a record with no ISBN 4 - Note you do not see a color change in the body and that there is an error in the console 5 - Apply patch 6 - Reload the record 7 - You should see the color change and no error in the js Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 05:16:59 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 04:16:59 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-68-g825d68e Message-ID: 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 825d68ee8696a2c3f3a2a95c0d148015f02a5ae9 (commit) from 65c5fa4385a8e080cfd46a8197b4417bcd579b6a (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 825d68ee8696a2c3f3a2a95c0d148015f02a5ae9 Author: Aleisha Date: Sun Dec 13 22:24:05 2015 +0000 Bug 14153: Noisy warns in admin/transport-cost-matrix.pl To test: 1) Go to Admin -> Transport cost matrix 2) Notice the warns in the error log 3) Apply the patch and refresh page 4) Notice page still works but no warns in error log Signed-off-by: Jonathan Druart Amended patch: Init a $op variable, if it must be reused later. Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: admin/transport-cost-matrix.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 05:25:12 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 04:25:12 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-69-g1acc609 Message-ID: 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 1acc6094be7670c180bc006182a0f8e464abac03 (commit) from 825d68ee8696a2c3f3a2a95c0d148015f02a5ae9 (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 1acc6094be7670c180bc006182a0f8e464abac03 Author: Marc V?ron Date: Sun Oct 4 11:38:03 2015 +0200 Bug 14948 - Display amounts right aligned in tables on patron pages This patch set display amounts for charge, fine, price etc. right aligned in tables on patron pages. To test, apply patch and verify that amounts appear right aligned on following pages: - Go to Home > Patrons, perform a search (Column 'Fines') - Go to a patron with fines and credits - Checkout tab (circulation.pl): Columns 'Charge', 'Fine', 'Price' (maybe you have to show column with 'Show / hide colums') - Fines Tab > Pay fines (pay.pl): Columns 'Amount', 'Amount Outstanding' - Fines Tab > Account (boraccount.pl): Columns 'Amount', 'Outstanding' Note: Test here 'Filter paid transactions' as well Signed-off-by: Nicole Engard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/checkouts-table-footer.inc | 6 +++--- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 6 +++--- .../prog/en/modules/members/boraccount.tt | 20 ++++++++------------ .../intranet-tmpl/prog/en/modules/members/pay.tt | 10 +++++----- .../en/modules/members/tables/members_results.tt | 2 +- 5 files changed, 20 insertions(+), 24 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 05:28:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 04:28:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-70-g4d96477 Message-ID: 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 4d96477544341d46da64973cfd0b96b4debaa3a7 (commit) from 1acc6094be7670c180bc006182a0f8e464abac03 (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 4d96477544341d46da64973cfd0b96b4debaa3a7 Author: Gaetan Boisson Date: Fri Oct 9 14:44:44 2015 +0200 BUG 14991 Improve consistency of authority search At the moment we can search authorities from two places: authorities-home.pl and auth_finder.pl (while cataloguing). The auth_finder.pl page offers searching specifically in the $a of the main heading, while the authorities home page doesn't. Additionally, the wording and order of the options is different. authorities-home.pl has: Search main heading Search all headings Keyword search while auth_finder.pl has: Main entry ($a only) Main entry Anywhere Heading match This patch will add some consistency so that both pages offer: Search main heading ($a only) Search main heading Search all headings Search entire record Test plan: - apply patch - go to authorities home - check that previous searches are still working - check that the new ($a only) search is working - go to auth finder (from cataloguing) - check that searches are still working - check that we do have the same wording in both pages and that forms are now consistent Signed-off-by: Aleisha Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/auth-finder-search.inc | 35 +++++----- .../prog/en/includes/authorities-search.inc | 67 ++++++++++++++++++-- 2 files changed, 79 insertions(+), 23 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 12:43:48 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 11:43:48 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-74-g79e4d82 Message-ID: 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 79e4d82f8f5b540c097931863f5394482d9f3f21 (commit) via 10480c406c8470580da9f1d12f99022edb36aa72 (commit) via 83e913f8c26a815019ffde21524cc7f126357d57 (commit) via 651ba2bac357f8d858de8c84a5002a28e68fb09c (commit) from 4d96477544341d46da64973cfd0b96b4debaa3a7 (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 79e4d82f8f5b540c097931863f5394482d9f3f21 Author: Kyle M Hall Date: Wed Dec 30 11:45:01 2015 +0000 Bug 11625 - DBRev 3.23.00.001 Signed-off-by: Kyle M Hall commit 10480c406c8470580da9f1d12f99022edb36aa72 Author: Jonathan Druart Date: Thu Apr 23 15:41:17 2015 +0200 Bug 11625: Implement DefaultToLoggedInLibraryNoticesSlips Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 83e913f8c26a815019ffde21524cc7f126357d57 Author: Kyle M Hall Date: Tue Apr 21 11:03:27 2015 -0400 Bug 11625 - Implement DefaultToLoggedInLibraryCircRules This patch set makes the default circ rules and notices/slips to edit the logged in branch, if one is set. Test Plan: 1) Apply this patch 2) Log into staff side, and set your library 3) Browse to Administration/Circulation and fines rules 4) Note the rule set selected is for your library 5) Select "All libraries" 6) Note the rule set selected is for "All libraries" 7) Browse to Toos/Notices & slips 8) Note the notice set selected is for your library 9) Select "All libraries" 10) Not the rule set selected is for "All libraries" 11) Click "New Notice" 12) Note the Library field is set to "All libraries" Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Passes QA script and tests. Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 651ba2bac357f8d858de8c84a5002a28e68fb09c Author: Kyle M Hall Date: Tue Apr 21 10:59:46 2015 -0400 Bug 11625 - Add system preferences DefaultToLoggedInLibraryCircRules and DefaultToLoggedInLibraryNoticesSlips Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Amended patch: INSERT IGNORE INTO + msg Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: admin/smart-rules.pl | 11 ++++++++++- installer/data/mysql/sysprefs.sql | 2 ++ installer/data/mysql/updatedatabase.pl | 15 +++++++++++++++ .../prog/en/modules/admin/preferences/admin.pref | 14 ++++++++++++++ .../intranet-tmpl/prog/en/modules/tools/letter.tt | 2 +- tools/letter.pl | 19 +++++++++++++------ 6 files changed, 55 insertions(+), 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 12:47:00 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 11:47:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-78-g3a7dd6c Message-ID: 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 3a7dd6c07c98bf97c817186d11ae1baaf585ea34 (commit) via c5c4c4770870b90bafa7cd7f1647a56f0ad55f57 (commit) via 6656856d87b136a55614a22e6a1f69214ec53126 (commit) via 940010b2bdcf4bfecd05ac5687953047606a3d98 (commit) from 79e4d82f8f5b540c097931863f5394482d9f3f21 (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 3a7dd6c07c98bf97c817186d11ae1baaf585ea34 Author: Kyle M Hall Date: Wed Dec 30 11:48:36 2015 +0000 Bug 11747 - DBrev 3.23.00.002 Signed-off-by: Kyle M Hall commit c5c4c4770870b90bafa7cd7f1647a56f0ad55f57 Author: Kyle M Hall Date: Wed Apr 22 11:21:53 2015 -0400 Bug 11747 [QA Followup] - Use system preference Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 6656856d87b136a55614a22e6a1f69214ec53126 Author: Kyle M Hall Date: Tue Apr 21 11:19:24 2015 -0400 Bug 11747 - Implement DefaultToLoggedInLibraryOverdueTriggers This patch makes the default circ rules and notices/slips to edit the logged in branch, if one is set. Test Plan: 1) Apply this patch 2) Log into staff side, and set your library 3) Browse to Tools/Overdue notice/status triggers 4) Note the actions displayed are for your library 5) Select "All libraries" 6) Note the actions displayed are for "All libraries" Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 940010b2bdcf4bfecd05ac5687953047606a3d98 Author: Kyle M Hall Date: Tue Apr 21 11:17:14 2015 -0400 Bug 11747 - Add system preference DefaultToLoggedInLibraryOverdueTriggers Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Jonathan Druart Amended patch: INSERT IGNORE INTO + msg Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/sysprefs.sql | 1 + installer/data/mysql/updatedatabase.pl | 11 ++++++++ .../prog/en/modules/admin/preferences/admin.pref | 7 +++++ tools/overduerules.pl | 29 ++++++++++++++------ 4 files changed, 39 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 13:12:35 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 12:12:35 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-80-g010a32d Message-ID: 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 010a32d95f871853f5c597b2670f3de4c62cfa51 (commit) via ac541e0fa1c11254e110d94eed64c358e02e8aab (commit) from 3a7dd6c07c98bf97c817186d11ae1baaf585ea34 (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 010a32d95f871853f5c597b2670f3de4c62cfa51 Author: Jonathan Druart Date: Wed Dec 9 17:41:04 2015 +0000 Bug 15344: Remove some other calls of GetMemberDetails from pl scripts Same as previously. For these files it's a bit less obvious. To make sure these changes won't introduce any regression, check that the variable returned by GetMember is never used to get something else than a borrower fields. The 'flags' should not be get neither. For opac-user.tt it's different, other keys are got but there are defined in the pl script. On the way: - 'showname' is removed (never used) - fix scope var issue in opac-user.tt (BORROWER_INF.OPACPatronDetails vs OPACPatronDetails) Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall commit ac541e0fa1c11254e110d94eed64c358e02e8aab Author: Jonathan Druart Date: Wed Dec 9 17:00:10 2015 +0000 Bug 15344: Remove unucessary call to GetMemberDetails This subroutine does a lot a processing and should only be called when necessary. In the get_template_and_user subroutine (so called from any pages of Koha), it is call to pass the branchcode, title, firstname, surname and borrowernumber values for the logged in user. This subroutine calls GetMemberAccountRecords which retrieve the items infos for all accountlines entries of the logged in user. On members/members.pl, let's say you have 74 entries in the accountlines tables, the page will execute 115 SELECT instead of 35 if you don't have any accountlines entries. With this patch, the number of SELECT is always 31. To test this patch you should have technical skills to know what to do. Note that USER_INFO was an array of... 1 element. Now it's a hashref. Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 10 ++--- C4/Members.pm | 10 ----- admin/aqbudgets.pl | 4 +- admin/aqplan.pl | 6 +-- catalogue/detail.pl | 2 +- circ/circulation.pl | 2 +- circ/returns.pl | 8 ++-- circ/transferstoreceive.pl | 2 +- circ/waitingreserves.pl | 2 +- .../prog/en/includes/cateditor-ui.inc | 10 ++--- .../prog/en/modules/cataloguing/addbiblio.tt | 2 +- .../prog/en/modules/cataloguing/addbooks.tt | 2 +- .../opac-tmpl/bootstrap/en/includes/masthead.inc | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-account.tt | 2 +- .../bootstrap/en/modules/opac-downloadshelf.tt | 2 +- .../bootstrap/en/modules/opac-messaging.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 6 +-- .../bootstrap/en/modules/opac-shareshelf.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 2 +- .../bootstrap/en/modules/opac-suggestions.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 39 +++++++++----------- offline_circ/list.pl | 2 +- opac/opac-account.pl | 8 +--- opac/opac-ics.pl | 3 -- opac/opac-messaging.pl | 6 +-- opac/opac-passwd.pl | 3 +- opac/opac-privacy.pl | 3 +- opac/opac-user.pl | 6 +-- 28 files changed, 61 insertions(+), 89 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 13:47:09 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 12:47:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-85-g9b9fb3e Message-ID: 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 9b9fb3ee0555cd51007af669f753f0a0e5ec661e (commit) via 99a1d7f18a43a089d49d36b167cc1537fa058f79 (commit) via 2d0d71730163fbd13583532de622574737e34221 (commit) via 2aa6518c8a000a824e2659eaffc3d1ac54156544 (commit) via 0d2e83bca5b91376e9262b6cb0b993f09b919018 (commit) from 010a32d95f871853f5c597b2670f3de4c62cfa51 (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 9b9fb3ee0555cd51007af669f753f0a0e5ec661e Author: Jonathan Druart Date: Wed Dec 2 11:38:27 2015 +0000 Bug 14636: Remove debug message Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 99a1d7f18a43a089d49d36b167cc1537fa058f79 Author: Katrin Fischer Date: Wed Nov 25 18:00:33 2015 +0100 Bug 14636: Follow-up - fix typo in system preference name The preference is named "marcflavour" not "marcflavor". Without this change, search will always use "copyrightyear" and break search by publication date for UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 2d0d71730163fbd13583532de622574737e34221 Author: Fridolin Somers Date: Wed Nov 25 17:06:01 2015 +0100 Bug 14636: Item search - biblioitems column is publicationyear not publicationdate Signed-off-by: Katrin Fischer Thx for the follow-up! Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 2aa6518c8a000a824e2659eaffc3d1ac54156544 Author: Katrin Fischer Date: Sat Nov 21 22:37:03 2015 +0100 Bug 14636: Item search - improving display - Changes "Publication Date" to "Publication date" in the CSV export - Fixes 'no JavaScript fallback' display to match the normal display - only show 'by' when it's UNIMARC and an author exist - show copyrightdate if publicationyear is empty To test: - Turn of Javascript in your browser before you item search. This will activate the alternative display. - For MARC21: - Verify that the author displays when existing and no 'by' is shown. - Verify that the publication date is now shown. - For UNIMARC: - Verify that 'by' only displays when there is an author to display. - Verify that the publication date is still shown. - Try the CSV export. - Verify that the CSV header now reads 'Publication date'. Signed-off-by: Owen Leonard Successfully tested non-JS behavior and CSV export. DID NOT test UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 0d2e83bca5b91376e9262b6cb0b993f09b919018 Author: Katrin Fischer Date: Sat Nov 21 22:32:52 2015 +0100 Bug 14636: Item search - fix search and sort by publication date for MARC21 Problem: MARC21/NORMARC stores the publication date in biblio.copyrightdate, but UNIMARC uses biblioitems.publicationyear. To test: - Without patch in a MARC21 installation: - Search by publication date - Verify that the results don't match the publication year you searched for. - Try sorting the table by publication year. - Verify that the sort doesn't work. - Apply patch. - Repeat both, search and sort. - Verify both work correctly now. - Repeat tests on a UNIMARC installation. - Verify both still work. Signed-off-by: Owen Leonard Tested searching and sorting successfully in a MARC21 installation. DID NOT test in UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: catalogue/itemsearch.pl | 9 ++++++++- .../prog/en/includes/catalogue/itemsearch_item.inc | 5 +++-- .../prog/en/includes/csv_headers/catalogue/itemsearch.tt | 2 +- .../intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt | 4 ++-- 4 files changed, 14 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 13:59:39 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 12:59:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-86-gdcc1078 Message-ID: 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 dcc10787cce9b6c3c1af5277fac73b248c949360 (commit) from 9b9fb3ee0555cd51007af669f753f0a0e5ec661e (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 dcc10787cce9b6c3c1af5277fac73b248c949360 Author: Owen Leonard Date: Fri Dec 4 11:27:20 2015 -0500 Bug 15309 - Use Bootstrap modal for cataloging search MARC and Card preview In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the cataloging search results page so that "MARC" and "Card" previews are displayed in Bootstrap modals. To test: 1. Apply the patch and navigate to Cataloging. 2. Perform a search which will return results from the catalog. 3. Test the "MARC" and "Card" links for multiple results and confirm that the correct data is shown each time. 4. Perform a search which will return results from the reservoir. 5. Test the corresonding "MARC" and "Card" links for those results. Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/cataloguing/addbooks.tt | 33 ++++++++++++++++++-- 1 file changed, 30 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 14:05:42 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 13:05:42 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-88-gf0da781 Message-ID: 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 f0da781368a187337236d64ee94d9c8cc65f90f7 (commit) via a4f5564c855e31f6872fb5e3ef378381473f837c (commit) from dcc10787cce9b6c3c1af5277fac73b248c949360 (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 f0da781368a187337236d64ee94d9c8cc65f90f7 Author: Fridolin Somers Date: Wed Nov 25 14:02:05 2015 +0100 Bug 15252 - Add tests Tested 4 patches together, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit a4f5564c855e31f6872fb5e3ef378381473f837c Author: Fridolin Somers Date: Wed Nov 25 12:34:18 2015 +0100 Bug 15252 - Patron search on start with does not work with several terms When searching a patron, search type can be 'start with' and 'contain'. If the search text contains a space (or a coma), this text is splitted into several terms. Actually, the search on 'start with' with several terms never returns a result. It is because the search composes an "AND" SQL query on terms. For example (I display only the surname part) : search type = contain : 'jean paul' => surname like '%jean% AND %paul%' search type = start with : 'jean paul' => surname like 'jean% AND paul%' The query for 'start with' is impossible. I propose, for search with start with, to not split terms : jean paul => surname like 'jean paul%' One can always use '*' to add more truncation : jea* pau* => surname like 'jea% pau%' This bug affects a lot surnames with several terms like 'LE GUELEC' or 'MAC BETH'. Note that the patch moves : $searchmember =~ s/,/ /g; It removes the test "if $searchmember" because $searchmember is tested and set to empty string previously : unless ( $searchmember ) { $searchmember = $dt_params->{sSearch} // ''; } Test plan : ========== - Create two patrons with firstname "Jean Paul" - Go to Patrons module - Choose "Starts with" in "Search type" filter - Perform a search on "Jean Paul" => without patch : you get no result => with this patch : you get the two results - Check you get the two results for search on "Jean Pau" - Check you get the two results for search on "Jea* Pau*" - Check you do not get results for search on "Jea Paul" - Choose "Contains" in "Search type" filter - Check you get the two results for search on "Jean Paul" - Check you get the two results for search on "Jean Pau" - Check you get the two results for search on "Jea* Pau*" - Check you get the two results for search on "Jea Paul" - Check you get the two results for search on "Paul Jean" Signed-off-by: Alex Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Bug 15252 - Patron search on start with does not work with several terms - followup 1 'start_with' is the default value of $searchtype, it can be explicit. Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Bug 15252 - correct UT searchtype value is contain and not contains Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Utils/DataTables/Members.pm | 30 ++++++++---- t/DataTables/Members.t | 2 +- t/db_dependent/Utils/Datatables_Members.t | 76 +++++++++++++++++++++++++---- 3 files changed, 89 insertions(+), 19 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 14:59:04 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 13:59:04 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-89-g976d715 Message-ID: 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 976d715ac52a3c54cbc397d22127e773f977e0db (commit) from f0da781368a187337236d64ee94d9c8cc65f90f7 (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 976d715ac52a3c54cbc397d22127e773f977e0db Author: Marc V?ron Date: Wed Dec 16 16:00:15 2015 +0100 Bug 15386: Checkout / patron pages: Hide menu items leading to 404 pages Some of the menu items on patron / Checkout related pages lead to a 404 page depending on the permissions. This patch hides them as appropriate. To test: - For a staff member A, set permission 'borrowers' only (+ 'catalogue') - Log in as A - Search a patron and display details - Verify that none of the menu items at the left lead to the 404 page - For a staff member B, set permission 'circulate_remaining_permission' only (+ catalogue) - Log in as B - Go to Circulation > Checkout, search a patron - Click menu items at the left, some of them lead to the 404 page - Verify that none of the menu items at the left lead to the 404 page - Do the same for a staff member C with both permissions set - Verify that menu items appear as expected Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Amended patch: I have remove the double if CAN_user_circulate_circulate_remaining_permissions statement (and group block into one). And also remove unecessary change ('IF a IF b' instead of existing 'IF a && b') Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/circ-menu.inc | 30 +++++++++++++------- 1 file changed, 19 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 15:04:33 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 14:04:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-91-gfd07e32 Message-ID: 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 fd07e3296b64a78edf1cf947a824147f1adbba1a (commit) via 002a2dcb1f1faed12a24fd820dc5fdaad60f3512 (commit) from 976d715ac52a3c54cbc397d22127e773f977e0db (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 fd07e3296b64a78edf1cf947a824147f1adbba1a Author: Fr?d?ric Demians Date: Wed Dec 30 13:10:16 2015 +0100 Bug 15429 UT for _parseletter modifying its parameter Before/after applying the related patch, do: prove -v t/db_dependent/Letters.t Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 002a2dcb1f1faed12a24fd820dc5fdaad60f3512 Author: Marc V?ron Date: Mon Dec 28 10:29:17 2015 +0100 Bug 15429 - sub _parseletter should not change referenced values In C4/Letters.pm, sub _parseletter changes values that are passed by reference. E.g. patron's expiry date can change from iso format to syspref format, leading to strange behaviour in the calling routines (see Bug 15423). This patch makes sub _parseletter work on a copy of the referenced values. (Submitted to get feedback - is this the way to go?) Signed-off-by: Fr?d?ric Demians Good solution to real time bomb. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Letters.pm | 8 ++++++-- t/db_dependent/Letters.t | 9 ++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 15:07:04 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 14:07:04 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-92-g0cc3798 Message-ID: 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 0cc3798a6fe327eeebc9cf11be858748c40fc396 (commit) from fd07e3296b64a78edf1cf947a824147f1adbba1a (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 0cc3798a6fe327eeebc9cf11be858748c40fc396 Author: Kyle M Hall Date: Wed Dec 30 14:08:37 2015 +0000 Bug 11747 - Update Koha.pm to DBrev 3.23.00.002 ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 15:33:56 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 14:33:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-93-g3d7bb76 Message-ID: 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 3d7bb7647dd42f9c05e8b4c35ec32cd15ec4dcc4 (commit) from 0cc3798a6fe327eeebc9cf11be858748c40fc396 (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 3d7bb7647dd42f9c05e8b4c35ec32cd15ec4dcc4 Author: Nicholas van Oudtshoorn Date: Tue Dec 22 11:44:13 2015 +0800 Bug 15405 - XML paths to zebra libraries is wrong for 64-bit installs on non-Debian linux Adjusts the modulePath to search in the well-known location for 64 bit systems. Required for at least Fedora. Test plan: Without this patch, doing a zebra reindex on a fedora-based install will cause errors like this: 15:10:47-01/05 zebraidx(16108) [warn] No such record type: dom./etc/koha/zebradb/biblios/etc/dom-config.xml With this patch, reindexing should just work. Signed-off-by: Chris Cormack I have tested this doesn't break on debian/ubuntu systems, someone with a non debian system will need to test it on that Signed-off-by: Bob Ewart bob-ewart at bobsown.com It works on openSUSE Leap 42.1 Signed-off-by: Marcel de Rooy Just noting that the debian zebra files already contain much more paths here. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: etc/zebradb/zebra-authorities-dom.cfg | 2 +- etc/zebradb/zebra-authorities.cfg | 2 +- etc/zebradb/zebra-biblios-dom.cfg | 2 +- etc/zebradb/zebra-biblios.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 15:40:45 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 14:40:45 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-94-g23c7de2b Message-ID: 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 23c7de2bc7af7d2d8bf725e536f665bf78116065 (commit) from 3d7bb7647dd42f9c05e8b4c35ec32cd15ec4dcc4 (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 23c7de2bc7af7d2d8bf725e536f665bf78116065 Author: Owen Leonard Date: Fri Dec 4 20:37:47 2015 -0500 Bug 15327: Minor tweaks to Bootstrap modal handling on Staged MARC management page This patch makes a couple of minor corrections to the template for staged MARC management. The MARC preview is now formatted using the "html" option, and some obsolete Greybox-related code has been removed. To test: 1. Apply the patch and go to Tools -> Staged MARC management. 2. Click any staged MARC file containing multiple records. 3. Click the title in the "Citation" column and confirm that a Bootstrap modal is triggered showing the correct data. Signed-off-by: Hector Castro Modal looks much better. Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 15:48:09 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 14:48:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-96-g67aeb17 Message-ID: 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 67aeb17bfbeb52d8d07577e2ffe24a97480cd883 (commit) via 4a0deff5291e019664783eace143469e26ae66dc (commit) from 23c7de2bc7af7d2d8bf725e536f665bf78116065 (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 67aeb17bfbeb52d8d07577e2ffe24a97480cd883 Author: Jonathan Druart Date: Tue Dec 8 10:15:44 2015 +0000 Bug 15319: Move marcPreview modal div to avoid duplication Signed-off-by: Jonathan Druart Signed-off-by: Owen Leonard Good catch Jonathan, thank you. Signed-off-by: Kyle M Hall commit 4a0deff5291e019664783eace143469e26ae66dc Author: Owen Leonard Date: Fri Dec 4 21:21:37 2015 -0500 Bug 15319 - Use Bootstrap modal for MARC preview when performing batch record modifications In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the batch record modification page so that the "Preview MARC" link triggers a preview in a Bootstrap modal. To test: 1. Apply the patch and navigate to Tools -> Batch record modification. 2. Submit multiple biblionumbers for batch modification. 3. In the results list, click the "Preview MARC" link for multiple results and confirm that the correct data is shown each time. 4. Use the "Modify record using the following template" menu to change the modification template. 5. Confirm that the "Preview MARC" links still work and show data correctly modified by your newly chosen template. 6. Repeat steps 2-5 with authority record numbers. Signed-off-by: Fr?d?ric Demians Works as described. No regression. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../en/modules/tools/batch_record_modification.tt | 35 +++++++++++++++----- 1 file changed, 27 insertions(+), 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 15:55:24 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 14:55:24 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-99-ga1c4b8b Message-ID: 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 a1c4b8b293d80fab7473168f2d3adbe65b4abcaf (commit) via 77ddc257e65332d67800df29aab7f976b248f087 (commit) via 3706997188c778befbdb0741ae48e5c1a719c19b (commit) from 67aeb17bfbeb52d8d07577e2ffe24a97480cd883 (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 a1c4b8b293d80fab7473168f2d3adbe65b4abcaf Author: Kyle M Hall Date: Wed Dec 30 14:56:28 2015 +0000 Bug 8085 - DBrev 3.23.00.003 Signed-off-by: Kyle M Hall commit 77ddc257e65332d67800df29aab7f976b248f087 Author: Katrin Fischer Date: Thu Dec 3 14:02:17 2015 +0100 Bug 8085: Follow-up: Update to 'Hold Slip' for existing installations Title and description are updated separately, in case that the library has changed one of them when editing the slip. To test: - Verify that you have a letter named 'Reserve Slip' in your database - Run the database update - Verify the slip has been renamed correctly Signed-off-by: Fr?d?ric Demians Job done on a Koha English version. It won't hurt other langages Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 3706997188c778befbdb0741ae48e5c1a719c19b Author: Katrin Fischer Date: Sun Nov 22 01:32:26 2015 +0100 Bug 8085: Rename 'Reserve slip' to 'Hold slip' This patch changes all occurrences of 'Reserve slip' to 'Hold slip' in the sample notices files and in one of the system preferences. To test: - Make sure the sample_notices.sql are correctly changed. - Verify the description of the SlipCSS system preference has been changed correctly. Checked the working in system preferences and re-loaded notices from the updated English sample notices SQL. Changes look correct. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/en/mandatory/sample_notices.sql | 2 +- installer/data/mysql/es-ES/mandatory/sample_notices.sql | 2 +- installer/data/mysql/it-IT/necessari/notices.sql | 2 +- installer/data/mysql/pl-PL/mandatory/sample_notices.sql | 2 +- installer/data/mysql/ru-RU/mandatory/sample_notices.sql | 2 +- installer/data/mysql/uk-UA/mandatory/sample_notices.sql | 2 +- installer/data/mysql/updatedatabase.pl | 13 +++++++++++++ .../prog/en/modules/admin/preferences/staff_client.pref | 2 +- 9 files changed, 21 insertions(+), 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:05:46 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:05:46 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-100-gc733979 Message-ID: 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 c7339799ff994fffdb9273bd71951f8c2d60d1ec (commit) from a1c4b8b293d80fab7473168f2d3adbe65b4abcaf (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 c7339799ff994fffdb9273bd71951f8c2d60d1ec Author: Kyle M Hall Date: Wed Dec 30 14:26:35 2015 +0000 Bug 15442 - Checkouts table will not display due to javascript error Uncaught ReferenceError: AllowCirculate is not defined Test Plan: 1) Go to circulation.pl for a patron, note the checkouts table does not load 2) Apply this patch 3) Reload the page, checkouts table should show Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:14:08 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:14:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-101-g9454743 Message-ID: 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 94547432f400802ae77eb429cc0d1e2438a82e58 (commit) from c7339799ff994fffdb9273bd71951f8c2d60d1ec (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 94547432f400802ae77eb429cc0d1e2438a82e58 Author: Owen Leonard Date: Sat Dec 5 08:44:02 2015 -0500 Bug 15318 - Use Bootstrap modal for MARC and Card preview when ordering an external source In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the page in Acquisitions for ordering from an external source so that the "MARC" and "Card" previews display in Bootstrap modals. This patch also fixes a bug where the in-table popup menu points to the wrong record (fixed in Cataloging by Bug 6367). To test: 1. Apply the patch and navigate to Acquisitions. 2. Locate an exsiting basket or create a new one. 3. Add to the basket using the option to order from an external source.. 4. Perform a search which will return multiple results. 5. Test the "MARC" and "Card" links for multiple results and confirm that the correct data is shown each time. 6. Click anywhere in the results table to show the hidden menu and test the "MARC" and "Card" links it displays, confirming that the data looks correct and corresponds correctly to the title you selected. Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/acqui/z3950_search.tt | 43 ++++++++++++++++---- 1 file changed, 34 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:19:22 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:19:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-102-gc0e6b9b Message-ID: 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 c0e6b9b14a63cb5a035cf91fca8fd38035092390 (commit) from 94547432f400802ae77eb429cc0d1e2438a82e58 (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 c0e6b9b14a63cb5a035cf91fca8fd38035092390 Author: Owen Leonard Date: Sat Dec 5 08:53:26 2015 -0500 Bug 15320 - Use Bootstrap modal for MARC preview when ordering from an existing record In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the page in Acquisitions for ordering from an existing record so that the "View MARC" preview is displayed in Bootstrap modals. To test: 1. Apply the patch and navigate to Acquisitions. 2. Locate an exsiting basket or create a new one. 3. Add to the basket using the option to search for an existing record. 4. Perform any search which will return results. 5. Test the "View MARC" link for multiple results and confirm that the correct data is shown each time. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/acqui/neworderbiblio.tt | 27 ++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:27:41 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:27:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-103-gb6cf96d Message-ID: 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 b6cf96dbfe0491ec490eeb79c448369002063092 (commit) from c0e6b9b14a63cb5a035cf91fca8fd38035092390 (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 b6cf96dbfe0491ec490eeb79c448369002063092 Author: Owen Leonard Date: Sat Dec 5 14:33:59 2015 -0500 Bug 15316 - Use Bootstrap modal for authority Z39.50 search results preview In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the authorities Z39.50 search results page so that MARC previews are displayed in Bootstrap modals. This patch also modifies the authorities toolbar include file to make the Z39.50 search popup size match that in cataloging. Because the modal is triggered from a pop-up window, the modal has been reformated to exclude the footer and reduce the size of the modal header. To test: 1. Apply the patch and navigate to Authorities. 2. Click the "New from Z39.50" button to open the search window. 3. Perform any search which will return multiple results. 4. Test the visible "MARC" link for multiple results and confirm that the correct data is shown each time. 5. Click anywhere in the results table to show the hidden menu and test the "MARC" link it displays. Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/authorities-toolbar.inc | 4 +-- .../en/modules/cataloguing/z3950_auth_search.tt | 29 +++++++++++++++++--- 2 files changed, 27 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:32:34 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:32:34 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-104-g60960b8 Message-ID: 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 60960b85fdd07878e760435e1832726985851955 (commit) from b6cf96dbfe0491ec490eeb79c448369002063092 (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 60960b85fdd07878e760435e1832726985851955 Author: Owen Leonard Date: Sat Dec 5 12:38:52 2015 -0500 Bug 15317 - Use Bootstrap modal for MARC and Card preview when ordering from staged files In order to reduce the number of dependencies for common interactions we should attempt to use Bootstrap modals in place of Greybox ones. This patch modifies the page in Acquisitions for ordering from a staged file so that the "MARC" and "Card" previews display in Bootstrap modals. To test: 1. Apply the patch and navigate to Acquisitions. 2. Locate an exsiting basket or create a new one. 3. Add to the basket using the option to order from a staged file. 4. Click "Add orders" from any staged file. 5. Test the "MARC" and "Card" links for multiple results and confirm that the correct data is shown each time. Followed test plan, works as expected Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/acqui/addorderiso2709.tt | 28 ++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:34:20 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:34:20 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.07.1-5-g13239b1 Message-ID: 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.20.x has been updated via 13239b15a56822beef510feb7cd08bba8e51265d (commit) from 77589b549c1b355cbf0fe0748fbaef76c8ec684f (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 13239b15a56822beef510feb7cd08bba8e51265d Author: Julian Maurice Date: Tue Sep 1 09:46:35 2015 +0200 Bug 14363: OAI-PMH: Handle records without marcxml Test plan: 1/ git checkout 3.18.x 2/ GET http://OPAC/cgi-bin/koha/oai.pl?verb=ListRecords&metadataPrefix=marcxml 3/ Take the first biblionumber from the results ($biblionumber) 4/ mysql> update biblioitems set marcxml=null where biblionumber=$biblionumber 5/ Repeat step 2 => XML error 6/ Apply patch 7/ Repeat step 2 => no errors Signed-off-by: Fr?d?ric Demians Works on 3.20.x Signed-off-by: Jonathan Druart Fix works for 3.18.x and 3.20.x 3.22 is not impacted Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: opac/oai.pl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:38:28 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:38:28 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-105-gd827bb5 Message-ID: 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 d827bb50d93a83c0ab7ce326675284bee411959a (commit) from 60960b85fdd07878e760435e1832726985851955 (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 d827bb50d93a83c0ab7ce326675284bee411959a Author: Mark Tompsett Date: Tue Dec 15 10:15:25 2015 -0500 Bug 15382: 245$a visibility constraints not respected in opac-MARCdetail.pl This tiny change determines if the bibliotitle should be set or not in accordance with the 'Advanced constraints' visiblity setting for OPAC. TEST PLAN --------- 1) Find a record detail in OPAC 2) Click 'MARC view' -- 245$a should be visible. 3) In a new tab, log into the staff client 4) Click 'Koha administration' 5) Click 'MARC bibliographic framework' 6) Click 'MARC structure' for the framework of the record displayed in OPAC. 7) Search for tag: 245, and click 'Search' 8) Click 'Subfields' 9) Click 'Edit' beside the a subfield. 10) Click 'Advanced constraints' 11) Uncheck 'OPAC' 12) Click 'Save changes' 13) In the OPAC tab, refresh -- 245$a (Title) will still be visible! 14) Apply this patch 15) In the OPAC tab, refresh -- 245$a (Title) will be hidden. 16) In the staff client, navigate back to 'Advanced constraints' and check 'OPAC' 17) Click 'Save changes' 18) In the OPAC tab, refresh -- 245$a (Title) will be visible again. 19) Run koha qa tools Signed-off-by: Aleisha Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: opac/opac-MARCdetail.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:53:10 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:53:10 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-1-g4d3ba8c Message-ID: 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.22.x has been updated via 4d3ba8c178bcc3c627fa186bcdaa642512252826 (commit) from cbf245a9624ba3dd7c89d84e0dee64f269e0d49b (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 4d3ba8c178bcc3c627fa186bcdaa642512252826 Author: Nicole C. Engard Date: Mon Aug 3 09:17:21 2015 -0500 Bug 14638: Update Serials Help The serials help file was out of date for 3.18+ To test: * apply patch * Go to serials > new subscription * Click help * Confirm help correct Signed-off-by: Aleisha Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 3f6a1d47fd9a72792ce334d1fdce05fa53e7c1a2) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../en/modules/help/serials/subscription-add.tt | 57 +++++++++++++------- 1 file changed, 38 insertions(+), 19 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:56:40 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:56:40 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-2-g3951a8f Message-ID: 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.22.x has been updated via 3951a8fffd4d9b6ecb22a8382878c79225e6d2ca (commit) from 4d3ba8c178bcc3c627fa186bcdaa642512252826 (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 3951a8fffd4d9b6ecb22a8382878c79225e6d2ca Author: Marc V?ron Date: Wed Dec 9 18:36:21 2015 +0100 Bug 15345: Translatability: fix issue in facets (Availability') This patch fixes an issue with a splitted sentence in facets (Avalability) that leads to weird translations e.g.: German: 'Zeige nur Verf?gbar Exemplare' French: 'Montrer seulement disponible exemplaires' Additionally, the link "Show all items" gets it's own li tags to display nicely like the other links in the facets column and it removes superfluous dots. To test in OPAC and Staff client: - Apply patch - Do a search that results in more than one available items - In column "Refine your search", click on "Limit to currently available items" - Verify that the message "Showing only available items" and the link "Show all items" display nicely. Signed-off-by: Hector Castro use_zebra_facets set to 0 in koha-conf.xml to test. Works as described Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit 5e80a64ea39140c9918335fc472a441bb3fa9c6a) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:57:47 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:57:47 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-3-gec2e2f6 Message-ID: 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.22.x has been updated via ec2e2f6d0b9d4b376b59d24e7895ad767d8fff97 (commit) from 3951a8fffd4d9b6ecb22a8382878c79225e6d2ca (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 ec2e2f6d0b9d4b376b59d24e7895ad767d8fff97 Author: Marc V?ron Date: Wed Dec 9 21:31:29 2015 +0100 Bug 15346: Translatability: fix sentence splitting issue in memberentrygen.tt Fix sentences in memberentrygen.tt that are split by tags, leading to wrong capitalization in German (because it can not be decided if a string is part of a sentence or a standalone sentence). Example: Es sind Keine Bibliotheken definiert. To test: - Apply patch - To trigger the messages, you have to edit a patron in a system where no libraries and no patron categories are defined - Alternatively, carefully review the changes in koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt Signed-off-by: Hector Castro Sentences fixed for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 698fb010f55c0d68789299003f4ac55326142f72) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 16:59:56 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 15:59:56 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-4-g3e1c6e5 Message-ID: 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.22.x has been updated via 3e1c6e5cf9281262cd8914024282a49e0c08a9d0 (commit) from ec2e2f6d0b9d4b376b59d24e7895ad767d8fff97 (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 3e1c6e5cf9281262cd8914024282a49e0c08a9d0 Author: Marc V?ron Date: Sun Dec 13 10:08:41 2015 +0100 Bug 15361: Translatability: Fix issue on Administration Columns settings This patch rewords the following sentence that is not correctly translatable due to splitting b tags: Changes made below will only apply to item subfields that are mapped to the items table. To test: - Apply patch - Verify that the rewording makes sese and that no sentences are split by tags. Signed-off-by: Hector Castro Rewording message displayed Ok for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 4983d5c4b9786479f849494efd3048f65ba26008) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:01:18 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:01:18 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-5-g40724de Message-ID: 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.22.x has been updated via 40724deeb8ebd36e9be5253f47d16396230191e4 (commit) from 3e1c6e5cf9281262cd8914024282a49e0c08a9d0 (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 40724deeb8ebd36e9be5253f47d16396230191e4 Author: Marc V?ron Date: Sun Dec 13 10:47:53 2015 +0100 Bug 15362: Translatability: Fix issue on Administration 'Did you mean?' Fix sentence splitting by tags on didyoumean.tt leading to odd translations. To test: - Apply patch - Go to Home > Administration > Did you mean? - Verify that the information below the title displays properly and makes sense. - Disable Javascript, reload page - Verify that the warning about missing Javascript displays properly and makes sense. Signed-off-by: Hector Castro Works as descrived. Removed em tags for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 984f641417e20ab561b2670b5ed921dc4aa6a907) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/didyoumean.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:02:53 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:02:53 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-6-g88d1dfc Message-ID: 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.22.x has been updated via 88d1dfcfffcb66ffde3b4ecdebc9b9e5876bc076 (commit) from 40724deeb8ebd36e9be5253f47d16396230191e4 (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 88d1dfcfffcb66ffde3b4ecdebc9b9e5876bc076 Author: Marc V?ron Date: Sun Dec 13 11:58:52 2015 +0100 Bug 15363: Translatability: Fix issue with ambiguous 'all' on Administration > Set library checkin and transfer policy In branch_transfer_limits.tt, set ambiguous word 'all' (separated by tags) into a translatable context. To test: Apply patch - Go to Home > Administration > Set library checkin and transfer policy - Verify that the word 'all' is no longer separated by tags in "For all collection codes: " rsp. "For all item types: " (Switch with syspref 'BranchTransfersLimitsType') Signed-off-by: Hector Castro Works well for translation purpose Bug 15363: (followup) Move tags inside if statements Followup for comment #3 Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 27363271be4b4cc308572dcf04049edf33fa1a7c) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:03:03 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:03:03 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-112-gba0621e Message-ID: 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 ba0621e2df3207832b23608fa30a2be347b35f3c (commit) via bc31dc85f9d75b03e25eee3d88a04d7e0de00ef7 (commit) via e83ff6d633e4419d6f5453d5fd75d21ec0b28502 (commit) via 50a73a85536bf0a3a7958f66c43367983f502698 (commit) via 011cc84ebff482dd00ec7af795b1dc99d236df10 (commit) via 58efe81544efc6a4d3b822b9b3e8685c4871fdcd (commit) via 826326064ee0530428944e51eb778a44e29bbcd0 (commit) from d827bb50d93a83c0ab7ce326675284bee411959a (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 ba0621e2df3207832b23608fa30a2be347b35f3c Author: Kyle M Hall Date: Wed Dec 30 16:01:23 2015 +0000 Bug 9819 - DBrev 3.23.00.004 Signed-off-by: Kyle M Hall commit bc31dc85f9d75b03e25eee3d88a04d7e0de00ef7 Author: Kyle M Hall Date: Wed Dec 30 15:54:56 2015 +0000 Bug 9819 [QA Followup] - Removed missed stopwords refs, remove Schema file Signed-off-by: Kyle M Hall commit e83ff6d633e4419d6f5453d5fd75d21ec0b28502 Author: Jonathan Druart Date: Tue Dec 15 10:07:39 2015 +0000 Bug 9819: Make the tests pass Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall commit 50a73a85536bf0a3a7958f66c43367983f502698 Author: Tomas Cohen Arazi Date: Mon Apr 22 09:10:13 2013 -0300 Bug 9819 - QA Followup: Stopwords vestiges in es-ES removed Gotcha. To+ Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall commit 011cc84ebff482dd00ec7af795b1dc99d236df10 Author: Tomas Cohen Arazi Date: Wed Apr 10 11:13:10 2013 -0300 Bug 9819 - Make updatedatabase.pl remove the 'stopwords' table To test: - Apply the patch - Will be prompted to run the updater - The 'stopwords' database should be removed ( test on a mysql prompt with > SHOW TABLES LIKE 'stopwords'; and should get no results) Sponsored-by: Universidad Nacional de C?rdoba Signed-off-by: Kyle M Hall Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall commit 58efe81544efc6a4d3b822b9b3e8685c4871fdcd Author: Tomas Cohen Arazi Date: Wed Apr 10 11:06:45 2013 -0300 Bug 9819 - Remove 'stopwords' table from kohastructure.sql Just that. To test: - Apply the patch - Do a fresh install - The database structure should be created flawlessly - There should not be a 'stopwords' table created Sponsored-by: Universidad Nacional de C?rdoba Signed-off-by: Kyle M Hall Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall commit 826326064ee0530428944e51eb778a44e29bbcd0 Author: Tomas Cohen Arazi Date: Wed Apr 10 10:52:54 2013 -0300 Bug 9819 - 'stopwords'-related code removed This patch removes code related to stopwords usage. The following methods are removed: C4::Search->remove_stopwords C4::Context->stopwords C4::Context->_new_stopwords And the buildQuery API was changed (removed the \@removed_stopwords return value). A follow-up is provided for database changes, to make rebasing easier. To test: - Apply this patch - Do some searches in both intranet and opac interfaces - Nothing should break Sponsored-by: Universidad Nacional de C?rdoba Signed-off-by: Kyle M Hall Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Context.pm | 46 ----- C4/Search.pm | 65 ++----- INSTALL.fedora7 | 1 - Koha.pm | 2 +- Koha/Schema/Result/Stopword.pm | 45 ----- acqui/neworderbiblio.pl | 4 +- admin/stopwords.pl | 96 ---------- catalogue/search.pl | 5 +- cataloguing/addbooks.pl | 4 +- installer/data/mysql/de-DE/mandatory/stopwords.sql | 99 ---------- installer/data/mysql/de-DE/mandatory/stopwords.txt | 1 - installer/data/mysql/en/mandatory/stopwords.sql | 99 ---------- installer/data/mysql/en/mandatory/stopwords.txt | 1 - installer/data/mysql/es-ES/mandatory/stopwords.sql | 99 ---------- installer/data/mysql/es-ES/mandatory/stopwords.txt | 1 - .../data/mysql/fr-FR/1-Obligatoire/stopwords.sql | 71 ------- .../data/mysql/fr-FR/1-Obligatoire/stopwords.txt | 1 - installer/data/mysql/it-IT/necessari/stopwords.sql | 194 -------------------- installer/data/mysql/it-IT/necessari/stopwords.txt | 1 - installer/data/mysql/kohastructure.sql | 9 - .../data/mysql/nb-NO/1-Obligatorisk/stopwords.sql | 26 --- .../data/mysql/nb-NO/1-Obligatorisk/stopwords.txt | 1 - installer/data/mysql/pl-PL/mandatory/stopwords.sql | 99 ---------- installer/data/mysql/pl-PL/mandatory/stopwords.txt | 1 - installer/data/mysql/ru-RU/mandatory/stopwords.sql | 21 --- installer/data/mysql/ru-RU/mandatory/stopwords.txt | 1 - installer/data/mysql/uk-UA/mandatory/stopwords.sql | 29 --- installer/data/mysql/updatedatabase.pl | 9 + .../prog/en/includes/prefs-admin-search.inc | 3 +- .../prog/en/includes/stopwords-admin-search.inc | 28 --- .../prog/en/modules/admin/stopwords.tt | 146 --------------- .../prog/en/modules/catalogue/results.tt | 1 - misc/batchRebuildBiblioTables.pl | 2 +- opac/opac-search.pl | 5 +- t/db_dependent/Search.t | 101 +++++----- test/search.pl | 4 - 36 files changed, 74 insertions(+), 1247 deletions(-) delete mode 100644 Koha/Schema/Result/Stopword.pm delete mode 100755 admin/stopwords.pl delete mode 100644 installer/data/mysql/de-DE/mandatory/stopwords.sql delete mode 100644 installer/data/mysql/de-DE/mandatory/stopwords.txt delete mode 100644 installer/data/mysql/en/mandatory/stopwords.sql delete mode 100644 installer/data/mysql/en/mandatory/stopwords.txt delete mode 100644 installer/data/mysql/es-ES/mandatory/stopwords.sql delete mode 100644 installer/data/mysql/es-ES/mandatory/stopwords.txt delete mode 100644 installer/data/mysql/fr-FR/1-Obligatoire/stopwords.sql delete mode 100644 installer/data/mysql/fr-FR/1-Obligatoire/stopwords.txt delete mode 100644 installer/data/mysql/it-IT/necessari/stopwords.sql delete mode 100644 installer/data/mysql/it-IT/necessari/stopwords.txt delete mode 100644 installer/data/mysql/nb-NO/1-Obligatorisk/stopwords.sql delete mode 100644 installer/data/mysql/nb-NO/1-Obligatorisk/stopwords.txt delete mode 100644 installer/data/mysql/pl-PL/mandatory/stopwords.sql delete mode 100644 installer/data/mysql/pl-PL/mandatory/stopwords.txt delete mode 100644 installer/data/mysql/ru-RU/mandatory/stopwords.sql delete mode 100644 installer/data/mysql/ru-RU/mandatory/stopwords.txt delete mode 100644 installer/data/mysql/uk-UA/mandatory/stopwords.sql delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/stopwords-admin-search.inc delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/admin/stopwords.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:03:43 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:03:43 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-7-g0eff941 Message-ID: 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.22.x has been updated via 0eff941b1b28ae1db1a2e11345a6d7cfb9616c3f (commit) from 88d1dfcfffcb66ffde3b4ecdebc9b9e5876bc076 (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 0eff941b1b28ae1db1a2e11345a6d7cfb9616c3f Author: Marc V?ron Date: Sun Dec 13 20:34:46 2015 +0100 Bug 15365: Translatability: Fix issue on Administration > Circulation and fine rules Fix translatability issue on smart-rules.tt to prevent odd translations (Sentences splitted by tags and newlines). To test: - Apply patch - Go to Administration > Circulation and fine rules - Verify that the lines "Note: " and "Important: " below "Default holds policy by item type" make sense and are not splitted by tags and (in html) by newlines. (Amended to fix commit message) Signed-off-by: Hector Castro strong Note and Important displayed Ok for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit bc2e4ba86208e26d9890868d6deb5c65c263e907) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:04:29 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:04:29 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-8-gc7028a0 Message-ID: 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.22.x has been updated via c7028a02b5158591665a35421b4a80f54f5324f3 (commit) from 0eff941b1b28ae1db1a2e11345a6d7cfb9616c3f (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 c7028a02b5158591665a35421b4a80f54f5324f3 Author: Marc V?ron Date: Sun Dec 13 22:39:53 2015 +0100 Bug 15366 - Fix breadcrumbs and html page title in guided reports This patch fixes following issues with breadcrumbs and html page title in Home > Reports > Guided reports wizard: - Sometimes, breadcrumbs display a stray > at the end - While creating a report, steps are not displayed in breadcrumbs and do not appear in html page title - html page title is divided by newlines To test: - Apply patch - Go to Home > Reports > Guided reports wizard - Go to all pages including the steps for creating a new report and verify - that the breadcrumbs display properly and make sense - in html source, the page title makes sense and displays on one line. Signed-off-by: Hector Castro Works as descrived Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 639ccd469f4e00e1737e0dec6ee914d845907938) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../en/modules/reports/guided_reports_start.tt | 57 ++++++++++---------- reports/guided_reports.pl | 2 +- 2 files changed, 29 insertions(+), 30 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:05:19 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:05:19 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-9-gd8aa61c Message-ID: 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.22.x has been updated via d8aa61c574022e842a9921beaa2fe723891b895d (commit) from c7028a02b5158591665a35421b4a80f54f5324f3 (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 d8aa61c574022e842a9921beaa2fe723891b895d Author: Marc V?ron Date: Wed Dec 2 12:39:59 2015 +0100 Bug 15300: Translatability: Replace ambiguous 'From' and 'To' in members-update.tt This patch replaces semantically ambigous words "From" and "To" in koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt for better translatability. To test: - Apply patch - Make sure that patrons can request detail changes in OPAC (sysprefs opacuserlogin, OPACPatronDetails) - Log in to OPAC, request a change of personal details (cgi-bin/koha/opac-memberentry.pl) - Log in to staff client - Click link 'Patrons requesting modifications' or go to Home > Patrons > Update patron records - Verify that table headers make sense Signed-off-by: Hector Castro Rewording Ok for translation purpose Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit b07513526965720c7d558bd9c6176088304a2ee9) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:15:53 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:15:53 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-11-g78f47f5 Message-ID: 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.22.x has been updated via 78f47f5dc89699aa388b915a3cad81cf375f2fbc (commit) via d1e8b93f66b8aa800b5d552f7039effaa9dc9e53 (commit) from d8aa61c574022e842a9921beaa2fe723891b895d (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 78f47f5dc89699aa388b915a3cad81cf375f2fbc Author: Marc V?ron Date: Wed Dec 2 06:33:32 2015 +0100 Bug 15231: (followup) Remove stray tag This patch removes a stray tag (see comment #4) and a superfluous blank. Signed-off-by: Hector Castro Signed-off-by: Brendan A Gallagher (cherry picked from commit ea0d5aa6bf7b0ff96fc75f04d6cb83dc37d4136a) Signed-off-by: Julian Maurice commit d1e8b93f66b8aa800b5d552f7039effaa9dc9e53 Author: Marc V?ron Date: Fri Nov 20 22:58:40 2015 +0100 Bug 15231 - Import patrons: Remove string splitting by html tags to avoid weird translations Some of the strings in Home > Tools > Import patrons contain html tags and therefore are splitted in the translation tool. This makes it nearly impossible to create correct translations from the partial strings. Additinally, the notes for Extended patron attributes never displayed (due to a bug). To test: - Apply patch - Enable Syspref 'ExtendedPAtronAttributes' - Go to Home > Tools > Import patrons and verify, that the Notes at the right of the screen make sense Signed-off-by: Hector Castro Split html tags removed, notes at right side it displayed correctly Signed-off-by: Brendan A Gallagher (cherry picked from commit 5843c76546d5769493099faed2fbce39fbe3b6f3) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/tools/import_borrowers.tt | 36 +++++++++++++------- 1 file changed, 23 insertions(+), 13 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:17:06 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:17:06 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-12-g0be1d64 Message-ID: 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.22.x has been updated via 0be1d6448256e5317c6c6485d982c83a5c3bb045 (commit) from 78f47f5dc89699aa388b915a3cad81cf375f2fbc (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 0be1d6448256e5317c6c6485d982c83a5c3bb045 Author: Marc V?ron Date: Sat Nov 21 01:31:00 2015 +0100 Bug 15232: Advanced Cataloging Editor: Fix translation issues This patch makes koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc to comply with Coding guidlines to avoid translation issues: "JS3: Avoid strings which mix text and markup Text mustn't contain HTML tags." To test: - Apply patch - Verify that code changes are correct (html markup moved out of function _(...) ) - Bonus test: Enable syspref 'EnableAdvancedCatalogingEditor' and verify that it works as before With type fix from: Hector Castro Signed-off-by: Fr?d?ric Demians Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 36c06583298649843309a4fc8696b1c638e16740) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:19:54 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:19:54 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-14-g722b953 Message-ID: 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.22.x has been updated via 722b953d0c8a8d907333e1cda43e6ed45c02b91e (commit) via e10046a351ed9681a18b5eaf21ba320f833b057e (commit) from 0be1d6448256e5317c6c6485d982c83a5c3bb045 (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 722b953d0c8a8d907333e1cda43e6ed45c02b91e Author: Marc V?ron Date: Thu Dec 3 00:10:28 2015 +0100 Bug 15233: (followup) Remove 2 sentences. This patch removes 2 sentences (see comment #8) Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 8f77dc86cec51f0f4eea1d627d82fd6b17499060) Signed-off-by: Julian Maurice commit e10046a351ed9681a18b5eaf21ba320f833b057e Author: Marc V?ron Date: Sat Nov 21 02:10:24 2015 +0100 Bug 15233: Cataloging subfield editors: Clean up html and streamline text for better translatability This patch removes bold markup from explanatory text in auth_subfields_structure.tt and makes it the same as in marc_subfields_structure.tt for better translatibility. To test: - Apply patch - Verify that string changes make sense and that the explanatory text is the same in both files. Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 9b0d9a186a7bffc16af2e5b2f67de31eb468a7a5) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/admin/auth_subfields_structure.tt | 4 ++-- .../prog/en/modules/admin/marc_subfields_structure.tt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:21:25 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:21:25 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-15-gae929c5 Message-ID: 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.22.x has been updated via ae929c528367c135317d3058794028067b97ac90 (commit) from 722b953d0c8a8d907333e1cda43e6ed45c02b91e (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 ae929c528367c135317d3058794028067b97ac90 Author: Marc V?ron Date: Sat Nov 21 02:32:30 2015 +0100 Bug 15236: Better translatibility in "Connect biblio.biblionumber to a MARC subfield" This patch moves html markup out of explanatory sentence in koha2marclinks.tt ("Connect biblio.biblionumber to a MARC subfield") for better translatability. To test: - Apply patch - Go to Home > Administration < Koha to MARC mapping and edit a tag - Verify that text change makes sense Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit f9586b01998071ddfdfc130ead2f48b079ae7e68) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/koha2marclinks.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:22:30 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:22:30 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-16-g53f4b72 Message-ID: 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.22.x has been updated via 53f4b7241c27b36b52571f14d3b1186e6b401c01 (commit) from ae929c528367c135317d3058794028067b97ac90 (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 53f4b7241c27b36b52571f14d3b1186e6b401c01 Author: Marc V?ron Date: Sat Nov 21 03:09:55 2015 +0100 Bug 15237: Quote of the day: Better translatibility for editor and help This patch moves html markup out of explanatory text in Quote of the day editor and help for better translatibility (Home > Tools > Quote Editor). To test: - Apply patch - Go to Home > Tools > Quote Editor and related Help - Verify that text changes make sense. Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Amended patch: Make consistent space after "Note:" (inside the br tag) Signed-off-by: Brendan A Gallagher (cherry picked from commit b0e833f9f5bffeb0940dd75eae150a247b5b520c) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/quotes.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:23:20 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:23:20 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-17-g8a7bd3a Message-ID: 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.22.x has been updated via 8a7bd3aa361ce707fd5e9fd478c7d7bbd0647312 (commit) from 53f4b7241c27b36b52571f14d3b1186e6b401c01 (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 8a7bd3aa361ce707fd5e9fd478c7d7bbd0647312 Author: Marc V?ron Date: Sat Nov 21 03:25:56 2015 +0100 Bug 15238: Better translatability for Installer Step 1 This Bug streamlines html in installer/step1.tt for better translatibility. To test: Reviwe code and verify that changes in text make sense. Signed-off-by: Hector Castro To reproduce in Debian environment, remove a required module with dpkg -r. Rewording Ok for translation purposes Bug 15238: (followup) Remove word 'Note:' 'Note: ' removed as requested in comment #3 Signed-off-by: Hector Castro Word 'Note' removed Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 29a4300c0727b779e1a0e83a35cd772828debde2) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:24:08 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:24:08 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-18-ga55557a Message-ID: 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.22.x has been updated via a55557afc0f410da4b106e71362801036774c4c4 (commit) from 8a7bd3aa361ce707fd5e9fd478c7d7bbd0647312 (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 a55557afc0f410da4b106e71362801036774c4c4 Author: Nicole C. Engard Date: Thu Nov 19 09:31:01 2015 -0600 Bug 15220: Fix typo in circ rules help MaxFinesystem should be MaxFine system To test: * visit circ & fine rules * click help * confirm typo fixed Signed-off-by: Thomas Misilo Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit 391c8ec0bc682491faaf64494867237dfc01bd11) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/smart-rules.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:24:46 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:24:46 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-19-gc5fc968 Message-ID: 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.22.x has been updated via c5fc968f2b883884c27f523b7eb2a5ace80e1e4b (commit) from a55557afc0f410da4b106e71362801036774c4c4 (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 c5fc968f2b883884c27f523b7eb2a5ace80e1e4b Author: Katrin Fischer Date: Sun Nov 22 02:13:12 2015 +0100 Bug 15224: Label creator - fix tiny typo 'itemnunber' To test: - Go to Tools > Label creator > New > Label batch - Check text displayed in grey next to the text input field Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit d9c78c9a65c09f4fdaa6481ff7a456836bcd3b61) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:25:50 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:25:50 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-21-gb1e931f Message-ID: 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.22.x has been updated via b1e931f7bbcc7e9c0b03ca59a96fc0a67027191c (commit) via 110ba7140b29996ab318c85a15a50004e89df2a9 (commit) from c5fc968f2b883884c27f523b7eb2a5ace80e1e4b (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 b1e931f7bbcc7e9c0b03ca59a96fc0a67027191c Author: Jonathan Druart Date: Wed Nov 25 16:14:35 2015 +0000 Bug 15229: Same fix for circulation.tt template (normal checkouts) Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit acf586a45ab4a27939f0ba34cba58ae8ff500993) Signed-off-by: Julian Maurice commit 110ba7140b29996ab318c85a15a50004e89df2a9 Author: Katrin Fischer Date: Sun Nov 22 01:48:31 2015 +0100 Bug 15229: Fix tiny typos in error messages of batch checkout page Patch fixes some small spelling errors on the batch checkouts page. Also switches 'reserves' to 'holds'. To test: - Read the patch and verify that the changes are correct. Signed-off-by: Hector Castro Changes are correct, patch fixes capitalization and typo Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 59e2b4e105b1f5c55b97665fce44bccd58f0c7a1) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++-- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:26:41 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:26:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-115-g7eafee3 Message-ID: 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 7eafee3f01f4da3852b4e8864ba5511973f61e3b (commit) via 5a21bbe24d6d0b30438f93b8f15d668d546a5edf (commit) via cc592b4b38f14813e3ee80c808dfde500e092bd1 (commit) from ba0621e2df3207832b23608fa30a2be347b35f3c (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 7eafee3f01f4da3852b4e8864ba5511973f61e3b Author: Kyle M Hall Date: Wed Dec 30 16:28:32 2015 +0000 Bug 9819 [QA Followup] - Fix DBrev description commit 5a21bbe24d6d0b30438f93b8f15d668d546a5edf Author: Kyle M Hall Date: Wed Dec 30 16:25:06 2015 +0000 Bug 11569 - [QA Followup] - Update English description for existing installations, DBrev 3.23.00.005 Signed-off-by: Kyle M Hall commit cc592b4b38f14813e3ee80c808dfde500e092bd1 Author: Aleisha Date: Mon Dec 21 22:45:57 2015 +0000 Bug 11569: Correcting typos in userpermissions.sql Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 14 +++++++++++++- installer/data/mysql/userpermissions.sql | 4 ++-- 3 files changed, 16 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:27:49 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:27:49 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-23-g87ce8e8 Message-ID: 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.22.x has been updated via 87ce8e85ec6d4c8a447a4d595bf3b975a9ea3cb3 (commit) via 30bfb13466e875205f8052590e800247fb263952 (commit) from b1e931f7bbcc7e9c0b03ca59a96fc0a67027191c (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 87ce8e85ec6d4c8a447a4d595bf3b975a9ea3cb3 Author: Jonathan Druart Date: Wed Nov 25 16:45:50 2015 +0000 Bug 15101: Correct typo AllowPkiAuth vs AllowPKIAuth Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit d36280e36e1fa8779bf845fb0cc0de2ea835d486) Signed-off-by: Julian Maurice commit 30bfb13466e875205f8052590e800247fb263952 Author: Katrin Fischer Date: Sun Nov 22 02:43:36 2015 +0100 Bug 15101: Don't display sys pref AllowPkiAuth under CAS heading The system preference AllowPkiAuth display under the heading CAS authentication, but is actually a separate authentication option. Patch creates a separate heading for it. To test: - Go to Administration > System preferences > Tab Administration - Verify that AllowPkiAuth is now displayed separately Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit cee796629fb131966a8ebfa77ecbcf054c46fd02) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/UsageStats.pm | 2 +- .../intranet-tmpl/prog/en/modules/admin/preferences/admin.pref | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:30:53 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:30:53 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-117-g5df49b0 Message-ID: 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 5df49b04ef69ad6b33b3f7744acb379c0dd83b0f (commit) via 3da8abcfeff331d5022ee54bbf27ecfbc4ebe18c (commit) from 7eafee3f01f4da3852b4e8864ba5511973f61e3b (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 5df49b04ef69ad6b33b3f7744acb379c0dd83b0f Author: Aleisha Date: Sun Dec 20 19:57:54 2015 +0000 Bug 15373: More changes of Zip to ZIP on intranet To test: - Log in to Staff Interface, go to Administration, Libraries and Groups (cgi-bin/koha/admin/branches.pl). Click 'New library' and confirm that it says 'ZIP/Postal Code:' in the form. - Go back to Administration, Cities and towns (cgi-bin/koha/admin/cities.pl). Confirm it says 'ZIP/Postal code' in table heading. Click 'New city' and confirm it says 'ZIP/Postal code:' in form - Go back to Administration, Global system preferences, I18L/L10N (cgi-bin/koha/admin/preferences.pl?tab=i18n_l10n). Under AddressFormat, confirm all available options say '[ZIP/Postal Code]' - Go to Reports, Patrons (cgi-bin/koha/reports/borrowers_stats.pl). Confirm it says 'ZIP/Postal code' under Title - Go to Tools, Batch patron modification (cgi-bin/koha/tools/modborrowers.pl), enter any card number and click 'Continue'. Confirm it says 'ZIP/Postal code' in the table of patron details, and in the form to edit Signed-off-by: Mark Tompsett NOTE: Tested together with first patch. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 3da8abcfeff331d5022ee54bbf27ecfbc4ebe18c Author: Aleisha Date: Mon Dec 14 22:43:26 2015 +0000 Bug 15373: Changing Zip to ZIP on OPAC and Intranet To test: 1) Login to OPAC --> You personal details. 2) Ensure it says 'ZIP/Postal Code' under Main Address, Alternate Address and Alternate Contact 3) Login to Staff interface --> Go to a member's page (ie koha/members/memberentry.pl) --> Details. 4) Ensure it says 'ZIP/Postal Code' under Alternate address and Alternative contact 5) Click Edit 6) Ensure it says 'ZIP/Postal Code' under Main Address, Alternate Address and Alternate Contact Signed-off-by: Barry Cannon Signed-off-by: Mark Tompsett NOTE: Tested together with second patch. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/columns.def | 6 +++--- .../prog/en/includes/member-alt-address-style-de.inc | 2 +- .../prog/en/includes/member-alt-address-style-us.inc | 2 +- .../prog/en/includes/member-alt-contact-style-de.inc | 2 +- .../prog/en/includes/member-alt-contact-style-us.inc | 2 +- .../prog/en/includes/member-main-address-style-de.inc | 2 +- .../prog/en/includes/member-main-address-style-us.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt | 6 +++--- .../prog/en/modules/admin/preferences/i18n_l10n.pref | 4 ++-- .../intranet-tmpl/prog/en/modules/members/members-update.tt | 6 +++--- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 4 ++-- .../intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt | 4 ++-- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 6 +++--- reports/borrowers_stats.pl | 2 +- 16 files changed, 27 insertions(+), 27 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:32:59 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:32:59 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-118-gc92b155 Message-ID: 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 c92b1556ef9250d7e038dce2d083c60415035b95 (commit) from 5df49b04ef69ad6b33b3f7744acb379c0dd83b0f (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 c92b1556ef9250d7e038dce2d083c60415035b95 Author: Marc V?ron Date: Mon Dec 28 16:00:54 2015 +0100 Bug 15432: t/db_dependent/Letters.t depends on external data/configuration To test: - Set system preference LetterLog to 'Don't log' - prove t/db_dependent/Letters.t - Result: Fails on test 62 - Successfully sent claim - Apply patch - Test again - Result: Pass OK Signed-off-by: Jonathan Druart Amended patch: removed the bug reference, not needed. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Letters.t | 3 +++ 1 file changed, 3 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 17:50:42 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 16:50:42 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-120-gdbae2bd Message-ID: 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 dbae2bdf2fc3f15c448525e8f9dfb92deb8d40c0 (commit) via a2293ff6f5b77176506f182c9ac5f19fdc51ab63 (commit) from c92b1556ef9250d7e038dce2d083c60415035b95 (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 dbae2bdf2fc3f15c448525e8f9dfb92deb8d40c0 Author: Kyle M Hall Date: Wed Dec 30 16:49:16 2015 +0000 Bug 15099 [QA Followup] - Make bug pass koha-qa.pl Cleaned up additional tab characters and such well. This is a very good time to take care of these. Signed-off-by: Kyle M Hall commit a2293ff6f5b77176506f182c9ac5f19fdc51ab63 Author: Jonathan Druart Date: Wed Dec 2 08:49:50 2015 +0000 Bug 15099: Move admin/categorie.pl to admin/categories.pl This patch fixes the filename categorie.pl correcting it by categories.pl The plurial is usually used for script names in the admin module. Test plan: Navigate to the patron categories page. Signed-off-by: Fr?d?ric Demians No reference to categorie.pl anywhere in the code Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Form/MessagingPreferences.pm | 2 +- admin/{categorie.pl => categories.pl} | 2 +- .../intranet-tmpl/prog/en/includes/admin-menu.inc | 29 ++- .../prog/en/modules/admin/admin-home.tt | 200 ++++++++++---------- .../modules/admin/{categorie.tt => categories.tt} | 180 +++++++++--------- .../prog/en/modules/members/member.tt | 2 +- .../prog/en/modules/members/memberentrygen.tt | 2 +- .../prog/en/modules/tools/overduerules.tt | 2 +- 8 files changed, 211 insertions(+), 208 deletions(-) rename admin/{categorie.pl => categories.pl} (99%) rename koha-tmpl/intranet-tmpl/prog/en/modules/admin/{categorie.tt => categories.tt} (85%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 19:19:42 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 18:19:42 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-121-g65d3203 Message-ID: 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 65d3203525470d8b0b44374bdc66b979de57c426 (commit) from dbae2bdf2fc3f15c448525e8f9dfb92deb8d40c0 (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 65d3203525470d8b0b44374bdc66b979de57c426 Author: Kyle M Hall Date: Tue Dec 22 15:37:41 2015 +0000 Bug 15409 - Plugins section missing from Admin menu sidebar The sidebar menu in the Admin area of Koha is missing a section for Plugins. Test Plan: 1) Apply this patch 2) Log in with a user that has plugin permissions 3) Browse to a page with the admin menu sidebar, such as /cgi-bin/koha/admin/transport-cost-matrix.pl 4) Note the new Plugins section with a link to manage plugins 5) Log in with a user that has no plugin permissions 6) Revisit the same page, note the Plugins section is no longer visible Signed-off-by: Aleisha Signed-off-by: Marcel de Rooy Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc | 8 ++++++++ 1 file changed, 8 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 20:07:39 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 19:07:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-122-ga85fd85 Message-ID: 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 a85fd85545a885e8ebbcc417b7f180baede70304 (commit) from 65d3203525470d8b0b44374bdc66b979de57c426 (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 a85fd85545a885e8ebbcc417b7f180baede70304 Author: Marc V?ron Date: Wed Dec 9 16:10:10 2015 +0100 Bug 15340: Translatability: fix issue with 'or choose' splitted by tag This patch fixes a translatability issue due to tags. To verify: - Make sure that you have some entries in 'Cities and Towns' ( Home > Administration > Cities ) - Edit the main address of a patron's details - Locate field "City", at the right you have the text 'or choose' followed by a drop-down ('choose' is bold) - change language e.g. to German, the text reads 'or ausw?hlen' (instead of 'oder ausw?hlen') - This is due to the tags around 'choose' To test: - Apply patch - Verify that the tags around 'choose' are removed in: koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-de.inc koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-us.inc Signed-off-by: Fr?d?ric Demians Obvious issue/solution Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/member-main-address-style-de.inc | 2 +- .../intranet-tmpl/prog/en/includes/member-main-address-style-us.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 20:23:22 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 19:23:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-123-g3f68107 Message-ID: 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 3f68107b1012e47467d1fb96b44347499332ba22 (commit) from a85fd85545a885e8ebbcc417b7f180baede70304 (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 3f68107b1012e47467d1fb96b44347499332ba22 Author: Katrin Fischer Date: Sun Nov 22 02:52:02 2015 +0100 Bug 14853: Change 'Fund' to 'Shipping fund' Changes the 'Fund' to 'Shipping fund' so it's clear what the fund setting is used for. To test: - Receive a new shipment - Verify that 'Shipping fund' displays on the parcels page - Search for your invoice - View invoice details - Verify that 'Shipping fund' displays on the invoice page Followed test plan (changed lines: '...cost' -> '...fund') Display OK on both places. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 21:44:58 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 20:44:58 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-124-g4e61aa5 Message-ID: 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 4e61aa5ef55e214e60920eb3556f0c96dbe3e23a (commit) from 3f68107b1012e47467d1fb96b44347499332ba22 (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 4e61aa5ef55e214e60920eb3556f0c96dbe3e23a Author: Mirko Tietgen Date: Fri Dec 18 10:24:29 2015 +0100 Bug 15396: fix MARC21 Leader plugin label '1-4 Record size' The plugin label says "1-4 Record size", but it's actually 0-4. http://www.loc.gov/marc/bibliographic/bdleader.html Test plan: -apply patch -in cataloging, open a record in a framework that uses the plugin -open LEADER/000 and check that the label says "0-4 Record size" now Signed-off-by: Bernardo Gonzalez Kriegel Good catch, fixed tab, no errors. Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/cataloguing/value_builder/marc21_leader.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 22:32:43 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 21:32:43 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-126-gb6880ab Message-ID: 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 b6880abc50b5cfa40ee887ebd9c15e10d8bee040 (commit) via b31eca978723c371564dfd14e27badc653f260e1 (commit) from 4e61aa5ef55e214e60920eb3556f0c96dbe3e23a (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 b6880abc50b5cfa40ee887ebd9c15e10d8bee040 Author: Joonas Kylm?l? Date: Tue Sep 1 07:26:40 2015 +0000 Bug 12289: (follow-up) fix the compilation error Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit b31eca978723c371564dfd14e27badc653f260e1 Author: Martin Renvoize Date: Mon May 19 13:20:50 2014 +0000 Bug 12289: Add --no-create options to stage_file.pl This patch adds the no-create options to the command line interface for bulk loading of records. To test 1/ Apply both patches 2/ Call the script with --no-create and your will find that new records are not created when no match is found. The default, of create_new remains the same as before. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: misc/stage_file.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Dec 30 23:01:43 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 22:01:43 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-127-g265761c Message-ID: 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 265761c35375e72c84b5ff3d88fc4f978fa69bc5 (commit) from b6880abc50b5cfa40ee887ebd9c15e10d8bee040 (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 265761c35375e72c84b5ff3d88fc4f978fa69bc5 Author: Kyle M Hall Date: Tue Nov 3 14:43:17 2015 -0500 Bug 12544 - Send scheduled reports as an attachment This patch adds the ability to add the report as an attached file to the sent email. Test Plan: 1) Email yourself a test report 2) Apply this patch 3) Repeat step 1, note there is no difference 4) Add the -a parameter, note your also recieve the report as an attachment Sponsored-by: Briar Cliff University Signed-off-by: Kyle M Hall Signed-off-by: Julius Fleschner Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: misc/cronjobs/runreport.pl | 41 ++++++++++++++++++++++++++++------------- 1 file changed, 28 insertions(+), 13 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 00:10:59 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 23:10:59 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-129-g8255e2e Message-ID: 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 8255e2ec1f37103872419afbb83be369a95a1352 (commit) via d46f180b2e4e6da7732fdc561e710fb0b9e18ea6 (commit) from 265761c35375e72c84b5ff3d88fc4f978fa69bc5 (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 8255e2ec1f37103872419afbb83be369a95a1352 Author: Aleisha Date: Thu Aug 20 03:34:48 2015 +0000 Bug 10468: (followup) fix indentation Signed-off-by: Jesse Weaver commit d46f180b2e4e6da7732fdc561e710fb0b9e18ea6 Author: Aleisha Date: Thu Aug 20 03:34:48 2015 +0000 Bug 10468: Adding holds table to summary print To test: 1) Add a hold to a patron 2) Go to patron page 3) Click Print Summary 4) Confirm that 'Pending Holds' table displays with correct information under appropriate headings (should be Title, Author, Placed on (reserve date), Expires on (expiration date), and Pick up library) Signed-off-by: Hector Castro Works as advertised Signed-off-by: Katrin Fischer Signed-off-by: Jesse Weaver ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/members/moremember-print.tt | 23 ++++++++++++ members/summary-print.pl | 38 +++++++++++++++++++- 2 files changed, 60 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 00:28:02 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 23:28:02 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-130-g37b0e2c Message-ID: 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 37b0e2ce9cbc4ba5070d22c96b357ddea1db084b (commit) from 8255e2ec1f37103872419afbb83be369a95a1352 (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 37b0e2ce9cbc4ba5070d22c96b357ddea1db084b Author: Olli-Antti Kivilahti Date: Thu Oct 29 15:40:50 2015 +0200 Bug 15080 - ./translate tool should tell if xgettext executable is missing Just upgraded our Koha container to 14.04 and noticing the misc/translator/translate doesn't work. This is because of a missing package gettext. This patch makes ./translate die with a helpful suggestion to install gettext if xgettext-program is missing. Signed-off-by: Frederic Demians I can reproduce the bug by desinstalling 'gettext' package on a Debian box. I confirm that without this patch, 'translate' command fails miserably. Suggesting to install gettext package is welcomed. Signed-off-by: Kyle M Hall Signed-off-by: Jesse Weaver ----------------------------------------------------------------------- Summary of changes: misc/translator/LangInstaller.pm | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 00:32:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 23:32:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-134-ge863f66 Message-ID: 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 e863f6645e9cfef851066e3bd96145969202ab8d (commit) via 0bfd512759b54bef56f279cf195c9186691933e5 (commit) via 4587d898dc29c3677eafc250a752a190353d8609 (commit) via 9d2e268739f8fc0bd373cc6312dfdd14a713434c (commit) from 37b0e2ce9cbc4ba5070d22c96b357ddea1db084b (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 e863f6645e9cfef851066e3bd96145969202ab8d Author: Jonathan Druart Date: Mon Dec 28 10:26:10 2015 +0000 Bug 15049: Simplify code in aqplan.tt There was no need to duplicate this code in the template. The only change with before this patch is that the "Currency = CUR" and "Each cell contain both actual and estimated values." are now displayed on 2 lines instead of 1. Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit 0bfd512759b54bef56f279cf195c9186691933e5 Author: Marc V?ron Date: Fri Dec 18 16:01:12 2015 +0100 Bug 15049: (followup) Add warning about "No active currency" Fix translatibiity issues and use include in admin/aqplan.tt as well. See comment #24 Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit 4587d898dc29c3677eafc250a752a190353d8609 Author: Bernardo Gonzalez Kriegel Date: Thu Oct 29 09:13:26 2015 -0300 Bug 15049: (Signed off) Hide currency but preserv alert This follow up hides currency, but the alert pops if no currency is active. To test: 1) Apply the patch 2) Unset any active currency 3) Alert must show on Acquisitons home 4) Set a currency active, no currency display on Acqui home 5) Check that currency IS displayed on /cgi-bin/koha/admin/aqbudgets.pl or /cgi-bin/koha/admin/aqbudgetperiods.pl Amended for better translation Currency does / does not display as described in test plan. Signed-off-by: Marc V?ron Signed-off-by: JM Broust Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher commit 9d2e268739f8fc0bd373cc6312dfdd14a713434c Author: Marc V?ron Date: Thu Oct 22 11:44:23 2015 +0200 Bug 15049: Add warning about "No active currency" to Acquisitions start page If no active currency is defined, Acquisitions does not work properly and software can occur while receiving. This patch adds the warning message about missing active currency to Home > Acquisitions To test: - Apply patch - Go to Home > Administration > Currencies & Exchange Rates > Currencies - Make sure that no active currency is set - Go to Home > Acquisitions - Verify that a warning displays: - If user has at least permission for parameters_remaining_perissions, the warning should display a link to Currencies and exchange rates (currency.pl) - If the user has no permission to edit the Currencies and exchange rates, no link is displayed. - Set an active currency - Veryfy that the warning no longer displays (Amended to remove superfluous line / mv) Signed-off-by: Bernardo Gonzalez Kriegel Work as described. No errors Signed-off-by: JM Broust Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: acqui/acqui-home.pl | 7 +++++++ .../prog/en/includes/budgets-active-currency.inc | 15 ++++++++++++++- .../prog/en/modules/acqui/acqui-home.tt | 3 ++- .../intranet-tmpl/prog/en/modules/admin/aqplan.tt | 20 +++++++------------- 4 files changed, 30 insertions(+), 15 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 00:39:18 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 23:39:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-135-gbd4a683 Message-ID: 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 bd4a6830527b3d1482e41f084098de66eacf5bcd (commit) from e863f6645e9cfef851066e3bd96145969202ab8d (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 bd4a6830527b3d1482e41f084098de66eacf5bcd Author: Magnus Enger Date: Tue Dec 8 21:11:58 2015 +0100 Bug 15304: Remove Norwegian strings from nl-search.tt When nl-search.pl gets data from the Norwegian national patron database, it does so in an XML format that has Norwegian element names. nl-search.pl displays the data with the Noregian element names as labels. This means Norwegian words turn up in translations, which is messy. This patch replaces the Norwegian labels with English ones. To test: - Only Norwegian libraries and vendors get access to search against the national patron database, so a proper functional test is not possible - Alternative 1: Just have a look at the nl-search.tt template before and after the patch and verify that after the patch the Norwegian strings that would be visible to a user are gone - Alternative 2: - Verify that e.g. en-GB-staff-prog.po contains the Norwegian string "kjonn" - Apply the patch - Create new .po files with e.g. "./translate create en-GB" - Verify that "kjonn" is now gone from en-GB-staff-prog.po Version 2: Tweak a couple of labels to be more in line with labels used elsewhere in Koha, to avoid variants when translating. Version 3: Replace e.g. "Gender: " with "Gender: " to avoid similar-except-for-whitespace strings in translation. Signed-off-by: Bernardo Gonzalez Kriegel A few new strings, all previous removed. No koha-qa errors Signed-off-by: Marcel de Rooy Signed-off-by: Brendan A Gallagher ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/members/nl-search.tt | 80 ++++++++++---------- 1 file changed, 40 insertions(+), 40 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 00:40:58 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 23:40:58 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-138-g2a937b4 Message-ID: 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 2a937b4b853d8bf53469ca68d7e2867fd2ef3695 (commit) via 3a49b20418a42ee6cf8bde34f0d91d8e2013bac9 (commit) via 4a584d528dbe8e227eb481636b1f9f32da2ec514 (commit) from bd4a6830527b3d1482e41f084098de66eacf5bcd (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 2a937b4b853d8bf53469ca68d7e2867fd2ef3695 Author: Kyle M Hall Date: Thu Jul 9 11:24:00 2015 -0400 Bug 13517 [QA Followup] - Fix unit tests Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver commit 3a49b20418a42ee6cf8bde34f0d91d8e2013bac9 Author: Kyle M Hall Date: Thu Jun 25 15:17:12 2015 -0400 Bug 13517 [QA Followup] - Add unit tests Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver commit 4a584d528dbe8e227eb481636b1f9f32da2ec514 Author: Kyle M Hall Date: Wed Mar 18 08:50:21 2015 -0400 Bug 13517 - Show waiting date on reserve/request.pl The holds table should show the waiting date for a hold in s similar manner to the way it does on catalogue/detail.pl In addition, if the ReservesMaxPickUpDelay syspref is set, we should display the date when the waiting hold expires. Test Plan: 1) Apply this patch 2) Set ReservesMaxPickUpDelay to 7 3) Find a waiting hold 4) Browse to reserve/request.pl for that record 5) Notice the "Item waiting" message now has "since " 6) Notice the expiration field now has the date of + 7 days Signed-off-by: Kyle M Hall Signed-off-by: Cathi Wiggins Signed-off-by: Megan Wianecki Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver ----------------------------------------------------------------------- Summary of changes: Koha/Hold.pm | 47 +++++++- .../prog/en/modules/reserve/request.tt | 10 +- reserve/request.pl | 124 ++++++++++---------- t/db_dependent/Hold.t | 21 +++- 4 files changed, 137 insertions(+), 65 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 00:49:56 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 23:49:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-139-g8a02409 Message-ID: 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 8a02409d180d4e4be8a2d9bef6be5373a8b1a907 (commit) from 2a937b4b853d8bf53469ca68d7e2867fd2ef3695 (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 8a02409d180d4e4be8a2d9bef6be5373a8b1a907 Author: Nicole C. Engard Date: Mon Dec 7 13:15:04 2015 -0600 Bug 13136: Add missing help file for label-manage.pl This patch adds in a help file for the new label-manage page. To test: * visit label creator * click manage and choose an option * click 'help' and confirm the file loads * repeat for all options under manage Signed-off-by: Hector Castro Works as advertised. Tab char corrected Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/help/labels/label-manage.tt | 105 ++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-manage.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 00:54:17 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Dec 2015 23:54:17 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-140-gff9d241 Message-ID: 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 ff9d241239c6eba425755ca2bbde9c31203db151 (commit) from 8a02409d180d4e4be8a2d9bef6be5373a8b1a907 (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 ff9d241239c6eba425755ca2bbde9c31203db151 Author: Marc V?ron Date: Sat Dec 12 00:48:45 2015 +0100 Bug 7143: Add link to www.openhub.net profile for Marc Veron This patch adds a link to www.openhub.net/p/koha/contributors/6618545408147 for Marc Veron (with é). (Amended for é in commit message) Signed-off-by: Mark Tompsett (Amended for comment #281: changed second occurence) Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 01:23:12 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 00:23:12 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-142-gff1579d Message-ID: 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 ff1579de6d2e95158cf4f9e9261068bdeef31f53 (commit) via c7ec79b8390817100b677530b88d1d4d02986b98 (commit) from ff9d241239c6eba425755ca2bbde9c31203db151 (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 ff1579de6d2e95158cf4f9e9261068bdeef31f53 Author: Fr?d?ric Demians Date: Thu Nov 26 08:26:34 2015 +0100 Bug 15258: Fix Perl scripts declaring unused variables Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart All affected files tested with `perl -c`. Signed-off-by: Jesse Weaver commit c7ec79b8390817100b677530b88d1d4d02986b98 Author: Fr?d?ric Demians Date: Thu Nov 26 07:30:42 2015 +0100 Bug 15258: Prevent unused declared variables Add a perlcritic rule to 00-perlcritic.t to prevent unused declared variable. TO TEST: - Apply the 1st patch (unit test) - Run the UT: prove -v t/00-testcritic.t - Note that several Perl script fail - Apply the 2nd patch - Run the UT, and confirm it passes. Signed-off-by: Hector Castro All tests pass successful. Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver ----------------------------------------------------------------------- Summary of changes: C4/SIP/Sip/MsgType.pm | 4 +-- Koha/MetaSearcher.pm | 1 - Koha/QueryParser/Driver/PQF/Util.pm | 1 - Koha/QueryParser/Driver/PQF/query_plan/modifier.pm | 1 - Koha/Template/Plugin/Price.pm | 1 - acqui/basketheader.pl | 1 - acqui/invoice.pl | 1 - acqui/spent.pl | 1 - admin/aqplan.pl | 5 ---- admin/auth_subfields_structure.pl | 1 - admin/koha2marclinks.pl | 1 - admin/transport-cost-matrix.pl | 2 +- basket/basket.pl | 1 - catalogue/MARCdetail.pl | 1 - cataloguing/addbiblio.pl | 3 -- cataloguing/merge.pl | 1 - cataloguing/value_builder/macles.pl | 4 +-- .../value_builder/marc21_linking_section.pl | 1 - cataloguing/value_builder/unimarc_field_4XX.pl | 1 - circ/branchtransfers.pl | 1 - circ/pendingreserves.pl | 13 -------- circ/waitingreserves.pl | 2 -- labels/label-item-search.pl | 4 +-- members/moremember.pl | 2 -- reserve/placerequest.pl | 1 - reserve/request.pl | 3 -- serials/checkexpiration.pl | 1 - serials/subscription-add.pl | 2 -- sms/sms_listen.pl | 2 -- t/00-testcritic.t | 31 +++++++++++++++----- t/perlcriticrc | 5 ++-- 31 files changed, 32 insertions(+), 67 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 09:23:53 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 08:23:53 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-25-g008e380 Message-ID: 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.22.x has been updated via 008e3805ff1f6b59422286a33b55f4b509edca87 (commit) via 1d8865245adfeb8ceb3833e38d582a672df686ed (commit) from 87ce8e85ec6d4c8a447a4d595bf3b975a9ea3cb3 (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 008e3805ff1f6b59422286a33b55f4b509edca87 Author: Hector Castro Date: Sun Nov 22 19:52:39 2015 -0600 Bug 15228: Switch "Items in batch number" Yet another line to switch "Items in batch number" to "Patrons in batch number" Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit e89714ea84acd8300a629a7acccc6eee90ff0ff0) Signed-off-by: Julian Maurice commit 1d8865245adfeb8ceb3833e38d582a672df686ed Author: Katrin Fischer Date: Sun Nov 22 02:04:12 2015 +0100 Bug 15228: Patron card batches - Improve translatability This patch removes the \n\n from a translatable string as those don't translate correctly to new lines. It also switches 'item' for 'patron' to avoid confusion with catalog items. To test: 1) Trigger changed error message - Create a new batch with 1 patron entry - Select patron in list using the checkbox - Click 'Remove selected patrons' in toolbar - Verify alert displays correctly 2) Verify that the page no longer uses "items" but patrons instead. Signed-off-by: Hector Castro Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 5782da035f736765dceced4b2db9699b30e22017) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 09:26:57 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 08:26:57 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-26-g141f30d Message-ID: 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.22.x has been updated via 141f30d406671330bf31b199b4cdb78414176111 (commit) from 008e3805ff1f6b59422286a33b55f4b509edca87 (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 141f30d406671330bf31b199b4cdb78414176111 Author: Colin Campbell Date: Thu Nov 19 14:17:10 2015 +0000 Bug 15217 Remove redundant duplicate var declaration remove superfluous second declaration of template, borrowernumber and cookie which are never used Also removed the variables @results and @results_array which are declared but not used Signed-off-by: Fr?d?ric Demians As suggested by Colin, perl -wc catalogue/search.pl doesn't complain anymore after applying the patch. perlcritic confirms the 2 variables were unused. Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit 558f291465d60c082c0e9a4a15eb7ed87a3e3fde) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: catalogue/search.pl | 4 ---- 1 file changed, 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 09:32:20 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 08:32:20 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-27-gd5fd02e Message-ID: 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.22.x has been updated via d5fd02e4a17383e984c31e427dc2c64ce4726b51 (commit) from 141f30d406671330bf31b199b4cdb78414176111 (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 d5fd02e4a17383e984c31e427dc2c64ce4726b51 Author: Jonathan Druart Date: Fri Dec 18 15:01:15 2015 +0000 Bug 15332: Sent DateTime object to DBIx::Class, not formatted dates If formatted dates are sent to DBIx::Class on update/insert, the date will be set as 0000-00-00 (except if the format is yyyy-mm-dd). Test plan: Use the batch patron modification tools to update the dateenrolled or dateexpiry values for at least 1 patron. Without this patch, the modified value will be updated to 0000-00-00, with this patch, the correct value will be set. Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Brendan A Gallagher (cherry picked from commit af7fb9cd48cdb47329e7b9bbe651e856e017aa13) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: tools/modborrowers.pl | 5 +++++ 1 file changed, 5 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 09:45:50 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 08:45:50 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-30-g14ee255 Message-ID: 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.22.x has been updated via 14ee2557daafbb67b3afa541fc69f60fa21e7229 (commit) via c993e45a26ea86ea362eea6f54e9ee1a8fa69bc5 (commit) via 4635b255ab98fdb4804c2bcb2f308ff722d7639c (commit) from d5fd02e4a17383e984c31e427dc2c64ce4726b51 (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 14ee2557daafbb67b3afa541fc69f60fa21e7229 Author: Kyle M Hall Date: Wed Dec 30 14:26:35 2015 +0000 Bug 15442 - Checkouts table will not display due to javascript error Uncaught ReferenceError: AllowCirculate is not defined Test Plan: 1) Go to circulation.pl for a patron, note the checkouts table does not load 2) Apply this patch 3) Reload the page, checkouts table should show Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit c7339799ff994fffdb9273bd71951f8c2d60d1ec) Signed-off-by: Julian Maurice commit c993e45a26ea86ea362eea6f54e9ee1a8fa69bc5 Author: Kyle M Hall Date: Fri Dec 18 17:32:31 2015 +0000 Bug 15289 [QA Followup] - Fix minor language issue Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher (cherry picked from commit 881433043903ead9d37a434342e3b998bc86c17b) Signed-off-by: Julian Maurice commit 4635b255ab98fdb4804c2bcb2f308ff722d7639c Author: Alex Arnaud Date: Tue Dec 15 14:11:54 2015 +0100 Bug 15289 - borrowers permission allows to see patron's loans Test plan: - log with a user that have "borrowers" permission but not "Remaining circulation permissions" - go to a borrower's detail page (who has at least a loan) and click on "show checkouts" - check that you see loan(s) and that you can't renew and checkin - Do the same with a borrower that have "Remaining circulation permissions" - check that you see loan(s) and that you can renew and checkin Followed test plan. Works as expected. Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher (cherry picked from commit eb5fca30aa7005afaa34d394e1115eead969271b) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/checkouts-table.inc | 6 ++++-- koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 + .../intranet-tmpl/prog/en/modules/members/moremember.tt | 1 + svc/checkouts | 11 +++++++---- 6 files changed, 16 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:05:33 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:05:33 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-31-g3073d25 Message-ID: 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.22.x has been updated via 3073d25f03dfc880b9b9077a986f4c1224799815 (commit) from 14ee2557daafbb67b3afa541fc69f60fa21e7229 (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 3073d25f03dfc880b9b9077a986f4c1224799815 Author: Jonathan Druart Date: Tue Dec 8 15:10:46 2015 +0000 Bug 15324: Do not display 'Waiting holds:" if no holds are waiting Test plan: - Make sure that you have a patron A with waiting holds and a patron B without waiting holds - Go to the checkout page for patron A (Home > Circulation > Checkouts > ...) - At the right, there is a title "Waiting holds:" and a list of holds waiting - Go to the checkout page for patron B => Without this patch "Waiting holds:" is displayed Sign-off on Jonathan's patch Signed-off-by: Marc V?ron http://bugs.koha-community.org/show_bug.cgi?id=14324 Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit cd46c5dc75f9381d4766b0bd70b3d089e53e539b) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: circ/circulation.pl | 3 ++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:13:10 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:13:10 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-32-g77bd755 Message-ID: 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.22.x has been updated via 77bd7557fa7adb196ed46fd7ae3ceea98db3a67c (commit) from 3073d25f03dfc880b9b9077a986f4c1224799815 (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 77bd7557fa7adb196ed46fd7ae3ceea98db3a67c Author: Nick Date: Wed Nov 18 11:49:15 2015 -0500 Bug 15210 - Novelist throws an error if no ISBN This patch makes opac-detail.tt check for an ISBN before attempting to load Novelist content and prevents a js error which breaks other code. To test: 1 - Enable novelist 2 - Add a visible change to OPACUserJS eg: $(document).ready(function() {$("body").css("background-color","pink");}); 3 - Load a record with no ISBN 4 - Note you do not see a color change in the body and that there is an error in the console 5 - Apply patch 6 - Reload the record 7 - You should see the color change and no error in the js Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 65c5fa4385a8e080cfd46a8197b4417bcd579b6a) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:14:28 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:14:28 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-33-g21465d9 Message-ID: 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.22.x has been updated via 21465d93d57b197429ebf33d753b9d971e82bac3 (commit) from 77bd7557fa7adb196ed46fd7ae3ceea98db3a67c (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 21465d93d57b197429ebf33d753b9d971e82bac3 Author: Aleisha Date: Sun Dec 13 22:24:05 2015 +0000 Bug 14153: Noisy warns in admin/transport-cost-matrix.pl To test: 1) Go to Admin -> Transport cost matrix 2) Notice the warns in the error log 3) Apply the patch and refresh page 4) Notice page still works but no warns in error log Signed-off-by: Jonathan Druart Amended patch: Init a $op variable, if it must be reused later. Signed-off-by: Brendan A Gallagher (cherry picked from commit 825d68ee8696a2c3f3a2a95c0d148015f02a5ae9) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: admin/transport-cost-matrix.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:22:05 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:22:05 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-34-gfdb0cc8 Message-ID: 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.22.x has been updated via fdb0cc80dbd323f8b7d60bb57af1e9bc6d126086 (commit) from 21465d93d57b197429ebf33d753b9d971e82bac3 (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 fdb0cc80dbd323f8b7d60bb57af1e9bc6d126086 Author: Marc V?ron Date: Sun Oct 4 11:38:03 2015 +0200 Bug 14948 - Display amounts right aligned in tables on patron pages This patch set display amounts for charge, fine, price etc. right aligned in tables on patron pages. To test, apply patch and verify that amounts appear right aligned on following pages: - Go to Home > Patrons, perform a search (Column 'Fines') - Go to a patron with fines and credits - Checkout tab (circulation.pl): Columns 'Charge', 'Fine', 'Price' (maybe you have to show column with 'Show / hide colums') - Fines Tab > Pay fines (pay.pl): Columns 'Amount', 'Amount Outstanding' - Fines Tab > Account (boraccount.pl): Columns 'Amount', 'Outstanding' Note: Test here 'Filter paid transactions' as well Signed-off-by: Nicole Engard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 1acc6094be7670c180bc006182a0f8e464abac03) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/checkouts-table-footer.inc | 6 +++--- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 6 +++--- .../prog/en/modules/members/boraccount.tt | 20 ++++++++------------ .../intranet-tmpl/prog/en/modules/members/pay.tt | 10 +++++----- .../en/modules/members/tables/members_results.tt | 2 +- 5 files changed, 20 insertions(+), 24 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:22:24 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:22:24 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-35-gdbd07c4 Message-ID: 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.22.x has been updated via dbd07c4d089ca32d385c0f044bfb6a85ae547706 (commit) from fdb0cc80dbd323f8b7d60bb57af1e9bc6d126086 (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 dbd07c4d089ca32d385c0f044bfb6a85ae547706 Author: Gaetan Boisson Date: Fri Oct 9 14:44:44 2015 +0200 BUG 14991 Improve consistency of authority search At the moment we can search authorities from two places: authorities-home.pl and auth_finder.pl (while cataloguing). The auth_finder.pl page offers searching specifically in the $a of the main heading, while the authorities home page doesn't. Additionally, the wording and order of the options is different. authorities-home.pl has: Search main heading Search all headings Keyword search while auth_finder.pl has: Main entry ($a only) Main entry Anywhere Heading match This patch will add some consistency so that both pages offer: Search main heading ($a only) Search main heading Search all headings Search entire record Test plan: - apply patch - go to authorities home - check that previous searches are still working - check that the new ($a only) search is working - go to auth finder (from cataloguing) - check that searches are still working - check that we do have the same wording in both pages and that forms are now consistent Signed-off-by: Aleisha Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 4d96477544341d46da64973cfd0b96b4debaa3a7) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/auth-finder-search.inc | 35 +++++----- .../prog/en/includes/authorities-search.inc | 67 ++++++++++++++++++-- 2 files changed, 79 insertions(+), 23 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:27:45 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:27:45 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-37-g95e9daf Message-ID: 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.22.x has been updated via 95e9dafa38bf6f895cf62feac1df20e3b67a0640 (commit) via 44202df6acdfcfb371eccc6b8e8007a871304e49 (commit) from dbd07c4d089ca32d385c0f044bfb6a85ae547706 (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 95e9dafa38bf6f895cf62feac1df20e3b67a0640 Author: Jonathan Druart Date: Wed Dec 9 17:41:04 2015 +0000 Bug 15344: Remove some other calls of GetMemberDetails from pl scripts Same as previously. For these files it's a bit less obvious. To make sure these changes won't introduce any regression, check that the variable returned by GetMember is never used to get something else than a borrower fields. The 'flags' should not be get neither. For opac-user.tt it's different, other keys are got but there are defined in the pl script. On the way: - 'showname' is removed (never used) - fix scope var issue in opac-user.tt (BORROWER_INF.OPACPatronDetails vs OPACPatronDetails) Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall (cherry picked from commit 010a32d95f871853f5c597b2670f3de4c62cfa51) Signed-off-by: Julian Maurice commit 44202df6acdfcfb371eccc6b8e8007a871304e49 Author: Jonathan Druart Date: Wed Dec 9 17:00:10 2015 +0000 Bug 15344: Remove unucessary call to GetMemberDetails This subroutine does a lot a processing and should only be called when necessary. In the get_template_and_user subroutine (so called from any pages of Koha), it is call to pass the branchcode, title, firstname, surname and borrowernumber values for the logged in user. This subroutine calls GetMemberAccountRecords which retrieve the items infos for all accountlines entries of the logged in user. On members/members.pl, let's say you have 74 entries in the accountlines tables, the page will execute 115 SELECT instead of 35 if you don't have any accountlines entries. With this patch, the number of SELECT is always 31. To test this patch you should have technical skills to know what to do. Note that USER_INFO was an array of... 1 element. Now it's a hashref. Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall (cherry picked from commit ac541e0fa1c11254e110d94eed64c358e02e8aab) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 10 ++--- C4/Members.pm | 10 ----- admin/aqbudgets.pl | 4 +- admin/aqplan.pl | 6 +-- catalogue/detail.pl | 2 +- circ/circulation.pl | 2 +- circ/returns.pl | 8 ++-- circ/transferstoreceive.pl | 2 +- circ/waitingreserves.pl | 2 +- .../prog/en/includes/cateditor-ui.inc | 10 ++--- .../prog/en/modules/cataloguing/addbiblio.tt | 2 +- .../prog/en/modules/cataloguing/addbooks.tt | 2 +- .../opac-tmpl/bootstrap/en/includes/masthead.inc | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-account.tt | 2 +- .../bootstrap/en/modules/opac-downloadshelf.tt | 2 +- .../bootstrap/en/modules/opac-messaging.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 6 +-- .../bootstrap/en/modules/opac-shareshelf.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 2 +- .../bootstrap/en/modules/opac-suggestions.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 39 +++++++++----------- offline_circ/list.pl | 2 +- opac/opac-account.pl | 8 +--- opac/opac-ics.pl | 3 -- opac/opac-messaging.pl | 6 +-- opac/opac-passwd.pl | 3 +- opac/opac-privacy.pl | 3 +- opac/opac-user.pl | 6 +-- 28 files changed, 61 insertions(+), 89 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:30:41 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:30:41 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-42-g05e70e2 Message-ID: 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.22.x has been updated via 05e70e2e48d37ae0c68fcb82117e3d120710810f (commit) via 42f3e0d9ed845a8b44ac0bc3f8d5153811acab34 (commit) via 5c945298900413b7807fe1f1e79694feafba31f1 (commit) via 704e932d648c66ad81c0f79d8ae6b388595bcbcf (commit) via d772f8732c9623e246a0fad33fef5282c044f368 (commit) from 95e9dafa38bf6f895cf62feac1df20e3b67a0640 (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 05e70e2e48d37ae0c68fcb82117e3d120710810f Author: Jonathan Druart Date: Wed Dec 2 11:38:27 2015 +0000 Bug 14636: Remove debug message Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 9b9fb3ee0555cd51007af669f753f0a0e5ec661e) Signed-off-by: Julian Maurice commit 42f3e0d9ed845a8b44ac0bc3f8d5153811acab34 Author: Katrin Fischer Date: Wed Nov 25 18:00:33 2015 +0100 Bug 14636: Follow-up - fix typo in system preference name The preference is named "marcflavour" not "marcflavor". Without this change, search will always use "copyrightyear" and break search by publication date for UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 99a1d7f18a43a089d49d36b167cc1537fa058f79) Signed-off-by: Julian Maurice commit 5c945298900413b7807fe1f1e79694feafba31f1 Author: Fridolin Somers Date: Wed Nov 25 17:06:01 2015 +0100 Bug 14636: Item search - biblioitems column is publicationyear not publicationdate Signed-off-by: Katrin Fischer Thx for the follow-up! Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 2d0d71730163fbd13583532de622574737e34221) Signed-off-by: Julian Maurice commit 704e932d648c66ad81c0f79d8ae6b388595bcbcf Author: Katrin Fischer Date: Sat Nov 21 22:37:03 2015 +0100 Bug 14636: Item search - improving display - Changes "Publication Date" to "Publication date" in the CSV export - Fixes 'no JavaScript fallback' display to match the normal display - only show 'by' when it's UNIMARC and an author exist - show copyrightdate if publicationyear is empty To test: - Turn of Javascript in your browser before you item search. This will activate the alternative display. - For MARC21: - Verify that the author displays when existing and no 'by' is shown. - Verify that the publication date is now shown. - For UNIMARC: - Verify that 'by' only displays when there is an author to display. - Verify that the publication date is still shown. - Try the CSV export. - Verify that the CSV header now reads 'Publication date'. Signed-off-by: Owen Leonard Successfully tested non-JS behavior and CSV export. DID NOT test UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 2aa6518c8a000a824e2659eaffc3d1ac54156544) Signed-off-by: Julian Maurice commit d772f8732c9623e246a0fad33fef5282c044f368 Author: Katrin Fischer Date: Sat Nov 21 22:32:52 2015 +0100 Bug 14636: Item search - fix search and sort by publication date for MARC21 Problem: MARC21/NORMARC stores the publication date in biblio.copyrightdate, but UNIMARC uses biblioitems.publicationyear. To test: - Without patch in a MARC21 installation: - Search by publication date - Verify that the results don't match the publication year you searched for. - Try sorting the table by publication year. - Verify that the sort doesn't work. - Apply patch. - Repeat both, search and sort. - Verify both work correctly now. - Repeat tests on a UNIMARC installation. - Verify both still work. Signed-off-by: Owen Leonard Tested searching and sorting successfully in a MARC21 installation. DID NOT test in UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 0d2e83bca5b91376e9262b6cb0b993f09b919018) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: catalogue/itemsearch.pl | 9 ++++++++- .../prog/en/includes/catalogue/itemsearch_item.inc | 5 +++-- .../prog/en/includes/csv_headers/catalogue/itemsearch.tt | 2 +- .../intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt | 4 ++-- 4 files changed, 14 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:39:19 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:39:19 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-44-g638a634 Message-ID: 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.22.x has been updated via 638a6343f653fdf0a04504ada952d01978d4733a (commit) via db50ac5b8c6c72d15f4c5e2a96544abde432b0f6 (commit) from 05e70e2e48d37ae0c68fcb82117e3d120710810f (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 638a6343f653fdf0a04504ada952d01978d4733a Author: Fridolin Somers Date: Wed Nov 25 14:02:05 2015 +0100 Bug 15252 - Add tests Tested 4 patches together, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit f0da781368a187337236d64ee94d9c8cc65f90f7) Signed-off-by: Julian Maurice commit db50ac5b8c6c72d15f4c5e2a96544abde432b0f6 Author: Fridolin Somers Date: Wed Nov 25 12:34:18 2015 +0100 Bug 15252 - Patron search on start with does not work with several terms When searching a patron, search type can be 'start with' and 'contain'. If the search text contains a space (or a coma), this text is splitted into several terms. Actually, the search on 'start with' with several terms never returns a result. It is because the search composes an "AND" SQL query on terms. For example (I display only the surname part) : search type = contain : 'jean paul' => surname like '%jean% AND %paul%' search type = start with : 'jean paul' => surname like 'jean% AND paul%' The query for 'start with' is impossible. I propose, for search with start with, to not split terms : jean paul => surname like 'jean paul%' One can always use '*' to add more truncation : jea* pau* => surname like 'jea% pau%' This bug affects a lot surnames with several terms like 'LE GUELEC' or 'MAC BETH'. Note that the patch moves : $searchmember =~ s/,/ /g; It removes the test "if $searchmember" because $searchmember is tested and set to empty string previously : unless ( $searchmember ) { $searchmember = $dt_params->{sSearch} // ''; } Test plan : ========== - Create two patrons with firstname "Jean Paul" - Go to Patrons module - Choose "Starts with" in "Search type" filter - Perform a search on "Jean Paul" => without patch : you get no result => with this patch : you get the two results - Check you get the two results for search on "Jean Pau" - Check you get the two results for search on "Jea* Pau*" - Check you do not get results for search on "Jea Paul" - Choose "Contains" in "Search type" filter - Check you get the two results for search on "Jean Paul" - Check you get the two results for search on "Jean Pau" - Check you get the two results for search on "Jea* Pau*" - Check you get the two results for search on "Jea Paul" - Check you get the two results for search on "Paul Jean" Signed-off-by: Alex Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Bug 15252 - Patron search on start with does not work with several terms - followup 1 'start_with' is the default value of $searchtype, it can be explicit. Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Bug 15252 - correct UT searchtype value is contain and not contains Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a4f5564c855e31f6872fb5e3ef378381473f837c) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Utils/DataTables/Members.pm | 30 ++++++++---- t/DataTables/Members.t | 2 +- t/db_dependent/Utils/Datatables_Members.t | 76 +++++++++++++++++++++++++---- 3 files changed, 89 insertions(+), 19 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:43:32 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:43:32 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-45-g93b204f Message-ID: 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.22.x has been updated via 93b204f6b66ed9848a26accc632658f6d37e3ccd (commit) from 638a6343f653fdf0a04504ada952d01978d4733a (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 93b204f6b66ed9848a26accc632658f6d37e3ccd Author: Marc V?ron Date: Wed Dec 16 16:00:15 2015 +0100 Bug 15386: Checkout / patron pages: Hide menu items leading to 404 pages Some of the menu items on patron / Checkout related pages lead to a 404 page depending on the permissions. This patch hides them as appropriate. To test: - For a staff member A, set permission 'borrowers' only (+ 'catalogue') - Log in as A - Search a patron and display details - Verify that none of the menu items at the left lead to the 404 page - For a staff member B, set permission 'circulate_remaining_permission' only (+ catalogue) - Log in as B - Go to Circulation > Checkout, search a patron - Click menu items at the left, some of them lead to the 404 page - Verify that none of the menu items at the left lead to the 404 page - Do the same for a staff member C with both permissions set - Verify that menu items appear as expected Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Amended patch: I have remove the double if CAN_user_circulate_circulate_remaining_permissions statement (and group block into one). And also remove unecessary change ('IF a IF b' instead of existing 'IF a && b') Signed-off-by: Kyle M Hall (cherry picked from commit 976d715ac52a3c54cbc397d22127e773f977e0db) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/circ-menu.inc | 30 +++++++++++++------- 1 file changed, 19 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:46:42 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:46:42 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-47-g2eac97b Message-ID: 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.22.x has been updated via 2eac97ba65d869f34641f6eb7fd22047a104a794 (commit) via cc3b2d05905b8c6c7000a0252e277c151c0eeae6 (commit) from 93b204f6b66ed9848a26accc632658f6d37e3ccd (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 2eac97ba65d869f34641f6eb7fd22047a104a794 Author: Fr?d?ric Demians Date: Wed Dec 30 13:10:16 2015 +0100 Bug 15429 UT for _parseletter modifying its parameter Before/after applying the related patch, do: prove -v t/db_dependent/Letters.t Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit fd07e3296b64a78edf1cf947a824147f1adbba1a) Signed-off-by: Julian Maurice commit cc3b2d05905b8c6c7000a0252e277c151c0eeae6 Author: Marc V?ron Date: Mon Dec 28 10:29:17 2015 +0100 Bug 15429 - sub _parseletter should not change referenced values In C4/Letters.pm, sub _parseletter changes values that are passed by reference. E.g. patron's expiry date can change from iso format to syspref format, leading to strange behaviour in the calling routines (see Bug 15423). This patch makes sub _parseletter work on a copy of the referenced values. (Submitted to get feedback - is this the way to go?) Signed-off-by: Fr?d?ric Demians Good solution to real time bomb. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 002a2dcb1f1faed12a24fd820dc5fdaad60f3512) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Letters.pm | 8 ++++++-- t/db_dependent/Letters.t | 9 ++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 10:51:34 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 09:51:34 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-48-g9c302d9 Message-ID: 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.22.x has been updated via 9c302d9c09c2c30824c3e4a1c934a5c76883cb4c (commit) from 2eac97ba65d869f34641f6eb7fd22047a104a794 (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 9c302d9c09c2c30824c3e4a1c934a5c76883cb4c Author: Nicholas van Oudtshoorn Date: Tue Dec 22 11:44:13 2015 +0800 Bug 15405 - XML paths to zebra libraries is wrong for 64-bit installs on non-Debian linux Adjusts the modulePath to search in the well-known location for 64 bit systems. Required for at least Fedora. Test plan: Without this patch, doing a zebra reindex on a fedora-based install will cause errors like this: 15:10:47-01/05 zebraidx(16108) [warn] No such record type: dom./etc/koha/zebradb/biblios/etc/dom-config.xml With this patch, reindexing should just work. Signed-off-by: Chris Cormack I have tested this doesn't break on debian/ubuntu systems, someone with a non debian system will need to test it on that Signed-off-by: Bob Ewart bob-ewart at bobsown.com It works on openSUSE Leap 42.1 Signed-off-by: Marcel de Rooy Just noting that the debian zebra files already contain much more paths here. Signed-off-by: Kyle M Hall (cherry picked from commit 3d7bb7647dd42f9c05e8b4c35ec32cd15ec4dcc4) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: etc/zebradb/zebra-authorities-dom.cfg | 2 +- etc/zebradb/zebra-authorities.cfg | 2 +- etc/zebradb/zebra-biblios-dom.cfg | 2 +- etc/zebradb/zebra-biblios.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 11:18:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 10:18:36 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-49-g53cebcb Message-ID: 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.22.x has been updated via 53cebcb07d8e5c58aa4f9e9da25e9be11444ee51 (commit) from 9c302d9c09c2c30824c3e4a1c934a5c76883cb4c (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 53cebcb07d8e5c58aa4f9e9da25e9be11444ee51 Author: Owen Leonard Date: Fri Dec 4 20:37:47 2015 -0500 Bug 15327: Minor tweaks to Bootstrap modal handling on Staged MARC management page This patch makes a couple of minor corrections to the template for staged MARC management. The MARC preview is now formatted using the "html" option, and some obsolete Greybox-related code has been removed. To test: 1. Apply the patch and go to Tools -> Staged MARC management. 2. Click any staged MARC file containing multiple records. 3. Click the title in the "Citation" column and confirm that a Bootstrap modal is triggered showing the correct data. Signed-off-by: Hector Castro Modal looks much better. Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 23c7de2bc7af7d2d8bf725e536f665bf78116065) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 12:31:51 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 11:31:51 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-144-g58699d7 Message-ID: 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 58699d77e75dbbf955aa5f28f0ac489539fabe49 (commit) via 3d3c53ec017b6973e2cf1b27830c67fac95c7724 (commit) from ff1579de6d2e95158cf4f9e9261068bdeef31f53 (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 58699d77e75dbbf955aa5f28f0ac489539fabe49 Author: Kyle M Hall Date: Thu Dec 31 11:23:42 2015 +0000 Bug 15383 [QA Followup] - Change language used Signed-off-by: Kyle M Hall commit 3d3c53ec017b6973e2cf1b27830c67fac95c7724 Author: Marc V?ron Date: Tue Dec 15 17:06:17 2015 +0100 Bug 15383 - Opac: Autority details: Fix translation issues with a tags Fix translation issue in opac-auth-detail.tt and opac-auth-MARCdetail.tt (string splitting by link tag) making it hard to have a gramaticaly correct translation. To test: - Apply patch - In OPAC, go to search an Authority and display details (View full heading) - Verify the line "Usage in records: x" in both Normal view and MARC view Signed-off-by: Aleisha Signed-off-by: Kyle M Hall Not sure if "Usage in records" is the best wording, but I have no great options either, "Number of records used in:"? Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-MARCdetail.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 12:38:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 11:38:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-145-g30f5b7b Message-ID: 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 30f5b7b0a62e243ce06f896c15b2689ac57706eb (commit) from 58699d77e75dbbf955aa5f28f0ac489539fabe49 (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 30f5b7b0a62e243ce06f896c15b2689ac57706eb Author: Kyle M Hall Date: Wed Dec 30 18:55:33 2015 +0000 Bug 15447 - log4perl.conf does not have __LOG_DIR__ replaced when installing Since the introduction of Koha::Logger, it appears that the log4perl.conf config file has been broken. The references to __LOG_DIR__ is not being replaced. Test Plan: 1) Apply this patch 2) Run 'perl Makefile.PL' 3) Run 'make' 4) Open blib/KOHA_CONF_DIR/log4perl.conf with a text editor 5) Note the log file paths are correctly set, and do not have __LOG_DIR__ in them. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Makefile.PL | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 13:33:22 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 12:33:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-153-g0aa6ba1 Message-ID: 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 0aa6ba1599bb0de923619a365f529119dc5c67a6 (commit) via 3128151713128985e6dbf2e54ce75bbd0c329a0f (commit) via 957da3282ce774b1629de69ffcb7af5e0f72d9ee (commit) via c295117e4dfaea4e28665158cd2dbd5ecb789139 (commit) via 0e2ccf0801d5f578faba0dc508eaa130d72ab0c8 (commit) via 736bcf457cb01b0835f7af041d235f89ac337e3a (commit) via 8438d7e07657906b490605433987a76f74a63fe3 (commit) via 33ff797c6b3646f7d79f0df73291705340acb8c7 (commit) from 30f5b7b0a62e243ce06f896c15b2689ac57706eb (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 0aa6ba1599bb0de923619a365f529119dc5c67a6 Author: Kyle M Hall Date: Thu Dec 31 12:33:20 2015 +0000 Bug 12375 - DBrev 3.23.00.006 commit 3128151713128985e6dbf2e54ce75bbd0c329a0f Author: Kyle M Hall Date: Thu Dec 31 12:27:15 2015 +0000 Bug 12375 [7] - Update to use Koha::Object classes This code was written before the introduction of Koha::Object(s) Considering the triviality of updating the code, we should go ahead and switch this code to use Koha::Object(s) now. commit 957da3282ce774b1629de69ffcb7af5e0f72d9ee Author: Kyle M Hall Date: Fri Jul 25 09:31:22 2014 -0400 Bug 12375 [6] [QA Followup] - Supress warnings for undefined indexes commit c295117e4dfaea4e28665158cd2dbd5ecb789139 Author: Kyle M Hall Date: Mon Jul 21 09:55:02 2014 -0400 Bug 12375 [5] [QA Followup] - Don't assume X Y and Z are used in order commit 0e2ccf0801d5f578faba0dc508eaa130d72ab0c8 Author: Kyle M Hall Date: Thu Jun 5 11:26:40 2014 -0400 Bug 12375 [4] - Replace use of DBI with Koha::Database in C4::Serials::NewIssue Currently, all serials enumeration data is stored in conglomerated fashion in serial.serialseq. This makes it extremely difficult to do any reporting based on the individual sequence values due to this fact. In addition to the formatted version of the sequence, we should be storing the individual values as well. Test Plan: 1) Apply this patch 2) Run updatedatabase.pl 3) Create a new subscription, and add serials to it. The new x y and z fields should be populated with the same data the replaces {X} {Y} and {Z} in the enumeration field. 4) Inspect some existing serials. The update script will have made a best effort to recover the existing enumeration data to store in separate fields. Signed-off-by: Paul Landers commit 736bcf457cb01b0835f7af041d235f89ac337e3a Author: Kyle M Hall Date: Thu Jun 5 10:52:30 2014 -0400 Bug 12375 [3] - Store serials enumeration data in separate fields Signed-off-by: Paul Landers commit 8438d7e07657906b490605433987a76f74a63fe3 Author: Kyle M Hall Date: Thu Jun 5 10:53:13 2014 -0400 Bug 12375 [2] - Update Serial schema file Signed-off-by: Paul Landers commit 33ff797c6b3646f7d79f0df73291705340acb8c7 Author: Kyle M Hall Date: Tue Oct 23 14:48:41 2012 -0400 Bug 12375 [1] - Update database Signed-off-by: Paul Landers ----------------------------------------------------------------------- Summary of changes: C4/Serials.pm | 95 +++++++++++++--------- Koha.pm | 2 +- Koha/Schema/Result/Serial.pm | 30 ++++++- Koha/{Branch.pm => Serial.pm} | 8 +- Koha/{Borrowers.pm => Serials.pm} | 12 +-- Koha/{Borrower.pm => Subscription.pm} | 8 +- Koha/{Borrowers.pm => Subscription/Histories.pm} | 12 +-- Koha/{Borrower.pm => Subscription/History.pm} | 8 +- Koha/{Borrowers.pm => Subscriptions.pm} | 12 +-- installer/data/mysql/updatedatabase.pl | 67 ++++++++++++++- 10 files changed, 180 insertions(+), 74 deletions(-) copy Koha/{Branch.pm => Serial.pm} (88%) copy Koha/{Borrowers.pm => Serials.pm} (84%) copy Koha/{Borrower.pm => Subscription.pm} (86%) copy Koha/{Borrowers.pm => Subscription/Histories.pm} (79%) copy Koha/{Borrower.pm => Subscription/History.pm} (84%) copy Koha/{Borrowers.pm => Subscriptions.pm} (82%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 13:42:23 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 12:42:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-159-g085beb2 Message-ID: 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 085beb209ad1b2025902f95d4b5586dc1f7a703a (commit) via 1dbba29524c04164c6d3392d31db9b6e419be672 (commit) via 9844c5a6b9d056a5a486fcdf0e6f3c7b44aaf419 (commit) via 6257b748341eb552e94e77f4be462568c638ad9b (commit) via 738d0cb941a26bc9d3226be90a4fc9ef67527550 (commit) via 3ff76f3357fe8cdd6bf28384171dfdeb32a82d95 (commit) from 0aa6ba1599bb0de923619a365f529119dc5c67a6 (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 085beb209ad1b2025902f95d4b5586dc1f7a703a Author: Kyle M Hall Date: Thu Oct 15 09:44:13 2015 -0400 Bug 13918 [QA Followup] - Remove unnecessary reference to $wcount Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 1dbba29524c04164c6d3392d31db9b6e419be672 Author: Kyle M Hall Date: Thu Dec 31 12:39:33 2015 +0000 Bug 13918 [QA Followup] - Remove dead template code Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 9844c5a6b9d056a5a486fcdf0e6f3c7b44aaf419 Author: Kyle M Hall Date: Mon Aug 24 11:10:58 2015 -0400 Bug 13918 [QA Followup] - Improve $biblio->subtitles() Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 6257b748341eb552e94e77f4be462568c638ad9b Author: Kyle M Hall Date: Mon Aug 24 10:55:28 2015 -0400 Bug 13918 [QA Followup] - Remove reserves_count Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 738d0cb941a26bc9d3226be90a4fc9ef67527550 Author: Kyle M Hall Date: Mon Aug 24 10:48:22 2015 -0400 Bug 13918 [QA Followup] - Unit Tests Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 3ff76f3357fe8cdd6bf28384171dfdeb32a82d95 Author: Kyle M Hall Date: Wed Mar 18 11:45:07 2015 -0400 Bug 13918 - Add waiting expiration date to opac list of holds for user Waiting holds for patrons in the opac should display the hold expiration date based on the max pickup delay if it is set. Test Plan: 1) Ensure ReservesMaxPickUpDelay is set 2) Place a hold on a record 3) Check in the item, use it to fill the hold 4) Log into the opac as that user 5) View the holds list, note the 'until ' addition to the waiting hold line. Signed-off-by: Kyle M Hall Signed-off-by: Cathi Wiggins Signed-off-by: Megan Wianecki Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Biblio.pm | 19 ++++ Koha/Hold.pm | 33 ++++++ .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 109 +++++++------------- opac/opac-user.pl | 79 ++------------ t/db_dependent/BiblioObject.t | 58 +++++++++++ t/db_dependent/Hold.t | 59 ++++++++++- 6 files changed, 209 insertions(+), 148 deletions(-) create mode 100755 t/db_dependent/BiblioObject.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 13:53:38 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 12:53:38 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-163-g9348f84 Message-ID: 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 9348f8420bd5049fb553cfe599d8eef555b07339 (commit) via 91374f0840363eb24c812892ca4bc0c4b0efb9f8 (commit) via 085ccba5a4f870b720efdb188b73bc7a99cbd878 (commit) via 7628c4a8540091f577c26211b4174c843a976126 (commit) from 085beb209ad1b2025902f95d4b5586dc1f7a703a (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 9348f8420bd5049fb553cfe599d8eef555b07339 Author: Kyle M Hall Date: Thu Dec 31 12:50:08 2015 +0000 Bug 13624 - DBrev 3.23.00.007 Signed-off-by: Kyle M Hall commit 91374f0840363eb24c812892ca4bc0c4b0efb9f8 Author: Charles Farmer Date: Fri Oct 16 10:59:24 2015 -0400 Bug 13624 - renaming atomicupdate from .pl to .perl I have not tested this very thoroughly e.g. understood the SQL changes etc. since the patch has been signed off twice before. But it seems to me like this patch is OK. Applied, ran automatic tests and saved some values in the overduerules matrix/tabs OK. Signed-off-by: Eivin Giske Skaaren Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 085ccba5a4f870b720efdb188b73bc7a99cbd878 Author: Blou Date: Fri Jun 5 15:06:36 2015 -0400 Bug 13624 - Tidying the atomicupdate file and kohastructure.sql Signed-off-by: Martin Persson Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 7628c4a8540091f577c26211b4174c843a976126 Author: Blou Date: Tue Apr 21 13:54:45 2015 -0400 Bug 13624 - Remove columns branchcode, categorytype from table overduerules_transport_types This patch is a _requirement_ to Bug #12771, and will be necessary once we start managing more than 3 levels of overdue notice TEST PLAN 1) Create or improve on overduerules data .1) Intranet -> tools -> overdue notices .2) Make sure to have data in first, second and third tabs .3) Make sure to have checked mixes of Email/Phone/Print/SMS (depending on availability) .4) Make sure to have different letters and delay on first/second/third tab for at least one category .5) Remember it all. 2) Apply patch 3) run installer/data/mysql/atomicupdate/update_13624_overduerules_transport_type.pl 4) run t/db_dependant/Overdues.t 5) Validate Overdue Notice page .1) validate data entered previously is still there .2) Add some more, save changes, validate In installer/data/mysql/atomicupdate/update_13624_overduerules_transport_type.pl - A new column and primary key, 'overduerules_id', is added to the table 'overduerules' - A new column referencing a foreign key, 'overduerules_id', is added to the table 'overduerules_transport_types' - The columns 'branchcode' and 'categorytype' are removed from the table 'overduerules_transport_types' - Data is migrated from the old tables to the new ones In installer/data/mysql/kohastructure.sql : - Table 'overduerules' - Added a primary key named 'overduerules_id' - Table 'overduerules_transport_types' - Added a foreign key named 'overduerules_id' - Dropped columns 'branchcode', 'categorycode' since we now have them referenced through 'overduerules_id' In tools/overduerules.pl - INSERT and DELETE queries on 'overduerules_transport_types' were changed to reflect the new schema In C4/Overdues.pm : - The SQL query of the function 'GetOverdueMessageTransportTypes' is changed to take into account the new design of 'overduerules_transport In t/db_dependent/Overdues.t : - The INSERT calls before the tests were changed to take into account the new design of 'overduerules' and 'overduerules_transport_types' Sponsored by : Halland County Library Signed-off-by: Jesse Maseto Signed-off-by: Martin Persson Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Overdues.pm | 7 ++++-- Koha.pm | 2 +- installer/data/mysql/kohastructure.sql | 10 ++++---- installer/data/mysql/updatedatabase.pl | 41 ++++++++++++++++++++++++++++++++ t/db_dependent/Overdues.t | 35 +++++++++++++-------------- tools/overduerules.pl | 6 ++--- 6 files changed, 72 insertions(+), 29 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:01:18 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:01:18 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-50-g7f708a3 Message-ID: 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.22.x has been updated via 7f708a361b95c449a972b8571acde4c52d3f336b (commit) from 53cebcb07d8e5c58aa4f9e9da25e9be11444ee51 (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 7f708a361b95c449a972b8571acde4c52d3f336b Author: Mark Tompsett Date: Tue Dec 15 10:15:25 2015 -0500 Bug 15382: 245$a visibility constraints not respected in opac-MARCdetail.pl This tiny change determines if the bibliotitle should be set or not in accordance with the 'Advanced constraints' visiblity setting for OPAC. TEST PLAN --------- 1) Find a record detail in OPAC 2) Click 'MARC view' -- 245$a should be visible. 3) In a new tab, log into the staff client 4) Click 'Koha administration' 5) Click 'MARC bibliographic framework' 6) Click 'MARC structure' for the framework of the record displayed in OPAC. 7) Search for tag: 245, and click 'Search' 8) Click 'Subfields' 9) Click 'Edit' beside the a subfield. 10) Click 'Advanced constraints' 11) Uncheck 'OPAC' 12) Click 'Save changes' 13) In the OPAC tab, refresh -- 245$a (Title) will still be visible! 14) Apply this patch 15) In the OPAC tab, refresh -- 245$a (Title) will be hidden. 16) In the staff client, navigate back to 'Advanced constraints' and check 'OPAC' 17) Click 'Save changes' 18) In the OPAC tab, refresh -- 245$a (Title) will be visible again. 19) Run koha qa tools Signed-off-by: Aleisha Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall (cherry picked from commit d827bb50d93a83c0ab7ce326675284bee411959a) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: opac/opac-MARCdetail.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:13:07 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:13:07 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-52-g776f738 Message-ID: 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.22.x has been updated via 776f738382010f2d9ce8eef7efc73ed5fca45d6c (commit) via 6438df72872d88c263b4fa331c2d44adb0ac2fa4 (commit) from 7f708a361b95c449a972b8571acde4c52d3f336b (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 776f738382010f2d9ce8eef7efc73ed5fca45d6c Author: Aleisha Date: Sun Dec 20 19:57:54 2015 +0000 Bug 15373: More changes of Zip to ZIP on intranet To test: - Log in to Staff Interface, go to Administration, Libraries and Groups (cgi-bin/koha/admin/branches.pl). Click 'New library' and confirm that it says 'ZIP/Postal Code:' in the form. - Go back to Administration, Cities and towns (cgi-bin/koha/admin/cities.pl). Confirm it says 'ZIP/Postal code' in table heading. Click 'New city' and confirm it says 'ZIP/Postal code:' in form - Go back to Administration, Global system preferences, I18L/L10N (cgi-bin/koha/admin/preferences.pl?tab=i18n_l10n). Under AddressFormat, confirm all available options say '[ZIP/Postal Code]' - Go to Reports, Patrons (cgi-bin/koha/reports/borrowers_stats.pl). Confirm it says 'ZIP/Postal code' under Title - Go to Tools, Batch patron modification (cgi-bin/koha/tools/modborrowers.pl), enter any card number and click 'Continue'. Confirm it says 'ZIP/Postal code' in the table of patron details, and in the form to edit Signed-off-by: Mark Tompsett NOTE: Tested together with first patch. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 5df49b04ef69ad6b33b3f7744acb379c0dd83b0f) Signed-off-by: Julian Maurice commit 6438df72872d88c263b4fa331c2d44adb0ac2fa4 Author: Aleisha Date: Mon Dec 14 22:43:26 2015 +0000 Bug 15373: Changing Zip to ZIP on OPAC and Intranet To test: 1) Login to OPAC --> You personal details. 2) Ensure it says 'ZIP/Postal Code' under Main Address, Alternate Address and Alternate Contact 3) Login to Staff interface --> Go to a member's page (ie koha/members/memberentry.pl) --> Details. 4) Ensure it says 'ZIP/Postal Code' under Alternate address and Alternative contact 5) Click Edit 6) Ensure it says 'ZIP/Postal Code' under Main Address, Alternate Address and Alternate Contact Signed-off-by: Barry Cannon Signed-off-by: Mark Tompsett NOTE: Tested together with second patch. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 3da8abcfeff331d5022ee54bbf27ecfbc4ebe18c) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/columns.def | 6 +++--- .../prog/en/includes/member-alt-address-style-de.inc | 2 +- .../prog/en/includes/member-alt-address-style-us.inc | 2 +- .../prog/en/includes/member-alt-contact-style-de.inc | 2 +- .../prog/en/includes/member-alt-contact-style-us.inc | 2 +- .../prog/en/includes/member-main-address-style-de.inc | 2 +- .../prog/en/includes/member-main-address-style-us.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt | 6 +++--- .../prog/en/modules/admin/preferences/i18n_l10n.pref | 4 ++-- .../intranet-tmpl/prog/en/modules/members/members-update.tt | 6 +++--- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 4 ++-- .../intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt | 4 ++-- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 6 +++--- reports/borrowers_stats.pl | 2 +- 16 files changed, 27 insertions(+), 27 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:14:10 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:14:10 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-53-g99fc3af Message-ID: 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.22.x has been updated via 99fc3af0a6b13b83ada683cccce025c0c0dbc224 (commit) from 776f738382010f2d9ce8eef7efc73ed5fca45d6c (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 99fc3af0a6b13b83ada683cccce025c0c0dbc224 Author: Marc V?ron Date: Mon Dec 28 16:00:54 2015 +0100 Bug 15432: t/db_dependent/Letters.t depends on external data/configuration To test: - Set system preference LetterLog to 'Don't log' - prove t/db_dependent/Letters.t - Result: Fails on test 62 - Successfully sent claim - Apply patch - Test again - Result: Pass OK Signed-off-by: Jonathan Druart Amended patch: removed the bug reference, not needed. Signed-off-by: Kyle M Hall (cherry picked from commit c92b1556ef9250d7e038dce2d083c60415035b95) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Letters.t | 3 +++ 1 file changed, 3 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:19:17 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:19:17 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-54-g2f7f6e9 Message-ID: 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.22.x has been updated via 2f7f6e9ac01476e4a7a6acee829a1fc33985c2a2 (commit) from 99fc3af0a6b13b83ada683cccce025c0c0dbc224 (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 2f7f6e9ac01476e4a7a6acee829a1fc33985c2a2 Author: Kyle M Hall Date: Tue Dec 22 15:37:41 2015 +0000 Bug 15409 - Plugins section missing from Admin menu sidebar The sidebar menu in the Admin area of Koha is missing a section for Plugins. Test Plan: 1) Apply this patch 2) Log in with a user that has plugin permissions 3) Browse to a page with the admin menu sidebar, such as /cgi-bin/koha/admin/transport-cost-matrix.pl 4) Note the new Plugins section with a link to manage plugins 5) Log in with a user that has no plugin permissions 6) Revisit the same page, note the Plugins section is no longer visible Signed-off-by: Aleisha Signed-off-by: Marcel de Rooy Signed-off-by: Brendan A Gallagher (cherry picked from commit 65d3203525470d8b0b44374bdc66b979de57c426) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc | 8 ++++++++ 1 file changed, 8 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:19:57 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:19:57 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-55-ge33bcec Message-ID: 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.22.x has been updated via e33bcec68855397ca16f352ff63c85e3789bea36 (commit) from 2f7f6e9ac01476e4a7a6acee829a1fc33985c2a2 (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 e33bcec68855397ca16f352ff63c85e3789bea36 Author: Marc V?ron Date: Wed Dec 9 16:10:10 2015 +0100 Bug 15340: Translatability: fix issue with 'or choose' splitted by tag This patch fixes a translatability issue due to tags. To verify: - Make sure that you have some entries in 'Cities and Towns' ( Home > Administration > Cities ) - Edit the main address of a patron's details - Locate field "City", at the right you have the text 'or choose' followed by a drop-down ('choose' is bold) - change language e.g. to German, the text reads 'or ausw?hlen' (instead of 'oder ausw?hlen') - This is due to the tags around 'choose' To test: - Apply patch - Verify that the tags around 'choose' are removed in: koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-de.inc koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-us.inc Signed-off-by: Fr?d?ric Demians Obvious issue/solution Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit a85fd85545a885e8ebbcc417b7f180baede70304) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/member-main-address-style-de.inc | 2 +- .../intranet-tmpl/prog/en/includes/member-main-address-style-us.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:20:36 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:20:36 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-56-g855cd2a Message-ID: 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.22.x has been updated via 855cd2a40080a39eeb35d3977a62c0f6909e5218 (commit) from e33bcec68855397ca16f352ff63c85e3789bea36 (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 855cd2a40080a39eeb35d3977a62c0f6909e5218 Author: Katrin Fischer Date: Sun Nov 22 02:52:02 2015 +0100 Bug 14853: Change 'Fund' to 'Shipping fund' Changes the 'Fund' to 'Shipping fund' so it's clear what the fund setting is used for. To test: - Receive a new shipment - Verify that 'Shipping fund' displays on the parcels page - Search for your invoice - View invoice details - Verify that 'Shipping fund' displays on the invoice page Followed test plan (changed lines: '...cost' -> '...fund') Display OK on both places. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 3f68107b1012e47467d1fb96b44347499332ba22) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:21:40 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:21:40 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-57-g2763eb8 Message-ID: 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.22.x has been updated via 2763eb87de9a234d0ba8e84042ed26bfa7fbdadc (commit) from 855cd2a40080a39eeb35d3977a62c0f6909e5218 (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 2763eb87de9a234d0ba8e84042ed26bfa7fbdadc Author: Mirko Tietgen Date: Fri Dec 18 10:24:29 2015 +0100 Bug 15396: fix MARC21 Leader plugin label '1-4 Record size' The plugin label says "1-4 Record size", but it's actually 0-4. http://www.loc.gov/marc/bibliographic/bdleader.html Test plan: -apply patch -in cataloging, open a record in a framework that uses the plugin -open LEADER/000 and check that the label says "0-4 Record size" now Signed-off-by: Bernardo Gonzalez Kriegel Good catch, fixed tab, no errors. Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher (cherry picked from commit 4e61aa5ef55e214e60920eb3556f0c96dbe3e23a) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/cataloguing/value_builder/marc21_leader.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:23:23 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:23:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-171-gc66e747 Message-ID: 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 c66e7475f8bb55b4adf9ffc8a474dc80a9d45b4d (commit) via 1167871402ad29573893934ac8a52416dec83046 (commit) via 49a0b63f62a6af00e48af57833399a31067e09c9 (commit) via cd77a7b74edd711443ae07e5b7e13fa67f169069 (commit) via bec70466d5dfc6243cb7cb4c5d7816ec9fb68077 (commit) via 3ebf343af674269e924169625c5e8447215ae3fe (commit) via 017f62ea3752a459a1f5cafecae85e9fb5bfbdd1 (commit) via e8e327e47fa33617ad061c2c3e344352e1444117 (commit) from 9348f8420bd5049fb553cfe599d8eef555b07339 (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 c66e7475f8bb55b4adf9ffc8a474dc80a9d45b4d Author: Kyle M Hall Date: Thu Dec 31 13:14:57 2015 +0000 Bug 9303 - DBrev 3.23.00.008 Signed-off-by: Kyle M Hall commit 1167871402ad29573893934ac8a52416dec83046 Author: Kyle M Hall Date: Wed Jun 3 13:54:21 2015 -0400 Bug 9303 [QA Followup] - Restore missing svc script Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 49a0b63f62a6af00e48af57833399a31067e09c9 Author: Kyle M Hall Date: Mon May 11 07:31:27 2015 -0400 Bug 9303 [QA Followup] - Restore ability for patron to control setting Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit cd77a7b74edd711443ae07e5b7e13fa67f169069 Author: Kyle M Hall Date: Thu Apr 23 13:56:55 2015 -0400 Bug 9303 [QA Followup] - Restore missing biblio relationship Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit bec70466d5dfc6243cb7cb4c5d7816ec9fb68077 Author: Kyle M Hall Date: Tue Apr 21 10:21:45 2015 -0400 Bug 9303 [QA Followup] - Remove extra 'USE Koha', change "Call number" back to "Call no." Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 3ebf343af674269e924169625c5e8447215ae3fe Author: Kyle M Hall Date: Mon Mar 2 03:09:38 2015 -0800 Bug 9303 [3] - relative's checkouts in the opac Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 017f62ea3752a459a1f5cafecae85e9fb5bfbdd1 Author: Kyle M Hall Date: Mon Mar 2 03:08:53 2015 -0800 Bug 9303 [2] - relative's checkouts in the opac - Schema Updates e opac/svc/patron/ Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit e8e327e47fa33617ad061c2c3e344352e1444117 Author: Kyle M Hall Date: Mon Mar 2 03:07:52 2015 -0800 Bug 9303 [1] - relative's checkouts in the opac - Database Updates This patch gives patrons the option of allowing other linked relatives to view his or her checkouts from opac-user.pl in a manner similiar to the patron's own checkouts tab. By default the setting is not enabled. Test Plan: 1) Apply this patch 2) Run updatedatabase.pl 3) Create three borrowers, link them as relatives 4) In the OPAC, go to "my privacy" and choose to allow relatives to view current checkouts for borrowers A and B 5) Check out some items to each borrower 6) Log into the OPAC as borrower A, you should see a "Relatives' checkouts" tab. In this tab you should see the checkouts for borrower B 7) Log into the OPAC as borrower C, you should be able to view the current checkouts for both borrower A and borrower B Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 1 - C4/Reserves.pm | 1 + Koha.pm | 2 +- Koha/Borrower.pm | 12 +++++ Koha/Schema/Result/Borrower.pm | 14 ++++- Koha/Schema/Result/Deletedborrower.pm | 8 +++ Koha/Schema/Result/Item.pm | 7 +++ installer/data/mysql/kohastructure.sql | 2 + installer/data/mysql/sysprefs.sql | 2 + installer/data/mysql/updatedatabase.pl | 24 ++++++++- .../prog/en/modules/admin/preferences/opac.pref | 7 +++ .../prog/en/modules/admin/preferences/patrons.pref | 6 +++ .../prog/en/modules/members/memberentrygen.tt | 15 ++++++ .../prog/en/modules/members/moremember.tt | 10 ++++ .../bootstrap/en/modules/opac-memberentry.tt | 43 +++++++++++++++ .../opac-tmpl/bootstrap/en/modules/opac-privacy.tt | 23 +++++++- .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 56 ++++++++++++++++++-- members/moremember.pl | 1 + opac/opac-memberentry.pl | 5 +- opac/opac-privacy.pl | 38 ++++++++----- opac/opac-user.pl | 16 ++++++ opac/svc/patron/show_checkouts_to_relatives | 56 ++++++++++++++++++++ 22 files changed, 324 insertions(+), 25 deletions(-) create mode 100755 opac/svc/patron/show_checkouts_to_relatives hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:24:14 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:24:14 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-58-g52a9bed Message-ID: 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.22.x has been updated via 52a9bed15f91699981b27cc78fee54fd9bd378df (commit) from 2763eb87de9a234d0ba8e84042ed26bfa7fbdadc (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 52a9bed15f91699981b27cc78fee54fd9bd378df Author: Olli-Antti Kivilahti Date: Thu Oct 29 15:40:50 2015 +0200 Bug 15080 - ./translate tool should tell if xgettext executable is missing Just upgraded our Koha container to 14.04 and noticing the misc/translator/translate doesn't work. This is because of a missing package gettext. This patch makes ./translate die with a helpful suggestion to install gettext if xgettext-program is missing. Signed-off-by: Frederic Demians I can reproduce the bug by desinstalling 'gettext' package on a Debian box. I confirm that without this patch, 'translate' command fails miserably. Suggesting to install gettext package is welcomed. Signed-off-by: Kyle M Hall Signed-off-by: Jesse Weaver (cherry picked from commit 37b0e2ce9cbc4ba5070d22c96b357ddea1db084b) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: misc/translator/LangInstaller.pm | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:27:23 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:27:23 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-59-g1dcb57f Message-ID: 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.22.x has been updated via 1dcb57f84e8fa84a80f53be2bbcc0078d232eaed (commit) from 52a9bed15f91699981b27cc78fee54fd9bd378df (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 1dcb57f84e8fa84a80f53be2bbcc0078d232eaed Author: Nicole C. Engard Date: Mon Dec 7 13:15:04 2015 -0600 Bug 13136: Add missing help file for label-manage.pl This patch adds in a help file for the new label-manage page. To test: * visit label creator * click manage and choose an option * click 'help' and confirm the file loads * repeat for all options under manage Signed-off-by: Hector Castro Works as advertised. Tab char corrected Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver (cherry picked from commit 8a02409d180d4e4be8a2d9bef6be5373a8b1a907) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/help/labels/label-manage.tt | 105 ++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-manage.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:33:15 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:33:15 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-181-gc68c399 Message-ID: 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 c68c39998325d259e311e4f0d206fc017d0aa9d6 (commit) via e7a2d032493da9c4b451ea6adba7b9fa08905441 (commit) via df05997d0108e2cf3b083b1a8511c47e91730c71 (commit) via 69844bbd684247c76d1c2b5e3b9cc358191bcdac (commit) via 393d7c66d25845a853cd2ffa476555fbe8ae0a47 (commit) via c9840ad9182a6fa34561c62a7d1fe152efba2d35 (commit) via 678df3132fd3791a91be63324f38a3d00a1efa8f (commit) via c6a40b272d0753575e8f9b21351bac2075176bf9 (commit) via 2949733e67a7554340ca63f580dba962ed4cec32 (commit) via 85c5efa0c7fc98f30cc5983ba476c7712bb1dcac (commit) from c66e7475f8bb55b4adf9ffc8a474dc80a9d45b4d (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 c68c39998325d259e311e4f0d206fc017d0aa9d6 Author: Kyle M Hall Date: Thu Dec 31 13:31:35 2015 +0000 Bug 11622 - DBrev 3.23.00.009 Signed-off-by: Kyle M Hall commit e7a2d032493da9c4b451ea6adba7b9fa08905441 Author: Kyle M Hall Date: Thu Sep 24 08:11:03 2015 -0400 Bug 11622 [QA Follouwp] - Display payment block only if there is something to pay Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit df05997d0108e2cf3b083b1a8511c47e91730c71 Author: Kyle M Hall Date: Thu Sep 24 08:06:16 2015 -0400 Bug 11622 [QA Followup] - Fix currency issue, add error template Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 69844bbd684247c76d1c2b5e3b9cc358191bcdac Author: Kyle M Hall Date: Tue Sep 22 08:40:01 2015 -0400 Bug 11622 [QA Followup] - Show ability to pay only if JavaScript is enabled Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 393d7c66d25845a853cd2ffa476555fbe8ae0a47 Author: Kyle M Hall Date: Tue Sep 22 08:11:40 2015 -0400 Bug 11622 [QA Followup] - Use Koha's active currency for PayPal Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit c9840ad9182a6fa34561c62a7d1fe152efba2d35 Author: Kyle M Hall Date: Mon Sep 21 11:30:25 2015 -0400 Bug 11622 [QA Followup] - Payment message always displays on opac-account.pl Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 678df3132fd3791a91be63324f38a3d00a1efa8f Author: Kyle M Hall Date: Fri Sep 18 05:54:30 2015 -0700 Bug 11622 [QA Followup] - Display payment messages directly on opac account view Fixed spelling of "Receive" in preferences. Signed-off-by: David Kuhn Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit c6a40b272d0753575e8f9b21351bac2075176bf9 Author: Kyle M Hall Date: Fri Sep 18 05:41:27 2015 -0700 Bug 11622 [QA Followup] - Show amount to be paid near make payment button Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 2949733e67a7554340ca63f580dba962ed4cec32 Author: Kyle M Hall Date: Thu Sep 3 13:18:42 2015 -0400 Bug 11622 [QA Followup] Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 85c5efa0c7fc98f30cc5983ba476c7712bb1dcac Author: Kyle M Hall Date: Thu Jan 23 15:18:29 2014 -0500 Bug 11622 - Add ability to pay fees and fines from OPAC via PayPal This patch adds the ability for a logged in user to pay fines and fees from the OPAC via PayPal. Test Plan: 1) Apply this patch 2) Create a paypal developer account 3) Create two test accounts, a Personal account and a Business account 4) Enable PayPal in Sandbox mode via the system preferences. 5) Enter the business account API credentials into the new system preferences. 6) Create a new patron, add some fines/fees 7) Log in as that patron in the OPAC 8) Choose to pay via PayPal, log in as the sandbox Personal account 9) Complete the transaction 10) Note the fee is now paid Signed-off-by: Carol Corrales Signed-off-by: Jonathan Druart ----------------------------------------------------------------------- Summary of changes: C4/Installer/PerlDependencies.pm | 5 + Koha.pm | 2 +- installer/data/mysql/sysprefs.sql | 6 + installer/data/mysql/updatedatabase.pl | 15 +++ .../prog/en/modules/admin/preferences/opac.pref | 30 +++++ .../bootstrap/en/modules/opac-account-pay-error.tt | 48 +++++++ .../opac-tmpl/bootstrap/en/modules/opac-account.tt | 114 ++++++++++++++++- opac/opac-account-pay-paypal-return.pl | 113 +++++++++++++++++ opac/opac-account-pay.pl | 131 ++++++++++++++++++++ opac/opac-account.pl | 11 +- 10 files changed, 468 insertions(+), 7 deletions(-) create mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account-pay-error.tt create mode 100755 opac/opac-account-pay-paypal-return.pl create mode 100755 opac/opac-account-pay.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 14:34:17 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 13:34:17 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.01-61-g524b4cb Message-ID: 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.22.x has been updated via 524b4cb0fffc16bd1b9447bf4b30d87e78928251 (commit) via d614dc78aa45ce2052047420a7f670434ca0bfc0 (commit) from 1dcb57f84e8fa84a80f53be2bbcc0078d232eaed (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 524b4cb0fffc16bd1b9447bf4b30d87e78928251 Author: Fr?d?ric Demians Date: Thu Nov 26 08:26:34 2015 +0100 Bug 15258: Fix Perl scripts declaring unused variables Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart All affected files tested with `perl -c`. Signed-off-by: Jesse Weaver (cherry picked from commit ff1579de6d2e95158cf4f9e9261068bdeef31f53) Signed-off-by: Julian Maurice commit d614dc78aa45ce2052047420a7f670434ca0bfc0 Author: Fr?d?ric Demians Date: Thu Nov 26 07:30:42 2015 +0100 Bug 15258: Prevent unused declared variables Add a perlcritic rule to 00-perlcritic.t to prevent unused declared variable. TO TEST: - Apply the 1st patch (unit test) - Run the UT: prove -v t/00-testcritic.t - Note that several Perl script fail - Apply the 2nd patch - Run the UT, and confirm it passes. Signed-off-by: Hector Castro All tests pass successful. Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver (cherry picked from commit c7ec79b8390817100b677530b88d1d4d02986b98) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/SIP/Sip/MsgType.pm | 4 +-- Koha/MetaSearcher.pm | 1 - Koha/QueryParser/Driver/PQF/Util.pm | 1 - Koha/QueryParser/Driver/PQF/query_plan/modifier.pm | 1 - Koha/Template/Plugin/Price.pm | 1 - acqui/basketheader.pl | 1 - acqui/invoice.pl | 1 - acqui/spent.pl | 1 - admin/aqplan.pl | 5 ---- admin/auth_subfields_structure.pl | 1 - admin/koha2marclinks.pl | 1 - admin/transport-cost-matrix.pl | 2 +- basket/basket.pl | 1 - catalogue/MARCdetail.pl | 1 - cataloguing/addbiblio.pl | 3 -- cataloguing/merge.pl | 1 - cataloguing/value_builder/macles.pl | 4 +-- .../value_builder/marc21_linking_section.pl | 1 - cataloguing/value_builder/unimarc_field_4XX.pl | 1 - circ/branchtransfers.pl | 1 - circ/pendingreserves.pl | 13 -------- circ/waitingreserves.pl | 2 -- labels/label-item-search.pl | 4 +-- members/moremember.pl | 2 -- reserve/placerequest.pl | 1 - reserve/request.pl | 3 -- serials/checkexpiration.pl | 1 - serials/subscription-add.pl | 2 -- sms/sms_listen.pl | 2 -- t/00-testcritic.t | 31 +++++++++++++++----- t/perlcriticrc | 5 ++-- 31 files changed, 32 insertions(+), 67 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 15:51:17 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 14:51:17 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-183-g19e3e89 Message-ID: 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 19e3e89df8943fac07182ddae8d82ae8e5f39f26 (commit) via dad848a0a7154980d393c595361bde1bafcad9d5 (commit) from c68c39998325d259e311e4f0d206fc017d0aa9d6 (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 19e3e89df8943fac07182ddae8d82ae8e5f39f26 Author: Kyle M Hall Date: Fri Nov 20 16:54:43 2015 +0000 Bug 13931 [QA Followup] - Fix whitespace error Signed-off-by: Kyle M Hall commit dad848a0a7154980d393c595361bde1bafcad9d5 Author: Josef Moravec Date: Thu Nov 12 20:45:01 2015 +0100 Bug 13931 - Date of birth in patron search result and in autocomplete Test plan: 1) Apply the patch 2) Type into search form patron's name & check his date of birth in autocompletion 3) Go to intranet/cgi-bin/koha/members/member.pl & submit a search with more than one result .. now should in the table appear patron's date of birth 4) Try show/hide columns section if it works correctly for date of birth 5) Go to intranet/cgi-bin/koha/admin/columns_settings.pl -> go to patrons section & check there is dateofbirth & it's functionality Signed-off-by: Frederic Demians Works as described. Syspref dateformat respected. Column dateofbirth configurable, but mandatory on autocompletion search result. Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: admin/columns_settings.yml | 2 ++ circ/ysearch.pl | 2 ++ koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt | 5 +++++ .../prog/en/modules/members/tables/members_results.tt | 3 +++ 5 files changed, 13 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 15:54:33 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 14:54:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-184-g8de21a5 Message-ID: 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 8de21a52ce828c87dc9f24be23f5ed21eb1a5f8b (commit) from 19e3e89df8943fac07182ddae8d82ae8e5f39f26 (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 8de21a52ce828c87dc9f24be23f5ed21eb1a5f8b Author: Barton Chittenden Date: Mon Aug 31 08:42:32 2015 -0700 Bug 14292: Add patron category restrictions to longoverdue.pl Squashed prevoius patch set. Add command line options --category and --skip-category Convert usage() to pod2usage. (This was previous FIXME) Make borrower category handling more user friendly: Make --category and --skip-category mutally exclusive Check that categories specified by --category and --skip-category exist in categories table. Add --list-categories opttion to show available borrower categories. http://bugs.koha-community.org/show_bug.cgi?id=14292 QA Follow-up QA fixes - wording and trailing whitespaces Simplify the category list Basically we have 3 lists of categories: 1/ The full one, in the DB 2/ The one we want and list with --category 3/ The one we don't want and list with --skip-category The list of categories to process is: * 1 if none --category or --skip-category options are provided * 2 if --category is provided * 1 - 3 if --skip-category is provided (follow-up) Make --category and --skip-category case insensitive "my" variable $borrower_category masks earlier declaration in same scope "my" variable $skip_borrower_category masks earlier declaration in same scope Signed-off-by: hbraum at nekls.org Signed-off-by: Barton Chittenden Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: misc/cronjobs/longoverdue.pl | 211 +++++++++++++++++++++++++++++++++--------- 1 file changed, 169 insertions(+), 42 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 16:00:03 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 15:00:03 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-186-g090cd49 Message-ID: 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 090cd49f174487cde794326b9ef35b0438366f35 (commit) via c62bb1aeb7d447f94a88cf77b9afea2df2aaafa9 (commit) from 8de21a52ce828c87dc9f24be23f5ed21eb1a5f8b (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 090cd49f174487cde794326b9ef35b0438366f35 Author: Liz Rea Date: Thu Nov 19 15:14:18 2015 +1300 Bug 15211: Patron card creator needs tools sidebar The patron card creator should have the Tools area sidebar on its pages. This patch adds it. To test: Go to More -> Tools -> Patron card creator The home page should have the tools sidebar Click through all of the "New" pages - they should all have the tools sidebar Click through all of the "Manage" pages - they should all have the tools sidebar Also verify that on each page, the Patron card creator link in the sidebar is bolded Signed-off-by: Hector Castro Sidebar displayed Ok. No errors Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit c62bb1aeb7d447f94a88cf77b9afea2df2aaafa9 Author: Liz Rea Date: Thu Nov 19 11:34:41 2015 +1300 Bug 15211: adding Tools section sidebar to label creator The label creator had a very sad sidebar, it needed to have the Tools area sidebar on it. To test: Click through all "New" pages, verify that the sidebar appears Click through all "Manage" pages, verify that the sidebar appears. Also verify that "Label creator" is bolded in the toolbar while the label creator is active. Signed-off-by: Hector Castro Sidebar displayed Ok. No errors Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc | 8 +++++++- .../intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt | 5 ++++- .../intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt | 3 +++ .../intranet-tmpl/prog/en/modules/labels/label-edit-profile.tt | 7 +++++-- .../prog/en/modules/labels/label-edit-template.tt | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-home.tt | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt | 3 +++ .../intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt | 3 +++ .../intranet-tmpl/prog/en/modules/patroncards/edit-layout.tt | 3 +++ .../intranet-tmpl/prog/en/modules/patroncards/edit-profile.tt | 3 +++ .../intranet-tmpl/prog/en/modules/patroncards/edit-template.tt | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/home.tt | 3 +++ .../intranet-tmpl/prog/en/modules/patroncards/image-manage.tt | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt | 3 +++ 14 files changed, 49 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 16:01:20 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 15:01:20 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-187-g89a0587 Message-ID: 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 89a058787a58295193a60c1a1fbb8b5b5262e7ed (commit) from 090cd49f174487cde794326b9ef35b0438366f35 (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 89a058787a58295193a60c1a1fbb8b5b5262e7ed Author: Katrin Fischer Date: Sun Nov 22 03:01:18 2015 +0100 Bug 14397: Fix tiny typo in database documentation Fixes Foriegn to Foreign. Signed-off-by: Aleisha Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/kohastructure.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 16:06:55 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 15:06:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-188-g7d37725 Message-ID: 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 7d3772503c1b361b4f3f3e8380d39992730d40b3 (commit) from 89a058787a58295193a60c1a1fbb8b5b5262e7ed (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 7d3772503c1b361b4f3f3e8380d39992730d40b3 Author: Martin Persson Date: Tue May 12 13:33:14 2015 +0200 Bug 12342: Patron registration datepicker dropdown shows only 10 years This patch changes the options to the date picker, allowing easy selection of dates up to 120 years from the current date. To test: - Click on 'Patrons' from the main menu, select 'New patron' - Set input focus to the 'Date of birth' input field, the date selection widget should show up. - The year selection drop-down will only show current year minus 10. - Apply the patch - Go back to the same screen, set input focus to the 'Date of birth' field. - The year selection drop-down should show current year minus 120. Signed-off-by: Hector Castro Works as advertised Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 16:18:37 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 15:18:37 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-190-g7c68fb2 Message-ID: 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 7c68fb26737206c4fae05e2841a0439038512cca (commit) via 00bb0b6d57f418f51c595eea33cd9da264481eb7 (commit) from 7d3772503c1b361b4f3f3e8380d39992730d40b3 (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 7c68fb26737206c4fae05e2841a0439038512cca Author: Jonathan Druart Date: Thu Dec 10 12:56:44 2015 +0000 Bug 14939: Remove the Capture::Tiny dependency It's possible to redirect the std output to a variable, it will avoid to add this new dependency. Signed-off-by: Fr?d?ric Demians OK. + code factorisation with a function call. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 00bb0b6d57f418f51c595eea33cd9da264481eb7 Author: Fr?d?ric Demians Date: Fri Oct 2 09:18:18 2015 +0200 Bug 14939: Modularize OAI Server existing classes Koha OAI server has been done in one unique .pl file because there wasn't any object model or rules in the Koha project when it has been coded. This patch modularized existing classes, putting each class in a separate file in Koha::OAI::Server namespace. UT begining. Add new dependency: Capture::Tiny Signed-off-by: Hector Castro OAI server moduralized succefully. Works for Debian Jessie and Wheezy. Test pass successfully Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../OAI/Server/DeletedRecord.pm | 40 +- Koha/OAI/Server/Description.pm | 60 ++ Koha/OAI/Server/GetRecord.pm | 83 +++ Koha/OAI/Server/Identify.pm | 52 ++ Koha/OAI/Server/ListIdentifiers.pm | 97 +++ Koha/OAI/Server/ListMetadataFormats.pm | 57 ++ Koha/OAI/Server/ListRecords.pm | 114 +++ Koha/OAI/Server/ListSets.pm | 66 ++ Koha/OAI/Server/Record.pm | 57 ++ Koha/OAI/Server/Repository.pm | 178 +++++ Koha/OAI/Server/ResumptionToken.pm | 83 +++ debian/control | 1 + opac/oai.pl | 746 +------------------- t/db_dependent/OAI/Server.t | 125 ++++ 14 files changed, 999 insertions(+), 760 deletions(-) copy opac/opac-course-reserves.pl => Koha/OAI/Server/DeletedRecord.pm (52%) mode change 100755 => 100644 create mode 100644 Koha/OAI/Server/Description.pm create mode 100644 Koha/OAI/Server/GetRecord.pm create mode 100644 Koha/OAI/Server/Identify.pm create mode 100644 Koha/OAI/Server/ListIdentifiers.pm create mode 100644 Koha/OAI/Server/ListMetadataFormats.pm create mode 100644 Koha/OAI/Server/ListRecords.pm create mode 100644 Koha/OAI/Server/ListSets.pm create mode 100644 Koha/OAI/Server/Record.pm create mode 100644 Koha/OAI/Server/Repository.pm create mode 100644 Koha/OAI/Server/ResumptionToken.pm create mode 100644 t/db_dependent/OAI/Server.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 16:39:33 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 15:39:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-195-g22db2a8 Message-ID: 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 22db2a85f90172a0a5176a56d1ca3c66fe14f175 (commit) via 6ecd9311beeb31e2c53385908d676c5cd3e0ee44 (commit) via c42de7460b9bae9458e2345f6ba8f017d8a12b0c (commit) via eac4649a3fbdf293b906f7accc3025b246ecfb70 (commit) via a6f9ad30974a5dcfaefe445dde96fd4a7a78d146 (commit) from 7c68fb26737206c4fae05e2841a0439038512cca (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 22db2a85f90172a0a5176a56d1ca3c66fe14f175 Author: Kyle M Hall Date: Thu Dec 31 15:35:31 2015 +0000 Bug 9129 - DBrev 3.23.00.010 Signed-off-by: Kyle M Hall commit 6ecd9311beeb31e2c53385908d676c5cd3e0ee44 Author: Kyle M Hall Date: Thu Dec 31 15:31:19 2015 +0000 Bug 9129 [QA Followup] - Make unit test file conform to PBP Signed-off-by: Kyle M Hall commit c42de7460b9bae9458e2345f6ba8f017d8a12b0c Author: Kyle M Hall Date: Thu Oct 22 06:40:12 2015 -0400 Bug 9129 - Add the ability to set the maximum fine for an item to its replacement price This patch adds the ability to set the maximum fine for a given item to its replacement price ( assuming the replacement price is set ). If overduefinescap is also set, the fine will be the lesser of the two, if both apply to the given overdue checkout. To enable this new limit, create or edit your circulation rules and check the checkbox for "Cap fines at replacement price" Test Plan: 1) Apply this patch 2) Run updatedatabase.pl 3) Pick an item, and set it's replacement price to 3.99 4) Edit the circulation rule that would apply to this item and the patron you will check it out to. 5) Check out the item to the patron, and backdate the due date such that the fine generated would be more than 3.99 6) Enable CalculateFinesOnReturn 7) Return the item, and view the fine generated, it should be 3.99 Signed-off-by: Cindy Murdock Ames Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit eac4649a3fbdf293b906f7accc3025b246ecfb70 Author: Kyle M Hall Date: Thu Dec 31 15:29:13 2015 +0000 Bug 9129 - Update schema Signed-off-by: Cindy Murdock Ames Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit a6f9ad30974a5dcfaefe445dde96fd4a7a78d146 Author: Kyle M Hall Date: Thu Oct 22 06:38:57 2015 -0400 Bug 9129 - Update database Signed-off-by: Cindy Murdock Ames Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Overdues.pm | 5 +- Koha.pm | 2 +- Koha/Schema/Result/Issuingrule.pm | 12 +- admin/smart-rules.pl | 52 +++---- installer/data/mysql/kohastructure.sql | 1 + installer/data/mysql/updatedatabase.pl | 12 ++ .../prog/en/modules/admin/smart-rules.tt | 45 ++++-- t/db_dependent/Circulation/CalcFine.t | 146 ++++++++++++++++++++ 8 files changed, 233 insertions(+), 42 deletions(-) create mode 100644 t/db_dependent/Circulation/CalcFine.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 16:45:16 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 15:45:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-197-gc678525 Message-ID: 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 c678525b47790a1b367555bb337e7491efc21efc (commit) via 404a11a9a504c6bb498f95e20003462cf536ffdc (commit) from 22db2a85f90172a0a5176a56d1ca3c66fe14f175 (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 c678525b47790a1b367555bb337e7491efc21efc Author: Jonathan Druart Date: Wed Dec 9 09:04:35 2015 +0000 Bug 15321: No need to add the change trigger conditionally It will be applied if the button exists. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 404a11a9a504c6bb498f95e20003462cf536ffdc Author: Magnus Enger Date: Tue Dec 8 20:45:39 2015 +0100 Bug 15321 - Add delete report link to Show, Edit and Run screens Currently, if you are editing or viewing the results of running a report and you decide you want to delete it, you have to go back to the list of saved reports to do so. This patch adds a "Delete" link in some convenient places. To test: - Apply the patch - Make sure you have at least one saved report - Make sure you have the create_reports permission - Go to the Show, Edit and Run screens and verify the Delete link is present and functional, including the JavaScript confirmation dialogue - Change to a user without the create_reports permission and check that the Delete link is not displayed on the Show, Edit and Run screens - Sign ye off merrily! Version 2: This version makes sure the JavaScript confirmation is shown before an actual delete is carried out. Signed-off-by: Heather Braum Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc | 8 ++++++++ .../prog/en/modules/reports/guided_reports_start.tt | 3 +-- 2 files changed, 9 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 16:55:20 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 15:55:20 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-199-g1d64ce8 Message-ID: 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 1d64ce817e58f26af8a7052230c53b713125c9a2 (commit) via 4a2e2f320cc36275900b7f6f5abd61aafd79a8d3 (commit) from c678525b47790a1b367555bb337e7491efc21efc (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 1d64ce817e58f26af8a7052230c53b713125c9a2 Author: Marcel de Rooy Date: Wed Dec 16 15:54:49 2015 +0100 Bug 15225: [QA Follow-up] Improve changes to gethtml5media [1] Improve readability, add some checks. [2] Add the public flag for OPAC use. (If a file has not been marked as public, we should not return it in OPAC.) Test plan: See original commit. No changes in behavior. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 4a2e2f320cc36275900b7f6f5abd61aafd79a8d3 Author: Mirko Tietgen Date: Mon Nov 16 18:10:27 2015 +0100 Bug 15225: Make HTML5Media work with file upload feature. Koha::Upload allows files to be attached to bibliographic records. HTML5Media streaming in Koha does not work with these files. Test plan: - apply patch - make sure OPACBaseURL is set correctly - enable HTML5MediaEnabled in OPAC and staff client - connect upload.pl to 856$u in your framework - upload a file with an extension set in HTML5MediaExtensions, make sure to set the codec correctly if you use WEBM (subfield c, eg. 'vp8, vorbis') - save record, view in staff client and browser, check if 'Play media' option is available and works Signed-off-by: Hugo Agud Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/HTML5Media.pm | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 17:04:44 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 16:04:44 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-202-g201f6e4 Message-ID: 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 201f6e4e0be7afe5eed83c23cb4a051a5b75df74 (commit) via 7b8d8a860bd4862533a204a504a56c6cf36e6a23 (commit) via 06e372d0be648ec8652d97cfaf56af885a679e2b (commit) from 1d64ce817e58f26af8a7052230c53b713125c9a2 (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 201f6e4e0be7afe5eed83c23cb4a051a5b75df74 Author: Kyle M Hall Date: Thu Dec 31 16:01:26 2015 +0000 Bug 13592 - DBrev 3.23.00.011 Signed-off-by: Kyle M Hall commit 7b8d8a860bd4862533a204a504a56c6cf36e6a23 Author: Kyle M Hall Date: Fri Dec 18 18:50:32 2015 +0000 Bug 13592 [QA Followup] - Make the system preference description self documenting Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall commit 06e372d0be648ec8652d97cfaf56af885a679e2b Author: Jonathan Druart Date: Wed Nov 11 15:12:45 2015 +0000 Bug 13592: Add an option to charge for any hold placed Currently the fee is applied on if all items for the record are issued and at least one hold already exists on the record. This patch does not give a complete answer to the problem (see discussion on bug 13592 for the other user's expectations). It only adds the ability to charge for any hold placed regardless of the conditions. Test plan: 1) Execute the updatedb entry to insert the new pref 2) Confirm that the behavior is the same as before applying this patch 3) Change the HoldFeeMode pref to 'always' 4) Note that the fee is applied for any hold placed Signed-off-by: Sally Healey Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Reserves.pm | 3 ++- Koha.pm | 2 +- installer/data/mysql/sysprefs.sql | 1 + installer/data/mysql/updatedatabase.pl | 10 ++++++++++ .../prog/en/modules/admin/preferences/circulation.pref | 6 ++++++ t/db_dependent/Reserves/GetReserveFee.t | 14 ++++++++++---- 6 files changed, 30 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 17:09:55 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 16:09:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-203-gd5e946d Message-ID: 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 d5e946d0edbfcb3a34179b51a0ead5075876fcf9 (commit) from 201f6e4e0be7afe5eed83c23cb4a051a5b75df74 (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 d5e946d0edbfcb3a34179b51a0ead5075876fcf9 Author: Olli-Antti Kivilahti Date: Mon Sep 15 11:42:34 2014 +0300 Bug 12923 Improve error logging for advance_notices.pl Show borrowernumber when no letter of type is found and force utf8 output when running advance_notices.pl with -n flag, diacritics run awol in the console output! Also when debugging which borrower requests undefined letter templates, it is very handy to log the borrowernumber so we catch and fix bad borrower message transport settings. TEST PREPARATION: 0. Edit the ODUEDGST letter, find an undefined letter for any trasport type. ::TESTS ARE (ALMOST) THE SAME AS IN bugg 12922:: TEST PLAN: 1. Find a borrower and from the messaging preferences set the "Advance notice" transport type to the undefined digest. Set the "Days in Advance" to 1. 2. Check-out something for that borrower and set the due date for tomorrow. 3. Run "misc/cronjobs/advance_notices.pl -c -n -v" from the terminal. 4. BEFORE THIS PATCH: You get an error "no letter of type 'PREDUEDGST' found. Please see sample_notices.sql at ./advance_notices.pl line 366." 4. AFTER THIS PATCH: You get an error "no letter of type 'PREDUEDGST' found for borrowernumber 1104659. Please see sample_notices.sql at ./advance_notices.pl line 368." Makes life more worth living for! Also diacritics printed on screen are displayed properly. Signed-off-by: Frederic Demians I confirm the diacritics issue and solution. borrowernumber is displayed with warning when the 'no letter...' message is displayed. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: misc/cronjobs/advance_notices.pl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 17:14:32 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 16:14:32 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-205-g29b605e Message-ID: 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 29b605eb1eeb1fa6d0539a1cf6303e13253e6f0a (commit) via cf529864ce168f0a2e446732f59d18ff7dfdea6f (commit) from d5e946d0edbfcb3a34179b51a0ead5075876fcf9 (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 29b605eb1eeb1fa6d0539a1cf6303e13253e6f0a Author: Katrin Fischer Date: Tue Dec 1 00:47:54 2015 +0100 Bug 10154: QA follow-up - Spelling and terminology - Changing capitalization: Any Patron category > Any patron category - Changing Collection code > Collection Signed-off-by: Owen Leonard Signed-off-by: Kyle M Hall commit cf529864ce168f0a2e446732f59d18ff7dfdea6f Author: Eivin Giske Skaaren Date: Wed Oct 28 00:28:28 2015 +0000 Bug 10154 Add Call number in the filter of most circulated items This patch adds call number, collection code and shelving location to the filter. To test: It is of course a prerequisite to have items in the DB with the correct MARC fields and that they have been checked out etc. to get a valid result when testing. 1. Apply patch to koha synced to master. 2. Go to /cgi-bin/koha/reports/cat_issues_top.pl 3. Select filters, the new ones are Call number, Collection code and Shelving location 4. Hit submit. Expected result: The filters chosen will be printed under "Filtered on". A table with the result is shown. For manual verification here is some SQL to run: SELECT DISTINCT biblio.title, COUNT(biblio.biblionumber) AS RANK, biblio.biblionumber AS ID, itemcallnumber as CALLNUM, ccode as CCODE, location as LOC FROM `old_issues` LEFT JOIN items USING(itemnumber) LEFT JOIN biblio USING(biblionumber) LEFT JOIN biblioitems USING(biblionumber) LEFT JOIN borrowers USING(borrowernumber) WHERE 1 AND biblioitems.itemtype like 'BK' AND itemcallnumber like '005.2/762' AND ccode like 'NFIC' AND location like 'CART' AND borrowers.categorycode like 'PT' group by biblio.biblionumber order by RANK DESC; Put in your valid values in the WHERE clause for the values in the single quotes ''. Sponsored-by: Halland county library Signed-off-by: Fr?d?ric Demians It works as described. Valid results, tested in various combinations. Follows the coding (awful) style of the original script, without introducing any regression. It would have been great to have callnumber interval, but anyway... Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/reports/cat_issues_top.tt | 19 +++++- reports/cat_issues_top.pl | 72 ++++++++++++++++---- 2 files changed, 75 insertions(+), 16 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 19:18:18 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 18:18:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-208-gdf2bab8 Message-ID: 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 df2bab8f61ca5d06768c5425c55f3f08d9485966 (commit) via 7ab9d7d91d543cd2e6e82de6b536ee7ce1cb0508 (commit) via d3184fa85b8906d0921522ce0c26dab98a4a2778 (commit) from 29b605eb1eeb1fa6d0539a1cf6303e13253e6f0a (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 df2bab8f61ca5d06768c5425c55f3f08d9485966 Author: Kyle M Hall Date: Fri Apr 17 10:41:13 2015 -0400 Bug 13022 [QA Followup] - Highlight the results with inaccurate status, add explanation when mouse hovers over. Bug 13022 [QA Followup] - Revert changes in whitespace back to original for items count lines Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 7ab9d7d91d543cd2e6e82de6b536ee7ce1cb0508 Author: Kyle M Hall Date: Fri Apr 17 09:51:03 2015 -0400 Bug 13022 [QA Followup] - Allow the pref to be unset for unlimited item status checks Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit d3184fa85b8906d0921522ce0c26dab98a4a2778 Author: Kyle M Hall Date: Thu Oct 2 09:19:21 2014 -0400 Bug 13022 - Hardcoded limit causes records with more than 20 items to show inaccurate statuses If a record has more than 20 items, all the items over 20 will show as available on the search results even if they are not! This is a hard coded limit in the Search module. This number should be configurable. Test Plan: 1) Create a record with more than 20 items 2) Set all the items to waiting holds or in transit 3) Search for results that will include that item 4) Note some say they are available even though they are not 5) Apply this patch 6) Run updatedatabase.pl 7) Set the new system preference MaxSearchResultsItemsPerRecordStatusCheck to a number larger than the number of items on your record 8) Re-run the search 9) Note that the hold and transit statuses for the items are now correct Signed-off-by: Andreas Hedstr?m Mace Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: C4/Search.pm | 3 ++- installer/data/mysql/atomicupdate/bug_13022.sql | 1 + installer/data/mysql/sysprefs.sql | 1 + koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css | 4 ++++ .../prog/en/modules/admin/preferences/searching.pref | 7 +++++++ .../intranet-tmpl/prog/en/modules/catalogue/results.tt | 15 +++++++++++++-- 6 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 installer/data/mysql/atomicupdate/bug_13022.sql hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 19:20:27 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 18:20:27 +0000 Subject: [koha-commits] main Koha release repository branch 3.20.x updated. v3.20.07.1-54-gd099dbf Message-ID: 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.20.x has been updated via d099dbfc8ae9faa9d167f683f730e2d52b75b049 (commit) via 60463a462a412cdb350c6d10fa8bb54e37944789 (commit) via 43dd07d73a4df740f936e19f309ff1192d301e25 (commit) via b7604623e781bf464d19ae9fe82011a9e3a66b1d (commit) via 02b5de577289a3b3570cabcbb421dbe22065a73c (commit) via 92afa30088989511f8596c8405ab863093467f1b (commit) via 1eec7a8355c7e1d7eade6717e702d8cfb12c0237 (commit) via 7ccaea4a460cd7cd02085eee520fdc9760243683 (commit) via f1a38798a64ac97226b617dd9ef7b38dcca39b66 (commit) via 3719d3383f10a08ee872593f94b18647ca0e5d8f (commit) via 05d306c5f84b46ce6edf170a44f02e0203ab98f0 (commit) via 8ccca1461003af58c6c54eefdb351ec758763d4a (commit) via 2cf5836c20b421906910cfafed272dfe8a0c6bf5 (commit) via 0895ca8c31e5aedd31e44218b952738c9fffed21 (commit) via a7d0a998bcfe408c50a5e857ef9b2df7563bd267 (commit) via 4ad5decf4a06abd043566c5a5a6412133139de29 (commit) via bad4e3795037917786bfb2fd6fef3891fcb00f36 (commit) via d5a1eae1f679893950f26a0fe0f90df5b66638ff (commit) via 3c16c8423beaf538cd7a930480aba9ddbabe8632 (commit) via 836958ad607ffe439580401f7a9bba623f72cc71 (commit) via 3b8e973d9ced0d5f89cd8719b4686dadd934e683 (commit) via 6cab2b5b1c9dcd7373abde8f8b19be145fbfb51b (commit) via c7db8a68f0a49dfc0f3fe421bcacd761e4fd65c0 (commit) via f7c6e9f586667ea5dfdd5dd08a05ccb799e1d424 (commit) via d4bcfef9d1aaa8048b91fbe1f1b9b51a09be2703 (commit) via 002e33b37a6d4bc321d13bdd8f1d5b185a4fe11c (commit) via c80033b27710254c0a5e6f9b69ecbaf378be9402 (commit) via 706ab6c926bfaed5c79412e9cadfe2e5dd7cd9f4 (commit) via e491ba33c888a1f0271ddb9c5f48a022d421b0c3 (commit) via c9b64dc5ecb92659227c707a53ceabab9ec0c5c3 (commit) via deef37d65ef28e525a4a23bb1d9ff14f8bbc2c66 (commit) via 33137f4bddc00722c3dd61e7c4d1955d71a0edb2 (commit) via 9aec475b0570b970898dd4cc25efa7a33f5c7017 (commit) via 90e1ee89cd6627305777abf36383a3931bb38368 (commit) via a6c630aec677c957f8eb0f73e0eb2ca9f52129ba (commit) via 0447edf9e3c6373d08d16957ea33fd6163974db5 (commit) via e372febf1e352f3388c3f3e347a8c5a23f0b36a0 (commit) via 0eab9d32bd1f8849f36bf6c9e4ddff531d3d4686 (commit) via 61195220473a6b7b62bcdfadadcdf2cd3e51af9d (commit) via 0bf604f023bad9d7cb96df82c7b8da6b288840cf (commit) via 42315be031b89de88bed284376dea2dd8005c834 (commit) via a2c9af33a49e992a055ebf0482d82124c02ed317 (commit) via 99d8a586bbd93352ee5c875eecbd0beec8b7b3b3 (commit) via a62b8a526ca282d724e44c34e47c9e63f9e385ae (commit) via 26fd2156293f3b3ea9d460b437bcd5f08879bf54 (commit) via 519dd299436097e44278f392238663f15b90146a (commit) via 8c404db64ed99c99596d55440637d94166806a20 (commit) via 98937fa5bcd209bf8f8f642fe031edd03de23d73 (commit) via 4448c38763c94415c64f51b2de6cda90a88fc6c0 (commit) from 13239b15a56822beef510feb7cd08bba8e51265d (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 d099dbfc8ae9faa9d167f683f730e2d52b75b049 Author: Fr?d?ric Demians Date: Thu Dec 31 19:25:10 2015 +0100 Bug 15429 Followup to avoid test failing commit 60463a462a412cdb350c6d10fa8bb54e37944789 Author: Nicole C. Engard Date: Mon Dec 7 13:15:04 2015 -0600 Bug 13136: Add missing help file for label-manage.pl This patch adds in a help file for the new label-manage page. To test: * visit label creator * click manage and choose an option * click 'help' and confirm the file loads * repeat for all options under manage Signed-off-by: Hector Castro Works as advertised. Tab char corrected Signed-off-by: Jonathan Druart Signed-off-by: Jesse Weaver (cherry picked from commit 8a02409d180d4e4be8a2d9bef6be5373a8b1a907) Signed-off-by: Julian Maurice (cherry picked from commit 1dcb57f84e8fa84a80f53be2bbcc0078d232eaed) Signed-off-by: Fr?d?ric Demians commit 43dd07d73a4df740f936e19f309ff1192d301e25 Author: Olli-Antti Kivilahti Date: Thu Oct 29 15:40:50 2015 +0200 Bug 15080 - ./translate tool should tell if xgettext executable is missing Just upgraded our Koha container to 14.04 and noticing the misc/translator/translate doesn't work. This is because of a missing package gettext. This patch makes ./translate die with a helpful suggestion to install gettext if xgettext-program is missing. Signed-off-by: Frederic Demians I can reproduce the bug by desinstalling 'gettext' package on a Debian box. I confirm that without this patch, 'translate' command fails miserably. Suggesting to install gettext package is welcomed. Signed-off-by: Kyle M Hall Signed-off-by: Jesse Weaver (cherry picked from commit 37b0e2ce9cbc4ba5070d22c96b357ddea1db084b) Signed-off-by: Julian Maurice (cherry picked from commit 52a9bed15f91699981b27cc78fee54fd9bd378df) Signed-off-by: Fr?d?ric Demians commit b7604623e781bf464d19ae9fe82011a9e3a66b1d Author: Mirko Tietgen Date: Fri Dec 18 10:24:29 2015 +0100 Bug 15396: fix MARC21 Leader plugin label '1-4 Record size' The plugin label says "1-4 Record size", but it's actually 0-4. http://www.loc.gov/marc/bibliographic/bdleader.html Test plan: -apply patch -in cataloging, open a record in a framework that uses the plugin -open LEADER/000 and check that the label says "0-4 Record size" now Signed-off-by: Bernardo Gonzalez Kriegel Good catch, fixed tab, no errors. Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher (cherry picked from commit 4e61aa5ef55e214e60920eb3556f0c96dbe3e23a) Signed-off-by: Julian Maurice (cherry picked from commit 2763eb87de9a234d0ba8e84042ed26bfa7fbdadc) Signed-off-by: Fr?d?ric Demians commit 02b5de577289a3b3570cabcbb421dbe22065a73c Author: Katrin Fischer Date: Sun Nov 22 02:52:02 2015 +0100 Bug 14853: Change 'Fund' to 'Shipping fund' Changes the 'Fund' to 'Shipping fund' so it's clear what the fund setting is used for. To test: - Receive a new shipment - Verify that 'Shipping fund' displays on the parcels page - Search for your invoice - View invoice details - Verify that 'Shipping fund' displays on the invoice page Followed test plan (changed lines: '...cost' -> '...fund') Display OK on both places. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 3f68107b1012e47467d1fb96b44347499332ba22) Signed-off-by: Julian Maurice (cherry picked from commit 855cd2a40080a39eeb35d3977a62c0f6909e5218) Signed-off-by: Fr?d?ric Demians commit 92afa30088989511f8596c8405ab863093467f1b Author: Marc V?ron Date: Wed Dec 9 16:10:10 2015 +0100 Bug 15340: Translatability: fix issue with 'or choose' splitted by tag This patch fixes a translatability issue due to tags. To verify: - Make sure that you have some entries in 'Cities and Towns' ( Home > Administration > Cities ) - Edit the main address of a patron's details - Locate field "City", at the right you have the text 'or choose' followed by a drop-down ('choose' is bold) - change language e.g. to German, the text reads 'or ausw?hlen' (instead of 'oder ausw?hlen') - This is due to the tags around 'choose' To test: - Apply patch - Verify that the tags around 'choose' are removed in: koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-de.inc koha-tmpl/intranet-tmpl/prog/en/includes/member-main-address-style-us.inc Signed-off-by: Fr?d?ric Demians Obvious issue/solution Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit a85fd85545a885e8ebbcc417b7f180baede70304) Signed-off-by: Julian Maurice (cherry picked from commit e33bcec68855397ca16f352ff63c85e3789bea36) commit 1eec7a8355c7e1d7eade6717e702d8cfb12c0237 Author: Kyle M Hall Date: Tue Dec 22 15:37:41 2015 +0000 Bug 15409 - Plugins section missing from Admin menu sidebar The sidebar menu in the Admin area of Koha is missing a section for Plugins. Test Plan: 1) Apply this patch 2) Log in with a user that has plugin permissions 3) Browse to a page with the admin menu sidebar, such as /cgi-bin/koha/admin/transport-cost-matrix.pl 4) Note the new Plugins section with a link to manage plugins 5) Log in with a user that has no plugin permissions 6) Revisit the same page, note the Plugins section is no longer visible Signed-off-by: Aleisha Signed-off-by: Marcel de Rooy Signed-off-by: Brendan A Gallagher (cherry picked from commit 65d3203525470d8b0b44374bdc66b979de57c426) Signed-off-by: Julian Maurice (cherry picked from commit 2f7f6e9ac01476e4a7a6acee829a1fc33985c2a2) Signed-off-by: Fr?d?ric Demians commit 7ccaea4a460cd7cd02085eee520fdc9760243683 Author: Marc V?ron Date: Mon Dec 28 16:00:54 2015 +0100 Bug 15432: t/db_dependent/Letters.t depends on external data/configuration To test: - Set system preference LetterLog to 'Don't log' - prove t/db_dependent/Letters.t - Result: Fails on test 62 - Successfully sent claim - Apply patch - Test again - Result: Pass OK Signed-off-by: Jonathan Druart Amended patch: removed the bug reference, not needed. Signed-off-by: Kyle M Hall (cherry picked from commit c92b1556ef9250d7e038dce2d083c60415035b95) Signed-off-by: Julian Maurice (cherry picked from commit 99fc3af0a6b13b83ada683cccce025c0c0dbc224) Signed-off-by: Fr?d?ric Demians commit f1a38798a64ac97226b617dd9ef7b38dcca39b66 Author: Aleisha Date: Sun Dec 20 19:57:54 2015 +0000 Bug 15373: More changes of Zip to ZIP on intranet To test: - Log in to Staff Interface, go to Administration, Libraries and Groups (cgi-bin/koha/admin/branches.pl). Click 'New library' and confirm that it says 'ZIP/Postal Code:' in the form. - Go back to Administration, Cities and towns (cgi-bin/koha/admin/cities.pl). Confirm it says 'ZIP/Postal code' in table heading. Click 'New city' and confirm it says 'ZIP/Postal code:' in form - Go back to Administration, Global system preferences, I18L/L10N (cgi-bin/koha/admin/preferences.pl?tab=i18n_l10n). Under AddressFormat, confirm all available options say '[ZIP/Postal Code]' - Go to Reports, Patrons (cgi-bin/koha/reports/borrowers_stats.pl). Confirm it says 'ZIP/Postal code' under Title - Go to Tools, Batch patron modification (cgi-bin/koha/tools/modborrowers.pl), enter any card number and click 'Continue'. Confirm it says 'ZIP/Postal code' in the table of patron details, and in the form to edit Signed-off-by: Mark Tompsett NOTE: Tested together with first patch. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 5df49b04ef69ad6b33b3f7744acb379c0dd83b0f) Signed-off-by: Julian Maurice (cherry picked from commit 776f738382010f2d9ce8eef7efc73ed5fca45d6c) Signed-off-by: Fr?d?ric Demians commit 3719d3383f10a08ee872593f94b18647ca0e5d8f Author: Aleisha Date: Mon Dec 14 22:43:26 2015 +0000 Bug 15373: Changing Zip to ZIP on OPAC and Intranet To test: 1) Login to OPAC --> You personal details. 2) Ensure it says 'ZIP/Postal Code' under Main Address, Alternate Address and Alternate Contact 3) Login to Staff interface --> Go to a member's page (ie koha/members/memberentry.pl) --> Details. 4) Ensure it says 'ZIP/Postal Code' under Alternate address and Alternative contact 5) Click Edit 6) Ensure it says 'ZIP/Postal Code' under Main Address, Alternate Address and Alternate Contact Signed-off-by: Barry Cannon Signed-off-by: Mark Tompsett NOTE: Tested together with second patch. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 3da8abcfeff331d5022ee54bbf27ecfbc4ebe18c) Signed-off-by: Julian Maurice (cherry picked from commit 6438df72872d88c263b4fa331c2d44adb0ac2fa4) Signed-off-by: Fr?d?ric Demians commit 05d306c5f84b46ce6edf170a44f02e0203ab98f0 Author: Mark Tompsett Date: Tue Dec 15 10:15:25 2015 -0500 Bug 15382: 245$a visibility constraints not respected in opac-MARCdetail.pl This tiny change determines if the bibliotitle should be set or not in accordance with the 'Advanced constraints' visiblity setting for OPAC. TEST PLAN --------- 1) Find a record detail in OPAC 2) Click 'MARC view' -- 245$a should be visible. 3) In a new tab, log into the staff client 4) Click 'Koha administration' 5) Click 'MARC bibliographic framework' 6) Click 'MARC structure' for the framework of the record displayed in OPAC. 7) Search for tag: 245, and click 'Search' 8) Click 'Subfields' 9) Click 'Edit' beside the a subfield. 10) Click 'Advanced constraints' 11) Uncheck 'OPAC' 12) Click 'Save changes' 13) In the OPAC tab, refresh -- 245$a (Title) will still be visible! 14) Apply this patch 15) In the OPAC tab, refresh -- 245$a (Title) will be hidden. 16) In the staff client, navigate back to 'Advanced constraints' and check 'OPAC' 17) Click 'Save changes' 18) In the OPAC tab, refresh -- 245$a (Title) will be visible again. 19) Run koha qa tools Signed-off-by: Aleisha Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall (cherry picked from commit d827bb50d93a83c0ab7ce326675284bee411959a) Signed-off-by: Julian Maurice (cherry picked from commit 7f708a361b95c449a972b8571acde4c52d3f336b) Signed-off-by: Fr?d?ric Demians commit 8ccca1461003af58c6c54eefdb351ec758763d4a Author: Owen Leonard Date: Fri Dec 4 20:37:47 2015 -0500 Bug 15327: Minor tweaks to Bootstrap modal handling on Staged MARC management page This patch makes a couple of minor corrections to the template for staged MARC management. The MARC preview is now formatted using the "html" option, and some obsolete Greybox-related code has been removed. To test: 1. Apply the patch and go to Tools -> Staged MARC management. 2. Click any staged MARC file containing multiple records. 3. Click the title in the "Citation" column and confirm that a Bootstrap modal is triggered showing the correct data. Signed-off-by: Hector Castro Modal looks much better. Works as advertised Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 23c7de2bc7af7d2d8bf725e536f665bf78116065) Signed-off-by: Julian Maurice (cherry picked from commit 53cebcb07d8e5c58aa4f9e9da25e9be11444ee51) Signed-off-by: Fr?d?ric Demians commit 2cf5836c20b421906910cfafed272dfe8a0c6bf5 Author: Nicholas van Oudtshoorn Date: Tue Dec 22 11:44:13 2015 +0800 Bug 15405 - XML paths to zebra libraries is wrong for 64-bit installs on non-Debian linux Adjusts the modulePath to search in the well-known location for 64 bit systems. Required for at least Fedora. Test plan: Without this patch, doing a zebra reindex on a fedora-based install will cause errors like this: 15:10:47-01/05 zebraidx(16108) [warn] No such record type: dom./etc/koha/zebradb/biblios/etc/dom-config.xml With this patch, reindexing should just work. Signed-off-by: Chris Cormack I have tested this doesn't break on debian/ubuntu systems, someone with a non debian system will need to test it on that Signed-off-by: Bob Ewart bob-ewart at bobsown.com It works on openSUSE Leap 42.1 Signed-off-by: Marcel de Rooy Just noting that the debian zebra files already contain much more paths here. Signed-off-by: Kyle M Hall (cherry picked from commit 3d7bb7647dd42f9c05e8b4c35ec32cd15ec4dcc4) Signed-off-by: Julian Maurice (cherry picked from commit 9c302d9c09c2c30824c3e4a1c934a5c76883cb4c) Signed-off-by: Fr?d?ric Demians commit 0895ca8c31e5aedd31e44218b952738c9fffed21 Author: Fr?d?ric Demians Date: Wed Dec 30 13:10:16 2015 +0100 Bug 15429 UT for _parseletter modifying its parameter Before/after applying the related patch, do: prove -v t/db_dependent/Letters.t Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit fd07e3296b64a78edf1cf947a824147f1adbba1a) Signed-off-by: Julian Maurice (cherry picked from commit 2eac97ba65d869f34641f6eb7fd22047a104a794) Signed-off-by: Fr?d?ric Demians commit a7d0a998bcfe408c50a5e857ef9b2df7563bd267 Author: Marc V?ron Date: Mon Dec 28 10:29:17 2015 +0100 Bug 15429 - sub _parseletter should not change referenced values In C4/Letters.pm, sub _parseletter changes values that are passed by reference. E.g. patron's expiry date can change from iso format to syspref format, leading to strange behaviour in the calling routines (see Bug 15423). This patch makes sub _parseletter work on a copy of the referenced values. (Submitted to get feedback - is this the way to go?) Signed-off-by: Fr?d?ric Demians Good solution to real time bomb. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 002a2dcb1f1faed12a24fd820dc5fdaad60f3512) Signed-off-by: Julian Maurice (cherry picked from commit cc3b2d05905b8c6c7000a0252e277c151c0eeae6) Signed-off-by: Fr?d?ric Demians commit 4ad5decf4a06abd043566c5a5a6412133139de29 Author: Fridolin Somers Date: Wed Nov 25 14:02:05 2015 +0100 Bug 15252 - Add tests Tested 4 patches together, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit f0da781368a187337236d64ee94d9c8cc65f90f7) Signed-off-by: Julian Maurice (cherry picked from commit 638a6343f653fdf0a04504ada952d01978d4733a) commit bad4e3795037917786bfb2fd6fef3891fcb00f36 Author: Fridolin Somers Date: Wed Nov 25 12:34:18 2015 +0100 Bug 15252 - Patron search on start with does not work with several terms When searching a patron, search type can be 'start with' and 'contain'. If the search text contains a space (or a coma), this text is splitted into several terms. Actually, the search on 'start with' with several terms never returns a result. It is because the search composes an "AND" SQL query on terms. For example (I display only the surname part) : search type = contain : 'jean paul' => surname like '%jean% AND %paul%' search type = start with : 'jean paul' => surname like 'jean% AND paul%' The query for 'start with' is impossible. I propose, for search with start with, to not split terms : jean paul => surname like 'jean paul%' One can always use '*' to add more truncation : jea* pau* => surname like 'jea% pau%' This bug affects a lot surnames with several terms like 'LE GUELEC' or 'MAC BETH'. Note that the patch moves : $searchmember =~ s/,/ /g; It removes the test "if $searchmember" because $searchmember is tested and set to empty string previously : unless ( $searchmember ) { $searchmember = $dt_params->{sSearch} // ''; } Test plan : ========== - Create two patrons with firstname "Jean Paul" - Go to Patrons module - Choose "Starts with" in "Search type" filter - Perform a search on "Jean Paul" => without patch : you get no result => with this patch : you get the two results - Check you get the two results for search on "Jean Pau" - Check you get the two results for search on "Jea* Pau*" - Check you do not get results for search on "Jea Paul" - Choose "Contains" in "Search type" filter - Check you get the two results for search on "Jean Paul" - Check you get the two results for search on "Jean Pau" - Check you get the two results for search on "Jea* Pau*" - Check you get the two results for search on "Jea Paul" - Check you get the two results for search on "Paul Jean" Signed-off-by: Alex Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Bug 15252 - Patron search on start with does not work with several terms - followup 1 'start_with' is the default value of $searchtype, it can be explicit. Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Bug 15252 - correct UT searchtype value is contain and not contains Tested 4 patches together, works as expected Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a4f5564c855e31f6872fb5e3ef378381473f837c) Signed-off-by: Julian Maurice (cherry picked from commit db50ac5b8c6c72d15f4c5e2a96544abde432b0f6) commit d5a1eae1f679893950f26a0fe0f90df5b66638ff Author: Jonathan Druart Date: Wed Dec 2 11:38:27 2015 +0000 Bug 14636: Remove debug message Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 9b9fb3ee0555cd51007af669f753f0a0e5ec661e) Signed-off-by: Julian Maurice (cherry picked from commit 05e70e2e48d37ae0c68fcb82117e3d120710810f) Signed-off-by: Fr?d?ric Demians commit 3c16c8423beaf538cd7a930480aba9ddbabe8632 Author: Katrin Fischer Date: Wed Nov 25 18:00:33 2015 +0100 Bug 14636: Follow-up - fix typo in system preference name The preference is named "marcflavour" not "marcflavor". Without this change, search will always use "copyrightyear" and break search by publication date for UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 99a1d7f18a43a089d49d36b167cc1537fa058f79) Signed-off-by: Julian Maurice (cherry picked from commit 42f3e0d9ed845a8b44ac0bc3f8d5153811acab34) Signed-off-by: Fr?d?ric Demians commit 836958ad607ffe439580401f7a9bba623f72cc71 Author: Fridolin Somers Date: Wed Nov 25 17:06:01 2015 +0100 Bug 14636: Item search - biblioitems column is publicationyear not publicationdate Signed-off-by: Katrin Fischer Thx for the follow-up! Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 2d0d71730163fbd13583532de622574737e34221) Signed-off-by: Julian Maurice (cherry picked from commit 5c945298900413b7807fe1f1e79694feafba31f1) Signed-off-by: Fr?d?ric Demians commit 3b8e973d9ced0d5f89cd8719b4686dadd934e683 Author: Katrin Fischer Date: Sat Nov 21 22:37:03 2015 +0100 Bug 14636: Item search - improving display - Changes "Publication Date" to "Publication date" in the CSV export - Fixes 'no JavaScript fallback' display to match the normal display - only show 'by' when it's UNIMARC and an author exist - show copyrightdate if publicationyear is empty To test: - Turn of Javascript in your browser before you item search. This will activate the alternative display. - For MARC21: - Verify that the author displays when existing and no 'by' is shown. - Verify that the publication date is now shown. - For UNIMARC: - Verify that 'by' only displays when there is an author to display. - Verify that the publication date is still shown. - Try the CSV export. - Verify that the CSV header now reads 'Publication date'. Signed-off-by: Owen Leonard Successfully tested non-JS behavior and CSV export. DID NOT test UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 2aa6518c8a000a824e2659eaffc3d1ac54156544) Signed-off-by: Julian Maurice (cherry picked from commit 704e932d648c66ad81c0f79d8ae6b388595bcbcf) Signed-off-by: Fr?d?ric Demians commit 6cab2b5b1c9dcd7373abde8f8b19be145fbfb51b Author: Katrin Fischer Date: Sat Nov 21 22:32:52 2015 +0100 Bug 14636: Item search - fix search and sort by publication date for MARC21 Problem: MARC21/NORMARC stores the publication date in biblio.copyrightdate, but UNIMARC uses biblioitems.publicationyear. To test: - Without patch in a MARC21 installation: - Search by publication date - Verify that the results don't match the publication year you searched for. - Try sorting the table by publication year. - Verify that the sort doesn't work. - Apply patch. - Repeat both, search and sort. - Verify both work correctly now. - Repeat tests on a UNIMARC installation. - Verify both still work. Signed-off-by: Owen Leonard Tested searching and sorting successfully in a MARC21 installation. DID NOT test in UNIMARC. Signed-off-by: Fridolin Somers Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 0d2e83bca5b91376e9262b6cb0b993f09b919018) Signed-off-by: Julian Maurice (cherry picked from commit d772f8732c9623e246a0fad33fef5282c044f368) Signed-off-by: Fr?d?ric Demians commit c7db8a68f0a49dfc0f3fe421bcacd761e4fd65c0 Author: Jonathan Druart Date: Wed Dec 9 17:41:04 2015 +0000 Bug 15344: Remove some other calls of GetMemberDetails from pl scripts Same as previously. For these files it's a bit less obvious. To make sure these changes won't introduce any regression, check that the variable returned by GetMember is never used to get something else than a borrower fields. The 'flags' should not be get neither. For opac-user.tt it's different, other keys are got but there are defined in the pl script. On the way: - 'showname' is removed (never used) - fix scope var issue in opac-user.tt (BORROWER_INF.OPACPatronDetails vs OPACPatronDetails) Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall (cherry picked from commit 010a32d95f871853f5c597b2670f3de4c62cfa51) Signed-off-by: Julian Maurice (cherry picked from commit 95e9dafa38bf6f895cf62feac1df20e3b67a0640) Signed-off-by: Fr?d?ric Demians commit f7c6e9f586667ea5dfdd5dd08a05ccb799e1d424 Author: Jonathan Druart Date: Wed Dec 9 17:00:10 2015 +0000 Bug 15344: Remove unucessary call to GetMemberDetails This subroutine does a lot a processing and should only be called when necessary. In the get_template_and_user subroutine (so called from any pages of Koha), it is call to pass the branchcode, title, firstname, surname and borrowernumber values for the logged in user. This subroutine calls GetMemberAccountRecords which retrieve the items infos for all accountlines entries of the logged in user. On members/members.pl, let's say you have 74 entries in the accountlines tables, the page will execute 115 SELECT instead of 35 if you don't have any accountlines entries. With this patch, the number of SELECT is always 31. To test this patch you should have technical skills to know what to do. Note that USER_INFO was an array of... 1 element. Now it's a hashref. Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall (cherry picked from commit ac541e0fa1c11254e110d94eed64c358e02e8aab) Signed-off-by: Julian Maurice (cherry picked from commit 44202df6acdfcfb371eccc6b8e8007a871304e49) Signed-off-by: Fr?d?ric Demians commit d4bcfef9d1aaa8048b91fbe1f1b9b51a09be2703 Author: Marc V?ron Date: Sun Oct 4 11:38:03 2015 +0200 Bug 14948 - Display amounts right aligned in tables on patron pages This patch set display amounts for charge, fine, price etc. right aligned in tables on patron pages. To test, apply patch and verify that amounts appear right aligned on following pages: - Go to Home > Patrons, perform a search (Column 'Fines') - Go to a patron with fines and credits - Checkout tab (circulation.pl): Columns 'Charge', 'Fine', 'Price' (maybe you have to show column with 'Show / hide colums') - Fines Tab > Pay fines (pay.pl): Columns 'Amount', 'Amount Outstanding' - Fines Tab > Account (boraccount.pl): Columns 'Amount', 'Outstanding' Note: Test here 'Filter paid transactions' as well Signed-off-by: Nicole Engard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 1acc6094be7670c180bc006182a0f8e464abac03) Signed-off-by: Julian Maurice (cherry picked from commit fdb0cc80dbd323f8b7d60bb57af1e9bc6d126086) Signed-off-by: Fr?d?ric Demians commit 002e33b37a6d4bc321d13bdd8f1d5b185a4fe11c Author: Aleisha Date: Sun Dec 13 22:24:05 2015 +0000 Bug 14153: Noisy warns in admin/transport-cost-matrix.pl To test: 1) Go to Admin -> Transport cost matrix 2) Notice the warns in the error log 3) Apply the patch and refresh page 4) Notice page still works but no warns in error log Signed-off-by: Jonathan Druart Amended patch: Init a $op variable, if it must be reused later. Signed-off-by: Brendan A Gallagher (cherry picked from commit 825d68ee8696a2c3f3a2a95c0d148015f02a5ae9) Signed-off-by: Julian Maurice (cherry picked from commit 21465d93d57b197429ebf33d753b9d971e82bac3) Signed-off-by: Fr?d?ric Demians commit c80033b27710254c0a5e6f9b69ecbaf378be9402 Author: Nick Date: Wed Nov 18 11:49:15 2015 -0500 Bug 15210 - Novelist throws an error if no ISBN This patch makes opac-detail.tt check for an ISBN before attempting to load Novelist content and prevents a js error which breaks other code. To test: 1 - Enable novelist 2 - Add a visible change to OPACUserJS eg: $(document).ready(function() {$("body").css("background-color","pink");}); 3 - Load a record with no ISBN 4 - Note you do not see a color change in the body and that there is an error in the console 5 - Apply patch 6 - Reload the record 7 - You should see the color change and no error in the js Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 65c5fa4385a8e080cfd46a8197b4417bcd579b6a) Signed-off-by: Julian Maurice (cherry picked from commit 77bd7557fa7adb196ed46fd7ae3ceea98db3a67c) Signed-off-by: Fr?d?ric Demians commit 706ab6c926bfaed5c79412e9cadfe2e5dd7cd9f4 Author: Kyle M Hall Date: Wed Dec 30 14:26:35 2015 +0000 Bug 15442 - Checkouts table will not display due to javascript error Uncaught ReferenceError: AllowCirculate is not defined Test Plan: 1) Go to circulation.pl for a patron, note the checkouts table does not load 2) Apply this patch 3) Reload the page, checkouts table should show Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit c7339799ff994fffdb9273bd71951f8c2d60d1ec) Signed-off-by: Julian Maurice (cherry picked from commit 14ee2557daafbb67b3afa541fc69f60fa21e7229) Signed-off-by: Fr?d?ric Demians commit e491ba33c888a1f0271ddb9c5f48a022d421b0c3 Author: Jonathan Druart Date: Fri Dec 18 15:01:15 2015 +0000 Bug 15332: Sent DateTime object to DBIx::Class, not formatted dates If formatted dates are sent to DBIx::Class on update/insert, the date will be set as 0000-00-00 (except if the format is yyyy-mm-dd). Test plan: Use the batch patron modification tools to update the dateenrolled or dateexpiry values for at least 1 patron. Without this patch, the modified value will be updated to 0000-00-00, with this patch, the correct value will be set. Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Brendan A Gallagher (cherry picked from commit af7fb9cd48cdb47329e7b9bbe651e856e017aa13) Signed-off-by: Julian Maurice (cherry picked from commit d5fd02e4a17383e984c31e427dc2c64ce4726b51) Signed-off-by: Fr?d?ric Demians commit c9b64dc5ecb92659227c707a53ceabab9ec0c5c3 Author: Colin Campbell Date: Thu Nov 19 14:17:10 2015 +0000 Bug 15217 Remove redundant duplicate var declaration remove superfluous second declaration of template, borrowernumber and cookie which are never used Also removed the variables @results and @results_array which are declared but not used Signed-off-by: Fr?d?ric Demians As suggested by Colin, perl -wc catalogue/search.pl doesn't complain anymore after applying the patch. perlcritic confirms the 2 variables were unused. Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit 558f291465d60c082c0e9a4a15eb7ed87a3e3fde) Signed-off-by: Julian Maurice (cherry picked from commit 141f30d406671330bf31b199b4cdb78414176111) Signed-off-by: Fr?d?ric Demians commit deef37d65ef28e525a4a23bb1d9ff14f8bbc2c66 Author: Hector Castro Date: Sun Nov 22 19:52:39 2015 -0600 Bug 15228: Switch "Items in batch number" Yet another line to switch "Items in batch number" to "Patrons in batch number" Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit e89714ea84acd8300a629a7acccc6eee90ff0ff0) Signed-off-by: Julian Maurice (cherry picked from commit 008e3805ff1f6b59422286a33b55f4b509edca87) commit 33137f4bddc00722c3dd61e7c4d1955d71a0edb2 Author: Jonathan Druart Date: Wed Nov 25 16:45:50 2015 +0000 Bug 15101: Correct typo AllowPkiAuth vs AllowPKIAuth Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit d36280e36e1fa8779bf845fb0cc0de2ea835d486) Signed-off-by: Julian Maurice (cherry picked from commit 87ce8e85ec6d4c8a447a4d595bf3b975a9ea3cb3) Signed-off-by: Fr?d?ric Demians commit 9aec475b0570b970898dd4cc25efa7a33f5c7017 Author: Katrin Fischer Date: Sun Nov 22 02:43:36 2015 +0100 Bug 15101: Don't display sys pref AllowPkiAuth under CAS heading The system preference AllowPkiAuth display under the heading CAS authentication, but is actually a separate authentication option. Patch creates a separate heading for it. To test: - Go to Administration > System preferences > Tab Administration - Verify that AllowPkiAuth is now displayed separately Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit cee796629fb131966a8ebfa77ecbcf054c46fd02) Signed-off-by: Julian Maurice (cherry picked from commit 30bfb13466e875205f8052590e800247fb263952) commit 90e1ee89cd6627305777abf36383a3931bb38368 Author: Jonathan Druart Date: Wed Nov 25 16:14:35 2015 +0000 Bug 15229: Same fix for circulation.tt template (normal checkouts) Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit acf586a45ab4a27939f0ba34cba58ae8ff500993) Signed-off-by: Julian Maurice (cherry picked from commit b1e931f7bbcc7e9c0b03ca59a96fc0a67027191c) Signed-off-by: Fr?d?ric Demians commit a6c630aec677c957f8eb0f73e0eb2ca9f52129ba Author: Nicole C. Engard Date: Thu Nov 19 09:31:01 2015 -0600 Bug 15220: Fix typo in circ rules help MaxFinesystem should be MaxFine system To test: * visit circ & fine rules * click help * confirm typo fixed Signed-off-by: Thomas Misilo Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit 391c8ec0bc682491faaf64494867237dfc01bd11) Signed-off-by: Julian Maurice (cherry picked from commit a55557afc0f410da4b106e71362801036774c4c4) Signed-off-by: Fr?d?ric Demians commit 0447edf9e3c6373d08d16957ea33fd6163974db5 Author: Marc V?ron Date: Sat Nov 21 03:25:56 2015 +0100 Bug 15238: Better translatability for Installer Step 1 This Bug streamlines html in installer/step1.tt for better translatibility. To test: Reviwe code and verify that changes in text make sense. Signed-off-by: Hector Castro To reproduce in Debian environment, remove a required module with dpkg -r. Rewording Ok for translation purposes Bug 15238: (followup) Remove word 'Note:' 'Note: ' removed as requested in comment #3 Signed-off-by: Hector Castro Word 'Note' removed Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 29a4300c0727b779e1a0e83a35cd772828debde2) Signed-off-by: Julian Maurice (cherry picked from commit 8a7bd3aa361ce707fd5e9fd478c7d7bbd0647312) Signed-off-by: Fr?d?ric Demians commit e372febf1e352f3388c3f3e347a8c5a23f0b36a0 Author: Marc V?ron Date: Sat Nov 21 03:09:55 2015 +0100 Bug 15237: Quote of the day: Better translatibility for editor and help This patch moves html markup out of explanatory text in Quote of the day editor and help for better translatibility (Home > Tools > Quote Editor). To test: - Apply patch - Go to Home > Tools > Quote Editor and related Help - Verify that text changes make sense. Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Amended patch: Make consistent space after "Note:" (inside the br tag) Signed-off-by: Brendan A Gallagher (cherry picked from commit b0e833f9f5bffeb0940dd75eae150a247b5b520c) Signed-off-by: Julian Maurice (cherry picked from commit 53f4b7241c27b36b52571f14d3b1186e6b401c01) Signed-off-by: Fr?d?ric Demians commit 0eab9d32bd1f8849f36bf6c9e4ddff531d3d4686 Author: Marc V?ron Date: Sat Nov 21 02:32:30 2015 +0100 Bug 15236: Better translatibility in "Connect biblio.biblionumber to a MARC subfield" This patch moves html markup out of explanatory sentence in koha2marclinks.tt ("Connect biblio.biblionumber to a MARC subfield") for better translatability. To test: - Apply patch - Go to Home > Administration < Koha to MARC mapping and edit a tag - Verify that text change makes sense Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit f9586b01998071ddfdfc130ead2f48b079ae7e68) Signed-off-by: Julian Maurice (cherry picked from commit ae929c528367c135317d3058794028067b97ac90) Signed-off-by: Fr?d?ric Demians commit 61195220473a6b7b62bcdfadadcdf2cd3e51af9d Author: Marc V?ron Date: Thu Dec 3 00:10:28 2015 +0100 Bug 15233: (followup) Remove 2 sentences. This patch removes 2 sentences (see comment #8) Signed-off-by: Hector Castro Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 8f77dc86cec51f0f4eea1d627d82fd6b17499060) Signed-off-by: Julian Maurice (cherry picked from commit 722b953d0c8a8d907333e1cda43e6ed45c02b91e) Signed-off-by: Fr?d?ric Demians commit 0bf604f023bad9d7cb96df82c7b8da6b288840cf Author: Marc V?ron Date: Sat Nov 21 02:10:24 2015 +0100 Bug 15233: Cataloging subfield editors: Clean up html and streamline text for better translatability This patch removes bold markup from explanatory text in auth_subfields_structure.tt and makes it the same as in marc_subfields_structure.tt for better translatibility. To test: - Apply patch - Verify that string changes make sense and that the explanatory text is the same in both files. Signed-off-by: Hector Castro Rewording Ok for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 9b0d9a186a7bffc16af2e5b2f67de31eb468a7a5) Signed-off-by: Julian Maurice (cherry picked from commit e10046a351ed9681a18b5eaf21ba320f833b057e) Signed-off-by: Fr?d?ric Demians commit 42315be031b89de88bed284376dea2dd8005c834 Author: Marc V?ron Date: Wed Dec 2 06:33:32 2015 +0100 Bug 15231: (followup) Remove stray tag This patch removes a stray tag (see comment #4) and a superfluous blank. Signed-off-by: Hector Castro Signed-off-by: Brendan A Gallagher (cherry picked from commit ea0d5aa6bf7b0ff96fc75f04d6cb83dc37d4136a) Signed-off-by: Julian Maurice (cherry picked from commit 78f47f5dc89699aa388b915a3cad81cf375f2fbc) Signed-off-by: Fr?d?ric Demians commit a2c9af33a49e992a055ebf0482d82124c02ed317 Author: Marc V?ron Date: Fri Nov 20 22:58:40 2015 +0100 Bug 15231 - Import patrons: Remove string splitting by html tags to avoid weird translations Some of the strings in Home > Tools > Import patrons contain html tags and therefore are splitted in the translation tool. This makes it nearly impossible to create correct translations from the partial strings. Additinally, the notes for Extended patron attributes never displayed (due to a bug). To test: - Apply patch - Enable Syspref 'ExtendedPAtronAttributes' - Go to Home > Tools > Import patrons and verify, that the Notes at the right of the screen make sense Signed-off-by: Hector Castro Split html tags removed, notes at right side it displayed correctly Signed-off-by: Brendan A Gallagher (cherry picked from commit 5843c76546d5769493099faed2fbce39fbe3b6f3) Signed-off-by: Julian Maurice (cherry picked from commit d1e8b93f66b8aa800b5d552f7039effaa9dc9e53) Signed-off-by: Fr?d?ric Demians commit 99d8a586bbd93352ee5c875eecbd0beec8b7b3b3 Author: Marc V?ron Date: Wed Dec 2 12:39:59 2015 +0100 Bug 15300: Translatability: Replace ambiguous 'From' and 'To' in members-update.tt This patch replaces semantically ambigous words "From" and "To" in koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt for better translatability. To test: - Apply patch - Make sure that patrons can request detail changes in OPAC (sysprefs opacuserlogin, OPACPatronDetails) - Log in to OPAC, request a change of personal details (cgi-bin/koha/opac-memberentry.pl) - Log in to staff client - Click link 'Patrons requesting modifications' or go to Home > Patrons > Update patron records - Verify that table headers make sense Signed-off-by: Hector Castro Rewording Ok for translation purpose Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit b07513526965720c7d558bd9c6176088304a2ee9) Signed-off-by: Julian Maurice (cherry picked from commit d8aa61c574022e842a9921beaa2fe723891b895d) Signed-off-by: Fr?d?ric Demians commit a62b8a526ca282d724e44c34e47c9e63f9e385ae Author: Marc V?ron Date: Sun Dec 13 22:39:53 2015 +0100 Bug 15366 - Fix breadcrumbs and html page title in guided reports This patch fixes following issues with breadcrumbs and html page title in Home > Reports > Guided reports wizard: - Sometimes, breadcrumbs display a stray > at the end - While creating a report, steps are not displayed in breadcrumbs and do not appear in html page title - html page title is divided by newlines To test: - Apply patch - Go to Home > Reports > Guided reports wizard - Go to all pages including the steps for creating a new report and verify - that the breadcrumbs display properly and make sense - in html source, the page title makes sense and displays on one line. Signed-off-by: Hector Castro Works as descrived Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 639ccd469f4e00e1737e0dec6ee914d845907938) Signed-off-by: Julian Maurice (cherry picked from commit c7028a02b5158591665a35421b4a80f54f5324f3) Signed-off-by: Fr?d?ric Demians commit 26fd2156293f3b3ea9d460b437bcd5f08879bf54 Author: Marc V?ron Date: Sun Dec 13 20:34:46 2015 +0100 Bug 15365: Translatability: Fix issue on Administration > Circulation and fine rules Fix translatability issue on smart-rules.tt to prevent odd translations (Sentences splitted by tags and newlines). To test: - Apply patch - Go to Administration > Circulation and fine rules - Verify that the lines "Note: " and "Important: " below "Default holds policy by item type" make sense and are not splitted by tags and (in html) by newlines. (Amended to fix commit message) Signed-off-by: Hector Castro strong Note and Important displayed Ok for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit bc2e4ba86208e26d9890868d6deb5c65c263e907) Signed-off-by: Julian Maurice (cherry picked from commit 0eff941b1b28ae1db1a2e11345a6d7cfb9616c3f) Signed-off-by: Fr?d?ric Demians commit 519dd299436097e44278f392238663f15b90146a Author: Marc V?ron Date: Sun Dec 13 11:58:52 2015 +0100 Bug 15363: Translatability: Fix issue with ambiguous 'all' on Administration > Set library checkin and transfer policy In branch_transfer_limits.tt, set ambiguous word 'all' (separated by tags) into a translatable context. To test: Apply patch - Go to Home > Administration > Set library checkin and transfer policy - Verify that the word 'all' is no longer separated by tags in "For all collection codes: " rsp. "For all item types: " (Switch with syspref 'BranchTransfersLimitsType') Signed-off-by: Hector Castro Works well for translation purpose Bug 15363: (followup) Move tags inside if statements Followup for comment #3 Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 27363271be4b4cc308572dcf04049edf33fa1a7c) Signed-off-by: Julian Maurice (cherry picked from commit 88d1dfcfffcb66ffde3b4ecdebc9b9e5876bc076) Signed-off-by: Fr?d?ric Demians commit 8c404db64ed99c99596d55440637d94166806a20 Author: Marc V?ron Date: Sun Dec 13 10:47:53 2015 +0100 Bug 15362: Translatability: Fix issue on Administration 'Did you mean?' Fix sentence splitting by tags on didyoumean.tt leading to odd translations. To test: - Apply patch - Go to Home > Administration > Did you mean? - Verify that the information below the title displays properly and makes sense. - Disable Javascript, reload page - Verify that the warning about missing Javascript displays properly and makes sense. Signed-off-by: Hector Castro Works as descrived. Removed em tags for translation purpose Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 984f641417e20ab561b2670b5ed921dc4aa6a907) Signed-off-by: Julian Maurice (cherry picked from commit 40724deeb8ebd36e9be5253f47d16396230191e4) Signed-off-by: Fr?d?ric Demians commit 98937fa5bcd209bf8f8f642fe031edd03de23d73 Author: Marc V?ron Date: Wed Dec 9 21:31:29 2015 +0100 Bug 15346: Translatability: fix sentence splitting issue in memberentrygen.tt Fix sentences in memberentrygen.tt that are split by tags, leading to wrong capitalization in German (because it can not be decided if a string is part of a sentence or a standalone sentence). Example: Es sind Keine Bibliotheken definiert. To test: - Apply patch - To trigger the messages, you have to edit a patron in a system where no libraries and no patron categories are defined - Alternatively, carefully review the changes in koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt Signed-off-by: Hector Castro Sentences fixed for translation purposes Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher (cherry picked from commit 698fb010f55c0d68789299003f4ac55326142f72) Signed-off-by: Julian Maurice (cherry picked from commit ec2e2f6d0b9d4b376b59d24e7895ad767d8fff97) Signed-off-by: Fr?d?ric Demians commit 4448c38763c94415c64f51b2de6cda90a88fc6c0 Author: Marc V?ron Date: Wed Dec 9 18:36:21 2015 +0100 Bug 15345: Translatability: fix issue in facets (Availability') This patch fixes an issue with a splitted sentence in facets (Avalability) that leads to weird translations e.g.: German: 'Zeige nur Verf?gbar Exemplare' French: 'Montrer seulement disponible exemplaires' Additionally, the link "Show all items" gets it's own li tags to display nicely like the other links in the facets column and it removes superfluous dots. To test in OPAC and Staff client: - Apply patch - Do a search that results in more than one available items - In column "Refine your search", click on "Limit to currently available items" - Verify that the message "Showing only available items" and the link "Show all items" display nicely. Signed-off-by: Hector Castro use_zebra_facets set to 0 in koha-conf.xml to test. Works as described Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher (cherry picked from commit 5e80a64ea39140c9918335fc472a441bb3fa9c6a) Signed-off-by: Julian Maurice (cherry picked from commit 3951a8fffd4d9b6ecb22a8382878c79225e6d2ca) Signed-off-by: Fr?d?ric Demians ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 10 +- C4/Letters.pm | 8 +- C4/Members.pm | 10 - C4/UsageStats.pm | 2 +- C4/Utils/DataTables/Members.pm | 30 +- admin/aqbudgets.pl | 4 +- admin/aqplan.pl | 6 +- admin/transport-cost-matrix.pl | 2 +- catalogue/detail.pl | 2 +- catalogue/itemsearch.pl | 9 +- catalogue/search.pl | 4 - circ/circulation.pl | 2 +- circ/returns.pl | 8 +- circ/transferstoreceive.pl | 2 +- circ/waitingreserves.pl | 2 +- etc/zebradb/zebra-authorities-dom.cfg | 2 +- etc/zebradb/zebra-authorities.cfg | 2 +- etc/zebradb/zebra-biblios-dom.cfg | 2 +- etc/zebradb/zebra-biblios.cfg | 2 +- koha-tmpl/intranet-tmpl/prog/en/columns.def | 6 +- .../intranet-tmpl/prog/en/includes/admin-menu.inc | 8 + .../prog/en/includes/catalogue/itemsearch_item.inc | 5 +- .../prog/en/includes/cateditor-ui.inc | 1104 ++++++++++++++++++++ .../prog/en/includes/checkouts-table-footer.inc | 6 +- .../includes/csv_headers/catalogue/itemsearch.tt | 2 +- .../intranet-tmpl/prog/en/includes/facets.inc | 2 +- .../en/includes/member-alt-address-style-de.inc | 2 +- .../en/includes/member-alt-address-style-us.inc | 2 +- .../en/includes/member-alt-contact-style-de.inc | 2 +- .../en/includes/member-alt-contact-style-us.inc | 2 +- .../en/includes/member-main-address-style-de.inc | 4 +- .../en/includes/member-main-address-style-us.inc | 4 +- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 6 +- .../intranet-tmpl/prog/en/modules/acqui/invoice.tt | 2 +- .../intranet-tmpl/prog/en/modules/acqui/parcels.tt | 2 +- .../en/modules/admin/auth_subfields_structure.tt | 4 +- .../en/modules/admin/branch_transfer_limits.tt | 2 +- .../prog/en/modules/admin/branches.tt | 2 +- .../intranet-tmpl/prog/en/modules/admin/cities.tt | 6 +- .../prog/en/modules/admin/didyoumean.tt | 6 +- .../prog/en/modules/admin/koha2marclinks.tt | 3 +- .../en/modules/admin/marc_subfields_structure.tt | 4 +- .../prog/en/modules/admin/preferences/admin.pref | 5 +- .../en/modules/admin/preferences/i18n_l10n.pref | 4 +- .../prog/en/modules/admin/smart-rules.tt | 7 +- .../prog/en/modules/catalogue/itemsearch.tt | 4 +- .../cataloguing/value_builder/marc21_leader.tt | 2 +- .../prog/en/modules/circ/circulation.tt | 5 +- .../prog/en/modules/help/admin/smart-rules.tt | 2 +- .../prog/en/modules/help/labels/label-manage.tt | 105 ++ .../prog/en/modules/help/tools/quotes.tt | 2 +- .../prog/en/modules/installer/step1.tt | 2 +- .../prog/en/modules/members/boraccount.tt | 20 +- .../prog/en/modules/members/memberentrygen.tt | 4 +- .../prog/en/modules/members/members-update.tt | 10 +- .../prog/en/modules/members/moremember.tt | 4 +- .../intranet-tmpl/prog/en/modules/members/pay.tt | 10 +- .../en/modules/members/tables/members_results.tt | 2 +- .../prog/en/modules/patroncards/edit-batch.tt | 2 +- .../prog/en/modules/reports/borrowers_stats.tt | 2 +- .../en/modules/reports/guided_reports_start.tt | 57 +- .../prog/en/modules/tools/import_borrowers.tt | 36 +- .../prog/en/modules/tools/manage-marc-import.tt | 6 +- .../prog/en/modules/tools/modborrowers.tt | 4 +- .../intranet-tmpl/prog/en/modules/tools/quotes.tt | 3 +- .../opac-tmpl/bootstrap/en/includes/masthead.inc | 2 +- .../bootstrap/en/includes/opac-facets.inc | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-account.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-detail.tt | 14 +- .../bootstrap/en/modules/opac-downloadshelf.tt | 2 +- .../bootstrap/en/modules/opac-memberentry.tt | 6 +- .../bootstrap/en/modules/opac-messaging.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 6 +- .../bootstrap/en/modules/opac-shareshelf.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 2 +- .../bootstrap/en/modules/opac-suggestions.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 37 +- misc/translator/LangInstaller.pm | 4 + offline_circ/list.pl | 2 +- opac/opac-MARCdetail.pl | 3 +- opac/opac-account.pl | 8 +- opac/opac-ics.pl | 3 - opac/opac-messaging.pl | 6 +- opac/opac-passwd.pl | 3 +- opac/opac-privacy.pl | 3 +- opac/opac-user.pl | 6 +- reports/borrowers_stats.pl | 2 +- reports/guided_reports.pl | 2 +- t/DataTables/Members.t | 2 +- t/db_dependent/Letters.t | 12 +- t/db_dependent/Utils/Datatables_Members.t | 76 +- tools/modborrowers.pl | 5 + 92 files changed, 1551 insertions(+), 258 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/labels/label-manage.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 19:38:28 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 18:38:28 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-209-g9cf06c7 Message-ID: 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 9cf06c7eb506096f52705bc8aff26146c95930e2 (commit) from df2bab8f61ca5d06768c5425c55f3f08d9485966 (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 9cf06c7eb506096f52705bc8aff26146c95930e2 Author: Brendan Gallagher Date: Thu Dec 31 18:38:40 2015 +0000 Bumping the DBrev up Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_13022.sql | 1 - installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_13022.sql hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 19:54:54 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 18:54:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-212-g5fc9a42 Message-ID: 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 5fc9a42c7c7a89a7ddd91b73639654e16da29980 (commit) via 895c60b8d309e4afdd71a7a3eb75ccd69a3577bf (commit) via 03c89fa02ed80987a02dd12e33aeb2487a2e5370 (commit) from 9cf06c7eb506096f52705bc8aff26146c95930e2 (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 5fc9a42c7c7a89a7ddd91b73639654e16da29980 Author: Jonathan Druart Date: Tue Dec 15 11:41:51 2015 +0000 Bug 15380: Use Koha::Authority::Type[s] in admin script This path rewrites the admin/authtypes.pl script to use the new modules instead of executing the SQL queries from the script. Test plan: 1/ Create 1+ authority types 2/ Update one 3/ Delete it 4/ Create an authority record using this authority type. 5/ Try to delete the authority type Here there is a change in the behavior. Prior to this patch, the user was able to delete the authority type, now it's not. I think it was a bug, feel free to give your opinion if you disagree on this change. Signed-off-by: Marc V?ron Signed-off-by: Martin Renvoize Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 895c60b8d309e4afdd71a7a3eb75ccd69a3577bf Author: Jonathan Druart Date: Tue Dec 15 11:41:24 2015 +0000 Bug 15380: Introduce Koha::Authorit[y|ies] and Koha::Authority::Type[s] Based on Koha::Objects. Signed-off-by: Marc V?ron Signed-off-by: Martin Renvoize Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 03c89fa02ed80987a02dd12e33aeb2487a2e5370 Author: Jonathan Druart Date: Tue Dec 15 10:21:02 2015 +0000 Bug 15380: Move Koha::Authority to Koha::MetadataRecord::Authority The existing Koha::Authority does not use Koha::Objects and does not exclusively deal with DB objects. It makes much sense to move it to let the space free for a Koha::Authority and Koha::Authorities modules based on Koha::Object. Signed-off-by: Marc V?ron Signed-off-by: Martin Renvoize Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: C4/AuthoritiesMarc.pm | 4 +- Koha/{Items.pm => Authorities.pm} | 18 +- Koha/Authority.pm | 135 ++---------- Koha/{Subscription.pm => Authority/Type.pm} | 19 +- Koha/{Biblioitems.pm => Authority/Types.pm} | 10 +- Koha/Exporter/Record.pm | 2 +- Koha/Filter/MARC/EmbedSeeFromHeadings.pm | 4 +- Koha/{ => MetadataRecord}/Authority.pm | 20 +- admin/authtypes.pl | 166 ++++++++------- authorities/merge.pl | 8 +- .../prog/en/modules/admin/authtypes.tt | 221 +++++++++++--------- misc/export_records.pl | 2 +- svc/records/preview | 4 +- t/db_dependent/Koha/Authorities.t | 55 +++++ t/db_dependent/Koha_Authority.t | 18 +- .../RecordProcessor_EmbedSeeFromHeadings.t | 4 +- tools/batch_record_modification.pl | 6 +- tools/export.pl | 2 +- 18 files changed, 336 insertions(+), 362 deletions(-) copy Koha/{Items.pm => Authorities.pm} (80%) copy Koha/{Subscription.pm => Authority/Type.pm} (80%) copy Koha/{Biblioitems.pm => Authority/Types.pm} (83%) copy Koha/{ => MetadataRecord}/Authority.pm (84%) create mode 100644 t/db_dependent/Koha/Authorities.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 20:00:16 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 19:00:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-216-g4a34fd2 Message-ID: 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 4a34fd2fd31fc98a85021dad22f37605cfae2a5c (commit) via 7e70202d34d75f988fbaea9b911347417c203aac (commit) via 7283069a9d3b2ffb2edc31022d96bb4aea107098 (commit) via e28d54f7d9efef42bc47317b814298aa444bb9d7 (commit) from 5fc9a42c7c7a89a7ddd91b73639654e16da29980 (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 4a34fd2fd31fc98a85021dad22f37605cfae2a5c Author: Fr?d?ric Demians Date: Sun Dec 20 17:17:08 2015 +0100 Bug 15381: Fix error in SearchAuthorities when no authtypecode Signed-off-by: Martin Renvoize Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 7e70202d34d75f988fbaea9b911347417c203aac Author: Jonathan Druart Date: Tue Dec 15 13:43:47 2015 +0000 Bug 15381: Remove GetAuthType and GetAuthTypeCode Test this patch with the previous one. Signed-off-by: Fr?d?ric Demians Signed-off-by: Martin Renvoize Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 7283069a9d3b2ffb2edc31022d96bb4aea107098 Author: Jonathan Druart Date: Tue Dec 15 13:19:53 2015 +0000 Bug 15381: Remove getauthtypes and getauthtype These 2 subroutines are now not necessary anymore, we can use Koha::Authority::Types to retrieve the authority types. This patch won't be easy to test. Indeed, a lot of file are updated. To test it I would suggest to focus on the merge authority You should also confirm that the authtypecode and the authtypetext values are correctly displayed when navigating in the authority module. Signed-off-by: Fr?d?ric Demians Signed-off-by: Martin Renvoize Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit e28d54f7d9efef42bc47317b814298aa444bb9d7 Author: Jonathan Druart Date: Tue Dec 15 11:59:02 2015 +0000 Bug 15381: Use Koha::Authority::Types in some other places There are 3 place where the auth_types table were requested directly from the script or a subroutine. These 3 occurrences are easy to replace with the new module. Test plan: 1/ Search for authorities and use the "did you mean" feature for authorities. Focus on the authtypecode 2/ Edit authority and biblio frameworks. The "Thesaurus" dropdown list should be correctly populated (UNIMARC only). Signed-off-by: Fr?d?ric Demians Signed-off-by: Martin Renvoize Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: C4/AuthoritiesMarc.pm | 106 +++++--------------- C4/Biblio.pm | 6 +- C4/Koha.pm | 63 ------------ Koha/MetadataRecord/Authority.pm | 6 +- admin/auth_subfields_structure.pl | 5 +- admin/auth_tag_structure.pl | 15 +-- admin/marc_subfields_structure.pl | 12 +-- authorities/auth_finder.pl | 17 +--- authorities/authorities-home.pl | 21 +--- authorities/authorities.pl | 30 ++---- authorities/blinddetail-biblio-search.pl | 11 +- authorities/detail-biblio-search.pl | 24 ++--- authorities/detail.pl | 32 +++--- authorities/merge.pl | 44 +++----- cataloguing/value_builder/unimarc_field_210c.pl | 16 --- .../prog/en/includes/authorities-search.inc | 26 ++--- .../prog/en/includes/authorities-toolbar.inc | 4 +- .../prog/en/modules/admin/auth_tag_structure.tt | 9 +- .../prog/en/modules/authorities/merge.tt | 2 +- .../intranet-tmpl/prog/en/modules/tools/export.tt | 8 +- misc/migration_tools/merge_authority.pl | 4 +- opac/opac-authorities-home.pl | 25 ++--- opac/opac-authoritiesdetail.pl | 24 ++--- tools/batch_record_modification.pl | 4 +- tools/export.pl | 14 +-- 25 files changed, 153 insertions(+), 375 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 20:07:19 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 19:07:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-221-g8b17122 Message-ID: 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 8b171223a6be947fda6f7caacef631847b1cb1d7 (commit) via b2ae720fec540a38e48328159068d1d631d002af (commit) via e17b835804c7f818c712a1ed1f00212aa35dda0d (commit) via ba2f667c3c8c19c76ea90d6dac003e0b6755743d (commit) via 2585209c11991cc91356f80487bd35c51d9d5cfc (commit) from 4a34fd2fd31fc98a85021dad22f37605cfae2a5c (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 8b171223a6be947fda6f7caacef631847b1cb1d7 Author: Jonathan Druart Date: Mon Oct 26 08:56:49 2015 +0000 Bug 14889: Add tests for Koha::BiblioFramework[s] Signed-off-by: Katrin Fischer Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit b2ae720fec540a38e48328159068d1d631d002af Author: Jonathan Druart Date: Mon Oct 26 08:55:43 2015 +0000 Bug 14889: Fix error msg on duplicate Signed-off-by: Katrin Fischer Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit e17b835804c7f818c712a1ed1f00212aa35dda0d Author: Katrin Fischer Date: Sun Oct 25 10:33:50 2015 +0100 Bug 14889: QA Follow-up - Removes unused package from BiblioFramework.pm - Makes framework table sortable - Some small changes in wording of error messages Signed-off-by: Katrin Fischer Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit ba2f667c3c8c19c76ea90d6dac003e0b6755743d Author: Jonathan Druart Date: Thu Sep 24 16:08:54 2015 +0100 Bug 14889: Use Koha::BiblioFramework[s] in admin/biblio_framework.pl Test plan: Add/edit/remove biblio frameworks from the administration module (admin/biblio_framework.pl). You should get message feedback after each action. Signed-off-by: Bernardo Gonzalez Kriegel No problems found. Tested add/edit/delete No koha-qa errors Signed-off-by: Katrin Fischer Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 2585209c11991cc91356f80487bd35c51d9d5cfc Author: Jonathan Druart Date: Thu Sep 24 16:08:49 2015 +0100 Bug 14889: Add Koha::BiblioFramework[s] classes Signed-off-by: Bernardo Gonzalez Kriegel Signed-off-by: Katrin Fischer Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: Koha/{City.pm => BiblioFramework.pm} | 6 +- Koha/{Cities.pm => BiblioFrameworks.pm} | 8 +- admin/biblio_framework.pl | 203 +++++++++----------- .../prog/en/modules/admin/biblio_framework.tt | 184 +++++++++++------- t/db_dependent/Koha/BiblioFrameworks.t | 43 +++++ 5 files changed, 254 insertions(+), 190 deletions(-) copy Koha/{City.pm => BiblioFramework.pm} (88%) copy Koha/{Cities.pm => BiblioFrameworks.pm} (85%) create mode 100644 t/db_dependent/Koha/BiblioFrameworks.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 20:27:24 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 19:27:24 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-222-ge3f8185 Message-ID: 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 e3f81857d8193245c8e8483838a9daef676ea994 (commit) from 8b171223a6be947fda6f7caacef631847b1cb1d7 (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 e3f81857d8193245c8e8483838a9daef676ea994 Author: Joonas Kylm?l? Date: Wed Nov 4 15:15:04 2015 +0000 Bug 15129: Add Koha::Object for issuing rules and let smart-rules.pl use it Test plan: 1. Make sure that in koha/admin/smart-rules.pl you can still create new rules and that the new rules have all their values remained after saving the rule (so put to every field something). 2. Make sure you can edit that rule 3. Make sure you can delete that rule Sponsored-by: Vaara-kirjastot Followed test plan, works as expected Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: Koha/{City.pm => IssuingRule.pm} | 14 ++++++-------- Koha/{Cities.pm => IssuingRules.pm} | 22 +++++++++++----------- admin/smart-rules.pl | 12 ++++++++---- 3 files changed, 25 insertions(+), 23 deletions(-) copy Koha/{City.pm => IssuingRule.pm} (87%) copy Koha/{Cities.pm => IssuingRules.pm} (81%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 20:45:22 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 19:45:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-227-gb00935b Message-ID: 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 b00935bc851ffe2086efc8bf37e78c22940cde2d (commit) via 065e33bdd752b298b896a03880d445b54bec2e69 (commit) via 33fb33fea9fe5a1d7801d421f0b62a337c2c0c61 (commit) via 56a4abf13f7598c8597d12ccb25c5abb547a998e (commit) via ecd89d20302118202ebaa9fbe0a46aea624fe8a8 (commit) from e3f81857d8193245c8e8483838a9daef676ea994 (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 b00935bc851ffe2086efc8bf37e78c22940cde2d Author: Brendan Gallagher Date: Thu Dec 31 19:47:06 2015 +0000 Adding Koha.pm update Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 065e33bdd752b298b896a03880d445b54bec2e69 Author: Brendan Gallagher Date: Thu Dec 31 19:45:35 2015 +0000 Removing the amoticupdate file Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 33fb33fea9fe5a1d7801d421f0b62a337c2c0c61 Author: Brendan Gallagher Date: Thu Dec 31 19:44:50 2015 +0000 Updating the DBrev. Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 56a4abf13f7598c8597d12ccb25c5abb547a998e Author: Jonathan Druart Date: Wed Dec 9 10:24:15 2015 +0000 Bug 14945: Add 2 more tests for StoreLastBorrower Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit ecd89d20302118202ebaa9fbe0a46aea624fe8a8 Author: Kyle M Hall Date: Mon Nov 5 14:35:23 2012 -0500 Bug 14945 - Add the ability to store the last patron to return an item Currently if the AnonymousPatron system preference is in use, all patron data is anonymized. Some libraries would like to be able to see the last patron who returned out an item ( in case of damage ) but still keep all other patrons anonymized. * Add the table items_last_borrower ( id, itemnumber, borrowernumber ) * Add new system preference StoreLastBorrower * If StoreLastBorrower is enabled, upon checkin have Koha insert into this table the patron who last returned this item. Replace existing row based on itemnumber if exists. * If table has a row for a given item, link to the patron from the item details page. Test plan: 1) Apply patch 2) Run updatedatabase.pl 3) Enable StoreLastBorrower 4) Issue an item to a patron and return said item 5) Issue the same item to a second patron, do not return it. 6) View moredetail.pl for the given bib, find the given item. There should be a new field in the history list 'Last returned by' with a link to the last patron to return the item. Optionally, you can also verify this works even if patron issuing history has been set to anonymize issues upon return. Signed-off-by: Nick Clemens Signed-off-by: Jen DeMuth Signed-off-by: Tom Misilo Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 8 ++ Koha.pm | 2 +- Koha/Item.pm | 33 ++++++ .../Result/{Rating.pm => ItemsLastBorrower.pm} | 75 +++++++------ catalogue/moredetail.pl | 2 + installer/data/mysql/kohastructure.sql | 16 +++ installer/data/mysql/sysprefs.sql | 1 + installer/data/mysql/updatedatabase.pl | 20 ++++ .../prog/en/modules/admin/preferences/opac.pref | 8 +- .../prog/en/modules/catalogue/moredetail.tt | 4 + .../opac-tmpl/bootstrap/en/modules/opac-privacy.tt | 1 + t/db_dependent/Circulation/AnonymiseIssueHistory.t | 110 +++++++++++++++++++- 12 files changed, 246 insertions(+), 34 deletions(-) copy Koha/Schema/Result/{Rating.pm => ItemsLastBorrower.pm} (57%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 21:23:14 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 20:23:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-230-g603e986 Message-ID: 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 603e98646eb885dddcb816b9bd58bcf2e4615611 (commit) via e168a9ccf62706d6624807a69ace645e531731ce (commit) via 5b35435d35132cea0c0680145998fe7546b8e01f (commit) from b00935bc851ffe2086efc8bf37e78c22940cde2d (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 603e98646eb885dddcb816b9bd58bcf2e4615611 Author: Jonathan Druart Date: Fri Oct 23 09:21:21 2015 +0100 Bug 14131: Reduce the greybox height to 400px Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit e168a9ccf62706d6624807a69ace645e531731ce Author: Liz Date: Thu Oct 15 04:11:39 2015 +0000 Bug 14131 - Adding print patron cards to patron lists home page To test: Go to /cgi-bin/koha/patron-lists/lists.pl Make a patron list Click "Print patron cards" Success: you get a pdf of cards to print. Failure: you can't get a pdf of cards to print. Note that you'll need to have a card layout, template, and printer profile defined. The defaults should work. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 5b35435d35132cea0c0680145998fe7546b8e01f Author: Marc V?ron Date: Sun May 3 23:26:11 2015 +0200 Bug 14131 - Patroncard: Add possibility to print from patron lists This patch adds the possibility to print patron cards from patron lists. To test: - Go to Home > Tools > Patron card creator - Prepare a patron card and create some cards using the batch functionality - Apply patch - Prepare a patron list e.g. from patron search - Go to Home > Tools > Patron card creator > Manage batches - Below the list of batches you have a dropdown to select a patron list - Select your list and hit "Export from patron list" - Select template and layout as you would do with batches - Hit "Export" - Download PDF Modified patch to work with Bug 14676 changes. Functionality unchanged. Signed-off-by: Nick Clemens Signed-off-by: Liz (Amended to make it apply on current master) Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/patron_lists/lists.tt | 10 ++++-- .../prog/en/modules/patroncards/manage.tt | 36 +++++++++++++++++++- .../prog/en/modules/patroncards/print.tt | 7 ++++ patroncards/create-pdf.pl | 10 ++++++ patroncards/manage.pl | 3 ++ patroncards/print.pl | 11 ++++++ 6 files changed, 74 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 21:37:28 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 20:37:28 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-233-gc1840b0 Message-ID: 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 c1840b08fbad6d5c55822771d164a8013ba8d4ff (commit) via 69db045837ce94edeb6d7a605eef188844d38819 (commit) via 1db97e29c7baa457d1c2c2a1ec4c1e487fa2accc (commit) from 603e98646eb885dddcb816b9bd58bcf2e4615611 (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 c1840b08fbad6d5c55822771d164a8013ba8d4ff Author: Brendan Gallagher Date: Thu Dec 31 20:39:01 2015 +0000 removing the actomic update commit 69db045837ce94edeb6d7a605eef188844d38819 Author: Brendan Gallagher Date: Thu Dec 31 20:36:30 2015 +0000 Bumping the DBrev to .014 (fixed earlier DBrev too) Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com commit 1db97e29c7baa457d1c2c2a1ec4c1e487fa2accc Author: Charles Farmer Date: Tue Dec 1 08:55:50 2015 -0500 Bug 10076 - Add Bcc syspref for ClaimAcquisition and ClaimIssues There is already a syspref called "OverdueNoticeBcc" for sending Bcc copies of mails sent for overdues and other notices. This patch add a new syspref ClaimsBccCopy to bcc the claimacquisition and clamissues alerts. Changed the wording of the system preference to: [Send|Don't send] blind copy (BCC) to logged in user when sending serial or acquisitions claims notices. Signed-off-by: Fr?d?ric Demians Signed-off-by: Katrin Fischer Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: C4/Letters.pm | 2 ++ Koha.pm | 2 +- installer/data/mysql/sysprefs.sql | 1 + installer/data/mysql/updatedatabase.pl | 15 +++++++++++++++ .../prog/en/modules/admin/preferences/acquisitions.pref | 8 ++++++++ 5 files changed, 27 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Dec 31 21:40:14 2015 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 31 Dec 2015 20:40:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.22.00-234-g5c581cc Message-ID: 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 5c581ccdd0a2fc3ea49d941f2860ac1dd9953007 (commit) from c1840b08fbad6d5c55822771d164a8013ba8d4ff (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 5c581ccdd0a2fc3ea49d941f2860ac1dd9953007 Author: Martin Renvoize Date: Fri Sep 18 08:10:27 2015 +0000 Bug 14034: Fix logout on refresh for shibboleth This is similar to bug 12877 Signed-off-by: Chris Cormack While this is missing a detailed test plan, what I did to test was 1/ Login to koha .. it works 2/ Apply patch 3/ Login to koha .. it still works, no regressions. I can't test the shibboleth part but it doesnt break anything else so I'm happy to sign off Signed-off-by: Jesse Weaver We had to implement this fix for one of our customers using Shibboleth. Can verify that it fixes the issue (which, incidentally, breaks stage-marc-import since that depends on a constant sessionID). Passing QA (verified with QA tools). Thanks, Martin! Signed-off-by: Brendan Gallagher brendan at bywatersolutions.com ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository