From gitmaster at git.koha-community.org Tue Nov 1 17:00:25 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 01 Nov 2016 16:00:25 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1291-g81eec72 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 81eec722da04a0071a5680439a81472ea796c3fc (commit) from 6001765ba16c5d2f36847254fc8a278023d52022 (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 81eec722da04a0071a5680439a81472ea796c3fc Author: Tomas Cohen Arazi Date: Mon Oct 31 16:18:37 2016 -0300 Bug 14874: (followup) Fix typo introduced in sysprefs.sql Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/sysprefs.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 11:54:57 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 10:54:57 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1297-ge67c202 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 e67c20260948ea974a828ec99a77b9840bbddec7 (commit) via 85e95d069d8c072fec355e3c18bd59333e9618f9 (commit) via e3387862fb19f08d6f1a3cb4f4fbb9b632170986 (commit) via 6e2caf74f85e5d6ea5df8042431a4ade06b60633 (commit) via 15b1f6c7fe472ce4b1c0f73e2f0dbb0fe05a15ad (commit) via 53dfa997276348f70c2924bc588b3668f2dfb519 (commit) from 81eec722da04a0071a5680439a81472ea796c3fc (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 e67c20260948ea974a828ec99a77b9840bbddec7 Author: Kyle M Hall Date: Wed Nov 2 10:53:35 2016 +0000 Bug 15581 - DBRev 16.06.00.046 Signed-off-by: Kyle M Hall commit 85e95d069d8c072fec355e3c18bd59333e9618f9 Author: Katrin Fischer Date: Tue Nov 1 15:53:05 2016 +0100 Bug 15581: Follow-up - suggested change to the OPAC message Instead of showing "Automatic renewal" to the user, this changes it to show "No longer renewable" when the automatic renewal won't happen any longer because of the days the item has already been checked out. Signed-off-by: Kyle M Hall commit e3387862fb19f08d6f1a3cb4f4fbb9b632170986 Author: Jonathan Druart Date: Fri Oct 28 16:08:01 2016 +0000 Bug 15581: Change wording for auto too late Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit 6e2caf74f85e5d6ea5df8042431a4ade06b60633 Author: Jonathan Druart Date: Mon Apr 18 16:33:42 2016 +0100 Bug 15581: Display the generic "schedule for auto renew" message on the checkouts table Signed-off-by: Jonathan Field Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit 15b1f6c7fe472ce4b1c0f73e2f0dbb0fe05a15ad Author: Jonathan Druart Date: Thu Jan 14 14:38:23 2016 +0000 Bug 15581: Display the latest auto renew date possible when renewing manually If an issue marked as auto_renew is renewed manually, we want to display the latest auto renew date possible. Test plan: 1/ Define circ rules as in the previous patch. 2/ Check a item out, mark it as an auto renewal 3/ Back date the issuedate and make sure it will be too late to renew it 4/ Use the Circulation > renew page (circ/renew.pl) to manually renew this issue. You should get a warning "You barcode has been scheduled for automatic renewal and cannot be renewed anymore since DATE." If the pref AllowRenewalLimitOverride is set, you will be allowed to renew it anyway. Sponsored-by: University of the Arts London Signed-off-by: Jonathan Field Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit 53dfa997276348f70c2924bc588b3668f2dfb519 Author: Jonathan Druart Date: Wed Jan 13 19:17:49 2016 +0000 Bug 15581: Add a circ rule to limit the auto renewals given a delay This patch adds a new circulation rule (no_auto_renewal_after) to block/allow auto renewals after a given delay. For instance, if the issue date is 10 days before today, and no_auto_renewal_after is set to 10, tomorrow the issue won't be auto renewed. Test plan: 0/ Execute the update DB entry Note: You will have to manually change data in your DB, make sure you have access to the sql cli. 1/ Define a rule with no_auto_renewal_after (10 for instance) and norenewalbefore (5 for instance). (This new rule will behave the same as norenewalbefore: the unit depends on the lengthunit value). The automatic renewals will be done from 5 to 10 days ahead. 2/ Modify the issues.issuedate, to simulate a checkout in the past: UPDATE issues SET issuedate = "yyyy-mm-dd hh:mm:ss" WHERE itemnumber = YOUR_ITEMNUMBER; with issuedate = 2 days before for instance 3/ Execute the automatic renewals cronjob script (misc/cronjobs/automatic_renewals.pl) Confirm that the issue has not been renewed (too soon) 4/ Repeat step 2 with a due date set as 11 days before 5/ Execute the automatic renewals cronjob script (misc/cronjobs/automatic_renewals.pl) Confirm that the issue has not been renewed (too late) 6/ Repeat step 2 with a due date set as 7 days before 7/ Execute the automatic renewals cronjob script (misc/cronjobs/automatic_renewals.pl) Confirm that the issue has been renewed (issues.renewals has been incremented and date_due has been updated according your circ rules). Sponsored-by: University of the Arts London Signed-off-by: Jonathan Field Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 68 ++++++++++++++++- Koha.pm | 2 +- Koha/Schema/Result/Issuingrule.pm | 11 ++- admin/smart-rules.pl | 3 + circ/renew.pl | 9 ++- installer/data/mysql/kohastructure.sql | 1 + installer/data/mysql/updatedatabase.pl | 10 +++ .../intranet-tmpl/prog/en/includes/strings.inc | 1 + .../prog/en/modules/admin/smart-rules.tt | 4 + .../intranet-tmpl/prog/en/modules/circ/renew.tt | 12 +++ koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 7 ++ .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 2 + opac/opac-user.pl | 1 + t/db_dependent/Circulation.t | 78 +++++++++++++++++++- 14 files changed, 202 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 11:56:23 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 10:56:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1302-gd041018 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 d041018394401a40cc541fd2ae1ea338b14da051 (commit) via 6197e5020d8f3b26f50a588191820f341d0fbba4 (commit) via 605abeb08aa73d366224e481ffb17c72d376979f (commit) via 0dfefe73f5961e59104dbde3a2d08ac585f57fac (commit) via eedbb1b7ea4f9b89fbae70b3df7d503f6cce7ac2 (commit) from e67c20260948ea974a828ec99a77b9840bbddec7 (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 d041018394401a40cc541fd2ae1ea338b14da051 Author: Tomas Cohen Arazi Date: Tue Sep 13 11:33:43 2016 -0300 Bug 17261: (followup) Mention the need to start memcached before plack Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit 6197e5020d8f3b26f50a588191820f341d0fbba4 Author: Jonathan Druart Date: Thu Sep 8 10:04:13 2016 +0100 Bug 17261: Memcached may not longer be running If plack is started with memcached, memcached will be considered as running, even if it has been stopped (or crashed). This case should be highlighted on the about page. Note that I am not sure about the consequences of this specific case! Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit 605abeb08aa73d366224e481ffb17c72d376979f Author: Jonathan Druart Date: Thu Sep 8 09:24:00 2016 +0100 Bug 17261: The default memcached namespace is "koha" If no namespace is defined in ENV or the config, "koha" is used as the default memcached namespace (See Koha::Cache->new) Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit 0dfefe73f5961e59104dbde3a2d08ac585f57fac Author: Tomas Cohen Arazi Date: Wed Sep 7 12:45:23 2016 -0300 Bug 17261: (followup) Rebase against 17189 and 11921 This patch adjusts the original one so it works on top of 17189 and 11921. It adds an 'Effective caching method' text which can be useful, when memcached is not available. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit eedbb1b7ea4f9b89fbae70b3df7d503f6cce7ac2 Author: Tomas Cohen Arazi Date: Tue Sep 6 16:24:40 2016 -0300 Bug 17261: Add memcached configuration info to about.pl This patch adds a row in the About > System information tab, showing the current configuration for memcached. To test: - Apply this patch, have memcached configured for the current instance (this is the default in kohadevbox) - Make sure you have the memcached server running: $ sudo service memcached start - Open the about page in the browser => SUCCESS: You get something like: Memcached: Servers: 127.0.0.1:11211 | Namespace: koha_kohadev | Status: running - Stop the memcached server: $ sudo service memcached stop - Reload the about page => SUCCESS: You get something like Memcached: Servers: 127.0.0.1:11211 | Namespace: koha_kohadev | Status: not running - Set both MEMCACHED_* variables in the apache config for intranet the empty string: $ sudo vim /etc/apache2/sites-enabled/kohadev.conf .. SetEnv MEMCACHED_SERVERS "" #"127.0.0.1:11211" SetEnv MEMCACHED_NAMESPACE "" #"koha_kohadev" .. - Restart apache: $ sudo service apache2 restart - Reload the about page => SUCCESS: You get something like: Memcached: Servers: undefined| Namespace: undefined | Status: unknown - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: about.pl | 19 +++++++++++++++++ koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 8 +++++++ koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 23 +++++++++++++++++++++ 3 files changed, 50 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 11:56:52 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 10:56:52 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1303-gb3f9232 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 b3f9232b6acaa0db7eed520a22ca0b07271b27ae (commit) from d041018394401a40cc541fd2ae1ea338b14da051 (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 b3f9232b6acaa0db7eed520a22ca0b07271b27ae Author: Jonathan Druart Date: Thu Sep 8 10:26:34 2016 +0100 Bug 17274: Display the place where the memcached is picked The memcached config can be read from ENV or koha-conf.xml In order to remove any ambiguity, let's inform the user which config is used. Test plan: 1/ Define the memcached config in ENV and $KOHA_CONF => Go on about page, you should get a warning 2/ Define the memcached config in ENV and not in $KOHA_CONF => Go on about page, you should get a warning 3/ Do not defined the memcached config in ENV or $KOHA_CONF => Go on about page, you should get a warning 4/ Define the memcached config in $KOHA_CONF and not in ENV => Go on about page, you should not get a warning, this is the expected config Followed test plan, works as expected. Signed-off-by: Marc Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: about.pl | 12 +++++++++++- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 13 ++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 11:57:36 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 10:57:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1304-gd6de786 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 d6de78624e61d602de2ed60f48951af3e4947949 (commit) from b3f9232b6acaa0db7eed520a22ca0b07271b27ae (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 d6de78624e61d602de2ed60f48951af3e4947949 Author: Jonathan Druart Date: Mon Jul 4 13:38:45 2016 +0100 Bug 16852: Remove GetBorrowerCategorycode And use Koha::Patron->categorycode instead Test plan: - Restrict a patron attribute to a patron category - Use the batch patron modification tool to update a patron of this category You should not see the the patron attribute Signed-off-by: Claire Gravely Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 24 +----------------------- tools/modborrowers.pl | 4 ++-- 2 files changed, 3 insertions(+), 25 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 11:58:45 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 10:58:45 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1305-g23f4830 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 23f4830095d64d9a421a458fe5582930aa229aa7 (commit) from d6de78624e61d602de2ed60f48951af3e4947949 (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 23f4830095d64d9a421a458fe5582930aa229aa7 Author: Jonathan Druart Date: Mon Oct 31 14:40:51 2016 +0000 Bug 17524: Fix datepicker check for iso dates Iso dates are yyyy-mm-dd, the is_valid JS function expects \d{2}-\d{2}-\d{4} when it should be \d{4}-\d{2}-\d{2} Test plan: Switch DateFormat to iso Set a due date using the datepicker => Should work as expected Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 11:59:07 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 10:59:07 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1306-g503a784 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 503a784e603624f7f889610764093d4ba8c1103c (commit) from 23f4830095d64d9a421a458fe5582930aa229aa7 (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 503a784e603624f7f889610764093d4ba8c1103c Author: Owen Leonard Date: Tue Aug 9 10:14:02 2016 -0400 Bug 16991: Add subtitle to holds to pull report This patch adds output of subtitle to the holds to pull report using keyword to MARC mapping information. To test, apply the patch and go to Circulation -> Holds to pull. The list of holds to pull should display subtitles. Signed-off-by: Hector Castro Subtitle added using keyword to MARC mapping with default framework. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: circ/pendingreserves.pl | 6 ++++++ koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 11:59:47 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 10:59:47 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1307-g1191ea4 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 1191ea4f448dd9ae994cf703e8e0a4970fdbb57e (commit) from 503a784e603624f7f889610764093d4ba8c1103c (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 1191ea4f448dd9ae994cf703e8e0a4970fdbb57e Author: Tomas Cohen Arazi Date: Wed Oct 26 11:34:08 2016 -0300 Bug 17504: Make the installer show the right dmbs help if wrong permissions This patch changes the installer template for step 2 (DB rights check) so it correctly displays MySQL-related message. The previous code was doing the wrong comparisson, thus yielding PostgreSQL documentation. To test: - Run: $ sudo koha-mysql kohadev > DROP DATABASE koha_kohadev ; CREATE DATABASE koha_kohadev; > REVOKE INSERT ON koha_kohadev.* FROM 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Run the webinstaller through step 2 => FAIL: You get the message in the attached screenshot - Apply the patch, reload => SUCCESS: You are displayed a different warning message, with a link to up-to-date MySQL docs on GRANT - Fix permissions for the user: $ sudo koha-mysql kohadev > GRANT ALL PRIVILEGES on koha_kohadev.* TO 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Reload => SUCCESS: All checks are correct and you can move on - Sign off :-D Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 12:00:26 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 11:00:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1308-g4a3ead4 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 4a3ead4e5625fac8b2bdf8742676e1d958cf673d (commit) from 1191ea4f448dd9ae994cf703e8e0a4970fdbb57e (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 4a3ead4e5625fac8b2bdf8742676e1d958cf673d Author: Nightly Build Bot Date: Sat Oct 29 00:59:58 2016 +0200 Bug 17084 - Automatic debian/control updates (unstable) Signed-off-by: Mirko Tietgen Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: debian/control | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 12:03:36 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 11:03:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1310-g674d387 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 674d3875c81af122eb7f925845fe73cc4d817db4 (commit) via de2ba75c25f9f348a312093483dea52168fa5d6e (commit) from 4a3ead4e5625fac8b2bdf8742676e1d958cf673d (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 674d3875c81af122eb7f925845fe73cc4d817db4 Author: Kyle M Hall Date: Wed Nov 2 11:02:09 2016 +0000 Bug 17518 - DBRev 16.06.00.047 Signed-off-by: Kyle M Hall commit de2ba75c25f9f348a312093483dea52168fa5d6e Author: Josef Moravec Date: Wed Oct 26 22:53:04 2016 +0000 Bug 17518: Displayed language name for Czech is wrong It's "Ce?tina" and should be "?e?tina" Test plan: 1) apply the patch 1.1) update database 2) install Czech translation for Koha 3) note the language name in language switcher (in staff client and opac) is right: "?e?tina" Signed-off-by: radiuscz Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/mandatory/subtag_registry.sql | 2 +- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 2 19:45:09 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 02 Nov 2016 18:45:09 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.05-01-16-g62e11a8 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, 16.05.x has been updated via 62e11a8cf6cca1f1b2f721ded5d316f33ebba0b1 (commit) via 3ea0d7ed993a0c1233e822f7f4db710cb9056cfd (commit) via 55e774f5d8d919a6142aac9bc06882de2a971f63 (commit) via 0e28efe9ee7b16b05624ffaf90fc3c4e53ab7f36 (commit) via a2d0b69bf6f1baf9c7248b6d36b64c25dbc0f3dd (commit) via 7f9c1944fd7375fb393ac5424a436bb3b3c5dcb3 (commit) via 275253e52a67c482665adb11e40d3a54554979cb (commit) via 39ad5392777494e6eecd044b8db4110bd2543852 (commit) via 301e4880a96fd8b09fb9b92bfe65bfaf68357100 (commit) via 10fe2d58dd2e861c68e732b88c082429e321fc23 (commit) via fa7eba3a3196c74345461934e7b5acca41be9802 (commit) via 23e0c8ffb50c97553dfbc368b78f1d3e7a29bacc (commit) via b57fb0a9b20333ce52536b319342c2dd5021e3da (commit) via db1bf801e6ad9f9f051d51672a744179beb48bc8 (commit) via 0d9e1667bfc64a3d6dfaefacf304f329549c0bf4 (commit) via 41a1796ab19c6aef05d58b75a5c6a32ae9c04c21 (commit) via d879b8106c0ce999d612c60a5e1c72612807215d (commit) from 7395b536de74725a62c7aa7212f5226d9070b0c2 (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 62e11a8cf6cca1f1b2f721ded5d316f33ebba0b1 Author: Fr?d?ric Demians Date: Wed Nov 2 11:02:09 2016 +0000 Bug 17518 - DBRev 16.05.05.001 commit 3ea0d7ed993a0c1233e822f7f4db710cb9056cfd Author: Josef Moravec Date: Wed Oct 26 22:53:04 2016 +0000 Bug 17518: Displayed language name for Czech is wrong It's "Ce?tina" and should be "?e?tina" Test plan: 1) apply the patch 1.1) update database 2) install Czech translation for Koha 3) note the language name in language switcher (in staff client and opac) is right: "?e?tina" Signed-off-by: radiuscz Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit de2ba75c25f9f348a312093483dea52168fa5d6e) Signed-off-by: Fr?d?ric Demians commit 55e774f5d8d919a6142aac9bc06882de2a971f63 Author: Tomas Cohen Arazi Date: Wed Oct 26 11:34:08 2016 -0300 Bug 17504: Make the installer show the right dmbs help if wrong permissions This patch changes the installer template for step 2 (DB rights check) so it correctly displays MySQL-related message. The previous code was doing the wrong comparisson, thus yielding PostgreSQL documentation. To test: - Run: $ sudo koha-mysql kohadev > DROP DATABASE koha_kohadev ; CREATE DATABASE koha_kohadev; > REVOKE INSERT ON koha_kohadev.* FROM 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Run the webinstaller through step 2 => FAIL: You get the message in the attached screenshot - Apply the patch, reload => SUCCESS: You are displayed a different warning message, with a link to up-to-date MySQL docs on GRANT - Fix permissions for the user: $ sudo koha-mysql kohadev > GRANT ALL PRIVILEGES on koha_kohadev.* TO 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Reload => SUCCESS: All checks are correct and you can move on - Sign off :-D Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 1191ea4f448dd9ae994cf703e8e0a4970fdbb57e) Signed-off-by: Fr?d?ric Demians commit 0e28efe9ee7b16b05624ffaf90fc3c4e53ab7f36 Author: Jonathan Druart Date: Mon Oct 31 14:40:51 2016 +0000 Bug 17524: Fix datepicker check for iso dates Iso dates are yyyy-mm-dd, the is_valid JS function expects \d{2}-\d{2}-\d{4} when it should be \d{4}-\d{2}-\d{2} Test plan: Switch DateFormat to iso Set a due date using the datepicker => Should work as expected Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 23f4830095d64d9a421a458fe5582930aa229aa7) Signed-off-by: Fr?d?ric Demians commit a2d0b69bf6f1baf9c7248b6d36b64c25dbc0f3dd Author: Chris Cormack Date: Wed Oct 19 08:53:26 2016 +1300 Bug 17459: Follow up Adding POD and --userid and --password options 1/ To test, use the same routine as before, with no options. 2/ You should have a user with koha/koha as userid and passwords 3/ Delete that user 4/ Run the script with --userid --password 5/ You should have a user in koha with userid/password set Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit f9da6f9739b334a1e14b75a1aa49b2f5569b032e) Signed-off-by: Fr?d?ric Demians commit 7f9c1944fd7375fb393ac5424a436bb3b3c5dcb3 Author: Jonathan Druart Date: Mon Oct 17 18:01:07 2016 +0100 Bug 17459: Add a script to create a superlibrarian user This is for developers: it's quite long (many clics) to create a new superlibrarian user. This new script creates a new user with superlibrarian permissions with the easy to remember credential koha/koha Test plan: perl misc/devel/create_superlibrarian.pl Log in to Koha using koha/koha Signed-off-by: Chris Cormack Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit a462d46b02c01a25ebffb85d3b1e462813c77de1) Signed-off-by: Fr?d?ric Demians commit 275253e52a67c482665adb11e40d3a54554979cb Author: Tomas Cohen Arazi Date: Thu Oct 20 11:58:32 2016 -0300 Bug 4880: Make koha-remove stop all instance's services This patch makes koha-remove stop all instance's services before attempting to remove the system user, Before this patch, only zebra was stopped. To test: - Run: $ sudo koha-create --created-db favourite_name - Run: $ sudo koha-remove favourite_name => FAIL: koha-indexer is still running for user favourite_name-koha - Run: $ sudo koha-create --created-db another_name $ sudo koha-plack --enable another_name $ sudo koha-plack --start another_name $ sudo koha-indexer --stop another_name $ sudo koha-remove another_name => FAIL: koha-plack is still running for user another_name-koha - Apply the patch - Repeat the previous tests, with new names => SUCCESS: Everything works as expected :-D - Sign off :-D Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 607dac69a95e7bcb454661bfde71a45ee20d0155) Signed-off-by: Fr?d?ric Demians commit 39ad5392777494e6eecd044b8db4110bd2543852 Author: Andreas Roussos Date: Sat Sep 10 14:41:54 2016 +0300 Bug 7039 - Link to existing record from result list in acquisition search In the Staff client -> Acquisitions, when creating orders from existing records the result list should link to the existing records so that it's possible to check for existing items. This patch adds that functionality. Test plan: 1) In the Staff client, go to Acquisitions and try to add an order from existing records. 2) Observe that the titles in the Summary column are not hyperlinks. 3) Apply the patch. 4) Repeat step 1), and confirm that the titles are now links pointing to each biblio's details page. Followed test plan, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit d25840fc68bcacd8a8509713549b10753bdcd128) Signed-off-by: Fr?d?ric Demians commit 301e4880a96fd8b09fb9b92bfe65bfaf68357100 Author: Josef Moravec Date: Thu Jul 21 07:46:23 2016 +0200 Bug 16952: Czech language definitions for sorting in Zebra Test plan: 1) Apply patch 2) Create new instance with parameter --zebralang cs 3) Insert some record with basic latin characters and some with "czech" characters (for example: "?" - should be sorted after "c", "?" - should be sorted after "s") 4) Try to search in katalog (staff and opac) and sort by other field then relevance - title or author for instance 5) Records should be sorted correctly by Czech rules 6) Look at code and confirm it is ok Signed-off-by: radiuscz Signed-off-by: Jonathan Druart I did not test this patch, but trust in the author and signoffer Signed-off-by: Kyle M Hall (cherry picked from commit bd13efd8ac1121286dd565c40111b491b61d54cf) Signed-off-by: Fr?d?ric Demians commit 10fe2d58dd2e861c68e732b88c082429e321fc23 Author: kohamaster Date: Wed Oct 12 16:17:04 2016 +0200 Bug 17435: Gives ability to display stocknumber in search results Adds stocknumber to data provided for xslt transformation Test plan : 1) go to Administration module, MARC default frameworks and add, if not already done, a stocknumber subfield (a priori under the 995 tag). It will be linked to items.stocknumber in the koha.link zone of Advanced constraints section. 2) edit an item in staff interface and add a number in the stocknumber field. 3) Edit the xslt opac Results file that you are using and customize it. For a basic test, you can just replace "itemcallnumber" occurrences by "stocknumber". 4) make a search in a way to get several results including the title from which you modified an item. 5) You will see the added stocknumber displayed (between square brackets in the default xslt). Same can be done through staff interface and staff xslt files. Olivier Crouzet Signed-off-by: Hector Castro Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit f74e467550c4d6f6e8e9becdc61b7df572de5f09) Signed-off-by: Fr?d?ric Demians commit fa7eba3a3196c74345461934e7b5acca41be9802 Author: Josef Moravec Date: Tue Oct 18 00:03:08 2016 +0000 Bug 17434: Moremember displaying primary and secondary phone number twice Test plan: 1) Create patron category with category code "P" and create a patron with this category 2) Fill in either the primary or other phone number 3) Go to patron details page (moremember.pl) => without patch you see primary/other phone duplicated => with patch you should see the number only once as expected Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit e17209de48f3c9d3184dfd430d882a4e8f8d5d4f) Signed-off-by: Fr?d?ric Demians commit 23e0c8ffb50c97553dfbc368b78f1d3e7a29bacc Author: Owen Leonard Date: Mon Oct 10 08:10:29 2016 -0400 Bug 17417 [Revised] Correct invalid markup around news on the staff client home page This patch fixes two minor errors in the markup around displaying news on the staff client home page: Adding a missing "class" attribute, and changing the container around news items from

to

(because news items might contain

and nesting them is incorrect). To test, apply the patch and view the staff client home page with news items showing. Validate the page and confirm that there are no errors. Signed-off-by: Marc Revision for QA removes an extra

from elsewhere in the template to make the validator return no errors. Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit d08076e7e55a7c78a7ab3d79c33151dd4c469101) Signed-off-by: Fr?d?ric Demians commit b57fb0a9b20333ce52536b319342c2dd5021e3da Author: Fridolin Somers Date: Wed Aug 24 11:44:55 2016 +0200 Bug 16935 - launch export_records.pl with deleted_barcodes param fails When launching misc/export_records.pl with this command line : misc/export_records.pl --date=`date +%d/%m/%Y` --deleted_barcodes --filename=/tmp/koha.mrc You get this error message : DBD::mysql::db selectall_arrayref failed: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '' at line 4 [for Statement " ( SELECT DISTINCT barcode FROM deleteditems WHERE deleteditems.biblionumber = ? "] at misc/export_records.pl line 189. This is because of a '(' after 'q|', looks like a typo. Also, this patch removes useless var $q. Test plan : - Delete an item with barcode - Without patch, run : misc/export_records.pl --date=`date +%d/%m/%Y` --deleted_barcodes --filename=/tmp/koha.mrc => You get dirty MySQL - Without patch, run the same command => No error and the file is generated Signed-off-by: Nicolas Legrand Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit dbab260afccc04fac8d088839d6017242c818917) Signed-off-by: Fr?d?ric Demians commit db1bf801e6ad9f9f051d51672a744179beb48bc8 Author: Fridolin Somers Date: Thu Sep 29 16:19:48 2016 +0200 Bug 17376 - rebuild_zebra.pl in daemon mode no database access kills the process When running rebuild_zebra.pl in daemon mode, a while loop runs the script for ever. But if something crashes inside the rebuild process, the all daemon crashes. For example when it can not access database. This problem may be temporary so daemon should keep running. This patch add eval around the rebuild process to allow a run to fail without killing the daemon. Also moves the DB handler get inside daemon loop because it is broken is DB stoppes. This is a big issue for indexer running in a systemd service. Test plan : - run rebuild_zebra.pl in daemon mode : /home/koha/src/misc/migration_tools/rebuild_zebra.pl -daemon -z -a -b -x --sleep 30 - stop the database - wait a minute => you see an error on database connexion => the daemon is still running - restart the database - test the indexer by creating a new record (wait for a minute) Signed-off-by: Jacek Ablewicz Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit bfcc7cad70bfc23163865b2ff39eb592d6d9d152) Signed-off-by: Fr?d?ric Demians commit 0d9e1667bfc64a3d6dfaefacf304f329549c0bf4 Author: Jonathan Druart Date: Tue Oct 4 11:55:25 2016 +0100 Bug 17375: Search by dateofbirth - handle invalid dates Prevent internal software error when searching patron with invalid birth date To reproduce: - Go to Home > Patron - Expand patron search (click on + at the left of the search button) - In drop down 'Search fields', select 'Date of birth' - Enter a valid date (e.g. 11.02.1995 if syspref 'dateformat' is set to dmydot) Result: Search works OK - Enter an invalid date, e.g. 11.02 or abcd... Result: Internal server error - Do a patron search with many results - Use filter on results screen, select 'Date of birth' as search field and enter an invalid date to search (e.g. 'a') Result: Endless message 'Processing' To test: - Apply patch - Repeat steps above - In both cases, you should get "No results" Signed-off-by: Marc V?ron Signed-off-by: Lucio Moraes Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 9b34b07d62588713405f31481cb363661b1a5d0c) Signed-off-by: Fr?d?ric Demians commit 41a1796ab19c6aef05d58b75a5c6a32ae9c04c21 Author: Jonathan Druart Date: Tue Oct 4 11:55:02 2016 +0100 Bug 17375: Search by dateofbirth - Add tests Signed-off-by: Marc V?ron Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 12167c57d0608637504a011627a0256e28e515cd) Signed-off-by: Fr?d?ric Demians commit d879b8106c0ce999d612c60a5e1c72612807215d Author: Fr?d?ric Demians Date: Sun Oct 23 12:32:02 2016 +0200 Revert "Bug 16687 - Translatability: Fix issues in Administration preferences" This reverts commit 41e12f0af2149c2b858dc63fd6242854f2da444d. ----------------------------------------------------------------------- Summary of changes: C4/Utils/DataTables/Members.pm | 31 ++-- C4/XSLT.pm | 2 + Koha.pm | 2 +- Makefile.PL | 2 +- debian/scripts/koha-create | 2 +- debian/scripts/koha-remove | 16 +- debian/templates/koha-sites.conf | 2 +- etc/zebradb/lang_defs/cs/sort-string-utf.chr | 42 +++++ installer/data/mysql/mandatory/subtag_registry.sql | 2 +- installer/data/mysql/updatedatabase.pl | 10 ++ .../intranet-tmpl/prog/en/includes/calendar.inc | 2 +- .../prog/en/modules/acqui/neworderbiblio.tt | 2 +- .../prog/en/modules/admin/preferences/admin.pref | 168 ++++++++++---------- .../prog/en/modules/installer/step2.tt | 11 +- .../intranet-tmpl/prog/en/modules/intranet-main.tt | 5 +- .../prog/en/modules/members/moremember.tt | 4 - members/member.pl | 4 - misc/devel/create_superlibrarian.pl | 103 ++++++++++++ misc/export_records.pl | 6 +- misc/migration_tools/rebuild_zebra.pl | 11 +- svc/members/search | 4 - t/db_dependent/Utils/Datatables_Members.t | 23 ++- 22 files changed, 328 insertions(+), 126 deletions(-) create mode 100644 etc/zebradb/lang_defs/cs/sort-string-utf.chr create mode 100755 misc/devel/create_superlibrarian.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 12:04:54 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 11:04:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1311-gb286868 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 b286868ec99341102dd78eaffea832a8d6b635ab (commit) from 674d3875c81af122eb7f925845fe73cc4d817db4 (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 b286868ec99341102dd78eaffea832a8d6b635ab Author: Jonathan Druart Date: Wed Nov 2 10:50:54 2016 +0000 Bug 17537: Fix valid-templates.t for some include files 3 include files do not pass the template validation tests: - koha-tmpl/intranet-tmpl/prog/en/includes/admin-items-search-field-form.inc - koha-tmpl/intranet-tmpl/prog/en/includes/subscriptions-search.inc - koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-topissues.inc This is because they process a block which has not been declared before. As they are include files, they cannot stand on their own. We could have added them to the exclude file list of xt/author/valid-templates.t but I think it's better to keep them into the validation loop. Test plan: prove xt/author/valid-templates.t should return green And the library dropdown list should be correctly populated on the pages these files are included (opac-topissues for instance) Signed-off-by: Claire Gravely Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/admin-items-search-field-form.inc | 1 + koha-tmpl/intranet-tmpl/prog/en/includes/subscriptions-search.inc | 1 + koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-topissues.inc | 1 + 3 files changed, 3 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 12:06:09 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 11:06:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1312-gbe9a609 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 be9a609870445d5d4a2cc24f78eca2d3c4c7c1f2 (commit) from b286868ec99341102dd78eaffea832a8d6b635ab (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 be9a609870445d5d4a2cc24f78eca2d3c4c7c1f2 Author: Jonathan Druart Date: Wed Nov 2 11:01:54 2016 +0000 Bug 17538: (Bug 17216 follow-up) Fix t/db_dependent/Upload.t The insert into authorised_values failed because of the missing FK Test plan: prove t/db_dependent/Upload.t should return green Signed-off-by: Marcel de Rooy Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Upload.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 12:09:40 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 11:09:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1313-g96fec3a 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 96fec3a16d66ffa30da9682e91069195f6eb831e (commit) from be9a609870445d5d4a2cc24f78eca2d3c4c7c1f2 (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 96fec3a16d66ffa30da9682e91069195f6eb831e Author: Jonathan Druart Date: Wed Nov 2 11:54:12 2016 +0000 Bug 17540: (Bug 7216 followup) Fix tests for auth_values_input_www.t This is caused by bug 17216 which modified the structure of the AV admin page Test plan: prove t/db_dependent/www/auth_values_input_www.t should return green Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/www/auth_values_input_www.t | 39 ++++++++++++++++++++-------- 1 file changed, 28 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 12:10:33 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 11:10:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1314-g4a85117 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 4a85117160b4afd7d12d9ae9ca3ec0ddc009c2da (commit) from 96fec3a16d66ffa30da9682e91069195f6eb831e (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 4a85117160b4afd7d12d9ae9ca3ec0ddc009c2da Author: Tomas Cohen Arazi Date: Thu Nov 3 10:17:32 2016 -0300 Bug 17544 - : Remove t::lib::Mocks dependency from populate_db.pl Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: misc/devel/populate_db.pl | 1 - 1 file changed, 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 12:12:21 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 11:12:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1315-g27596ca 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 27596ca2e4de7ad57c095c45f1ef6c9ad35f4848 (commit) from 4a85117160b4afd7d12d9ae9ca3ec0ddc009c2da (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 27596ca2e4de7ad57c095c45f1ef6c9ad35f4848 Author: Hector Castro Date: Tue Jun 21 13:24:20 2016 -0600 Bug 16792: Add Font Awesome Icon and mini button to Keyword to MARC mapping section Improve Admin > Keyword to MARC mapping to fit with others interfaces in Koha. This bug change "Delete" link with a mini-button and introduce the trash icon. To test: -Apply patch -Goto Admin > Keyword to MARC mapping -Select one framework -Add some mappings -Notice about the new button with trash icon Signed-off-by: Marc V?ron Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/fieldmapping.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 12:14:17 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 11:14:17 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1320-g4fd1f3e 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 4fd1f3e48ea103d1656adebe70d9c9672f7217f7 (commit) via 91774fcf15cf8e3c2c6142d5ee646c1e8a06a7a2 (commit) via 246bca4a67b2ca177d4defb39284a3ede2a0703a (commit) via c414e7608956ca04648aed1a15b79c5cd281fb3c (commit) via e0e88806fae409e6ec6e360f5e82f55a45ca0e96 (commit) from 27596ca2e4de7ad57c095c45f1ef6c9ad35f4848 (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 4fd1f3e48ea103d1656adebe70d9c9672f7217f7 Author: Marcel de Rooy Date: Fri Nov 4 08:58:20 2016 +0100 Bug 17539: [QA Follow-up] Move handle after schema Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 91774fcf15cf8e3c2c6142d5ee646c1e8a06a7a2 Author: Tomas Cohen Arazi Date: Thu Nov 3 12:04:31 2016 -0300 Bug 17539: (QA followup) Silence warnings Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 246bca4a67b2ca177d4defb39284a3ede2a0703a Author: Lari Taskula Date: Wed Nov 2 15:28:30 2016 +0200 Bug 17539: Fix failing Reserves.t tests if category enrolmentfee > 0 To test: 1. Set patron category "S" with enrolmentfee 1 2. perl t/db_dependent/Reserves.t 3. Observe following errors: not ok 59 - Bug 14464 - No fines at beginning ok 60 - Bug 14464 - 1st reserve correctly created ok 61 - Bug 14968 - Keep found column from reserve not ok 62 - Bug 14464 - No fines after cancelling reserve with no charge configured ok 63 - Bug 14464 - 2nd reserve correctly created not ok 64 - Bug 14464 - No fines after cancelling reserve with no charge desired ok 65 - Bug 14464 - 1st reserve correctly created not ok 66 - Bug 14464 - Fine applied after cancelling reserve with charge desired and configured 4. Apply patch 5. perl t/db_dependent/Reserves.t 6. Observe test pass Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit c414e7608956ca04648aed1a15b79c5cd281fb3c Author: Lari Taskula Date: Wed Nov 2 15:05:28 2016 +0200 Bug 17539: Fix Already in a transaction error perl t/db_dependent/Reserves.t 1..72 ok 1 - use C4::Reserves; ok 2 - CheckReserves Test 1 ... ok 52 - Reserve in waiting status cant be canceled ok 53 - Reserving an ageRestricted Biblio without a borrower dateofbirth succeeds DBD::mysql::db begin_work failed: Already in a transaction at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1489. DBD::mysql::db begin_work failed: Already in a transaction at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1489. at /usr/share/perl5/DBIx/Class/Schema.pm line 1080. ... Koha::Object::store('Koha::Patron=HASH(0x9e43b20)') called at /home/ubuntu/kohaclone/C4/Members.pm line 542 C4::Members::ModMember('borrowernumber', 658535, 'dateofbirth', '2001-11-02') called at t/db_dependent/Reserves.t line 516 This patch fixes this issue by replacing dbh autocommit=0 with txn_begin. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit e0e88806fae409e6ec6e360f5e82f55a45ca0e96 Author: Lari Taskula Date: Wed Nov 2 14:51:23 2016 +0200 Bug 17539: Fix Undefined subroutine &C4::Circulation::GetItem error perl t/db_dependent/Reserves.t 1..72 ok 1 - use C4::Reserves; ok 2 - CheckReserves Test 1 ok 3 - CheckReserves() include reserve_id in its response ok 4 - CheckReserves Test 2 ok 5 - CheckReserves Test 3 ok 6 - GetReservesControlBranch returns item home branch when set to ItemHomeLibrary ok 7 - GetReservesControlBranch returns patron home branch when set to PatronLibrary ok 8 - Item is correctly waiting ok 9 - Item is correctly priority 1 ok 10 - Item is correctly priority 2 ok 11 - GetWaiting got only the waiting reserve ok 12 - GetWaiting got the reserve for the correct borrower Undefined subroutine &C4::Circulation::GetItem called at /home/ubuntu/kohaclone/C4/Circulation.pm line 1853. This patch fixes this error. The solution was to use C4::Reserves before C4::Items. Also due to this edit, change use_ok to require_ok Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Reserves.t | 215 ++++++++++++++++++++++++--------------------- 1 file changed, 117 insertions(+), 98 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 15:09:24 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 14:09:24 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1322-g43c6850 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 43c6850269d7bc28ec339ccab780592fb306ac4d (commit) via ed932be618da24b226cd6404eb2f526886dbd781 (commit) from 4fd1f3e48ea103d1656adebe70d9c9672f7217f7 (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 43c6850269d7bc28ec339ccab780592fb306ac4d Author: Kyle M Hall Date: Wed Jun 8 10:53:25 2016 +0000 Bug 16493: [QA Followup] Restore title and author match as an option, make it the default Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit ed932be618da24b226cd6404eb2f526886dbd781 Author: Kyle M Hall Date: Wed May 11 14:19:41 2016 +0000 Bug 16493: acq matching on title and author When you order from a staged file you're getting duplicate warnings that are inaccurate. For example, when you order a file of 50 DVDs for example and they don't have ISBNs they're matching on the books. And then you have to order them one by one. This patch replaces the use of FindDuplicates with Koha's match point system. This means you can select from the same match points defined and used in the batch record importer, or you can opt to skip matching altogether! Test Plan: 1) Import a record with a title, isbn and author. 2) Delete the from the record and stage it again 3) Attempt to add it to a basket via the staged record 4) You should note the gives you the "No records imported" message 5) Apply this patch 6) Create a matcher for ISBN 7) Create a matcher for Author/Title 8) Attempt to add the record to your basket using the ISBN matcher 8) Koha should find no match and import the record to the basket 9) Stage the record again 10) Attempt to add the record to your basket using the Title/Author matcher 11) You should recieve the "No records imported" message. Signed-off-by: Barbara Fondren Signed-off-by: Nicole C Engard Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: acqui/addorderiso2709.pl | 15 +++++++- .../prog/en/modules/acqui/addorderiso2709.tt | 36 +++++++++++++++++--- 2 files changed, 46 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 4 16:46:40 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 04 Nov 2016 15:46:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1325-g9427edc 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 9427edc2f6ae268f2af65c21b6b7850b31f35358 (commit) via f6148ab777b2231cb047f54677d8d716954b062a (commit) via df3a9105e843d8f41abb85b7a1416f538f2896e2 (commit) from 43c6850269d7bc28ec339ccab780592fb306ac4d (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 9427edc2f6ae268f2af65c21b6b7850b31f35358 Author: Tomas Cohen Arazi Date: Fri Nov 4 12:18:57 2016 -0300 Bug 17494: (QA followup) Fix exception name This patch changes the exception name to match the package name. And also adds a test for the thrown exception message. Also creates a general Koha::Exception::Patron::Modification exception to make the new one inherit from it, following the common use in the codebase. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit f6148ab777b2231cb047f54677d8d716954b062a Author: Kyle M Hall Date: Mon Oct 31 11:15:02 2016 +0000 Bug 17494: Prevent duplicate tokens from getting stored Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit df3a9105e843d8f41abb85b7a1416f538f2896e2 Author: Jonathan Druart Date: Thu Oct 27 10:04:30 2016 +0200 Bug 17494: Make sure the same verification token won't be generated twice Well, this patch does not enforce the unique constraint but mimic what is already done in C4::ImportExportFramework and Koha::Upload where md5_hex is used. Test plan: Have a look at the code and confirm that it adds more randomness to the hashed string Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Exceptions/Patron/Modification.pm | 16 ++++++++++++++++ Koha/Patron/Modification.pm | 21 +++++++++++++++++++++ opac/opac-memberentry.pl | 5 ++++- t/db_dependent/Koha_borrower_modifications.t | 21 +++++++++++++++++++-- 4 files changed, 60 insertions(+), 3 deletions(-) create mode 100644 Koha/Exceptions/Patron/Modification.pm hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:19:08 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:19:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1326-g2277016 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 22770166205401f030b2feeafae2e8f9f6189339 (commit) from 9427edc2f6ae268f2af65c21b6b7850b31f35358 (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 22770166205401f030b2feeafae2e8f9f6189339 Author: Jonathan Druart Date: Mon Nov 7 15:16:45 2016 +0000 Bug 12633: Remove export line Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 1 - 1 file changed, 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:19:32 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:19:32 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1327-gb2c59c7 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 b2c59c7ff248597aefc9043bc2aa4547938c82b5 (commit) from 22770166205401f030b2feeafae2e8f9f6189339 (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 b2c59c7ff248597aefc9043bc2aa4547938c82b5 Author: Jonathan Druart Date: Mon Nov 7 15:05:15 2016 +0000 Bug 16908: Remove non-desired export line GetTitles has been removed by bug 16847 and reintroduced it by bug 16908, caused by a bad merge conflict. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 1 - 1 file changed, 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:34:27 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:34:27 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1328-g9e82c92 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 9e82c921a6a5d43323535393d1b5006c12535eba (commit) from b2c59c7ff248597aefc9043bc2aa4547938c82b5 (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 9e82c921a6a5d43323535393d1b5006c12535eba Author: Jonathan Druart Date: Fri Nov 4 09:19:01 2016 +0000 Bug 17548: Fix step 1 of memberentry This bug has been highlighted by bug 15407. The date limit check on the category code did not work on step 1. But after bug 15407 the script crashes with Can't call method "dateofbirthrequired" on an undefined value at /home/vagrant/kohaclone/members/memberentry.pl line 311. Test plan: - Edit "step 1" information of a patron (first 'Edit' on a patron detail page). - Save => Without this patch it BOOMs => With this patch, the info should be correctly saved Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: members/memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:36:15 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:36:15 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1329-g7e0f372 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 7e0f372b6c63778ad7a234e467d30303094f07e4 (commit) from 9e82c921a6a5d43323535393d1b5006c12535eba (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 7e0f372b6c63778ad7a234e467d30303094f07e4 Author: Matthias Meusburger Date: Fri Oct 21 17:04:58 2016 +0200 Bug 17481: Fix incorrect merge of bug 11048 (logout redirection for CAS authentication) Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Auth_with_cas.pm | 1 - 1 file changed, 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:37:29 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:37:29 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1330-g8eec57d 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 8eec57d605b379694927ef344f9a8c302a7b05d7 (commit) from 7e0f372b6c63778ad7a234e467d30303094f07e4 (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 8eec57d605b379694927ef344f9a8c302a7b05d7 Author: Jonathan Druart Date: Fri Oct 21 07:01:30 2016 +0000 Bug 17476: Add a way to bypass dt_from_string processing time for slow servers We already change this value from 1 to 2 but apparently it's not enough So let's switch it back to on and add a flag (env var SLOW_SERVER) and skip these tests if set Test plan: prove t/DateUtils.t and SLOW_SERVER=1 prove t/DateUtils.t should return green Signed-off-by: Mirko Tietgen Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/DateUtils.t | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:39:42 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:39:42 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1331-g3f8a4cd 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 3f8a4cd2a12668af4f3ff1d22b4beac06f17df57 (commit) from 8eec57d605b379694927ef344f9a8c302a7b05d7 (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 3f8a4cd2a12668af4f3ff1d22b4beac06f17df57 Author: Jonathan Druart Date: Wed Nov 2 09:36:53 2016 +0000 Bug 17535: Fix search for reports by keywords The commit cf9031711282f4be23e4a639797d0fd178940e1f Bug 14435: Add the ability to store result's report introduced a regression when searching for reports by keywords. It also breaks tests in t/db_dependent/Reports/Guided.t It's caused by the missing join on saved_reports. The error says DBD::mysql::db selectall_arrayref failed: Unknown column 'report' in 'where clause' Test plan: Confirm that the tests are fixed and that you are able to search for reports using the "keyword" input Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Reports/Guided.pm | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:41:01 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:41:01 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1333-g988e943 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 988e9430a402ca04ec7563f49d6cc43c2737c46a (commit) via 3ee051c7067d40327ccfe09e59881d877a99b4c1 (commit) from 3f8a4cd2a12668af4f3ff1d22b4beac06f17df57 (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 988e9430a402ca04ec7563f49d6cc43c2737c46a Author: Jonathan Druart Date: Fri Nov 4 13:49:57 2016 +0000 Bug 17552: Continue revert and add tests to highlight the problem Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall commit 3ee051c7067d40327ccfe09e59881d877a99b4c1 Author: Jonathan Druart Date: Fri Nov 4 13:47:21 2016 +0000 Bug 17552: Revert "Bug 17091: Remove explicit declaration of Koha::Objects->reset" This reverts commit c253af2e519570c4024891dc4d1e81743a2c5fc2. Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Objects.pm | 21 +++++++++++++++++++-- t/db_dependent/Koha/Objects.t | 4 +++- 2 files changed, 22 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:43:25 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:43:25 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1334-gd711d62 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 d711d62a4801f77c553e51c31bcc1cea6e8d13fb (commit) from 988e9430a402ca04ec7563f49d6cc43c2737c46a (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 d711d62a4801f77c553e51c31bcc1cea6e8d13fb Author: radiuscz Date: Mon Oct 31 23:24:42 2016 +0100 Bug 17521: Added missing age limit check Following patron modification partial editor had no age constraint checking: /cgi-bin/koha/members/memberentry.pl?op=modify&borrowernumber=3&step=3 Test plan: 1) Apply the patch 2) Open profile of a patron 3) Click Edit under "Library use": http://prntscr.com/d1ghim 4) Change category to an invalid one (eg. Adult instead of Kid) 5) Error saying "Patron's age is incorrect for their category." should be displayed. Signed-off-by: Josef Moravec Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: members/memberentry.pl | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 7 17:45:09 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 07 Nov 2016 16:45:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1335-g2b54196 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 2b54196b72757a6483dc99a1fa8d2e76538a5102 (commit) from d711d62a4801f77c553e51c31bcc1cea6e8d13fb (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 2b54196b72757a6483dc99a1fa8d2e76538a5102 Author: Fridolin Somers Date: Tue Oct 4 12:36:11 2016 +0200 Bug 17394 - exporting checkouts with items selects without items in combo-box In checkouts table, the is an export form (when some exports syspref are enabled). When selecting some checkouts and selecting "ISO2709 with items" in export format combo-box, clicking on "Export" will select "ISO2709 without items" in the export format combo-box. This is quite strange. Its because the form as 2 inputs with same name and id "output_format" : an hidden input (the wanted arg for tools/export.pl) and a select (the export format combo-box). So an action meant on the hidden input impacts the select. This patch corrects by changing id and name of the export format combo-box : issues-table-output-format TEST plan : - Enable checkouts exports by setting syspref ExportWithCsvProfile with a profile - Go to circ page of a patron with checkouts : /cgi-bin/koha/circ/circulation.pl?borrowernumber=xxx - Show checkouts table - Select some checkboxes in "Export" column - Select "ISO2709 with items" in export format combo-box - Click on "Export" => Without patch, the export format combo-box changes to "ISO2709 without items" => With patch, the export format combo-box does not changes - Check the export file contains the items - Check exports "ISO2709 without items" and "CSV" are OK Signed-off-by: Jesse Maseto Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc | 4 ++-- koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 10:23:24 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 09:23:24 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-2-ga67c666 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 a67c666da41915f2da341d700923a4a4f99c30ad (commit) via b80311ae2bb89c98d01b92792a5c345ab8b0cc4a (commit) from 3e8a30baaf69d7d98229a9ad739d49aa2dbf7b8c (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 a67c666da41915f2da341d700923a4a4f99c30ad Author: Jonathan Druart Date: Tue Oct 4 11:55:25 2016 +0100 Bug 17375: Search by dateofbirth - handle invalid dates Prevent internal software error when searching patron with invalid birth date To reproduce: - Go to Home > Patron - Expand patron search (click on + at the left of the search button) - In drop down 'Search fields', select 'Date of birth' - Enter a valid date (e.g. 11.02.1995 if syspref 'dateformat' is set to dmydot) Result: Search works OK - Enter an invalid date, e.g. 11.02 or abcd... Result: Internal server error - Do a patron search with many results - Use filter on results screen, select 'Date of birth' as search field and enter an invalid date to search (e.g. 'a') Result: Endless message 'Processing' To test: - Apply patch - Repeat steps above - In both cases, you should get "No results" Signed-off-by: Marc V?ron Signed-off-by: Lucio Moraes Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 9b34b07d62588713405f31481cb363661b1a5d0c) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 0d9e1667bfc64a3d6dfaefacf304f329549c0bf4) Signed-off-by: Julian Maurice commit b80311ae2bb89c98d01b92792a5c345ab8b0cc4a Author: Jonathan Druart Date: Tue Oct 4 11:55:02 2016 +0100 Bug 17375: Search by dateofbirth - Add tests Signed-off-by: Marc V?ron Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 12167c57d0608637504a011627a0256e28e515cd) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 41a1796ab19c6aef05d58b75a5c6a32ae9c04c21) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Utils/DataTables/Members.pm | 31 +++++++++++++++++++---------- members/member.pl | 4 ---- svc/members/search | 4 ---- t/db_dependent/Utils/Datatables_Members.t | 23 ++++++++++++++++++--- 4 files changed, 41 insertions(+), 21 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 10:25:04 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 09:25:04 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-3-g28fc01a 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 28fc01a612d3e9042c96fe47bd3ea7bd94d2e71f (commit) from a67c666da41915f2da341d700923a4a4f99c30ad (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 28fc01a612d3e9042c96fe47bd3ea7bd94d2e71f Author: Fridolin Somers Date: Thu Sep 29 16:19:48 2016 +0200 Bug 17376 - rebuild_zebra.pl in daemon mode no database access kills the process When running rebuild_zebra.pl in daemon mode, a while loop runs the script for ever. But if something crashes inside the rebuild process, the all daemon crashes. For example when it can not access database. This problem may be temporary so daemon should keep running. This patch add eval around the rebuild process to allow a run to fail without killing the daemon. Also moves the DB handler get inside daemon loop because it is broken is DB stoppes. This is a big issue for indexer running in a systemd service. Test plan : - run rebuild_zebra.pl in daemon mode : /home/koha/src/misc/migration_tools/rebuild_zebra.pl -daemon -z -a -b -x --sleep 30 - stop the database - wait a minute => you see an error on database connexion => the daemon is still running - restart the database - test the indexer by creating a new record (wait for a minute) Signed-off-by: Jacek Ablewicz Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit bfcc7cad70bfc23163865b2ff39eb592d6d9d152) Signed-off-by: Fr?d?ric Demians (cherry picked from commit db1bf801e6ad9f9f051d51672a744179beb48bc8) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: misc/migration_tools/rebuild_zebra.pl | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 10:27:27 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 09:27:27 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-4-g1b114af 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 1b114afe899c65831cc6076840940573569c68c3 (commit) from 28fc01a612d3e9042c96fe47bd3ea7bd94d2e71f (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 1b114afe899c65831cc6076840940573569c68c3 Author: Fridolin Somers Date: Wed Aug 24 11:44:55 2016 +0200 Bug 16935 - launch export_records.pl with deleted_barcodes param fails When launching misc/export_records.pl with this command line : misc/export_records.pl --date=`date +%d/%m/%Y` --deleted_barcodes --filename=/tmp/koha.mrc You get this error message : DBD::mysql::db selectall_arrayref failed: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '' at line 4 [for Statement " ( SELECT DISTINCT barcode FROM deleteditems WHERE deleteditems.biblionumber = ? "] at misc/export_records.pl line 189. This is because of a '(' after 'q|', looks like a typo. Also, this patch removes useless var $q. Test plan : - Delete an item with barcode - Without patch, run : misc/export_records.pl --date=`date +%d/%m/%Y` --deleted_barcodes --filename=/tmp/koha.mrc => You get dirty MySQL - Without patch, run the same command => No error and the file is generated Signed-off-by: Nicolas Legrand Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit dbab260afccc04fac8d088839d6017242c818917) Signed-off-by: Fr?d?ric Demians (cherry picked from commit b57fb0a9b20333ce52536b319342c2dd5021e3da) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: misc/export_records.pl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 10:29:48 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 09:29:48 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-5-g223841c 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 223841c1789c9ed67b923c42e7f90e412e03e890 (commit) from 1b114afe899c65831cc6076840940573569c68c3 (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 223841c1789c9ed67b923c42e7f90e412e03e890 Author: Owen Leonard Date: Mon Oct 10 08:10:29 2016 -0400 Bug 17417 [Revised] Correct invalid markup around news on the staff client home page This patch fixes two minor errors in the markup around displaying news on the staff client home page: Adding a missing "class" attribute, and changing the container around news items from

to

(because news items might contain

and nesting them is incorrect). To test, apply the patch and view the staff client home page with news items showing. Validate the page and confirm that there are no errors. Signed-off-by: Marc Revision for QA removes an extra

from elsewhere in the template to make the validator return no errors. Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit d08076e7e55a7c78a7ab3d79c33151dd4c469101) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 23e0c8ffb50c97553dfbc368b78f1d3e7a29bacc) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 10:33:22 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 09:33:22 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-6-g57b0317 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 57b0317fa247415a02dc05835cf30b615d010349 (commit) from 223841c1789c9ed67b923c42e7f90e412e03e890 (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 57b0317fa247415a02dc05835cf30b615d010349 Author: Josef Moravec Date: Tue Oct 18 00:03:08 2016 +0000 Bug 17434: Moremember displaying primary and secondary phone number twice Test plan: 1) Create patron category with category code "P" and create a patron with this category 2) Fill in either the primary or other phone number 3) Go to patron details page (moremember.pl) => without patch you see primary/other phone duplicated => with patch you should see the number only once as expected Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit e17209de48f3c9d3184dfd430d882a4e8f8d5d4f) Signed-off-by: Fr?d?ric Demians (cherry picked from commit fa7eba3a3196c74345461934e7b5acca41be9802) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 4 ---- 1 file changed, 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 11:07:21 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 10:07:21 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-7-g9807a70 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 9807a707c4a8dcd072f9621abe0108d9992000a9 (commit) from 57b0317fa247415a02dc05835cf30b615d010349 (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 9807a707c4a8dcd072f9621abe0108d9992000a9 Author: Tomas Cohen Arazi Date: Thu Oct 20 11:58:32 2016 -0300 Bug 4880: Make koha-remove stop all instance's services This patch makes koha-remove stop all instance's services before attempting to remove the system user, Before this patch, only zebra was stopped. To test: - Run: $ sudo koha-create --created-db favourite_name - Run: $ sudo koha-remove favourite_name => FAIL: koha-indexer is still running for user favourite_name-koha - Run: $ sudo koha-create --created-db another_name $ sudo koha-plack --enable another_name $ sudo koha-plack --start another_name $ sudo koha-indexer --stop another_name $ sudo koha-remove another_name => FAIL: koha-plack is still running for user another_name-koha - Apply the patch - Repeat the previous tests, with new names => SUCCESS: Everything works as expected :-D - Sign off :-D Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 607dac69a95e7bcb454661bfde71a45ee20d0155) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 275253e52a67c482665adb11e40d3a54554979cb) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: debian/scripts/koha-remove | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 11:33:13 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 10:33:13 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-8-gc3df051 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 c3df05119b44a3eb1d9fbcfbcd559ef3d51c575e (commit) from 9807a707c4a8dcd072f9621abe0108d9992000a9 (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 c3df05119b44a3eb1d9fbcfbcd559ef3d51c575e Author: Tomas Cohen Arazi Date: Wed Oct 26 11:34:08 2016 -0300 Bug 17504: Make the installer show the right dmbs help if wrong permissions This patch changes the installer template for step 2 (DB rights check) so it correctly displays MySQL-related message. The previous code was doing the wrong comparisson, thus yielding PostgreSQL documentation. To test: - Run: $ sudo koha-mysql kohadev > DROP DATABASE koha_kohadev ; CREATE DATABASE koha_kohadev; > REVOKE INSERT ON koha_kohadev.* FROM 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Run the webinstaller through step 2 => FAIL: You get the message in the attached screenshot - Apply the patch, reload => SUCCESS: You are displayed a different warning message, with a link to up-to-date MySQL docs on GRANT - Fix permissions for the user: $ sudo koha-mysql kohadev > GRANT ALL PRIVILEGES on koha_kohadev.* TO 'koha_kohadev'@'localhost'; > FLUSH PRIVILEGES; \q - Reload => SUCCESS: All checks are correct and you can move on - Sign off :-D Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 1191ea4f448dd9ae994cf703e8e0a4970fdbb57e) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 55e774f5d8d919a6142aac9bc06882de2a971f63) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 11:36:16 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 10:36:16 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-10-g3daf399 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 3daf399cacc99077cab5139ffaf29fa4fe500762 (commit) via 7f0903847be547930e2aa8b65699c5e283a3594a (commit) from c3df05119b44a3eb1d9fbcfbcd559ef3d51c575e (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 3daf399cacc99077cab5139ffaf29fa4fe500762 Author: Julian Maurice Date: Tue Nov 8 11:34:34 2016 +0100 Bug 17518: Update DB rev (3.22.12.001) Signed-off-by: Julian Maurice commit 7f0903847be547930e2aa8b65699c5e283a3594a Author: Josef Moravec Date: Wed Oct 26 22:53:04 2016 +0000 Bug 17518: Displayed language name for Czech is wrong It's "Ce?tina" and should be "?e?tina" Test plan: 1) apply the patch 1.1) update database 2) install Czech translation for Koha 3) note the language name in language switcher (in staff client and opac) is right: "?e?tina" Signed-off-by: radiuscz Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit de2ba75c25f9f348a312093483dea52168fa5d6e) Signed-off-by: Fr?d?ric Demians (cherry picked from commit 3ea0d7ed993a0c1233e822f7f4db710cb9056cfd) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/mandatory/subtag_registry.sql | 2 +- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 8 18:16:08 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 08 Nov 2016 17:16:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1336-g80c80ca 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 80c80ca683217455221e15e0c24a81d5e60e49e0 (commit) from 2b54196b72757a6483dc99a1fa8d2e76538a5102 (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 80c80ca683217455221e15e0c24a81d5e60e49e0 Author: Kyle M Hall Date: Tue Nov 8 17:12:27 2016 +0000 Bug 17589 - Improper method type in Koha::ItemType(s) Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/ItemType.pm | 4 ---- Koha/ItemTypes.pm | 4 ---- 2 files changed, 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 10 14:37:45 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 10 Nov 2016 13:37:45 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1337-gbf315c4 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 bf315c45cf5b33915578d1a878865122e5683ecd (commit) from 80c80ca683217455221e15e0c24a81d5e60e49e0 (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 bf315c45cf5b33915578d1a878865122e5683ecd Author: Jonathan Druart Date: Mon Nov 7 11:10:04 2016 +0000 Bug 17564: Fix t/db_dependent/Acquisition/OrderUsers.t ModReceiveOrder takes now a 'order' parameter and is mandatory. This new test file has been added after the first submission of bug 13321 and has not been updated during the rebases. Test plan: prove t/db_dependent/Acquisition/OrderUsers.t should return green Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Acquisition/OrderUsers.t | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 10 14:38:08 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 10 Nov 2016 13:38:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1339-g47bae5b 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 47bae5b36572011ad06a0d4bc4b401a538e39fe0 (commit) via ed848e167aaaec2e67bffc87ea4a17396fec20d6 (commit) from bf315c45cf5b33915578d1a878865122e5683ecd (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 47bae5b36572011ad06a0d4bc4b401a538e39fe0 Author: Tomas Cohen Arazi Date: Tue Nov 8 16:11:49 2016 -0300 Bug 17563: (followup) Silence undef warnings Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit ed848e167aaaec2e67bffc87ea4a17396fec20d6 Author: Jonathan Druart Date: Mon Nov 7 10:55:06 2016 +0000 Bug 17563: Fix Acquisition/CancelReceipt.t Test plan: prove t/db_dependent/Acquisition/CancelReceipt.t should return green Confirm that the changes made by commit 20d9ed618fbe3cdcb9c04444a1f8a584b0364069 Bug 13321: Rename variables was wrong for the budget_id var and that this patch reverts it Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Acquisition.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 10 14:39:14 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 10 Nov 2016 13:39:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1340-g78d728f 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 78d728f1463eda04289f030037de750bf5f2bba9 (commit) from 47bae5b36572011ad06a0d4bc4b401a538e39fe0 (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 78d728f1463eda04289f030037de750bf5f2bba9 Author: Jonathan Druart Date: Mon Nov 7 10:25:57 2016 +0000 Bug 17562: Fix Acquisition.t I find these tests too much complicated and decided to remove them. They depends on the number of fields in the DB and any time we change this table we need to update the tests. As I don't understand the tests, I prefer to simply remove them, they don't seem very useful. Feel free to provide a counter patch if you think we should keep them. Test plan: prove t/db_dependent/Acquisition.t should return green Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi This tests should be removed as this patch does. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Acquisition.t | 449 +----------------------------------------- 1 file changed, 1 insertion(+), 448 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 10 14:40:18 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 10 Nov 2016 13:40:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1341-g61f3c5b 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 61f3c5b880fa4da59959db116bf0cd3145a8b45a (commit) from 78d728f1463eda04289f030037de750bf5f2bba9 (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 61f3c5b880fa4da59959db116bf0cd3145a8b45a Author: Nick Clemens Date: Fri Aug 26 15:04:12 2016 +0000 Bug 17204: Rancor Z39.50 search fails under plack MetaSearcher.pm forks children to handle searching each server. When the process waits for the children it never continues. The simplest solution here is to exclude the metasearcher service from running under plack Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: debian/templates/apache-shared-intranet-plack.conf | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:34:03 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:34:03 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1343-g8630e83 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 8630e83ed1b0261bcffd7d4966460daca8c9a3af (commit) via 37256b4d2d040822ef3690fdd4946b193b3e0c11 (commit) from 61f3c5b880fa4da59959db116bf0cd3145a8b45a (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 8630e83ed1b0261bcffd7d4966460daca8c9a3af Author: Fridolin Somers Date: Mon Nov 7 16:07:01 2016 +0100 Bug 17420 - record export fails when itemtype on biblio - followup Same as previous patch for misc/export_records.pl. Test plan : - Use syspref item-level_itypes = biblio record - Run misc/export_records.pl => Without patch you get an error : DBD::mysql::st execute failed: Unknown column 'biblioitems.itemtype' in 'where clause' ... => With patch you get a correct export file Signed-off-by: Bernardo Gonzalez Kriegel Export Ok, no errors. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 37256b4d2d040822ef3690fdd4946b193b3e0c11 Author: Fridolin Somers Date: Mon Oct 10 16:46:04 2016 +0200 Bug 17420 - record export fails when itemtype on biblio In Tools, Export data, you can export with a filter on item type. When item type is on biblio record, you get the error : export.pl: DBIx::Class::ResultSet::next(): Unknown column 'biblioitems.itemtype' in 'where clause' at /home/koha/src/Koha/Objects.pm line 150 Looks like its because this code use to be a SQL Select and is now a DBIx call : C4::Context->preference('item-level_itypes') ? ( 'items.itype' => $itemtype ) : ( 'me.itemtype' => $itemtype ) This patch corrects by using "me.itemtype" Test plan : - Use syspref item-level_itypes = biblio record - Go to Tools > Export data : /cgi-bin/koha/tools/export.pl - Select an item type - Click on "Export biblio records" => Without patch you get an error 500 => With patch you get a correct export file Signed-off-by: Bernardo Gonzalez Kriegel Fix the issue, no errors. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: misc/export_records.pl | 2 +- tools/export.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:34:36 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:34:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1346-g0550385 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 0550385730d09a4def0e1d976dec746a3074312a (commit) via 1997ea648ccefb622fa8e7d69d76bf50a33e62f7 (commit) via 7d28998c93e7376af972f2bd75d8c0c620749ddb (commit) from 8630e83ed1b0261bcffd7d4966460daca8c9a3af (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 0550385730d09a4def0e1d976dec746a3074312a Author: Josef Moravec Date: Fri Nov 11 11:23:40 2016 +0000 Bug 17558: QA followup - use TestBuilder for creating patron Signed-off-by: Hector Castro Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 1997ea648ccefb622fa8e7d69d76bf50a33e62f7 Author: Josef Moravec Date: Tue Oct 25 21:50:43 2016 +0000 Bug 17558: Add more tests Signed-off-by: Hector Castro All tests pass successfuly Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 7d28998c93e7376af972f2bd75d8c0c620749ddb Author: Josef Moravec Date: Tue Oct 25 21:52:11 2016 +0000 Bug 17558: Fix adding manager id to patron messages in store method Test plan: prove t/db_dependent/Koha/Patron/Messages.t Signed-off-by: Hector Castro Works as advertised. Pass OK Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Patron/Message.pm | 2 +- t/db_dependent/Koha/Patron/Messages.t | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:35:09 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:35:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1349-g6fdd99e 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 6fdd99e811a6246c8e781e4d0ad8d57bedd295b8 (commit) via 177f7ef49de7a43e5674af3ef01de19a3e6904f4 (commit) via 4bf2a1d81f97e56afea057abe6202001fb98e6eb (commit) from 0550385730d09a4def0e1d976dec746a3074312a (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 6fdd99e811a6246c8e781e4d0ad8d57bedd295b8 Author: Marcel de Rooy Date: Fri Nov 11 09:27:12 2016 +0100 Bug 17572: [QA Follow-up] Cosmetic changes Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 177f7ef49de7a43e5674af3ef01de19a3e6904f4 Author: Tomas Cohen Arazi Date: Mon Nov 7 15:09:24 2016 -0300 Bug 17572: (followup) Remove test's hardcoded values This patch makes the tests use t::lib::TestBuilder instead of hardcoding values. Test plan: - Run: $ prove t/db_dependent/Circulation/issue.t => SUCCESS: All tests return green with and without the patch - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 4bf2a1d81f97e56afea057abe6202001fb98e6eb Author: Tomas Cohen Arazi Date: Mon Nov 7 14:55:41 2016 -0300 Bug 17572: Remove itemtype-related warnings from issue.t This patch makes t/db_dependent/Circulation/issue.t create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Circulation/issue.t => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Circulation/issue.t => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation/issue.t | 183 +++++++++++++++--------------------- 1 file changed, 74 insertions(+), 109 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:36:34 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:36:34 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1350-g108c2d1 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 108c2d177312e65d59801ae33a5855abc4d9c1b3 (commit) from 6fdd99e811a6246c8e781e4d0ad8d57bedd295b8 (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 108c2d177312e65d59801ae33a5855abc4d9c1b3 Author: Tomas Cohen Arazi Date: Mon Nov 7 15:24:34 2016 -0300 Bug 17573: Remove itemtype-related warnings from DecreaseLoanHighHolds.t To test: - Run: $ prove t/db_dependent/DecreaseLoanHighHolds.t => FAIL: Lots of warnings - Apply the patch - Run: $ prove t/db_dependent/DecreaseLoanHighHolds.t => SUCCESS: All green and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/DecreaseLoanHighHolds.t | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:36:56 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:36:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1351-g8fe7077 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 8fe707769a3b2824f386069c3d61eb41d82e2a62 (commit) from 108c2d177312e65d59801ae33a5855abc4d9c1b3 (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 8fe707769a3b2824f386069c3d61eb41d82e2a62 Author: Tomas Cohen Arazi Date: Mon Nov 7 15:31:53 2016 -0300 Bug 17574: Remove itemtype-related warnings from LocalHoldsPriority.t To test: - Run: $ prove t/db_dependent/Holds/LocalHoldsPriority.t => FAIL: Tests raise lots of warnings - Apply the patch - Run: $ prove t/db_dependent/Holds/LocalHoldsPriority.t => SUCCESS: Tests pass, and no warnings! - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Holds/LocalHoldsPriority.t | 33 +++++++++++++++++------------ 1 file changed, 19 insertions(+), 14 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:37:31 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:37:31 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1353-gbc6a51c 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 bc6a51c065c9a0f829d3d63f0e26bbd957bf5308 (commit) via 76e16495a970018530e9a6453662d97b030fa7f0 (commit) from 8fe707769a3b2824f386069c3d61eb41d82e2a62 (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 bc6a51c065c9a0f829d3d63f0e26bbd957bf5308 Author: Tomas Cohen Arazi Date: Mon Nov 7 16:08:02 2016 -0300 Bug 17575: (followup) Remove missing fine type warnings Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 76e16495a970018530e9a6453662d97b030fa7f0 Author: Tomas Cohen Arazi Date: Mon Nov 7 16:00:21 2016 -0300 Bug 17575: Remove itemtype-related warnings from Circulation.t To test: - Run: $ prove t/db_dependent/Circulation.t => FAIL: Lots of warnings - Apply the patch - Run: $ prove t/db_dependent/Circulation.t => SUCCESS: All green and no itemtype warnings - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation.t | 43 +++++++++++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:38:02 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:38:02 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1354-g0b56b58 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 0b56b5857d3e37ab486564a4465f6e00af3599d3 (commit) from bc6a51c065c9a0f829d3d63f0e26bbd957bf5308 (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 0b56b5857d3e37ab486564a4465f6e00af3599d3 Author: Tomas Cohen Arazi Date: Tue Nov 8 12:40:45 2016 -0300 Bug 17587: Remove itemtype-related IsItemIssued.t warnings This patch makes t/db_dependent/Circulation/IsItemIssued.t create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Circulation/IsItemIssued.t => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Circulation/IsItemIssued.t => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation/IsItemIssued.t | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:38:29 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:38:29 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1355-gddd6f69 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 ddd6f6917b6f0012a15d277d1f4f2a6890b7aecf (commit) from 0b56b5857d3e37ab486564a4465f6e00af3599d3 (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 ddd6f6917b6f0012a15d277d1f4f2a6890b7aecf Author: Tomas Cohen Arazi Date: Tue Nov 8 16:28:07 2016 -0300 Bug 17592: Remove itemtype-related maxsuspensiondays.t warnings This patch makes t/db_dependent/Circulation/IssuingRules/maxsuspensiondays.t create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Circulation/IssuingRules/maxsuspensiondays.t => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Circulation/IssuingRules/maxsuspensiondays.t => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation/IssuingRules/maxsuspensiondays.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:39:39 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:39:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1356-g62c0939 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 62c09397f2c5e5dd1df2c0cccf190c80363b8033 (commit) from ddd6f6917b6f0012a15d277d1f4f2a6890b7aecf (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 62c09397f2c5e5dd1df2c0cccf190c80363b8033 Author: Tomas Cohen Arazi Date: Wed Nov 9 16:45:38 2016 -0300 Bug 17603: Remove itemtype-related Borrower_Discharge.t warnings This patch makes t/db_dependent/Patron/Borrower_Discharge.t create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Patron/Borrower_Discharge.t => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Patron/Borrower_Discharge.t => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Hector Castro Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Patron/Borrower_Discharge.t | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Nov 12 03:40:56 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 12 Nov 2016 02:40:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1357-gf4bd05d 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 f4bd05d00dbbb96215dca1551e4f92961b60cb6f (commit) from 62c09397f2c5e5dd1df2c0cccf190c80363b8033 (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 f4bd05d00dbbb96215dca1551e4f92961b60cb6f Author: Tomas Cohen Arazi Date: Mon Nov 7 11:19:03 2016 -0300 Bug 17567: Make populate_db.pl initialize ES mappings To test: - Have a clean install, no DB - Run populate_db.pl: $ sudo koha-shell kohadev k$ cd kohaclone k$ misc/devel/populate_db.pl - Go to http://localhost:8081/cgi-bin/koha/admin/searchengine/elasticsearch/mappings.pl => FAIL: No mappings - Delete the DB and create an empty one: $ mysql -uroot > DROP DATABASE koha_kohadev; CREATE DATABASE koha_kohadev; > GRANT ALL PRIVILEGES ON koha_kohadev.* TO 'koha_kohadev'@'localhost'; - Run populate_db.pl: $ sudo koha-shell kohadev k$ cd kohaclone k$ misc/devel/populate_db.pl - Go to http://localhost:8081/cgi-bin/koha/admin/searchengine/elasticsearch/mappings.pl => SUCCESS: There are mappings! - Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: misc/devel/populate_db.pl | 5 +++++ 1 file changed, 5 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 14 12:25:46 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Nov 2016 11:25:46 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1358-g0a90892 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 0a90892387ec1a69ea9a811cb95e29e2db02979d (commit) from f4bd05d00dbbb96215dca1551e4f92961b60cb6f (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 0a90892387ec1a69ea9a811cb95e29e2db02979d Author: Jonathan Druart Date: Tue Nov 8 14:43:46 2016 +0000 Bug 17582: Fix authority framework edition Step to recreate: Admin>Authority types > Actions > Marc structure Test plan Confirm that this patch fixes the issue Signed-off-by: Bernardo Gonzalez Kriegel Fix the issue, no errors. Can edit auth marc structure Signed-off-by: Tomas Cohen Arazi Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 14 12:26:48 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Nov 2016 11:26:48 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1359-g2975c01 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 2975c010204cad61d5a2c1982dabfd3b7812e74c (commit) from 0a90892387ec1a69ea9a811cb95e29e2db02979d (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 2975c010204cad61d5a2c1982dabfd3b7812e74c Author: Tomas Cohen Arazi Date: Thu Nov 10 10:21:52 2016 -0300 Bug 17607: Fix patron definition in Swagger This patch makes the patron swagger definition match the DB schema. To test: - Run: $ prove t/db_dependent/api/v1/swagger/definitions.t => FAIL: 'lastseen' field is not declared in the swagger definition - Apply the patch - Run: $ prove t/db_dependent/api/v1/swagger/definitions.t => SUCCESS: Tests pass! - Sigh off :-D Sponsored-by: ByWater Solutions Signed-off-by: Hector Castro All tests pass successfuly Signed-off-by: Lari Taskula Fixed a typo: seed -> seen Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: api/v1/swagger/definitions/patron.json | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 14 12:30:07 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 14 Nov 2016 11:30:07 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1361-ga618c62 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 a618c62ae6c6ddc8334e795ddb1760a7363a88f8 (commit) via 87380d8b460857157b4cf06fa8def626d1d2badb (commit) from 2975c010204cad61d5a2c1982dabfd3b7812e74c (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 a618c62ae6c6ddc8334e795ddb1760a7363a88f8 Author: Mark Tompsett Date: Wed Sep 14 15:14:02 2016 -0400 Bug 15690: Hardcoded 16 is uncool Signed-off-by: Mark Tompsett Followed test plan in comment #7, works as expectd. Signed-off-by: Marc Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 87380d8b460857157b4cf06fa8def626d1d2badb Author: Jonathan Druart Date: Tue Sep 13 15:43:50 2016 +0100 Bug 15690: CardnumberLength should not be bigger than 16 borrowers.cardnumber is a varchar(16), so CardnumberLength should not have a max > 16 Test plan: Test different value in CardnumberLength ("20", "20,30", "40,") Edit a patron a make sure the text display under the cardnumber input is correct Signed-off-by: Mark Tompsett Signed-off-by: Marc Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 4 ++++ .../prog/en/modules/admin/preferences/patrons.pref | 2 +- t/Members/cardnumber.t | 19 +++++++++++++++++-- 3 files changed, 22 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 15:11:03 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 14:11:03 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1362-g3a6d38c 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 3a6d38cbcb3644cefd508f3c4489045dd650316f (commit) from a618c62ae6c6ddc8334e795ddb1760a7363a88f8 (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 3a6d38cbcb3644cefd508f3c4489045dd650316f Author: Nick Clemens Date: Wed Nov 9 11:11:08 2016 +0000 Bug 16520 - (Follow up) Restore retrieval of syspref_cache Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Context.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 16:14:30 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 15:14:30 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1363-g4277f43 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 4277f43a91189e5bbe51e82061d0ea3a81167fd7 (commit) from 3a6d38cbcb3644cefd508f3c4489045dd650316f (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 4277f43a91189e5bbe51e82061d0ea3a81167fd7 Author: Jonathan Druart Date: Fri Nov 4 15:05:08 2016 +0000 Bug 17555: Add Koha::Patron->category We need to use the DBIx::Class relationship to retrieve the patron category. It is more convenient to have a Koha::Patron->category method to retrieve the category of a given patron. Test plan: Make sure that the tests in t/db_dependent/Koha/Patron* return green Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Patron.pm | 23 +++++++++++++++++------ t/db_dependent/Koha/Patrons.t | 9 ++++++++- 2 files changed, 25 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 16:20:50 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 15:20:50 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1364-g1da4a7b 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 1da4a7b4a204033b21e8537b2988bdd43a7357ec (commit) from 4277f43a91189e5bbe51e82061d0ea3a81167fd7 (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 1da4a7b4a204033b21e8537b2988bdd43a7357ec Author: Jonathan Druart Date: Wed Nov 9 13:20:16 2016 +0000 Bug 17594: Make Koha::Object->discard_changes available We need this new method to refresh an object after it has been updated. Test plan: prove t/db_dependent/Koha/Object.t should return green Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Object.pm | 2 +- t/db_dependent/Koha/Object.t | 20 +++++++++++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 16:24:10 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 15:24:10 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1365-g81ea88f 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 81ea88fff6bfffd958cc0a85871e1487b05a445a (commit) from 1da4a7b4a204033b21e8537b2988bdd43a7357ec (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 81ea88fff6bfffd958cc0a85871e1487b05a445a Author: Jonathan Druart Date: Mon Nov 7 15:47:43 2016 +0000 Bug 17604: GetMemberDetails - Add Koha::Patron::Category->effective_BlockExpiredPatronOpacActions This patch simply adds a new method to retrieve the correct value of BlockExpiredPatronOpacActions. Test plan: prove t/db_dependent/Koha/Patron/Categories.t should return green Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Patron/Category.pm | 14 ++++++++++++++ t/db_dependent/Koha/Patron/Categories.t | 19 ++++++++++++++++++- 2 files changed, 32 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 16:38:50 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 15:38:50 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1368-g3628035 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 36280356c1d4488fe42609357daea36e7dc023a1 (commit) via ea3704203e88382024837c5caa2c264a153a3cf0 (commit) via d892342e6f8569a4ea51a0e550b5d9c59b92e588 (commit) from 81ea88fff6bfffd958cc0a85871e1487b05a445a (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 36280356c1d4488fe42609357daea36e7dc023a1 Author: Kyle M Hall Date: Tue Nov 15 15:27:13 2016 +0000 Bug 17579 [QA Followup] - Fix the number of tests Signed-off-by: Kyle M Hall commit ea3704203e88382024837c5caa2c264a153a3cf0 Author: Jonathan Druart Date: Wed Nov 9 13:23:54 2016 +0000 Bug 17579: Make sure we are testing the real life Without this patch, the tests are not testing the same things as what happens on the interface. We need to refresh the object to make sure the date set into dateexpiry is the one in DB. Without this patch, ->is_expired test a datetime object, with this patch it compares with a date oject Without the changes made in Koha::Patron->is_expired, a patron which has a dateexpiry set to today was marked as expired on the interface. This is a change in the behavior, what this refactoring does not want to do. Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall commit d892342e6f8569a4ea51a0e550b5d9c59b92e588 Author: Jonathan Druart Date: Mon Nov 7 17:12:58 2016 +0000 Bug 17579: Add the Koha::Patron->is_expired This new method will be handy for further uses Test plan: prove t/db_dependent/Koha/Patrons.t should return green Signed-off-by: Josef Moravec Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Patron.pm | 16 ++++++++++++++++ t/db_dependent/Koha/Patrons.t | 20 +++++++++++++++++++- 2 files changed, 35 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 16:43:53 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 15:43:53 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1371-g72fea80 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 72fea80a33bc9ea57335e6d8c00500439a38b1c4 (commit) via 7953beeffd03b3688283de641938c29958a4b1ea (commit) via 6edbd47a44823eb53ee7ebc3904cbd7ce796b19d (commit) from 36280356c1d4488fe42609357daea36e7dc023a1 (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 72fea80a33bc9ea57335e6d8c00500439a38b1c4 Author: Tomas Cohen Arazi Date: Tue Nov 15 12:32:53 2016 -0300 Bug 17599: (QA followup) Perltidy really long lines Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 7953beeffd03b3688283de641938c29958a4b1ea Author: Tomas Cohen Arazi Date: Tue Nov 15 12:27:33 2016 -0300 Bug 17599: (QA followup) Remove userenv warning Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 6edbd47a44823eb53ee7ebc3904cbd7ce796b19d Author: Jonathan Druart Date: Wed Nov 9 16:36:39 2016 +0000 Bug 17599: Move C4::Circulation::GetIssuingRule to Koha::IssuingRules->get_effective_issuing_rule This is a POC, I have not tested it yet. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 190 +++++++++----------- C4/Overdues.pm | 30 ++-- C4/Reserves.pm | 5 +- Koha/Biblio.pm | 7 +- Koha/IssuingRules.pm | 90 +++++++++- Koha/Item.pm | 7 +- t/db_dependent/Circulation/Branch.t | 1 - t/db_dependent/Circulation/GetHardDueDate.t | 19 +- .../Circulation/IssuingRules/maxsuspensiondays.t | 33 ++-- t/db_dependent/Circulation/issue.t | 3 +- t/db_dependent/Reserves.t | 21 ++- 11 files changed, 238 insertions(+), 168 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 16:51:21 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 15:51:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1372-gbdcbb1c 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 bdcbb1c899aec3240ca9f1d84191eca77112f68b (commit) from 72fea80a33bc9ea57335e6d8c00500439a38b1c4 (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 bdcbb1c899aec3240ca9f1d84191eca77112f68b Author: Jonathan Druart Date: Thu Nov 10 08:44:54 2016 +0000 Bug 17522: Fix opac-user.pl if OpacRenewalAllowed is set This patch fixes a bug added by commit 81a04af27804621609004dc370284413baa5caa2 Bug 14610 - Add and update scripts If OpacRenewalAllowed is enabled, the following error message is displayed: Template process failed: undef error - The method is_expired is not covered by tests! at /home/vagrant/kohaclone/C4/Templates.pm line 121. The is_expired and BlockExpiredPatronOpacActions methods did not exist for the Koha::Patron object. These 2 values were returned by GetMemberDetails. To fix this, we need bug 17579 which introduces the Koha::Patron->is_expired method and also bug 17604 for the Koha::Patron->effective_BlockExpiredPatronOpacActions. Test Plan: 1) Check out an item for a patron 2) Enable OpacRenewalAllowed 3) Log in as that patron, go to opac-user.pl 4) Note the error 5) Apply this patch 6) Reload opac-user.pl 7) Page should now load! Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 16:56:08 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 15:56:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1373-gaa1390a 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 aa1390a220350f726758e26357a2c448ac4aa777 (commit) from bdcbb1c899aec3240ca9f1d84191eca77112f68b (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 aa1390a220350f726758e26357a2c448ac4aa777 Author: Jonathan Druart Date: Tue Nov 15 15:49:00 2016 +0000 Bug 17599: Make the tests pass If you run TooMany or MultiplePerRecord.t after t/db_dependent/Circulation/Returns.t (for instance) and that you are running memcached, item-level_itypes will be 0. These tests assume that the pref is 1 Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation/TooMany.t | 1 + t/db_dependent/Reserves/MultiplePerRecord.t | 3 +++ 2 files changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 18:44:39 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 17:44:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1374-g75f7510 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 75f75101585d795ab6b0e4e40f585b21e0f841cb (commit) from aa1390a220350f726758e26357a2c448ac4aa777 (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 75f75101585d795ab6b0e4e40f585b21e0f841cb Author: Kyle M Hall Date: Tue Nov 15 17:37:24 2016 +0000 Bug 17634: Unit test t/db_dependent/ArticleRequests.t is failing Test Plan: 1) prove t/db_dependent/ArticleRequests.t 2) Apply this patch 3) prove t/db_dependent/ArticleRequests.t Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/ArticleRequest.pm | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 15 19:18:16 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 15 Nov 2016 18:18:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1375-g379f392 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 379f392ddc0cfe545b026c1a3f907f2d263b67be (commit) from 75f75101585d795ab6b0e4e40f585b21e0f841cb (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 379f392ddc0cfe545b026c1a3f907f2d263b67be Author: Tomas Cohen Arazi Date: Tue Nov 15 15:07:14 2016 -0300 Bug 17635: Fix templates with missing body id The following template files are missing body id and class and should be fixed: - members/housebound.tt - reports/cash_register_stats.tt To test: - Run: $ sudo koha-shell kohadev ; cd kohaclone k$ prove xt/tt_valid.t => FAIL: Tests fail due to the mentioned templates - Apply this patch - Run: $ sudo koha-shell kohadev ; cd kohaclone k$ prove xt/tt_valid.t => SUCCESS: Tests pass! - Sign off :-D Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt | 2 +- .../intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 12:12:13 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 11:12:13 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1377-g0faf643 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 0faf643661f23eddd066488b26004428e57bfe18 (commit) via 64900dc7c6511e657c890d91f0adfe05e0005e91 (commit) from 379f392ddc0cfe545b026c1a3f907f2d263b67be (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 0faf643661f23eddd066488b26004428e57bfe18 Author: Jonathan Druart Date: Wed Nov 16 07:29:45 2016 +0000 Bug 17634: Fix circ dependency with require instead of use This is definitely wrong but we won't have time to fix it correctly before the release. Signed-off-by: Kyle M Hall commit 64900dc7c6511e657c890d91f0adfe05e0005e91 Author: Jonathan Druart Date: Wed Nov 16 07:23:19 2016 +0000 Revert "Bug 17634: Unit test t/db_dependent/ArticleRequests.t is failing" This reverts commit 75f75101585d795ab6b0e4e40f585b21e0f841cb. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/ArticleRequest.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 15:03:30 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 14:03:30 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1378-gfbaa28b 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 fbaa28bf2a79e0416706f8caad5728a88223d04b (commit) from 0faf643661f23eddd066488b26004428e57bfe18 (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 fbaa28bf2a79e0416706f8caad5728a88223d04b Author: Jonathan Druart Date: Wed Nov 16 07:44:03 2016 +0000 Bug 17637: Fix tests Auth_with_ldap.t Koha::Patron->delete create a transaction and so we need to use txn_begin to have nested txn DBD::mysql::db begin_work failed: Already in a transaction Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Auth_with_ldap.t | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 15:04:16 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 14:04:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1379-g08f7baf 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 08f7baf3e3da147b01c3660f789bb7b7cdd707da (commit) from fbaa28bf2a79e0416706f8caad5728a88223d04b (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 08f7baf3e3da147b01c3660f789bb7b7cdd707da Author: Jonathan Druart Date: Wed Nov 16 09:49:20 2016 +0000 Bug 17641: Fix t/Biblio/Isbd.t On commit cadf5aea814636ccccd85fcc38aa30f751d779c0 Bug 11592: MARCView and ISBD followup The prototype of C4::Biblio::GetISBDView has been changed to take a hashref in parameter. But the tests have not been updated Test plan: prove t/Biblio/Isbd.t should return green Signed-off-by: Kyle M Hall https://bugs.koha-community.org/show_bug.cgi?id=17637 Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/Biblio/Isbd.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 16:32:47 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 15:32:47 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1381-g81cd8b9 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 81cd8b93bbdc8691cd7d86070d86634d6957c86d (commit) via 54bc0272894b292075a8943a368b8a25d4a3dc60 (commit) from 08f7baf3e3da147b01c3660f789bb7b7cdd707da (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 81cd8b93bbdc8691cd7d86070d86634d6957c86d Author: Tomas Cohen Arazi Date: Tue Nov 15 14:08:15 2016 -0300 Bug 17633: (QA followup) Remove unneeded warnings Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 54bc0272894b292075a8943a368b8a25d4a3dc60 Author: Jonathan Druart Date: Tue Nov 15 16:07:35 2016 +0000 Bug 17633: Do not call set_preference from tests If memcached is running, the pref's value will be set in cache, what we do not want. t/db_dependent/Context.t and t/db_dependent/sysprefs.t are exceptions for obvious reasons. Test plan: Make sure all these tests still pass Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../Circulation/NoIssuesChargeGuarantees.t | 3 +- t/db_dependent/Circulation/Returns.t | 31 +++++++------ t/db_dependent/DecreaseLoanHighHolds.t | 17 +++---- t/db_dependent/HoldsQueue.t | 47 ++++++++++---------- t/db_dependent/Items.t | 30 +++++++++++-- t/db_dependent/Template/Plugin/Branches.t | 5 ++- 6 files changed, 82 insertions(+), 51 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 16:55:19 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 15:55:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1384-gf384f94 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 f384f94702d6bdd1dd2099bd44b728d60e4bb818 (commit) via f427166215fbeb4458b8deea9d65d0aa902bb3b6 (commit) via e7833cf331102d4a6e30fee9f34e3541cb436976 (commit) from 81cd8b93bbdc8691cd7d86070d86634d6957c86d (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 f384f94702d6bdd1dd2099bd44b728d60e4bb818 Author: Kyle M Hall Date: Wed Nov 16 15:52:17 2016 +0000 Bug 17640 [QA Followup] - Remove any outstanding issues before removing patrons Signed-off-by: Kyle M Hall commit f427166215fbeb4458b8deea9d65d0aa902bb3b6 Author: Tomas Cohen Arazi Date: Wed Nov 16 12:48:11 2016 -0300 Bug 17640: (QA followup) Add more tests Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit e7833cf331102d4a6e30fee9f34e3541cb436976 Author: Jonathan Druart Date: Wed Nov 16 09:41:26 2016 +0000 Bug 17640: Fix t/db_dependent/Template/Plugin/Categories.t These tests fail since commit 6ee8dd3a597d08ccc5122473e55790d3f21d5163 Bug 15407: Koha::Patron::Categories - replace C4::Category->all Indeed the patron categories plugin now returns a Koha::Patron::Categories object and does not set a 'selected' flag. We do not need this flag (`git grep Categories.all **/*.tt` to trust me) Note that this patch also add a patron category to make the test passes even if no category exist. Test plan: prove t/db_dependent/Template/Plugin/Categories.t should return green Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Template/Plugin/Categories.t | 65 ++++++++++++++++++++------- 1 file changed, 50 insertions(+), 15 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 17:00:47 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 16:00:47 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1385-g8a3ae73 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 8a3ae73079c56e81666669fc50e2bbd57c516a9c (commit) from f384f94702d6bdd1dd2099bd44b728d60e4bb818 (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 8a3ae73079c56e81666669fc50e2bbd57c516a9c Author: Tomas Cohen Arazi Date: Wed Nov 16 12:58:23 2016 -0300 Bug 17633: (QA followup) remove debugging leftover Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Items.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 17:20:08 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 16:20:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1386-g1171b28 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 1171b28145c5cf5ed6688721b901c851ac54f7f0 (commit) from 8a3ae73079c56e81666669fc50e2bbd57c516a9c (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 1171b28145c5cf5ed6688721b901c851ac54f7f0 Author: Tomas Cohen Arazi Date: Wed Nov 16 13:15:52 2016 -0300 Bug 17640: (Jonathan complain followup) Use Koha::*->search->delete instead Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Template/Plugin/Categories.t | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 16 19:57:21 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 16 Nov 2016 18:57:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1387-gccd49a6 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 ccd49a60dfa6ae73f1083398d9745710e38d2617 (commit) from 1171b28145c5cf5ed6688721b901c851ac54f7f0 (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 ccd49a60dfa6ae73f1083398d9745710e38d2617 Author: Tomas Cohen Arazi Date: Wed Nov 16 11:40:21 2016 -0300 Bug 17638: Make sure t/db_dependent/Search.t doesn't use a cached koha-conf.xml This patch makes the tests clean the 'config' namespace for cache before it runs any tests. To test: - Run: $ prove t/db_dependent/Search.t => FAIL: Self explanatory - Apply the patch - Run: $ prove t/db_dependent/Search.t => SUCCESS: All green - Sign off :-D Signed-off-by: Hector Castro All test pass successfuly Signed-off-by: Kyle M Hall Cannot reproduce, but I trust everyone telling me it's failing ; ) No regressions spotted ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Search.t | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 17 12:07:39 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 17 Nov 2016 11:07:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1388-g521e9a9 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 521e9a98dddebbbac39cbc50117d47c14211b5ba (commit) from ccd49a60dfa6ae73f1083398d9745710e38d2617 (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 521e9a98dddebbbac39cbc50117d47c14211b5ba Author: Kyle M Hall Date: Wed Nov 16 12:40:31 2016 +0000 Bug 17644 - t/db_dependent/Exporter/Record.t fails Test Plan: 1) prove t/db_dependent/Exporter/Record.t fails 2) Apply this patch 3) prove t/db_dependent/Exporter/Record.t succeeds! Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Exporter/Record.t | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 17 12:08:19 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 17 Nov 2016 11:08:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1389-g20d3888 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 20d38884e8400319e9bb128b8b70a7eadd3c0aaa (commit) from 521e9a98dddebbbac39cbc50117d47c14211b5ba (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 20d38884e8400319e9bb128b8b70a7eadd3c0aaa Author: Tomas Cohen Arazi Date: Wed Nov 16 10:59:26 2016 -0300 Bug 17646: Remove itemtype-related IssueSlip.t warnings This patch makes t/db_dependent/Members/IssueSlip.t create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Members/IssueSlip.t => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Members/IssueSlip.t => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Hector Castro All test pass successfuly Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Members/IssueSlip.t | 42 +++++++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 17 17:25:10 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 17 Nov 2016 16:25:10 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1393-g2a73cda 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 2a73cdac5b600408ac62adc028266e4659964f98 (commit) via 620a8fb82384ea44c4e2c2ed74b83f11e509420e (commit) via f9e9f520182d4b7774d12e22a51d3360ecc0aca5 (commit) via 9fca67d46714cdb9ab4880d9c8535178d8954562 (commit) from 20d38884e8400319e9bb128b8b70a7eadd3c0aaa (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 2a73cdac5b600408ac62adc028266e4659964f98 Author: Jonathan Druart Date: Thu Nov 17 07:52:38 2016 +0000 Bug 17431: Remove use of C4::Items and C4::Biblio Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 620a8fb82384ea44c4e2c2ed74b83f11e509420e Author: Jonathan Druart Date: Wed Oct 19 14:14:41 2016 +0100 Bug 17431: Create the object we need instead of assuming something exists Signed-off-by: Jonathan Druart Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit f9e9f520182d4b7774d12e22a51d3360ecc0aca5 Author: Lari Taskula Date: Wed Oct 19 15:18:02 2016 +0300 Bug 17431: (follow-up) Fix issuingrules Issuingrules could had prevented holds.t from passing with error tooManyReserves. This patch sets issuingrules at the beginning of the test to make sure reserves are allowed. To test: 1. Apply patch & Run t/db_dependent/api/v1/holds.t 2. Observe test pass Signed-off-by: Jonathan Druart Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 9fca67d46714cdb9ab4880d9c8535178d8954562 Author: Lari Taskula Date: Wed Oct 12 14:29:26 2016 +0300 Bug 17431: Fix failing test t/db_dependent/api/v1/holds.t This patch fixed failing test for t/db_dependent/api/v1/holds.t which was broken after Bug 14695. $ perl t/db_dependent/api/v1/holds.t ... not ok 42 - similar match for JSON Pointer "/error" # Failed test 'similar match for JSON Pointer "/error"' # at t/db_dependent/api/v1/holds.t line 291. # 'Reserve cannot be placed. Reason: itemAlreadyOnHold' # doesn't match '(?^u:tooManyReserves)' # Looks like you failed 1 test of 42. not ok 4 - Test endpoints with permission To test: 1. Run t/db_dependent/api/v1/holds.t and observe it fail. 2. Apply patch. 3. Run the test again and observe it pass. Signed-off-by: Marc Signed-off-by: Jonathan Druart Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/api/v1/holds.t | 66 ++++++++++++++++++++++++----------------- 1 file changed, 38 insertions(+), 28 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Nov 17 17:25:51 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 17 Nov 2016 16:25:51 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1394-g6aecba9 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 6aecba93a5bd762c82fc67ba0bbe824e55908ad5 (commit) from 2a73cdac5b600408ac62adc028266e4659964f98 (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 6aecba93a5bd762c82fc67ba0bbe824e55908ad5 Author: Tomas Cohen Arazi Date: Tue Nov 15 17:40:22 2016 -0300 Bug 17636: Remove itemtype-related GetIssues.t warnings This patch makes t/db_dependent/Circulation/GetIssues.t create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Circulation/GetIssues.t => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Circulation/GetIssues.t => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Hector Castro All test pass successfuly Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation/GetIssues.t | 80 ++++++++++++++++++-------------- 1 file changed, 46 insertions(+), 34 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 14:41:16 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 13:41:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1395-g6817351 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 68173511bf7004eac8c7ecd34bfcdc79dd215ecc (commit) from 6aecba93a5bd762c82fc67ba0bbe824e55908ad5 (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 68173511bf7004eac8c7ecd34bfcdc79dd215ecc Author: Jonathan Druart Date: Thu Nov 17 15:12:01 2016 +0000 Bug 17651: borrowers.updated_on can be null - swagger def The swagger file does not consider borrowers.updated_on as a nullable value, it should Test plan: 0/ Do not apply this patch 1/ update borrowers set updated_on=null; 2/ prove t/db_dependent/api/v1/patrons.t => Fail 3/ Apply this patch 4/ prove t/db_dependent/api/v1/patrons.t => green Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: api/v1/swagger/definitions/patron.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 14:47:46 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 13:47:46 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1396-g660be0e 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 660be0e0195613ce9eaaf45b17d2e5db4ad705f0 (commit) from 68173511bf7004eac8c7ecd34bfcdc79dd215ecc (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 660be0e0195613ce9eaaf45b17d2e5db4ad705f0 Author: Koha Team Lyon 3 Date: Tue Oct 25 13:37:47 2016 +0200 Bug_17484 Search with date range limit (lower and upper) does not work If the period is entered without spaces wrapping the hyphen You can't get any result Signed-off-by: Mirko Tietgen I can't reproduce the error, search still works after applying the patch Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: catalogue/search.pl | 7 +------ opac/opac-search.pl | 6 +----- 2 files changed, 2 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 14:53:39 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 13:53:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1397-g6d5b056 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 6d5b056a14e5671f51735dded7609f65ca389f00 (commit) from 660be0e0195613ce9eaaf45b17d2e5db4ad705f0 (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 6d5b056a14e5671f51735dded7609f65ca389f00 Author: Jonathan Druart Date: Tue Sep 20 11:40:13 2016 +0100 Bug 17323: Column search_history.time cannot be null When doing a search, with SearchHistory pref switched on: DBD::mysql::st execute failed: Column 'time' cannot be null [for Statement " INSERT INTO search_history( userid, sessionid, query_desc, query_cgi, type, total, time ) VALUES( ?, ?, ?, ?, ?, ?, ? ) " with ParamValues: 0="7874", 1='12338a0bd8da63e32c79ee84f8493a07', 2="kw,wrdl: d", 3='q=d', 4='biblio', 5=6104, 6=undef] at C4/Search/History.pm line 34. Since MySLQ 5.7, undef does not mean "the default value". To let the DBMS set the default value (CURRENT_TIMESTAMP), the parameter should not be passed Test plan: OPAC+Intranet, swith the 2 SearchHistory syspref on Do a search => Without this patch, you will get an error in the log and the row will not be inserted in the table. => With this patch, everything must go fine Signed-off-by: Chris Cormack Signed-off-by: Marcel de Rooy Not verified with MySQL 5.7. But this looks good to me. Works under Jessie. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Search/History.pm | 6 +++--- t/db_dependent/Search/History.t | 18 +++++++++++++++++- 2 files changed, 20 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 14:55:26 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 13:55:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1399-gcb76c3b 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 cb76c3bd97665ef6bee1f9be8b0e96333f91abbe (commit) via 847ac4b031d7b89968743c8f1f22feb4f4906d8c (commit) from 6d5b056a14e5671f51735dded7609f65ca389f00 (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 cb76c3bd97665ef6bee1f9be8b0e96333f91abbe Author: Jonathan Druart Date: Thu Sep 29 16:08:36 2016 +0100 Bug 17377: ES - Take control fields into account There is a bug in Koha::SearchEngine::Elasticsearc::Search->json2marc, it assumes that the MARC::Field constructor always takes >= 5 parameters. This assumption is wrong for control fields, to create a control field you need to call the constructor with: MARC::Field->new($tag, $value); Note that I got "Too much data for control field" in the _warning value of my MARC::Field because too many parameters were passed, and the value was undef. That broke the result search links (on the staff interface) for DB with biblio.biblionumber mapped with 001. Other bugs will certainly be fixed by this patch. For instance I got: GetMarcBiblio called with undefined biblionumber at /home/koha/src/opac/opac-search.pl line 664. GetCOinSBiblio called with undefined record at /home/koha/src/opac/opac-search.pl line 665. in my logs, with this patch I don't get them anymore. Test plan: You can try to recreate the different issues and confirm than this patch fixes them. Or just run the tests Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall commit 847ac4b031d7b89968743c8f1f22feb4f4906d8c Author: Jonathan Druart Date: Thu Sep 29 16:41:53 2016 +0100 Bug 17377: Add tests for json2marc Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/SearchEngine/Elasticsearch/Search.pm | 12 ++++++++-- .../Koha_SearchEngine_Elasticsearch_Search.t | 24 +++++++++++++++++++- 2 files changed, 33 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 14:56:27 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 13:56:27 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1400-gba43bdb 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 ba43bdb4f9249a8d1df3c5db729679e03e22f4f1 (commit) from cb76c3bd97665ef6bee1f9be8b0e96333f91abbe (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 ba43bdb4f9249a8d1df3c5db729679e03e22f4f1 Author: Jonathan Druart Date: Fri Nov 18 11:00:40 2016 +0000 Bug 17659: Fix sample_notices.sql for fr-CA branchcode and is_html columns are present in this file Test plan: mysql < installer/data/mysql/fr-CA/obligatoire/sample_notices.sql should not return any errors Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/fr-CA/obligatoire/sample_notices.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 14:57:10 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 13:57:10 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1401-g722d045 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 722d045986b2762a22190bb08569b7a5f5536eae (commit) from ba43bdb4f9249a8d1df3c5db729679e03e22f4f1 (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 722d045986b2762a22190bb08569b7a5f5536eae Author: Alex Sassmannshausen Date: Tue Nov 8 15:15:22 2016 +0100 Bug 17576: Add housebound mandatory auth_values. * installer/data/mysql/de-DE/mandatory/auth_values.sql: Add values. * installer/data/mysql/es-ES/mandatory/auth_values.sql: Add values. * installer/data/mysql/fr-CA/obligatoire/auth_values.sql: Add values. * installer/data/mysql/fr-FR/1-Obligatoire/authorised_values.sql: Add values. * installer/data/mysql/it-IT/necessari/auth_val.sql: Add values. * installer/data/mysql/nb-NO/1-Obligatorisk/auth_values.sql: New file. * installer/data/mysql/pl-PL/mandatory/auth_values.sql: New file. * installer/data/mysql/ru-RU/mandatory/auth_values.sql: New file. * installer/data/mysql/uk-UA/mandatory/auth_values.sql: New file. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/de-DE/mandatory/auth_values.sql | 1 + installer/data/mysql/es-ES/mandatory/auth_values.sql | 1 + installer/data/mysql/fr-CA/obligatoire/auth_values.sql | 1 + installer/data/mysql/fr-FR/1-Obligatoire/authorised_values.sql | 3 +++ installer/data/mysql/it-IT/necessari/auth_val.sql | 3 +++ installer/data/mysql/nb-NO/1-Obligatorisk/auth_values.sql | 1 + installer/data/mysql/pl-PL/mandatory/auth_values.sql | 1 + installer/data/mysql/ru-RU/mandatory/auth_values.sql | 1 + installer/data/mysql/uk-UA/mandatory/auth_values.sql | 1 + 9 files changed, 13 insertions(+) create mode 100644 installer/data/mysql/nb-NO/1-Obligatorisk/auth_values.sql create mode 100644 installer/data/mysql/pl-PL/mandatory/auth_values.sql create mode 100644 installer/data/mysql/ru-RU/mandatory/auth_values.sql create mode 100644 installer/data/mysql/uk-UA/mandatory/auth_values.sql hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 14:58:48 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 13:58:48 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1402-g665c5c6 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 665c5c62fa8b61752e65ff9d18487befc38cb647 (commit) from 722d045986b2762a22190bb08569b7a5f5536eae (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 665c5c62fa8b61752e65ff9d18487befc38cb647 Author: Kyle M Hall Date: Wed Aug 24 11:13:48 2016 +0000 Bug 14736 - AllowRenewalIfOtherItemsAvailable slows circulation down in case of a record with many items and many holds If the AllowRenewalIfOtherItemsAvailable sys pref is set to allow, and a borrower has an item checked out that has many items {30+} AND many holds {70+) on it, loading the checkouts table for this borrower takes FOREVER to load. The load time takes forever, because of the factoring that happens to determine if an item is truly available for renewal. This patch swaps the use of GetMemberDetails for GetMember and reorders the subroutine calls to check each items' renewability from fastest to slowest. In a test case, the results of pre patch were: Start of loop: 2016-08-24T11:05:14 End of loop: 2016-08-24T11:05:29 Resulting in 15 seconds being spent in the loop Post patch results were: Start of loop: 2016-08-24T11:08:43 End of loop: 2016-08-24T11:08:48 Resulting in only 5 seconds being spent in the loop! Test Plan: 1) Apply this patch 2) Note there are no changes in functionality for the renewals column of the patron checkouts table. If you wish to go further and test the performance benefit: 1) Create a record with 50 items and 100 holds ( 50 waiting, 50 unfilled ) 2) Check out one of the waiting holds to a patron 3) Time the amount of time it takes for the checkouts table to load 4) Apply this patch 5) Repeat step 3, you should see an improvement in load time Signed-off-by: Jesse Maseto Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:01:10 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:01:10 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1403-ga8f3d8c 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 a8f3d8cfd58f7af9f5b8a13790a1fe320329f33b (commit) from 665c5c62fa8b61752e65ff9d18487befc38cb647 (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 a8f3d8cfd58f7af9f5b8a13790a1fe320329f33b Author: Katrin Fischer Date: Mon Nov 10 20:23:45 2014 +0100 Bug 12359: Add HidePatronName functionality to the holds queue This changes the Holds Queue page to not show the patron's name and phone number, but only the cardnumber, when HidePatronName is set to 'Don't show' This also changes the link to the patron account to use the borrowernumber instead of the cardnumber, which seems more consistent. Fixes a tiny capitalization error: Only item... To test: - Look at the holds queue page with holds displayed - Toggle HidePatronName system preference and observe the change - Make sure the link works correctly Signed-off-by: Katrin Fischer Rebased 2016-10-16 Signed-off-by: Chris Kirby Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:03:00 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:03:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1404-g0109745 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 01097457ee8958386712f450200d816a1fdfaf7c (commit) from a8f3d8cfd58f7af9f5b8a13790a1fe320329f33b (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 01097457ee8958386712f450200d816a1fdfaf7c Author: Tomas Cohen Arazi Date: Wed Nov 16 16:44:44 2016 -0300 Bug 17647: Remove itemtype-related CancelReceipt.t warnings This patch makes t/db_dependent/Acquisition/CancelReceipt.t create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Acquisition/CancelReceipt.t => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Acquisition/CancelReceipt.t => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Acquisition/CancelReceipt.t | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:05:22 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:05:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1405-g4366a0b 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 4366a0b4699c9c16ce63e36fe7e5c3c0317c17e6 (commit) from 01097457ee8958386712f450200d816a1fdfaf7c (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 4366a0b4699c9c16ce63e36fe7e5c3c0317c17e6 Author: Tomas Cohen Arazi Date: Thu Nov 17 12:29:14 2016 -0300 Bug 17653: Remove itemtype-related t/db_dependent/Circulation* warnings This patch makes t/db_dependent/Circulation* create good sample data for its tests. It does so by creating a random itemtype. To test: - Run $ prove t/db_dependent/Circulation* => FAIL: lots of warnings about "item-level_itypes set but no itemtype set for item" - Apply the patch - Run: $ prove t/db_dependent/Circulation* => SUCCESS: Tests are green, and no warnings. - Sign off :-D Sponsored-by: ByWater Solutions Signed-off-by: Tomas Cohen Arazi Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation/CheckIfIssuedToPatron.t | 26 ++++-- t/db_dependent/Circulation/IsItemIssued.t | 14 +-- t/db_dependent/Circulation/transfers.t | 91 ++++++++++++-------- 3 files changed, 80 insertions(+), 51 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:06:27 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:06:27 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1406-gf67adfc 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 f67adfcb11e0465cb2016663e0df7038e5d2c811 (commit) from 4366a0b4699c9c16ce63e36fe7e5c3c0317c17e6 (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 f67adfcb11e0465cb2016663e0df7038e5d2c811 Author: Jonathan Druart Date: Thu Nov 17 16:08:00 2016 +0000 Bug 17654: Add tests to enforce swagger definition files integrity The swagger definition error we found on bug 17651 should have been caught earlier with tests. Now we are testing for nullable columns. QA: Have a look at the FIXME Test plan: Apply without 17651 (revert if already pushed) The tests won't pass On top of 17651 the tests will pass Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/api/v1/swagger/definitions.t | 57 ++++++++++++++++++++++----- 1 file changed, 47 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:08:20 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:08:20 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1407-g66bb0a2 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 66bb0a2e3323f17d19a803297d1b9667f9392a4d (commit) from f67adfcb11e0465cb2016663e0df7038e5d2c811 (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 66bb0a2e3323f17d19a803297d1b9667f9392a4d Author: Jonathan Druart Date: Fri Nov 18 08:23:16 2016 +0000 Bug 17657: Fix locations of item types images Koha::ItemType->image_location takes the interface in parameter or default to OPAC. From the item types admin page, we need to specify the intranet interface to retrieve the correct image's url Test plan: Go on the item types admin page, see the source of the page and find the image' urls. => Without this patch, they point to the OPAC => With this patch, the location is correct Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:09:43 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:09:43 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1408-g474a369 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 474a369fc03f992971c8af11c910f778e34ac9b9 (commit) from 66bb0a2e3323f17d19a803297d1b9667f9392a4d (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 474a369fc03f992971c8af11c910f778e34ac9b9 Author: Jonathan Druart Date: Thu Oct 27 14:15:57 2016 +0000 Bug 17513: Create GRANT for user at localhost in koha-create See the bug description for the details. Test plan: Use this script to create a new koha installation, using MariaDB You should not display "user koha_kohadev doesn't have enough privilege on database koha_kohadev " Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Confirm that this still works (with MySQL). Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: debian/scripts/koha-create | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:16:13 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:16:13 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1409-g847da48 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 847da48cfbbbe5f9573f715d9c32669627e34eaf (commit) from 474a369fc03f992971c8af11c910f778e34ac9b9 (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 847da48cfbbbe5f9573f715d9c32669627e34eaf Author: Owen Leonard Date: Fri Nov 4 09:34:12 2016 -0400 Bug 17545 [Revised] Make "Add biblio" not hidden by language chooser This alternate patch changes the menu direction so that it "drops" up instead of down. This avoids the problem of overlapping or being hidden by the language chooser. The disadvantage of this patch is that it is not global. However, I think it's a better long-term solution to the problem. To test, apply the patch and follow the issue description: - Make sure more than one language is active for the staff client, so that the language chooser bar shows at the bottom of each page - Do one or more Z39.50 searches, to make sure you have some records in the reservoir - Go to "Cataloging" and do a "Catalog search", so that the reservoir is searched. Make sure your search is broad enough that some results from the reservoir is shown "below the fold" - Scroll to the last result and click on the "Actions" menu The direction of the menu should be up instead of down. Signed-off-by: Magnus Enger Popup menus on the cataloging search page now pop up instead of down, which means they avoid being hidden by the language chooser. Mission accimplished! Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:16:41 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:16:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1410-gb4d94a5 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 b4d94a5ea4a3d9dac4295c53497cbb25e1b1212b (commit) from 847da48cfbbbe5f9573f715d9c32669627e34eaf (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 b4d94a5ea4a3d9dac4295c53497cbb25e1b1212b Author: Nick Clemens Date: Tue Nov 8 17:26:36 2016 +0000 Bug 17590 - Exporting reports as CSV with 'delimiter' SysPref set to 'tabulation' creates files with 't' as separator To test: Set 'delimiter' system preference to 'tabs' Export a report as csv Open the file in text editor and note fields separated by character 't' Apply patch Export report as CSV Open file in text editor and note tabs are used to separate fields Signed-off-by: Bernardo Gonzalez Kriegel tabs now, no errors. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: reports/guided_reports.pl | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:17:24 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:17:24 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1411-g6229a52 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 6229a5211c3c5a9ef3521ced354a1563f1ebf73b (commit) from b4d94a5ea4a3d9dac4295c53497cbb25e1b1212b (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 6229a5211c3c5a9ef3521ced354a1563f1ebf73b Author: Kyle M Hall Date: Thu Nov 10 10:47:25 2016 +0000 Bug 17601 - Regression: Incomplete CSS update introduced by Bug 14610 Bug 14610 revised staff-global.css so that the "holdcount" class was renamed "number_box." That's good. It's good to have something more generic since the class is used in multiple places. The problem is that there are still several instances of the "holdcount" class in the templates which should have been updated at the same time to say "number_box." Those instances are now unstyled. Test Plan: 1) Apply this patch 2) Check that the holds count on catalogue/detail.pl is styled 3) Check that the patron modifications count on members/member.pl is styled 4) Check that the pending comments count on tools/tools-home.pl is styled 5) Check that the pending tags count on tools/tools-home.pl is styled Signed-off-by: Chris Kirby Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:17:55 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:17:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1412-g317c377 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 317c377a32a36312f69790fdc66ad986a9cd3366 (commit) from 6229a5211c3c5a9ef3521ced354a1563f1ebf73b (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 317c377a32a36312f69790fdc66ad986a9cd3366 Author: Owen Leonard Date: Wed Nov 16 08:22:08 2016 -0500 Bug 17645 - Remove obsolete interface customization images This patch removes three files which are obsolete following the removal of the OPAC prog template. To test, apply the patch and confirm that these files no longer exist in misc/interface_customization: - koha3-opac-button-background.png - koha3-opac-button-background.psd - koha3-opac-button-background.svg Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../koha3-opac-button-background.png | Bin 29387 -> 0 bytes .../koha3-opac-button-background.psd | Bin 39476 -> 0 bytes .../koha3-opac-button-background.svg | 120 -------------------- 3 files changed, 120 deletions(-) delete mode 100644 misc/interface_customization/koha3-opac-button-background.png delete mode 100644 misc/interface_customization/koha3-opac-button-background.psd delete mode 100644 misc/interface_customization/koha3-opac-button-background.svg hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 15:18:29 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 14:18:29 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1413-gfcb11e2 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 fcb11e296eeec6501dea5efbbf35ed52db4fd285 (commit) from 317c377a32a36312f69790fdc66ad986a9cd3366 (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 fcb11e296eeec6501dea5efbbf35ed52db4fd285 Author: Radek ?iman Date: Thu Nov 3 14:45:43 2016 +0100 Bug 17559: Fixed HTML element ID of B_streetnumber There is a duplicate ID in HTML code, because of this: Test plan: 1) Edit a patron and look into its HTML code 2) Find input: name="B_streetnumber" 3) Its ID is B_address - a duplicate within the code in fact 4) Apply the patch 5) Repeat steps 1 and 2 6) The ID is unique now: B_streetnumber Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/includes/member-alt-address-style-de.inc | 2 +- .../intranet-tmpl/prog/en/includes/member-alt-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 Fri Nov 18 16:54:26 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 15:54:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1421-gca81da7 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 ca81da74c4c3a20c1b9c6d68155f4077d3602aee (commit) via 5f4337a765c34fd736abfda2faddcdb11367f642 (commit) via a16a75018063477cf13fdbdad60152bbb27a7616 (commit) via 6585bfc28480d969eeff2289208f775d920ff19c (commit) via 4692cb4c2757a9e2dbc9d9e2d1daeb692f3e5c80 (commit) via c45b26aea2bcd92dfb2353e5b55480169fa3b457 (commit) via 864aa5805dfb68dde762796d6cacd2f7959d15c5 (commit) via 3b921db2226a9014c51c14c93d2bb6b3215f7052 (commit) from fcb11e296eeec6501dea5efbbf35ed52db4fd285 (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 ca81da74c4c3a20c1b9c6d68155f4077d3602aee Author: Marcel de Rooy Date: Fri Nov 18 08:37:07 2016 +0100 Bug 17642: [QA Follow-up] Issues_stats.pl is not plack safe Resolve: Variable "$ccodes" is not available at reports/issues_stats.pl line 358. Variable "$locations" is not available at reports/issues_stats.pl line 359. Variable "$ccodes" is not available at reports/issues_stats.pl line 358. Variable "$locations" is not available at reports/issues_stats.pl line 359. Test plan: Run the script. Choose Collection or Shelving Location. Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 5f4337a765c34fd736abfda2faddcdb11367f642 Author: Jonathan Druart Date: Thu Nov 17 11:23:57 2016 +0000 Bug 17642: Do not explode if no authorised value exist Can't call method "lib" on an undefined value at /home/vagrant/kohaclone/Koha/AuthorisedValues.pm line 137. Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit a16a75018063477cf13fdbdad60152bbb27a7616 Author: Jonathan Druart Date: Wed Nov 16 17:46:34 2016 +0100 Bug 17642: Add and use get_descriptions_by_koha_field Ok I am silly, we needed to replace to use the cache mechanism for search_by_koha_field, not find_by_koha_field... Let's create another subroutine Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 6585bfc28480d969eeff2289208f775d920ff19c Author: Jonathan Druart Date: Wed Nov 16 17:29:07 2016 +0100 Bug 17642: use get_description_by_koha_field when needed Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 4692cb4c2757a9e2dbc9d9e2d1daeb692f3e5c80 Author: Jonathan Druart Date: Wed Nov 16 17:23:23 2016 +0100 Bug 17642: Add get_description_by_koha_field Most of the time we just need the descriptions (lib or opac_description), so let's add a new method for that and cache the descriptions in L1. Ideally we should cache it in L2 as well, but the AV code is not robust enough to allow that Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit c45b26aea2bcd92dfb2353e5b55480169fa3b457 Author: Jonathan Druart Date: Wed Nov 16 16:37:16 2016 +0100 Bug 17642: use find_by_koha_field when needed Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 864aa5805dfb68dde762796d6cacd2f7959d15c5 Author: Jonathan Druart Date: Wed Nov 16 15:08:59 2016 +0000 Bug 17642: Add find_by_koha_field When we call search_by_koha_field with an authorised_value, we actually expect only 1 value Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 3b921db2226a9014c51c14c93d2bb6b3215f7052 Author: Jonathan Druart Date: Wed Nov 16 10:49:03 2016 +0000 Bug 17642: Try to fix AV code Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 20 ++++---- C4/Search.pm | 2 +- C4/XSLT.pm | 4 +- Koha/AuthorisedValues.pm | 63 ++++++++++++++++++++++++- acqui/orderreceive.pl | 22 ++++----- basket/basket.pl | 2 +- catalogue/detail.pl | 6 +-- catalogue/getitem-ajax.pl | 22 ++++----- catalogue/moredetail.pl | 4 +- circ/circulation.pl | 4 +- circ/returns.pl | 6 +-- opac/opac-basket.pl | 4 +- opac/opac-detail.pl | 6 +-- reports/catalogue_stats.pl | 8 ++-- reports/issues_stats.pl | 4 +- reports/reserves_stats.pl | 8 ++-- t/db_dependent/AuthorisedValues.t | 91 +++++++++++++++++++++++++++++++++++-- 17 files changed, 209 insertions(+), 67 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Nov 18 16:56:50 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 18 Nov 2016 15:56:50 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1422-gccdd661 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 ccdd661851dfb2008b536903514eac3027651495 (commit) from ca81da74c4c3a20c1b9c6d68155f4077d3602aee (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 ccdd661851dfb2008b536903514eac3027651495 Author: Katrin Fischer Date: Mon Nov 7 23:03:33 2016 +0100 Bug 17543: Update German web installer sample files for 16.11 Updates sample files with German translations: - Sample notices for article requests To test: - Make sure the German web installer installs all sample files correctly. - Bonus: check German translations. Signed-off-by: Bernardo Gonzalez Kriegel Tested german installer/translation No errors Signed-off-by: Jonathan Druart Amended patch: - Authorised value HSBND_FREQ is done by bug 17576 (and correctly translated in German) Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/de-DE/mandatory/sample_notices.sql | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 21 17:30:40 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 21 Nov 2016 16:30:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1423-g88e0264 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 88e0264413b1dc9ecf5dbe562636f40c7e0555d1 (commit) from ccdd661851dfb2008b536903514eac3027651495 (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 88e0264413b1dc9ecf5dbe562636f40c7e0555d1 Author: Lari Taskula Date: Mon Oct 10 17:06:07 2016 +0300 Bug 17419: Fix smsalertnumber and mobile confusion in moremember.pl members/moremember.pl will set mobile number as smsalertnumber in template if smsalertnumber is not defined. This will cause incorrect display for SMS number in patron's Details-tab. This confusion between smsalertnumber and mobile is already fixed in Bug 14683, but members/moremember.pl was not fixed yet. This is a minor issue since it won't occur for manually added new patrons due to fixes already pushed in Bug 14683, but in case patron's smsalertnumber is null in database, this bug can be replicated: To test: 1. Set EnhancedMessagingPreferences to "Allow" and make sure SMSSendDriver has been set. 2. Add a new patron, give it a mobile/other phone number. 3. Run a SQL query: update koha.borrowers set smsalertnumber=NULL where borrowernumber=XXX; (replace XXX with your new patron's borrowernumber) 4. Go to patron's details tab and observe that SMS number shows the mobile/ other phone you provided earlier. 5. Apply patch. 6. Refresh patron's details tab. 7. Observe that smsalertnumber is now empty, as it should be. Followed test plan, works as expected. Signed-off-by: Marc Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: members/moremember.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 21 17:31:45 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 21 Nov 2016 16:31:45 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1424-ga0416ff 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 a0416ff132469e6816554136707e398f114ab13e (commit) from 88e0264413b1dc9ecf5dbe562636f40c7e0555d1 (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 a0416ff132469e6816554136707e398f114ab13e Author: Jonathan Druart Date: Fri Nov 18 15:26:17 2016 +0000 Bug 17660: #adv is considered as an ad by adblock So let's rename it! Test plan: Edit a $t in any framework, you should be able to unfold the "Advanced constraints" part Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/admin/marc_subfields_structure.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 21 17:37:22 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 21 Nov 2016 16:37:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1426-gd9be995 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 d9be9950b3d59f43d997ca9ead5860fba0274fe0 (commit) via 9ca72539de083c9a62f16b2f114b9111a0f06636 (commit) from a0416ff132469e6816554136707e398f114ab13e (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 d9be9950b3d59f43d997ca9ead5860fba0274fe0 Author: Kyle M Hall Date: Mon Nov 21 16:34:46 2016 +0000 Bug 17663 - DBRev 16.06.00.048 Signed-off-by: Kyle M Hall commit 9ca72539de083c9a62f16b2f114b9111a0f06636 Author: Marcel de Rooy Date: Sun Nov 20 16:35:53 2016 +0100 Bug 17663: Forgotten userpermissions from bug 14686 Bug 14686 added in a dbrev: (13, 'upload_general_files', 'Upload any file'), (13, 'upload_manage', 'Manage uploaded files'); But these were not added in userpermissions.sql somehow :) So, what now? This patch: [1] adds them to userpermissions.sql as should have been done, [2] adds a dbrev to add them for newer installs that did not run the 14686 dbrev. Test plan: [1] Run this sql statement: DELETE FROM permissions WHERE code = 'upload_general_files' OR code = 'upload_manage' [2] Run the db rev. [3] Check if you see Tools/Upload (with sufficient perms). Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 27 +++++++++++++++++++++++++++ installer/data/mysql/userpermissions.sql | 2 ++ 3 files changed, 30 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 22 12:37:29 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 22 Nov 2016 11:37:29 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1427-gd91e759 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 d91e75919a234ffeae27acf164055db69aa714ab (commit) from d9be9950b3d59f43d997ca9ead5860fba0274fe0 (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 d91e75919a234ffeae27acf164055db69aa714ab Author: Kyle M Hall Date: Mon Aug 15 18:12:44 2016 +0000 Bug 17132 - Availability search broken when using Elastic Elastic appears to be indexing onloan as a string, but our code assumes it is a boolean. Test Plan: 1) Ensure you are set up using Elastic as your search engine 2) Search only for available items from the advanced search 3) Note you get no results 4) Apply this patch 5) Re-run the search 6) You should now get results! Signed-off-by: Jennifer Schmidt Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 22 12:40:18 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 22 Nov 2016 11:40:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1430-g65af390 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 65af3904c5b1359a298c4ed0024a6e258ac8e342 (commit) via 50537e6a00b04bd9a6137b7e20d69104fc008f7a (commit) via 4cd462117a1f16f048265fb73f7890482576a035 (commit) from d91e75919a234ffeae27acf164055db69aa714ab (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 65af3904c5b1359a298c4ed0024a6e258ac8e342 Author: Nick Clemens Date: Tue Nov 22 10:45:56 2016 +0000 Bug 17626 (QA followup) Fix SAX parser error pointing to INSTALL docs Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 50537e6a00b04bd9a6137b7e20d69104fc008f7a Author: Jonathan Druart Date: Tue Nov 15 08:55:04 2016 +0000 Bug 17626: Remove existing install instructions and link to the wiki pages instead Since we are pretty bad to maintain INSTALL files, I'd suggest to point to the wiki. Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 4cd462117a1f16f048265fb73f7890482576a035 Author: Jonathan Druart Date: Tue Nov 15 08:54:45 2016 +0000 Bug 17626: Remove INSTALL.distri files Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: INSTALL | 161 +----- INSTALL.debian | 396 ------------- INSTALL.fedora7 | 1267 ------------------------------------------ INSTALL.opensuse | 1375 ---------------------------------------------- INSTALL.ubuntu | 699 ----------------------- misc/sax_parser_print.pl | 2 +- 6 files changed, 7 insertions(+), 3893 deletions(-) delete mode 100644 INSTALL.debian delete mode 100644 INSTALL.fedora7 delete mode 100644 INSTALL.opensuse delete mode 100644 INSTALL.ubuntu hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 22 12:42:19 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 22 Nov 2016 11:42:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1431-g153e07f 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 153e07fe5e9956e2024a261dee793cc34ed1351c (commit) from 65af3904c5b1359a298c4ed0024a6e258ac8e342 (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 153e07fe5e9956e2024a261dee793cc34ed1351c Author: Lari Taskula Date: Tue Aug 9 14:42:15 2016 +0300 Bug 17086: Reword borrowers to patrons in Swagger tags for holds Routes for holds have tags called "borrowers". We should use "patrons" instead in order not to have both (endpoints for patrons already add "patrons"). This patch changes the tags from borrowers to patrons in: GET /holds POST /holds Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: api/v1/swagger/paths/holds.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 22 12:43:43 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 22 Nov 2016 11:43:43 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1433-g37afb94 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 37afb9439106fa76139dd9af1bb3d139f390445d (commit) via 575b3519b30ad6fd3efa5bcd151a307ee8e8fb86 (commit) from 153e07fe5e9956e2024a261dee793cc34ed1351c (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 37afb9439106fa76139dd9af1bb3d139f390445d Author: Hector Castro Date: Mon Nov 14 15:20:22 2016 -0600 Bug 17616: (follow-up)Select tag on elasticsearch mappings page is not closed properly Also some close tag should be Follow previous patch to test Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 575b3519b30ad6fd3efa5bcd151a307ee8e8fb86 Author: Josef Moravec Date: Fri Nov 11 16:48:15 2016 +0000 Bug 17616: Select tag on elasticsearch mappings page is not closed properly Test plan 1) Have SearchEngine syspref set to Elastic 2) Look at source on admin/searchengine/elasticsearch/mappings.pl -> without patch you'll see select with attribute data-id="mapping_search_field_name" closing tag written badly as "/select>" -> with patch everything looks OK Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../en/modules/admin/searchengine/elasticsearch/mappings.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 22 12:50:54 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 22 Nov 2016 11:50:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1438-g141538f 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 141538fb517613e7cb913c6648f2434b49909141 (commit) via 0a84274f6bfa3ea6e4c37367da7a449d98ce8aca (commit) via 49f8e05b20bd10e017877b996254c47cd2444385 (commit) via d785cd5b0a025dd2670c7259fd20038f450ab1ef (commit) via 15e57368bba86844d103fa46cd3a47438565c56e (commit) from 37afb9439106fa76139dd9af1bb3d139f390445d (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 141538fb517613e7cb913c6648f2434b49909141 Author: Kyle M Hall Date: Tue Nov 22 11:38:26 2016 +0000 Bug 17391 - DBRev 16.06.00.049 Signed-off-by: Kyle M Hall commit 0a84274f6bfa3ea6e4c37367da7a449d98ce8aca Author: Nick Clemens Date: Tue Nov 22 11:05:19 2016 +0000 Bug 17391 (QA Followup) use INSERT INGORE in atomicupdate Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 49f8e05b20bd10e017877b996254c47cd2444385 Author: Jonathan Druart Date: Thu Nov 17 09:01:19 2016 +0000 Bug 17391: Fix number of values in sysprefs.sql Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit d785cd5b0a025dd2670c7259fd20038f450ab1ef Author: Jonathan Druart Date: Thu Nov 17 08:58:55 2016 +0000 Bug 17391: Add atomic update file Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 15e57368bba86844d103fa46cd3a47438565c56e Author: Katrin Fischer Date: Sun Oct 16 14:20:42 2016 +0200 Bug 17391: Add missing prefs to sysprefs.sql Adds - ReturnpathDefault - ReplytoDefault to the sysprefs.sql file. To test: - Run the web installer in any language - Check all preferences are installed without error - Check prefs listed above now exsit in your systempreferences table Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/sysprefs.sql | 2 ++ installer/data/mysql/updatedatabase.pl | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 22 19:01:41 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 22 Nov 2016 18:01:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.05.00-1450-g7636c68 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 7636c68d769a1c2e62ced6aa9f2fbe12adf22c8d (commit) via b674d48023d811d4c7fbc6c40d9bebe1de739f59 (commit) via 2f5237c167efb210f96b886398d3da2a67b03c71 (commit) via 312783f8fcc6dc6be892b2a7ce641ef443de5e0c (commit) via 88b4baceeee7cb820a3aa08f319e4f8ed7e98072 (commit) via 0fee84690ebf2998a43a956abca275f1c90025fa (commit) via a83600fe204f83e6d76310ed3f0eb16a6859dd83 (commit) via b19bd975569b5e65c57fe2d85f8ad0329c5053f2 (commit) via 5cc7c17c6444aeef00dd39acdf55c87a23b3e5e9 (commit) via d4383c6bdc6c57ad5735913eb8dad115e90cf143 (commit) via fcaea08cc0797f8705a103da593f2067fd9cc4d1 (commit) via d3f93aaac280fb041c4b45a2662d4965f706a637 (commit) from 141538fb517613e7cb913c6648f2434b49909141 (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 7636c68d769a1c2e62ced6aa9f2fbe12adf22c8d Author: Kyle M Hall Date: Tue Nov 22 12:14:00 2016 +0000 DBRev 16.11.00.000 Signed-off-by: Kyle M Hall commit b674d48023d811d4c7fbc6c40d9bebe1de739f59 Merge: 2f5237c d3f93aa Author: Kyle M Hall Date: Tue Nov 22 17:45:56 2016 +0000 Merge remote-tracking branch 'translations/16.11.0-translate' into HEAD Signed-off-by: Kyle M Hall commit 2f5237c167efb210f96b886398d3da2a67b03c71 Author: Kyle M Hall Date: Tue Nov 22 11:58:05 2016 +0000 Add release notes for the 16.11.00 release Signed-off-by: Kyle M Hall commit 312783f8fcc6dc6be892b2a7ce641ef443de5e0c Author: Kyle M Hall Date: Tue Nov 22 13:49:59 2016 +0000 Bug 8835 - DBRev 16.06.00.050 commit 88b4baceeee7cb820a3aa08f319e4f8ed7e98072 Author: Marcel de Rooy Date: Thu Oct 13 10:49:17 2016 +0200 Bug 8835: New db rev for issn_idx This db rev reapplies dbrev 3.15.00.049 in case that one failed due to existence of issn_idx. Test plan: If you do not have index issn_idx, recreate it: ALTER TABLE biblioitems ADD INDEX issn_idx (issn (255)) Run this db rev. You should see: Removed issn_idx. Rerun the dbrev. You should see: Everything is fine. Signed-off-by: Nicolas Legrand Signed-off-by: Jonathan Druart commit 0fee84690ebf2998a43a956abca275f1c90025fa Author: Marcel de Rooy Date: Wed Oct 12 15:29:01 2016 +0200 Bug 8835: Drop issn_idx for completeness When dbrev 3.15.00.049 failed, the still existing issn_idx must have been the cause. This patch only adjusts the old db rev. Still thinking if we also need a new db rev to fix isbn and issn for those installs where 3.15.00.049 failed too. (In that case the fields may not have been changed to mediumtext and no indexes were added.) Test plan: Ideally, run an upgrade from something older than 3.15.00.49. But running the added sql command from the command line might convince you too. Signed-off-by: Nicolas Legrand Signed-off-by: Jonathan Druart commit a83600fe204f83e6d76310ed3f0eb16a6859dd83 Author: Jonathan Druart Date: Tue Nov 22 07:33:50 2016 +0000 Bug 17278: Fix test compilation errors Signed-off-by: Kyle M Hall commit b19bd975569b5e65c57fe2d85f8ad0329c5053f2 Author: Jonathan Druart Date: Mon Oct 3 12:27:21 2016 +0100 Bug 17278: Fix "show all items" link Then we need to remove the "available" part from the query. They are really awkward patches... Signed-off-by: Josef Moravec Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall commit 5cc7c17c6444aeef00dd39acdf55c87a23b3e5e9 Author: Jonathan Druart Date: Mon Oct 3 10:45:13 2016 +0100 Bug 17278: Use available limit when requesting zebra when ccl query is used When a ccl query is used, the buildQuery subroutine does not handle the available limit (not an index). This available limit is handle later in the subroutine. This affect the author links on the detail page for instance (an=xx). A much better solution would be to keep an 'available' zebra index up-to-date. Test plan: (OPAC or staff interface, it does not matter) - Launch a search, click on a result and then on an author link to launch another query (an:xx) - Limit to available items without the 'facet' => Without this patch you won't get any results => With this patch applied you should get relevant result (regarding the known bugs 16970, 13715, 13658, 5463, etc.) Signed-off-by: Josef Moravec Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall commit d4383c6bdc6c57ad5735913eb8dad115e90cf143 Author: Hector Castro Date: Wed Nov 16 10:05:09 2016 -0600 Bug 17609: Small typo in about.tt Small typo whould => should To avoid any misunderstanding you should not export the memcached config from ENV in line 79 Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit fcaea08cc0797f8705a103da593f2067fd9cc4d1 Author: Hector Castro Date: Thu Nov 10 11:26:45 2016 -0600 Bug 17609: Tiny typo in ElasticSearch mappings (mappings.tt) Typo found when translating in: intranet-tmpl/prog/en/modules/admin/searchengine/elasticsearch/mappings.tt:74 An error occurred when updateing mappings => updateing Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit d3f93aaac280fb041c4b45a2662d4965f706a637 Author: Bernardo Gonzalez Kriegel Date: Sun Nov 20 17:34:19 2016 -0300 Translations update for 16.11.0 ----------------------------------------------------------------------- Summary of changes: C4/Search.pm | 13 +- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 31 + koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 2 +- .../admin/searchengine/elasticsearch/mappings.tt | 2 +- misc/release_notes/release_notes_16_11_00.md | 1378 + misc/translator/po/am-Ethi-marc-MARC21.po | 5569 +- misc/translator/po/am-Ethi-marc-NORMARC.po | 218 +- misc/translator/po/am-Ethi-marc-UNIMARC.po | 456 +- misc/translator/po/am-Ethi-opac-bootstrap.po | 3235 +- misc/translator/po/am-Ethi-pref.po |62158 +++++++- misc/translator/po/am-Ethi-staff-help.po | 139 +- misc/translator/po/am-Ethi-staff-prog.po |20916 +-- misc/translator/po/ar-Arab-marc-MARC21.po | 5585 +- misc/translator/po/ar-Arab-marc-NORMARC.po | 224 +- misc/translator/po/ar-Arab-marc-UNIMARC.po | 468 +- misc/translator/po/ar-Arab-opac-bootstrap.po | 3674 +- misc/translator/po/ar-Arab-pref.po |24338 ++- misc/translator/po/ar-Arab-staff-help.po | 237 +- misc/translator/po/ar-Arab-staff-prog.po |22675 +-- .../po/{ia-marc-MARC21.po => as-IN-marc-MARC21.po} | 5697 +- ...iu-CA-marc-NORMARC.po => as-IN-marc-NORMARC.po} | 220 +- ...iq-CA-marc-UNIMARC.po => as-IN-marc-UNIMARC.po} | 454 +- ...B-opac-bootstrap.po => as-IN-opac-bootstrap.po} | 3215 +- misc/translator/po/as-IN-pref.po |59330 +++++++ .../po/{eo-staff-help.po => as-IN-staff-help.po} | 139 +- .../{cy-GB-staff-prog.po => as-IN-staff-prog.po} |20855 +-- misc/translator/po/az-AZ-marc-MARC21.po | 5573 +- misc/translator/po/az-AZ-marc-NORMARC.po | 218 +- misc/translator/po/az-AZ-marc-UNIMARC.po | 456 +- misc/translator/po/az-AZ-opac-bootstrap.po | 3263 +- misc/translator/po/az-AZ-pref.po |24258 ++- misc/translator/po/az-AZ-staff-help.po | 141 +- misc/translator/po/az-AZ-staff-prog.po |21001 +-- misc/translator/po/be-BY-marc-MARC21.po | 5573 +- misc/translator/po/be-BY-marc-NORMARC.po | 218 +- misc/translator/po/be-BY-marc-UNIMARC.po | 457 +- misc/translator/po/be-BY-opac-bootstrap.po | 3315 +- misc/translator/po/be-BY-pref.po |156862 ++++++++++++++++++- misc/translator/po/be-BY-staff-help.po | 140 +- misc/translator/po/be-BY-staff-prog.po |21058 +-- misc/translator/po/bg-Cyrl-marc-MARC21.po | 5569 +- misc/translator/po/bg-Cyrl-marc-NORMARC.po | 218 +- misc/translator/po/bg-Cyrl-marc-UNIMARC.po | 456 +- misc/translator/po/bg-Cyrl-opac-bootstrap.po | 3230 +- misc/translator/po/bg-Cyrl-pref.po |149396 +++++++++++++++++- misc/translator/po/bg-Cyrl-staff-help.po | 139 +- misc/translator/po/bg-Cyrl-staff-prog.po |20895 +-- misc/translator/po/bn-IN-marc-MARC21.po | 5569 +- misc/translator/po/bn-IN-marc-NORMARC.po | 218 +- misc/translator/po/bn-IN-marc-UNIMARC.po | 452 +- misc/translator/po/bn-IN-opac-bootstrap.po | 3219 +- misc/translator/po/bn-IN-pref.po |26794 +++- misc/translator/po/bn-IN-staff-help.po | 139 +- misc/translator/po/bn-IN-staff-prog.po |20890 +-- misc/translator/po/ca-ES-marc-MARC21.po | 5573 +- misc/translator/po/ca-ES-marc-NORMARC.po | 218 +- misc/translator/po/ca-ES-marc-UNIMARC.po | 456 +- misc/translator/po/ca-ES-opac-bootstrap.po | 3652 +- misc/translator/po/ca-ES-pref.po |125392 ++++++++++++++- misc/translator/po/ca-ES-staff-help.po | 139 +- misc/translator/po/ca-ES-staff-prog.po |21006 +-- misc/translator/po/cs-CZ-marc-MARC21.po | 5519 +- misc/translator/po/cs-CZ-marc-NORMARC.po | 218 +- misc/translator/po/cs-CZ-marc-UNIMARC.po | 462 +- misc/translator/po/cs-CZ-opac-bootstrap.po | 3508 +- misc/translator/po/cs-CZ-pref.po |49328 +++++- misc/translator/po/cs-CZ-staff-help.po | 267 +- misc/translator/po/cs-CZ-staff-prog.po |21444 +-- misc/translator/po/cy-GB-marc-MARC21.po | 5569 +- misc/translator/po/cy-GB-marc-NORMARC.po | 218 +- misc/translator/po/cy-GB-marc-UNIMARC.po | 452 +- misc/translator/po/cy-GB-opac-bootstrap.po | 3215 +- misc/translator/po/cy-GB-pref.po |44752 +++++- misc/translator/po/cy-GB-staff-help.po | 139 +- misc/translator/po/cy-GB-staff-prog.po |20855 +-- misc/translator/po/da-DK-marc-MARC21.po | 5553 +- misc/translator/po/da-DK-marc-NORMARC.po | 218 +- misc/translator/po/da-DK-marc-UNIMARC.po | 456 +- misc/translator/po/da-DK-opac-bootstrap.po | 3430 +- misc/translator/po/da-DK-pref.po |41526 ++++- misc/translator/po/da-DK-staff-help.po | 143 +- misc/translator/po/da-DK-staff-prog.po |21084 +-- misc/translator/po/de-CH-marc-MARC21.po | 5547 +- misc/translator/po/de-CH-marc-NORMARC.po | 218 +- misc/translator/po/de-CH-marc-UNIMARC.po | 494 +- misc/translator/po/de-CH-opac-bootstrap.po | 3461 +- misc/translator/po/de-CH-pref.po |74122 ++++++++- misc/translator/po/de-CH-staff-help.po | 297 +- misc/translator/po/de-CH-staff-prog.po |21698 +-- misc/translator/po/de-DE-marc-MARC21.po | 5605 +- misc/translator/po/de-DE-marc-NORMARC.po | 222 +- misc/translator/po/de-DE-marc-UNIMARC.po | 468 +- misc/translator/po/de-DE-opac-bootstrap.po | 3444 +- misc/translator/po/de-DE-pref.po |114842 +++++++++++++- misc/translator/po/de-DE-staff-help.po | 289 +- misc/translator/po/de-DE-staff-prog.po |21686 +-- misc/translator/po/el-GR-marc-MARC21.po | 8225 +- misc/translator/po/el-GR-marc-NORMARC.po | 218 +- misc/translator/po/el-GR-marc-UNIMARC.po | 510 +- misc/translator/po/el-GR-opac-bootstrap.po | 3914 +- misc/translator/po/el-GR-pref.po | 9227 +- misc/translator/po/el-GR-staff-help.po | 6058 +- misc/translator/po/el-GR-staff-prog.po |32447 ++-- misc/translator/po/en-GB-marc-MARC21.po | 5573 +- misc/translator/po/en-GB-marc-NORMARC.po | 218 +- misc/translator/po/en-GB-marc-UNIMARC.po | 456 +- misc/translator/po/en-GB-opac-bootstrap.po | 3505 +- misc/translator/po/en-GB-pref.po |95954 +++++++++++- misc/translator/po/en-GB-staff-help.po | 143 +- misc/translator/po/en-GB-staff-prog.po |21011 +-- misc/translator/po/en-NZ-marc-MARC21.po | 5517 +- misc/translator/po/en-NZ-marc-NORMARC.po | 218 +- misc/translator/po/en-NZ-marc-UNIMARC.po | 456 +- misc/translator/po/en-NZ-opac-bootstrap.po | 3315 +- misc/translator/po/en-NZ-pref.po | 3484 +- misc/translator/po/en-NZ-staff-help.po | 143 +- misc/translator/po/en-NZ-staff-prog.po |21217 +-- misc/translator/po/eo-marc-MARC21.po | 5569 +- misc/translator/po/eo-marc-NORMARC.po | 218 +- misc/translator/po/eo-marc-UNIMARC.po | 452 +- misc/translator/po/eo-opac-bootstrap.po | 3611 +- misc/translator/po/eo-pref.po |94658 +++++++++++- misc/translator/po/eo-staff-help.po | 139 +- misc/translator/po/eo-staff-prog.po |20875 +-- misc/translator/po/es-ES-marc-MARC21.po | 5675 +- misc/translator/po/es-ES-marc-NORMARC.po | 220 +- misc/translator/po/es-ES-marc-UNIMARC.po | 488 +- misc/translator/po/es-ES-opac-bootstrap.po | 3475 +- misc/translator/po/es-ES-pref.po | 7433 +- misc/translator/po/es-ES-staff-help.po | 611 +- misc/translator/po/es-ES-staff-prog.po |21726 +-- misc/translator/po/eu-marc-MARC21.po | 5571 +- misc/translator/po/eu-marc-NORMARC.po | 218 +- misc/translator/po/eu-marc-UNIMARC.po | 456 +- misc/translator/po/eu-opac-bootstrap.po | 3274 +- misc/translator/po/eu-pref.po |135008 +++++++++++++++- misc/translator/po/eu-staff-help.po | 139 +- misc/translator/po/eu-staff-prog.po |20930 +-- misc/translator/po/fa-Arab-marc-MARC21.po | 5573 +- misc/translator/po/fa-Arab-marc-NORMARC.po | 218 +- misc/translator/po/fa-Arab-marc-UNIMARC.po | 456 +- misc/translator/po/fa-Arab-opac-bootstrap.po | 3285 +- misc/translator/po/fa-Arab-pref.po |53314 ++++++- misc/translator/po/fa-Arab-staff-help.po | 141 +- misc/translator/po/fa-Arab-staff-prog.po |21034 +-- misc/translator/po/fi-FI-marc-MARC21.po | 5693 +- misc/translator/po/fi-FI-marc-NORMARC.po | 230 +- misc/translator/po/fi-FI-marc-UNIMARC.po | 470 +- misc/translator/po/fi-FI-opac-bootstrap.po | 4533 +- misc/translator/po/fi-FI-pref.po |139958 ++++++++++++++++- misc/translator/po/fi-FI-staff-help.po | 4666 +- misc/translator/po/fi-FI-staff-prog.po |25588 ++-- misc/translator/po/fo-FO-marc-MARC21.po | 5569 +- misc/translator/po/fo-FO-marc-NORMARC.po | 218 +- misc/translator/po/fo-FO-marc-UNIMARC.po | 452 +- misc/translator/po/fo-FO-opac-bootstrap.po | 3233 +- misc/translator/po/fo-FO-pref.po |67678 +++++++- misc/translator/po/fo-FO-staff-help.po | 139 +- misc/translator/po/fo-FO-staff-prog.po |20871 +-- misc/translator/po/fr-CA-marc-MARC21.po | 5540 +- misc/translator/po/fr-CA-marc-NORMARC.po | 218 +- misc/translator/po/fr-CA-marc-UNIMARC.po | 462 +- misc/translator/po/fr-CA-opac-bootstrap.po | 3690 +- misc/translator/po/fr-CA-pref.po |132110 +++++++++++++++- misc/translator/po/fr-CA-staff-help.po | 350 +- misc/translator/po/fr-CA-staff-prog.po |23918 +-- misc/translator/po/fr-FR-marc-MARC21.po | 5842 +- misc/translator/po/fr-FR-marc-NORMARC.po | 288 +- misc/translator/po/fr-FR-marc-UNIMARC.po | 490 +- misc/translator/po/fr-FR-opac-bootstrap.po | 3538 +- misc/translator/po/fr-FR-pref.po |143848 ++++++++++++++++- misc/translator/po/fr-FR-staff-help.po | 1707 +- misc/translator/po/fr-FR-staff-prog.po |24758 +-- misc/translator/po/gl-marc-MARC21.po | 5571 +- misc/translator/po/gl-marc-NORMARC.po | 218 +- misc/translator/po/gl-marc-UNIMARC.po | 454 +- misc/translator/po/gl-opac-bootstrap.po | 3234 +- misc/translator/po/gl-pref.po |111370 +++++++++++++- misc/translator/po/gl-staff-help.po | 139 +- misc/translator/po/gl-staff-prog.po |20987 +-- misc/translator/po/he-Hebr-marc-MARC21.po | 5571 +- misc/translator/po/he-Hebr-marc-NORMARC.po | 218 +- misc/translator/po/he-Hebr-marc-UNIMARC.po | 454 +- misc/translator/po/he-Hebr-opac-bootstrap.po | 3222 +- misc/translator/po/he-Hebr-pref.po |152882 +++++++++++++++++- misc/translator/po/he-Hebr-staff-help.po | 139 +- misc/translator/po/he-Hebr-staff-prog.po |20971 +-- misc/translator/po/hi-marc-MARC21.po |10810 +- misc/translator/po/hi-marc-NORMARC.po | 1491 +- misc/translator/po/hi-marc-UNIMARC.po | 2450 +- misc/translator/po/hi-opac-bootstrap.po | 7718 +- misc/translator/po/hi-pref.po |99219 +++++++++++- misc/translator/po/hi-staff-help.po | 8990 +- misc/translator/po/hi-staff-prog.po |42481 ++--- misc/translator/po/hr-HR-marc-MARC21.po | 5573 +- misc/translator/po/hr-HR-marc-NORMARC.po | 218 +- misc/translator/po/hr-HR-marc-UNIMARC.po | 456 +- misc/translator/po/hr-HR-opac-bootstrap.po | 3293 +- misc/translator/po/hr-HR-pref.po |131158 +++++++++++++++- misc/translator/po/hr-HR-staff-help.po | 140 +- misc/translator/po/hr-HR-staff-prog.po |21022 +-- misc/translator/po/hu-HU-marc-MARC21.po | 5571 +- misc/translator/po/hu-HU-marc-NORMARC.po | 218 +- misc/translator/po/hu-HU-marc-UNIMARC.po | 458 +- misc/translator/po/hu-HU-opac-bootstrap.po | 3265 +- misc/translator/po/hu-HU-pref.po |64270 +++++++- misc/translator/po/hu-HU-staff-help.po | 145 +- misc/translator/po/hu-HU-staff-prog.po |20988 +-- misc/translator/po/hy-Armn-marc-MARC21.po | 5583 +- misc/translator/po/hy-Armn-marc-NORMARC.po | 218 +- misc/translator/po/hy-Armn-marc-UNIMARC.po | 456 +- misc/translator/po/hy-Armn-opac-bootstrap.po | 3351 +- misc/translator/po/hy-Armn-pref.po |158800 ++++++++++++++++++- misc/translator/po/hy-Armn-staff-help.po | 209 +- misc/translator/po/hy-Armn-staff-prog.po |21173 +-- misc/translator/po/ia-marc-MARC21.po | 5674 +- misc/translator/po/ia-marc-NORMARC.po | 218 +- misc/translator/po/ia-marc-UNIMARC.po | 452 +- misc/translator/po/ia-opac-bootstrap.po | 3215 +- misc/translator/po/ia-pref.po |160062 ++++++++++++++++++- misc/translator/po/ia-staff-help.po | 139 +- misc/translator/po/ia-staff-prog.po |20855 +-- misc/translator/po/id-ID-marc-MARC21.po | 5571 +- misc/translator/po/id-ID-marc-NORMARC.po | 218 +- misc/translator/po/id-ID-marc-UNIMARC.po | 456 +- misc/translator/po/id-ID-opac-bootstrap.po | 3285 +- misc/translator/po/id-ID-pref.po |11094 +- misc/translator/po/id-ID-staff-help.po | 139 +- misc/translator/po/id-ID-staff-prog.po |20997 +-- misc/translator/po/iq-CA-marc-MARC21.po | 5569 +- misc/translator/po/iq-CA-marc-NORMARC.po | 218 +- misc/translator/po/iq-CA-marc-UNIMARC.po | 452 +- misc/translator/po/iq-CA-opac-bootstrap.po | 3215 +- misc/translator/po/iq-CA-pref.po | 5188 +- misc/translator/po/iq-CA-staff-help.po | 139 +- misc/translator/po/iq-CA-staff-prog.po |20855 +-- misc/translator/po/is-IS-marc-MARC21.po | 5573 +- misc/translator/po/is-IS-marc-NORMARC.po | 218 +- misc/translator/po/is-IS-marc-UNIMARC.po | 452 +- misc/translator/po/is-IS-opac-bootstrap.po | 3276 +- misc/translator/po/is-IS-pref.po |130360 +++++++++++++++- misc/translator/po/is-IS-staff-help.po | 139 +- misc/translator/po/is-IS-staff-prog.po |21001 +-- misc/translator/po/it-IT-marc-MARC21.po | 5541 +- misc/translator/po/it-IT-marc-NORMARC.po | 224 +- misc/translator/po/it-IT-marc-UNIMARC.po | 460 +- misc/translator/po/it-IT-opac-bootstrap.po | 3430 +- misc/translator/po/it-IT-pref.po |89823 ++++++++++- misc/translator/po/it-IT-staff-help.po | 349 +- misc/translator/po/it-IT-staff-prog.po |22933 +-- misc/translator/po/iu-CA-marc-MARC21.po | 5569 +- misc/translator/po/iu-CA-marc-NORMARC.po | 218 +- misc/translator/po/iu-CA-marc-UNIMARC.po | 452 +- misc/translator/po/iu-CA-opac-bootstrap.po | 3215 +- misc/translator/po/iu-CA-pref.po |89026 ++++++++++- misc/translator/po/iu-CA-staff-help.po | 139 +- misc/translator/po/iu-CA-staff-prog.po |20855 +-- misc/translator/po/ja-Jpan-JP-marc-MARC21.po | 5571 +- misc/translator/po/ja-Jpan-JP-marc-NORMARC.po | 218 +- misc/translator/po/ja-Jpan-JP-marc-UNIMARC.po | 452 +- misc/translator/po/ja-Jpan-JP-opac-bootstrap.po | 3305 +- misc/translator/po/ja-Jpan-JP-pref.po |113950 +++++++++++++- misc/translator/po/ja-Jpan-JP-staff-help.po | 139 +- misc/translator/po/ja-Jpan-JP-staff-prog.po |21070 +-- misc/translator/po/ka-marc-MARC21.po | 5569 +- misc/translator/po/ka-marc-NORMARC.po | 218 +- misc/translator/po/ka-marc-UNIMARC.po | 452 +- misc/translator/po/ka-opac-bootstrap.po | 3219 +- misc/translator/po/ka-pref.po |34844 ++++- misc/translator/po/ka-staff-help.po | 139 +- misc/translator/po/ka-staff-prog.po |20871 +-- misc/translator/po/km-KH-marc-MARC21.po | 5569 +- misc/translator/po/km-KH-marc-NORMARC.po | 218 +- misc/translator/po/km-KH-marc-UNIMARC.po | 452 +- misc/translator/po/km-KH-opac-bootstrap.po | 3215 +- misc/translator/po/km-KH-pref.po |121650 ++++++++++++++- misc/translator/po/km-KH-staff-help.po | 139 +- misc/translator/po/km-KH-staff-prog.po |20871 +-- misc/translator/po/kn-Knda-marc-MARC21.po | 5569 +- misc/translator/po/kn-Knda-marc-NORMARC.po | 218 +- misc/translator/po/kn-Knda-marc-UNIMARC.po | 454 +- misc/translator/po/kn-Knda-opac-bootstrap.po | 3235 +- misc/translator/po/kn-Knda-pref.po |161942 +++++++++++++++++++- misc/translator/po/kn-Knda-staff-help.po | 139 +- misc/translator/po/kn-Knda-staff-prog.po |21004 +-- misc/translator/po/ko-Kore-KP-marc-MARC21.po | 5571 +- misc/translator/po/ko-Kore-KP-marc-NORMARC.po | 218 +- misc/translator/po/ko-Kore-KP-marc-UNIMARC.po | 452 +- misc/translator/po/ko-Kore-KP-opac-bootstrap.po | 3290 +- misc/translator/po/ko-Kore-KP-pref.po |119020 +++++++++++++- misc/translator/po/ko-Kore-KP-staff-help.po | 143 +- misc/translator/po/ko-Kore-KP-staff-prog.po |21092 +-- misc/translator/po/ku-Arab-marc-MARC21.po | 5573 +- misc/translator/po/ku-Arab-marc-NORMARC.po | 218 +- misc/translator/po/ku-Arab-marc-UNIMARC.po | 456 +- misc/translator/po/ku-Arab-opac-bootstrap.po | 3283 +- misc/translator/po/ku-Arab-pref.po |72652 ++++++++- misc/translator/po/ku-Arab-staff-help.po | 139 +- misc/translator/po/ku-Arab-staff-prog.po |21036 +-- misc/translator/po/lo-Laoo-marc-MARC21.po | 5571 +- misc/translator/po/lo-Laoo-marc-NORMARC.po | 218 +- misc/translator/po/lo-Laoo-marc-UNIMARC.po | 456 +- misc/translator/po/lo-Laoo-opac-bootstrap.po | 3269 +- misc/translator/po/lo-Laoo-pref.po |77786 +++++++++- misc/translator/po/lo-Laoo-staff-help.po | 139 +- misc/translator/po/lo-Laoo-staff-prog.po |20994 +-- misc/translator/po/mi-NZ-marc-MARC21.po | 5573 +- misc/translator/po/mi-NZ-marc-NORMARC.po | 218 +- misc/translator/po/mi-NZ-marc-UNIMARC.po | 452 +- misc/translator/po/mi-NZ-opac-bootstrap.po | 3263 +- misc/translator/po/mi-NZ-pref.po |36646 ++++- misc/translator/po/mi-NZ-staff-help.po | 139 +- misc/translator/po/mi-NZ-staff-prog.po |20992 +-- misc/translator/po/ml-marc-MARC21.po | 5569 +- misc/translator/po/ml-marc-NORMARC.po | 218 +- misc/translator/po/ml-marc-UNIMARC.po | 452 +- misc/translator/po/ml-opac-bootstrap.po | 3215 +- misc/translator/po/ml-pref.po |98592 +++++++++++- misc/translator/po/ml-staff-help.po | 139 +- misc/translator/po/ml-staff-prog.po |20855 +-- misc/translator/po/mon-marc-MARC21.po | 5573 +- misc/translator/po/mon-marc-NORMARC.po | 218 +- misc/translator/po/mon-marc-UNIMARC.po | 456 +- misc/translator/po/mon-opac-bootstrap.po | 3262 +- misc/translator/po/mon-pref.po |29004 +++- misc/translator/po/mon-staff-help.po | 141 +- misc/translator/po/mon-staff-prog.po |20996 +-- misc/translator/po/mr-marc-MARC21.po | 5628 +- misc/translator/po/mr-marc-NORMARC.po | 218 +- misc/translator/po/mr-marc-UNIMARC.po | 454 +- misc/translator/po/mr-opac-bootstrap.po | 3244 +- misc/translator/po/mr-pref.po |139970 ++++++++++++++++- misc/translator/po/mr-staff-help.po | 139 +- misc/translator/po/mr-staff-prog.po |20983 +-- misc/translator/po/ms-MY-marc-MARC21.po | 5575 +- misc/translator/po/ms-MY-marc-NORMARC.po | 218 +- misc/translator/po/ms-MY-marc-UNIMARC.po | 456 +- misc/translator/po/ms-MY-opac-bootstrap.po | 3293 +- misc/translator/po/ms-MY-pref.po |102378 ++++++++++++- misc/translator/po/ms-MY-staff-help.po | 143 +- misc/translator/po/ms-MY-staff-prog.po |21231 +-- .../po/{cy-GB-marc-MARC21.po => my-marc-MARC21.po} | 5569 +- .../{iu-CA-marc-NORMARC.po => my-marc-NORMARC.po} | 218 +- .../{iq-CA-marc-UNIMARC.po => my-marc-UNIMARC.po} | 452 +- ...y-GB-opac-bootstrap.po => my-opac-bootstrap.po} | 3263 +- misc/translator/po/my-pref.po |32534 ++++ .../po/{eo-staff-help.po => my-staff-help.po} | 139 +- .../po/{cy-GB-staff-prog.po => my-staff-prog.po} |20855 +-- misc/translator/po/nb-NO-marc-MARC21.po | 5573 +- misc/translator/po/nb-NO-marc-NORMARC.po | 218 +- misc/translator/po/nb-NO-marc-UNIMARC.po | 456 +- misc/translator/po/nb-NO-opac-bootstrap.po | 3319 +- misc/translator/po/nb-NO-pref.po |107102 ++++++++++++- misc/translator/po/nb-NO-staff-help.po | 154 +- misc/translator/po/nb-NO-staff-prog.po |21224 +-- misc/translator/po/ne-NE-marc-MARC21.po | 5569 +- misc/translator/po/ne-NE-marc-NORMARC.po | 218 +- misc/translator/po/ne-NE-marc-UNIMARC.po | 452 +- misc/translator/po/ne-NE-opac-bootstrap.po | 3219 +- misc/translator/po/ne-NE-pref.po |80754 +++++++++- misc/translator/po/ne-NE-staff-help.po | 139 +- misc/translator/po/ne-NE-staff-prog.po |20881 +-- misc/translator/po/nl-BE-marc-MARC21.po | 5571 +- misc/translator/po/nl-BE-marc-NORMARC.po | 218 +- misc/translator/po/nl-BE-marc-UNIMARC.po | 456 +- misc/translator/po/nl-BE-opac-bootstrap.po | 3286 +- misc/translator/po/nl-BE-pref.po |151396 +++++++++++++++++- misc/translator/po/nl-BE-staff-help.po | 141 +- misc/translator/po/nl-BE-staff-prog.po |21013 +-- misc/translator/po/nl-NL-marc-MARC21.po | 5571 +- misc/translator/po/nl-NL-marc-NORMARC.po | 218 +- misc/translator/po/nl-NL-marc-UNIMARC.po | 456 +- misc/translator/po/nl-NL-opac-bootstrap.po | 3285 +- misc/translator/po/nl-NL-pref.po |159724 ++++++++++++++++++- misc/translator/po/nl-NL-staff-help.po | 139 +- misc/translator/po/nl-NL-staff-prog.po |21014 +-- misc/translator/po/nn-NO-marc-MARC21.po | 5573 +- misc/translator/po/nn-NO-marc-NORMARC.po | 218 +- misc/translator/po/nn-NO-marc-UNIMARC.po | 454 +- misc/translator/po/nn-NO-opac-bootstrap.po | 3258 +- misc/translator/po/nn-NO-pref.po |41432 ++++- misc/translator/po/nn-NO-staff-help.po | 139 +- misc/translator/po/nn-NO-staff-prog.po |20992 +-- misc/translator/po/oc-marc-MARC21.po | 9273 +- misc/translator/po/oc-marc-NORMARC.po | 627 +- misc/translator/po/oc-marc-UNIMARC.po | 3785 +- misc/translator/po/oc-opac-bootstrap.po | 5979 +- misc/translator/po/oc-pref.po |44876 +++++- misc/translator/po/oc-staff-help.po | 7419 +- misc/translator/po/oc-staff-prog.po |36920 +++-- misc/translator/po/pbr-marc-MARC21.po | 5569 +- misc/translator/po/pbr-marc-NORMARC.po | 218 +- misc/translator/po/pbr-marc-UNIMARC.po | 452 +- misc/translator/po/pbr-opac-bootstrap.po | 3215 +- misc/translator/po/pbr-pref.po |83816 +++++++++- misc/translator/po/pbr-staff-help.po | 139 +- misc/translator/po/pbr-staff-prog.po |20871 +-- misc/translator/po/pl-PL-marc-MARC21.po | 5553 +- misc/translator/po/pl-PL-marc-NORMARC.po | 228 +- misc/translator/po/pl-PL-marc-UNIMARC.po | 466 +- misc/translator/po/pl-PL-opac-bootstrap.po | 3396 +- misc/translator/po/pl-PL-pref.po |32552 +++- misc/translator/po/pl-PL-staff-help.po | 185 +- misc/translator/po/pl-PL-staff-prog.po |21501 +-- misc/translator/po/prs-marc-MARC21.po | 5571 +- misc/translator/po/prs-marc-NORMARC.po | 218 +- misc/translator/po/prs-marc-UNIMARC.po | 452 +- misc/translator/po/prs-opac-bootstrap.po | 3235 +- misc/translator/po/prs-pref.po |67396 +++++++- misc/translator/po/prs-staff-help.po | 139 +- misc/translator/po/prs-staff-prog.po |20992 +-- misc/translator/po/pt-BR-marc-MARC21.po | 5549 +- misc/translator/po/pt-BR-marc-NORMARC.po | 228 +- misc/translator/po/pt-BR-marc-UNIMARC.po | 456 +- misc/translator/po/pt-BR-opac-bootstrap.po | 3313 +- misc/translator/po/pt-BR-pref.po |55116 ++++++- misc/translator/po/pt-BR-staff-help.po | 185 +- misc/translator/po/pt-BR-staff-prog.po |21168 +-- misc/translator/po/pt-PT-marc-MARC21.po | 5577 +- misc/translator/po/pt-PT-marc-NORMARC.po | 236 +- misc/translator/po/pt-PT-marc-UNIMARC.po | 2209 +- misc/translator/po/pt-PT-opac-bootstrap.po | 3900 +- misc/translator/po/pt-PT-pref.po |93654 ++++++++++- misc/translator/po/pt-PT-staff-help.po | 466 +- misc/translator/po/pt-PT-staff-prog.po |23777 +-- misc/translator/po/ro-RO-marc-MARC21.po | 5571 +- misc/translator/po/ro-RO-marc-NORMARC.po | 218 +- misc/translator/po/ro-RO-marc-UNIMARC.po | 456 +- misc/translator/po/ro-RO-opac-bootstrap.po | 3282 +- misc/translator/po/ro-RO-pref.po |119704 ++++++++++++++- misc/translator/po/ro-RO-staff-help.po | 145 +- misc/translator/po/ro-RO-staff-prog.po |21005 +-- misc/translator/po/ru-RU-marc-MARC21.po | 5647 +- misc/translator/po/ru-RU-marc-NORMARC.po | 262 +- misc/translator/po/ru-RU-marc-UNIMARC.po | 3313 +- misc/translator/po/ru-RU-opac-bootstrap.po | 5207 +- misc/translator/po/ru-RU-pref.po |125330 ++++++++++++++- misc/translator/po/ru-RU-staff-help.po | 195 +- misc/translator/po/ru-RU-staff-prog.po |21290 +-- misc/translator/po/rw-RW-marc-MARC21.po | 5569 +- misc/translator/po/rw-RW-marc-NORMARC.po | 218 +- misc/translator/po/rw-RW-marc-UNIMARC.po | 452 +- misc/translator/po/rw-RW-opac-bootstrap.po | 3215 +- misc/translator/po/rw-RW-pref.po |144814 ++++++++++++++++- misc/translator/po/rw-RW-staff-help.po | 139 +- misc/translator/po/rw-RW-staff-prog.po |20855 +-- misc/translator/po/sd-PK-marc-MARC21.po | 5569 +- misc/translator/po/sd-PK-marc-NORMARC.po | 218 +- misc/translator/po/sd-PK-marc-UNIMARC.po | 452 +- misc/translator/po/sd-PK-opac-bootstrap.po | 3219 +- misc/translator/po/sd-PK-pref.po | 1346 +- misc/translator/po/sd-PK-staff-help.po | 139 +- misc/translator/po/sd-PK-staff-prog.po |20892 +-- misc/translator/po/sk-SK-marc-MARC21.po | 5546 +- misc/translator/po/sk-SK-marc-NORMARC.po | 222 +- misc/translator/po/sk-SK-marc-UNIMARC.po | 473 +- misc/translator/po/sk-SK-opac-bootstrap.po | 3698 +- misc/translator/po/sk-SK-pref.po |87740 ++++++++++- misc/translator/po/sk-SK-staff-help.po | 250 +- misc/translator/po/sk-SK-staff-prog.po |21196 +-- misc/translator/po/sl-SI-marc-MARC21.po | 5569 +- misc/translator/po/sl-SI-marc-NORMARC.po | 218 +- misc/translator/po/sl-SI-marc-UNIMARC.po | 452 +- misc/translator/po/sl-SI-opac-bootstrap.po | 3215 +- misc/translator/po/sl-SI-pref.po |57762 ++++++- misc/translator/po/sl-SI-staff-help.po | 139 +- misc/translator/po/sl-SI-staff-prog.po |20855 +-- misc/translator/po/sq-AL-marc-MARC21.po | 5569 +- misc/translator/po/sq-AL-marc-NORMARC.po | 218 +- misc/translator/po/sq-AL-marc-UNIMARC.po | 452 +- misc/translator/po/sq-AL-opac-bootstrap.po | 6904 +- misc/translator/po/sq-AL-pref.po |19912 ++- misc/translator/po/sq-AL-staff-help.po | 139 +- misc/translator/po/sq-AL-staff-prog.po |20951 +-- misc/translator/po/sr-Cyrl-marc-MARC21.po | 5569 +- misc/translator/po/sr-Cyrl-marc-NORMARC.po | 218 +- misc/translator/po/sr-Cyrl-marc-UNIMARC.po | 456 +- misc/translator/po/sr-Cyrl-opac-bootstrap.po | 3239 +- misc/translator/po/sr-Cyrl-pref.po |107374 ++++++++++++- misc/translator/po/sr-Cyrl-staff-help.po | 139 +- misc/translator/po/sr-Cyrl-staff-prog.po |20917 +-- misc/translator/po/sv-SE-marc-MARC21.po | 5966 +- misc/translator/po/sv-SE-marc-NORMARC.po | 274 +- misc/translator/po/sv-SE-marc-UNIMARC.po | 774 +- misc/translator/po/sv-SE-opac-bootstrap.po | 4423 +- misc/translator/po/sv-SE-pref.po |51317 ++++++- misc/translator/po/sv-SE-staff-help.po | 1011 +- misc/translator/po/sv-SE-staff-prog.po |27444 ++-- misc/translator/po/sw-KE-marc-MARC21.po | 5615 +- misc/translator/po/sw-KE-marc-NORMARC.po | 230 +- misc/translator/po/sw-KE-marc-UNIMARC.po | 452 +- misc/translator/po/sw-KE-opac-bootstrap.po | 3215 +- misc/translator/po/sw-KE-pref.po |81214 +++++++++- misc/translator/po/sw-KE-staff-help.po | 139 +- misc/translator/po/sw-KE-staff-prog.po |20859 +-- misc/translator/po/ta-LK-marc-MARC21.po | 5569 +- misc/translator/po/ta-LK-marc-NORMARC.po | 218 +- misc/translator/po/ta-LK-marc-UNIMARC.po | 452 +- misc/translator/po/ta-LK-opac-bootstrap.po | 3215 +- misc/translator/po/ta-LK-pref.po |74734 ++++++++- misc/translator/po/ta-LK-staff-help.po | 139 +- misc/translator/po/ta-LK-staff-prog.po |20873 +-- misc/translator/po/ta-marc-MARC21.po | 5569 +- misc/translator/po/ta-marc-NORMARC.po | 218 +- misc/translator/po/ta-marc-UNIMARC.po | 452 +- misc/translator/po/ta-opac-bootstrap.po | 3215 +- misc/translator/po/ta-pref.po |58196 ++++++- misc/translator/po/ta-staff-help.po | 139 +- misc/translator/po/ta-staff-prog.po |20873 +-- misc/translator/po/tet-marc-MARC21.po | 5587 +- misc/translator/po/tet-marc-NORMARC.po | 218 +- misc/translator/po/tet-marc-UNIMARC.po | 456 +- misc/translator/po/tet-opac-bootstrap.po | 3392 +- misc/translator/po/tet-pref.po |136624 ++++++++++++++++- misc/translator/po/tet-staff-help.po | 140 +- misc/translator/po/tet-staff-prog.po |21066 +-- misc/translator/po/th-TH-marc-MARC21.po | 5569 +- misc/translator/po/th-TH-marc-NORMARC.po | 218 +- misc/translator/po/th-TH-marc-UNIMARC.po | 456 +- misc/translator/po/th-TH-opac-bootstrap.po | 3246 +- misc/translator/po/th-TH-pref.po |121018 ++++++++++++++- misc/translator/po/th-TH-staff-help.po | 139 +- misc/translator/po/th-TH-staff-prog.po |20931 +-- misc/translator/po/tl-PH-marc-MARC21.po | 5583 +- misc/translator/po/tl-PH-marc-NORMARC.po | 218 +- misc/translator/po/tl-PH-marc-UNIMARC.po | 452 +- misc/translator/po/tl-PH-opac-bootstrap.po | 3231 +- misc/translator/po/tl-PH-pref.po |145256 +++++++++++++++++- misc/translator/po/tl-PH-staff-help.po | 139 +- misc/translator/po/tl-PH-staff-prog.po |20963 +-- misc/translator/po/tr-TR-marc-MARC21.po | 5533 +- misc/translator/po/tr-TR-marc-NORMARC.po | 226 +- misc/translator/po/tr-TR-marc-UNIMARC.po | 476 +- misc/translator/po/tr-TR-opac-bootstrap.po | 3761 +- misc/translator/po/tr-TR-pref.po |13592 +- misc/translator/po/tr-TR-staff-help.po | 343 +- misc/translator/po/tr-TR-staff-prog.po |22977 +-- misc/translator/po/uk-UA-marc-MARC21.po | 5573 +- misc/translator/po/uk-UA-marc-NORMARC.po | 218 +- misc/translator/po/uk-UA-marc-UNIMARC.po | 457 +- misc/translator/po/uk-UA-opac-bootstrap.po | 3369 +- misc/translator/po/uk-UA-pref.po |105092 ++++++++++++- misc/translator/po/uk-UA-staff-help.po | 307 +- misc/translator/po/uk-UA-staff-prog.po |21290 +-- misc/translator/po/ur-Arab-marc-MARC21.po | 5569 +- misc/translator/po/ur-Arab-marc-NORMARC.po | 218 +- misc/translator/po/ur-Arab-marc-UNIMARC.po | 452 +- misc/translator/po/ur-Arab-opac-bootstrap.po | 3215 +- misc/translator/po/ur-Arab-pref.po |154536 ++++++++++++++++++- misc/translator/po/ur-Arab-staff-help.po | 139 +- misc/translator/po/ur-Arab-staff-prog.po |20871 +-- misc/translator/po/vi-VN-marc-MARC21.po | 5573 +- misc/translator/po/vi-VN-marc-NORMARC.po | 218 +- misc/translator/po/vi-VN-marc-UNIMARC.po | 456 +- misc/translator/po/vi-VN-opac-bootstrap.po | 3280 +- misc/translator/po/vi-VN-pref.po |57264 ++++++- misc/translator/po/vi-VN-staff-help.po | 143 +- misc/translator/po/vi-VN-staff-prog.po |21051 +-- misc/translator/po/zh-Hans-CN-marc-MARC21.po | 6317 +- misc/translator/po/zh-Hans-CN-marc-NORMARC.po | 218 +- misc/translator/po/zh-Hans-CN-marc-UNIMARC.po | 456 +- misc/translator/po/zh-Hans-CN-opac-bootstrap.po | 3279 +- misc/translator/po/zh-Hans-CN-pref.po |111256 +++++++++++++- misc/translator/po/zh-Hans-CN-staff-help.po | 141 +- misc/translator/po/zh-Hans-CN-staff-prog.po |21123 +-- misc/translator/po/zh-Hans-TW-marc-MARC21.po | 5619 +- misc/translator/po/zh-Hans-TW-marc-NORMARC.po | 224 +- misc/translator/po/zh-Hans-TW-marc-UNIMARC.po | 462 +- misc/translator/po/zh-Hans-TW-opac-bootstrap.po | 3318 +- misc/translator/po/zh-Hans-TW-pref.po |77970 +++++++++- misc/translator/po/zh-Hans-TW-staff-help.po | 156 +- misc/translator/po/zh-Hans-TW-staff-prog.po |22015 +-- t/db_dependent/Search.t | 10 +- 574 files changed, 8055035 insertions(+), 1534632 deletions(-) create mode 100644 misc/release_notes/release_notes_16_11_00.md copy misc/translator/po/{ia-marc-MARC21.po => as-IN-marc-MARC21.po} (89%) copy misc/translator/po/{iu-CA-marc-NORMARC.po => as-IN-marc-NORMARC.po} (95%) copy misc/translator/po/{iq-CA-marc-UNIMARC.po => as-IN-marc-UNIMARC.po} (99%) copy misc/translator/po/{cy-GB-opac-bootstrap.po => as-IN-opac-bootstrap.po} (80%) create mode 100644 misc/translator/po/as-IN-pref.po copy misc/translator/po/{eo-staff-help.po => as-IN-staff-help.po} (99%) copy misc/translator/po/{cy-GB-staff-prog.po => as-IN-staff-prog.po} (73%) copy misc/translator/po/{cy-GB-marc-MARC21.po => my-marc-MARC21.po} (90%) copy misc/translator/po/{iu-CA-marc-NORMARC.po => my-marc-NORMARC.po} (95%) copy misc/translator/po/{iq-CA-marc-UNIMARC.po => my-marc-UNIMARC.po} (99%) copy misc/translator/po/{cy-GB-opac-bootstrap.po => my-opac-bootstrap.po} (80%) create mode 100644 misc/translator/po/my-pref.po copy misc/translator/po/{eo-staff-help.po => my-staff-help.po} (99%) copy misc/translator/po/{cy-GB-staff-prog.po => my-staff-prog.po} (73%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 22 19:05:05 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 22 Nov 2016 18:05:05 +0000 Subject: [koha-commits] main Koha release repository annotated tag v16.11.00 created. v16.11.00 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, v16.11.00 has been created at b81e8afbaf2dc2ae79e530799d461841f3d60b25 (tag) tagging 7636c68d769a1c2e62ced6aa9f2fbe12adf22c8d (commit) replaces v16.05.00 tagged by Kyle M Hall on Tue Nov 22 17:53:36 2016 +0000 - Log ----------------------------------------------------------------- Koha release 16.11.00 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJYNIYgAAoJEMpNwobE/JxQJF0IANWgvJm1bvynYI/hmXABxAgz 1jDpaVIsix+iHCdcMv3Xnkogw2R79E6ElIoCQQv+dIfub48TtUWcUSx3FF4gSKtY nStbOPGKK873yQFVKmtbcrca0ygfj1K3toouaH4/P5jDMlyayQ2luvlii3rL2qFc zdTH9NhFJMQIDQ7zxTaShqnoKZJWlxvKBb6k4aL9hvM7JWcpmQ/9xTUBSVjV8SxO Hsb+d6kAEyYZbqgkRItfn1duZQNyuEEUJmZIMzf9eeHkVmkiV8bvLzgT6ZA09CIr R5WFXAYvdsyPQYrGySWb9qXOhBBRrcIp8N5TcjtHOhBmQgheTE+tHLl1j/BoTKY= =iN76 -----END PGP SIGNATURE----- A. Sassmannshausen (1): Bug 5670: Housebound Readers Module Aleisha (19): Bug 16532: Groups showing empty tables if no groups defined Bug 16525: Have cancel button when adding new aq budget Bug 16524: Use floating toolbar on item search Bug 16511: Making contracts actions buttons Bug 16388: Move option to download report into reports toolbar Bug 12402: Show patron category on pending patron modifications Bug 3669: Moving 'Add a new message' into a pop up box and adding to patron toolbar Bug 9259: Ability to delete a staged file once it has been cleaned Bug 16324: Move item search into header Bug 16531: Circ overdue report is showing an empty table if no overdues Bug 16876: Remove Full Heading column from OPAC Auth search results Bug 16843: Help for EDIFACT messages Bug 16507: Show play media tab first if record has no holdings Bug 16841: Help for library EANs Bug 16842: Help for EDI accounts Bug 16874: Making serials collections actions buttons Bug 16875: OPAC - removing link to records if authority is not used by any records Bug 16950: Serials subscriptions advanced search shows '0 found' pre-search Bug 16949: Batch record deletion says success when no records have been passed in Aleisha Amohia (12): Bug 17175: Typo in patron card images error message Bug 16035: MARC default bibliographic framework Export fix Bug 17210: Remove use of onclick from biblio detail sidebar in OPAC Bug 17222: Remove use of onclick from OPAC member entry page Bug 17161: Making 'Preview MARC' links show as buttons in batch record modification Bug 17162: Moving MARC tags structure actions into a drop down menu Bug 17163: Making MARC subfields structure actions buttons Bug 17165: Improve heading on vendor search when searching for all vendors in Serials Bug 17174: Making z39.50 Authority search actions buttons Bug 17183: Check if any checkboxes have been checked for 'Delete Selected' button in Koha News Bug 17191: Confirm message on deleting tag in OPAC Bug 17211: Remove use of onclick from OPAC fines page Alex Arnaud (5): Bug 14968 - Provides unit test Bug 14695 - Warn librarian if max_holds_per_record is reached Bug 14695 - Don't use holds_to_place_count when checking an item. Bug 13321: Adds renaming of gstrate column in kohastructure.sql Bug 13321: Add missing Price TT plugin in orderreceive.tt Alex Sassmannshausen (21): Bug 6906 - show 'Borrower has previously issued... Bug 6906: Follow coding guidelines in terminology. DO NOT PUSH: Add Housebound Schema files. Bug 5670: [Followup] Return Koha::Patron objects. Bug 5670: [Followup] Refactor .pl; error messages. Bug 5670: [QA Followup] Don't force ISO dates. Bug 5670: [QA Followup] Avoid CGI::param in list context. Bug 5670: [QA Followup] Housebound link from patron edit. Bug 5670: [QA Followup] Small QA fixes. Bug 5670: [QA Followup] Fix `div.patroninfo`. Bug 5670: [QA Followup] Improve template style. Bug 5670: [QA Followup] More "required" messages. Bug 5670: [QA Followup] Create housebound roles table. Bug 5670: [QA Followup] Create HouseboundRole objects. Bug 5670: [QA Followup] Correct housebound role search. Bug 5670: [QA Followup] Display HouseboundRole info. Bug 5670: [QA Followup] HouseboundRole CRUD from UI. DO NOT PUSH: Moar Housebound Schema files. Bug 5670: Add auth_val_cat to auth_val_cat.sql. Bug 5670: [Followup] Add 'step 4' edit button. Bug 17576: Add housebound mandatory auth_values. Aliki Pavlidou (1): Bug 15641 - Typo in explanation for MembershipExpiryDaysNotice Andreas Roussos (9): Bug 17185: Staff client shows "Lists that include this title:" even if item is not in a list Bug 16311 - Advanced search language limit typo Bug 17308 - 'New patron attribute type' button does not work Bug 10768 - Improve the interface related to itemBarcodeFallbackSearch Bug 17289: Holds awaiting pickup shows date unformatted Bug 17312 - Typo in members-toolbar.inc / moremember-brief.tt / moremember.tt Bug 9896 - Show vendor in subscription search when creating an order for a subscription Bug 17310: Broken URLs in 'Item renewed' / 'Cannot renew' messages Bug 7039 - Link to existing record from result list in acquisition search Barton Chittenden (10): Bug 6499: Add Zebra index "Other-control-number" covering MARC21 035$a, 035$z and 035 (entire tag) Bug 14504: Add delete_items.pl: a command line batch deletion tool Bug 14504: (QA followup) bug 14504: split logic from DelItemCheck() into ItemSafeToDelete() bug 14504: use C4::Items::DelItemCheck in delete_items.pl Bug 14504: (QA followup) use TestBuilder, remove do_not_commit bug 14504: (QA followup) fixing DelItemCheck arguments Bug 14504: (QA followup) fix test transaction, book_on_loan Bug 14504: (QA followup) Fix error causing item not to be deleted Bug 14504: (QA followup) Change argument --criteria to --where Bernardo Gonzalez Kriegel (14): Bug 15451: (followup) fix filename extension for csv file Bug 16573: fix linkid value on marc_subfield_structure Bug 16573: fix structure and sample data for MySQL 5.7 Bug 16573: change created_on type - atomic update Bug 16554: Fix fr-FR sample files Bug 16554: Fix I18N sample files Bug 16554: rewrite mandatory and sample data - es-ES Bug 16554: rewrite mandatory and sample data - nb-NO Bug 16554: rewrite mandatory and sample data - pl-PL Bug 16554: More i18n changes - en, es, nb and pl files Bug 16554: rewrite mandatory and sample data - it-IT Bug 16554: rewrite mandatory and sample data - de-DE Bug 16554: Fix encoding on it-IT file Translations update for 16.11.0 Blou (2): Bug 14605 - Corrects the individual fine's description Bug 16123 - Display budget hierarchy in the budget dropdown menu used when placing a new order Bouzid Fergani (7): Bug 15636 - DataTables Warning: Requested unknown parameter from opac-detail.tt Bug 6934: fix problem when export it open in LibreOffice - show values of itype and use TT plugin Bug 6934: Make CSV header column translatable and add total amounts in csv file Bug 6934: fix errors pointed out by the QA script Bug 6934: rename active transaction with All payments to the library and grouping in it the relevant account types 'Pay' 'C' Bug 6934 - Fix problem C4::Branch::GetBranchesLoop not exist Bug 16123 - Add unit tests Brendan A Gallagher (1): Bug 14598 - QA Followup touching CanBookBeIssued subroutine Brendan Gallagher (6): Updating the DBrev for a new dev track (unstable). DBRev up for Bug 16200 - 'Hold waiting too long' fee has a translation problem Bug 7143 - Bug for tracking changes to the about page Revert "Bug 7143 - Bug for tracking changes to the about page" Uping DBRev. Bug 17357 - WTHDRAWN is still used in installer files UPdating the DBREv for Bug 17216 - Add a new table to store authorized value categories Charles Farmer (1): Bug 14668: Show serial enumeration in INTRANET circulation.tt and OPAC patron's relatives' checkouts Chris Cormack (11): Bug 16597: Fix XSS in opac-shelves.pl Bug 16597: Fix XSS in opac-shareshelf Bug 7143 Updating the history.txt Bug 7143: Updating about page for new developers Bug 7143 : Ooops double counted a developer Bug 7143 : Adding new developers Bug 7143 : More new devs Bug 16975 : @INC should not have '.' as its last entry Bug 16969 cgi->param used in list context in opac-memberentry.pl Bug 17177 - about.pl references a module that doesn't exist Bug 17459: Follow up Claire Gravely (3): Bug 16642 - Fix capitalisation for upload patron image Bug 16165 - Include link to ILS-DI documentation page in ILS-DI system preference Bug 15929 - typo in explanation for MaxSearchResultsItemsPerRecordStatusCheck Colin Campbell (8): Bug 13807 Rework main input loop in SIPServer Bug 15006 Drop raw connection if login fails Bug 15006 Remove tabs from sip_protocol_loop Bug 15006: Introduce client_timeout in SIPconfig.xml Bug 15006 Correct indentation of EXPORTs in Sip.pm Bug 17081 Incorrect comparison operator used in edifactmsgs.pl Bug 17141: Call config method to retrieve logdir BUG 17414 Add new GIR codes in Edifact Dimitris Antonakis (1): Bug 14897 - Header name mismatch in ./modules/catalogue/detail.tt Florent Mara (1): Bug 12178: Tests for changes to claimed serial status Fridolin Somers (14): Bug 16608 - Add xsd extension to t/00-valid-xml.t Bug 16608 - Missing entity nbsp in some XML files Bug 16736 - Keep branch filter when changing suggestion Bug 16677 - Use abbr for authorities linked headings Bug 16897 - Re-focus on "Add item" in Lists Bug 17107 - Add ident and Identifier-standard to known indexes Bug 17106 - DataTables patron search defaulting to 'starts_with' - doc Bug 17423 - patronimage.pl permission is too restrictive Bug 17367 - Showing all items must keep show holdings tab in OPAC details Bug 17376 - rebuild_zebra.pl in daemon mode no database access kills the process Bug 16935 - launch export_records.pl with deleted_barcodes param fails Bug 17394 - exporting checkouts with items selects without items in combo-box Bug 17420 - record export fails when itemtype on biblio Bug 17420 - record export fails when itemtype on biblio - followup Fr?d?ric Demians (2): Bug 17053 Clearing search term in Reports Bug 17281 Warning when saving subfield structure Galen Charlton (4): Bug 16675: fix breakage of t/Languages.t Bug 16647: update debian/control for 16.* Bug 16760: fix Circulation Statistics wizard under Plack Bug 17001: fix due date filter on the overdue report Hector Castro (26): Bug 16594: Orders by fund report has wrong link to css and other issues Bug 16456: Add Font Awesome icons to some buttons in Tools module, section Patrons and circulation Bug 16742: (follow-up)Remove unused template subject.tt Bug 16793: Use Font Awesome for arrows instead of images in audio_alerts.tt Bug 16781: Add Font Awesome Icons to "Select/Clear all" links to modborrows.tt and result.tt Bug 16794: Revise layout for Admistration > Patron categories Bug 16803: Add Font Awesome Icons to "Select/Clear all" links to shelves.tt Bug 15172: (follow-up)Serial enumchron/sequence not visible when returning/checking in Items Bug 16801 - Include Font Awesome Icons to check/unchek all in Administration > Library transfer limits Bug 16701: (follow-up) improve some changes Bug 16812: Revise JS script for z3950_search.tts and remove onclick events Bug 16888: Add Font Awesome Icons to Members Bug 16888: (follow-up)Add Font Awesome Icons to Members Bug 16861: Translatability: Fix separated "below" in circulation.tt Bug 16861: (followup)Translatability: remove fa-hand-o-down icon Bug 16964: Fix capitalization for "Report Plugins" in reports-home.tt Bug 16944: Add "email" and "url" classes when edit or create a vendor Bug 17152: Do not copy value when duplicating a subfield Bug 14668: (follow-up) JSON fails if single quotes are used Bug 17477: Duplicating a subfield yields an empty subfield tag Bug 16245: RIS export file type incorrect Bug 6934: Fix the href for datables in link rel stylesheet Bug 16792: Add Font Awesome Icon and mini button to Keyword to MARC mapping section Bug 17616: (follow-up)Select tag on elasticsearch mappings page is not closed properly Bug 17609: Tiny typo in ElasticSearch mappings (mappings.tt) Bug 17609: Small typo in about.tt Holger Mei?ner (1): Bug 14434: Display "Not renewable (on hold)" in OPAC Indranil Das Gupta (L2C2 Technologies) (1): Bug 17103 - Google API Loader jsapi called over http Jacek Ablewicz (14): Bug 16678: updatedatabase.pl 3.23.00.006 DB upgrade crashes if subscription_numberpatterns.numberingmethod contains parentheses Bug 16166: Improve L1 cache performance and safety Bug 16166: Fix t/Cache.t tests Bug 17117: Patron personal details not displayed unless branch update request is enabled Bug 17142 - Don't show library group selection in advanced search if groups are not defined Bug 10848 - Allow configuration of mandatory/required fields on the suggestion form in OPAC Bug 10848 - Allow configuration of mandatory/required fields on the suggestion form in OPAC - part 2 Bug 10848 - [QA Followup] Add missing branch option and fix pattern for copyrightdate Bug 17072: 006 not filling in with existing values Bug 16365: Selectively introduce GetMarcStructure() "unsafe" variant for better performance Bug 16365 - GetMarcStructure() "unsafe" variant in PrepareItemrecordDisplay() Bug 17135 - Fine for the previous overdue may get overwritten by the next one Bug 17135 - Some minor changes & fixes in the script Bug 17135 - Maintenance script execution added as part of an atomic DB upgrade Jesse Maseto (1): Bug 7143 NEW added Kyle Hall as release manager. Jesse Weaver (9): Bug 14048: (RM followup) DB version 16.06.00.006 Bug 15974: Rancor: Correctly select existing authorized value Bug 11606: (followup) minor typos Bug 16715: Proposed followup to use Sereal for serialization Bug 16818: External auth redirect broken under Plack Bug 16918: Serve OPAC/intranet homepage via Plack Bug 16520: Allow per-VirtualHost environment variables with Plack Bug 16520: Initialize the sysprefs Koha::Caches on demand Bug 16520: Add new Plack-SetEnv syntax to Apache configuration files Jonathan Druart (494): Bug 16599: Fix XSS in opac-shareshelf.pl Bug 16599: Fix other potentials XSS for shelfname Bug 16597: Fix XSS in shelves.pl Bug 16437 - (follow-up) Automatic item modifications by age needs prettying Bug 16504: Add regression tests Bug 16504: (follow-up for bug 15163) Do not remove attributes of other patrons Bug 16388: Use existing 'execute' parameter instead of creating a new one Bug 9543: Separate MTT with commas Bug 16565: Drop additional_fields and additional_field_values before creating them Bug 16442: Make C4::Ris plack safe Bug 16458: Update library when a guarantor is set Bug 16088: Introduce Koha::Cache::Memory::Lite to cache the language Bug 16088: Fix the number of tests to skip Bug 16444: Make C4::Tags plack safe Bug 16518: Fix Plack variable scoping problem in opac-addbybiblionumber.pl Bug 16508: Updating a syspref requires parameters_remaining_permissions Bug 16455: Remove the "Too late to run INIT block" from C4::Tags Bug 16443: Make C4::Members::Statistics plack safe Bug 16570: Do not tell all checked-in items are part of a rotating collection Bug 16441: Do not use a package variable to cache C4::Letters::getletter Bug 16441: Fix Letters.t Bug 16428: Use the biblio framework to know if a field is mapped Bug 16465: discharge - Add a title tag at the OPAC Bug 16465: Fix typo issues vs checkouts Bug 16578: Same fix for the staff interface Bug 16596: Display library and patron category descriptions instead of their code Bug 16668: Fix t/Ris.t tests Bug 16649: Make OpenLibrarySearch test pass even if launches offline Bug 16695: Require Exception::Class 1.38 instead of 1.39 Bug 10459: Add tests for borrowers.updated_on Bug 16492: Test that no_set_userenv will not set userenv if not exist yet Bug 16492: Add a FIXME to explain the possible problem with no_set_userenv Bug 16289: Refactore code and add tests Bug 12748: Remove warning 'masks earlier declaration in same scope' Bug 12748: Code tidy Bug 12748: findSerialByStatus has been renamed with findSerialsByStatus Bug 13074: Use Koha::Cache to cache the defaults values of a MARC record Bug 16670: (bug 15823 follow-up) CGI->param should not be called in list context Bug 16717: Improve variable naming Bug 16594: Fix obvious QA issues from bug 11371 Bug 16456: Reintroduce wording "Delete tag" Bug 16672: Fix typo unqiue vs unique Bug 16148: Add preventDefault to avoid the scrollbar to move to the top Bug 16148: Fix submit button text Bug 16534: Add tests for CanBookBeIssued & AllowReturnToBranch Bug 16534: Make CanBookBeIssued test if the issue can be returned Bug 16534: Add tests for AddIssue Bug 16534: Block AddIssue from issuing if the return is not possible Bug 16527: Restore sticky due date behavior Bug 16593: Do not allow patrons to delete search history of others patrons Bug 16680: (bug 13918 follow-up) Display library names for holds in transit Bug 16707: Fix software error in OPAC password recovery when leaving form fields empty Bug 11490: Add prefs MaxItemsToProcessForBatchMod and MaxItemsToDisplayForBatchDel Bug 11490: Split MaxItemsForBatch into 2 prefs to clarify things Bug 16591: Fix CSRF in opac-memberentry Bug 16624: Add regression tests Bug 16624: Fix regression displaying a letter with hours Bug 16708: Fix authority reindex for ElasticSearch Bug 16724: Fix link to the online documentation links Bug 16731: Use INSERT IGNORE when inserting a syspref Bug 3669: Remove parameters passed to action of form Bug 16400: Update the fixFloat plugin Bug 16400: Let's hack the fixFloat plugin to fix our needs Bug 16400: Reintroduce the floating class Bug 16400: Restore the previous stack order behavior Bug 16400: Use the fa-times icon for Cancel Bug 16490: Tidy updateLink and updateAllLinks Bug 16768: Update options in sysprefs.sql Bug 16770: Remove wrong caching of 3 subroutines in C4::Lancuages Bug 16770: Remove Memoize::Memcached dependency Bug 16770: Remove 2 other occurrences of libmemoize-memcached-perl Bug 14048: Use mock_preference in tests Bug 3534: Force margin-left: 0 for second button Bug 16431: Use Koha::Cache to cache marc subfield structure Bug 16459: Add patron to a patron card requires catalogue permission Bug 16671: (bug 14828 follow-up) Pick the right itemtypes Bug 16794: Group the 2 action buttons into the same column Bug 16857: Check on item.branches makes more sense Bug 16860: Remove the comment about the warning Bug 6906: Tests - Do not assume CPL exists Bug 6906: Add the warning message to the batch checkout Bug 9259: Use is instead of is_deeply Bug 14757: Add tests for new modules Bug 14757: Remove obsolete occurrence of is_tt Bug 15128: Revert Display all purchase suggestions whether or not suggestion was added Bug 15128: Do not display "New suggestion" if limit has just been reached Bug 16805: Add test to getalert (no param passed) Bug 16819: Remove use of map Bug 13691: Remove existing selenium scripts Bug 13691: Add basic selenium script Bug 13691: Add changes for 3.22 Bug 2735: Fix authority search pagination at the OPAC Bug 2735: CSS changes Bug 12178: Update serial status to "claimed" when exporting to CSV Bug 12178: Fix tests not to depend on dateformat syspref Bug 16845: Remove unused C4::Members::ModPrivacy Bug 16890: Make TestBuilder generate date for date columns (and not datetime) Bug 16813: Allow empty string for OPACBaseURL Bug 16844: (follow-up of 15656) Remove export of GetMemberRelatives from C4::Members Bug 16849: Move IsDebarred to Koha::Patron->is_debarred Bug 16853: Move changepassword to Koha::Patron->update_password Bug 16889: Add Koha::Objects->columns Bug 16889: Remove C4::Members::columns and use Koha::Patrons->columns instead Bug 16889: Remove C4::Items::columns and use Koha::Items->columns instead Bug 16889: Remove C4::Items::biblioitems_columns and use Koha::Biblioitems->columns instead Bug 16909: Koha::Patrons - Remove checkuniquemember Bug 16913: Koha::Patrons - Remove GetBorrowersNamesAndLatestIssue Bug 16958: Fix XSS in opac-imageviewer.pl Bug 16934: Add test for ModOrder Bug 15451: Add the 2 new modules Koha::CsvProfile[s] Bug 15451: Rewrite the csv profile tool script Bug 15451: Koha::CsvProfiles - Remove GetCsvProfilesLoop Bug 15451: Koha::CsvProfiles - Remove GetCsvProfiles Bug 15451: Koha::CsvProfiles - Remove GetCsvProfileId Bug 15451: Koha::CsvProfiles - Remove GetCsvProfile Bug 15451: Koha::CsvProfiles - Remove the residue Bug 15451: Do not considered a Resultset as a Result Bug 15451: Better error handling Bug 16847: Remove C4::Members::GetTitles Bug 16847: Add empty option to Salutation/title Bug 16906: Simply remove the sDom definition to use the default one Bug 16573: Define virtualshelves.created_on as datetime for existing installs Bug 16715: Use Sereal::Decoder and Sereal::Encoder instead of Sereal Bug 17028: Fix XSS in reserve/request.pl Bug 17026: Fix XSS in serials/checkexpiration.pl Bug 17024: Fix XSS in tools/viewlog.pl Bug 17023: Fix XSS in cataloguing/z3950_search.pl Bug 17023: Fix XSS in acqui/z3950_search.pl Bug 17022: Fix XSS in circ/branchtransfers.pl Bug 16878: Fix XSS in opac-memberentry Bug 17069: Koha::Patron::Category->store must default checkprevcheckout to 'inherit' Bug 7441 - Followup search results showing wrong branch [UNIMARC] Bug 17029: Fix XSS in catalogue/*detail.pl Bug 17025: Fix XSS in serials-search.pl Bug 17021: Fix XSS in circ/returns.pl Bug 17036: Fix XSS in circulation.pl Bug 17038: Fix XSS in catalogue/search.pl Bug 16993: Fix CSRF in memberentry.pl Bug 16992: FIX CSRF in member-password.pl Bug 16848: Prevent invalid warning to be carped from output_pref Bug 16776: Do not forget external language choice in language switcher Bug 16894: Regression - Display email on patron search results Bug 17020: Do no pass findborrower to the template Bug 17040: Fix translation on context menu when editing items Bug 17052: Display patron category description in the sidebar of paycollect Bug 14642: Make sure the log will be written only if the hold has been deleted Bug 16615: Update OPACSearchForTitleIn to access openlibrary.org via https Bug 16996: Do not explode if mandatory fields are missing Bug 16996: (follow-up) Do not explode if mandatory fields are missing Bug 16955: Do not clear from cache when adding a new framework Bug 17097: Add a confirmation page when deleting a patron Bug 17097: Fix CSRF in deletemem.pl Bug 17097: here the var is 'member', not 'borrowernumber' Bug 17124: Fix tests in DecreaseLoanHighHolds.t Bug 17009: Speed up the framework duplication Bug 17095: (bug 16849 follow-up) Fix regression if patron does not exist Bug 17100: Restore previous logic Bug 16960: Update 1 missing occurrence of GetModifications Bug 16960: Fix error on validating the registration Bug 16960: Delete previous patron modifications Bug 17023: Repair "cancel" link Bug 17050: Do not kick the session out when accessing the REST API Bug 17116: Fix CSRF in import_borrowers.pl Bug 17048: Fix pagination offset for authority searches Bug 16686: Fix "Item in transit from since" in Holds tab Bug 16686: Rename the transfer method to get_transfer Bug 16686: Add Koha::Object based class for Koha::Item::Transfer[s] Bug 16686: Add test for Koha::Item::Transfer[s] and Koha::Item->get_transfer Bug 16449: Remove "no method selected" warning from unimarc_field_4XX Bug 17201: (bug 16431 follow-up) Remove occurrence of marcfromkohafield Bug 17201: (bug 16431 follow-up2) Remove occurrence of marcfromkohafield Bug 17118: (follow-up 15381) Fix regression when clearing a linked authority Bug 17157: Fix middle click on "Search" drowndown menu Bug 17157: Same for "More" Bug 7045: Use <> for default value placeholders Bug 7045: Update default value placeholders for existing installs Bug 16886: Make the 'Upload patron images' tool plack safe Bug 17128: Make summary-print.pl plack safe Bug 16990: Display branch names instead of code in patron mod requests Bug 16464: Add FIXME Bug 17189: Add the ability to define several memcached namespaces - tests Bug 17189: Add the ability to define several memcached namespaces - Koha::Caches Bug 17189: Add the ability to define several memcached namespaces - replace existing occurrences Bug 17189: Use delete to flush a L1 cache namespace Bug 17189: Replace occurrences of 'use Koha::Cache' Bug 17189: Use Koha::Caches instead of Koha::Cache in Koha::MetaSearcher Bug 11921: Restore memcached infos to koha-conf Bug 11921: Restore memcached infos to koha-conf - Koha::Config Bug 11921: Update remaining occurrences of ->ismemcached Bug 11921: C4::Context->memcached does no longer exist Bug 11921: Fix logic in C4::Context->new to init the config Bug 14060: Remove readonly attributes on date inputs Bug 14060: Add OnClose event on missing datepicker Bug 14060: Display the date format on the warning popup Bug 14060: Force the input to contain a valid date Bug 14060: Add support for dmydot Bug 14060: Display date format pattern instead of date format name Bug 14060: Force leading zeros on date Bug 14060: Add the datepicker class to dateofbirth Bug 14060: Consider an empty string as a valid date Bug 14060: Improve regex to limit year to 4 integers Bug 14695: Fix GetHardDueDate.t tests Bug 15407: Koha::Patron::Categories - remove sql queries in some pl and pm Bug 15407: Koha::Patron::Categories - replace C4::Category->all Bug 15407: Koha::Patron::Categories - replace GetBorrowercategory Bug 15407: Koha::Patron::Categories - replace GetBorrowercategoryList Bug 15407: Koha::Patron::Categories - replace GetborCatFromCatType Bug 15407: (follow-up) Koha::Patron::Categories - replace C4::Category->al Bug 15407: Uniformise calls in patron-attr-types Bug 15758: Koha::Libraries - Remove GetBranchName Bug 15758: Koha::Libraries - Remove GetBranchesLoop Bug 15758: Koha::Libraries - Move mybranch to C4::Context Bug 15758: Koha::Libraries - Remove GetBranches Bug 15758: Koha::Libraries - Move onlymine to C4::Context::only_my_library Bug 15758: Koha::Libraries - Ultimate duel for C4::Branch Bug 15758: Koha::Libraries - Add tests for the Branches TT plugin Bug 15758: Koha::Libraries - Do not select an option if selected is defined Bug 15758: Fix variable name, it's a branchcode Bug 17089: Koha::Ratings - Add Koha::Rating[s] classes Bug 17089: Koha::Ratings - move tests Bug 17089: Koha::Ratings - Remove AddRating Bug 17089: Koha::Ratings - Remove ModRating Bug 17089: Koha::Ratings - Remove DelRating Bug 17089: Koha::Ratings - Remove GetRating Bug 17089: Koha::Ratings - Remove C4::Ratings Bug 17089: Mark out the boundaries of ratings Bug 17089: Improve errors handling Bug 16911: Koha::Patron::Categories - Add tests for ->get_expiry_date Bug 16911: Koha::Patron::Categories - Move GetExpiryDate to ->get_expiry_date Bug 16911: Koha::Patrons - Add tests for ->extend_subscription Bug 16911: Koha::Patrons - Move ExtendMemberSubscriptionTo to ->extend_subscription Bug 16911: Rename extend_subscription with renew_account Bug 16911: ->get_expiry_date accepts strings Bug 16851: Move HasOverdues to Koha::Patron->has_overdues Bug 15839: Koha::Reviews - Add Koha::Review[s] classes Bug 15839: Koha::Reviews - Remove getreviews Bug 15839: Koha::Reviews - Remove getallreviews Bug 15839: Koha::Reviews - Remove approvereview & unapprovereview Bug 15839: Koha::Reviews - Change default value for approved to 0 Bug 15839: Koha::Reviews - Remove deletereview Bug 15839: Koha::Reviews - Remove getreview Bug 15839: Koha::Reviews - Remove getnumberofreviews Bug 15839: Koha::Reviews - Remove updatereview Bug 15839: Koha::Reviews - Remove savereview Bug 15839: Koha::Reviews - Remove C4::Review residue Bug 17210: Add missing return false for print-large Bug 17222: Use jQuery selector instead Bug 16272: Automatically switch an on-site checkout to a regular checkout when checked out Bug 16272: Specific case when switching an on-site checkout to a regular checkout Bug 16272: (follow-up) Specific case when switching an on-site checkout to a regular checkout Bug 16272: Add description for tests Bug 16275: Add the new pref PatronSelfRegistrationEmailMustBeUnique Bug 16275: Do not allow a self registration with an existing email address Bug 16586: [QA Follow-up] Simplify code Bug 17032: Remove warning "keys on reference is experimental" Bug 16908: Koha::Patrons - Remove GetSortDetails Bug 17099: C4::Koha - Remove GetSupportName and GetSupportList Bug 17161: Add missing td tag Bug 17193: Remove C4::Search::SearchAcquisitions Bug 17206: Fix switch to default framework Bug 7677: UT: add unit tests for GetPreviousSerialid Bug 7677: FIX QA issues Bug 7677: Fix tests Bug 17197: Remove misc/batchupdateISBNs.pl Bug 17285: (15758 follow-up) Fix advanced editor Bug 16274: Add the new pref PatronSelfRegistrationLibraryList Bug 16274: Limit the patron self registration to some libraries Bug 15407: Remove 'No method selected!' warnings Bug 16949: Simplify the checkbox checked condition Bug 16276: Update borrowers.lastseen when a patron is active Bug 16276: Make delete_patrons.pl deal with --last_seen Bug 16276: Change to GetBorrowersToExpunge to take last_seen into account Bug 16276: Make the batch patron deletion tool deal with last_seen Bug 16276: Add a new pref TrackLastPatronActivity and new column borrowers.lastseen Bug 17299: Display date due correctly on SCO Bug 17114: Fix XSS in picture-upload.pl Bug 17146: Fix CSRF in picture-upload.pl Bug 17146: Raise Wrong CSRF token warnin for the 'Delete' action Bug 16800: Fix XSS in catalogue/*detail.tt - title Bug 16800: Fix XSS in catalogue/*detail.tt - author Bug 16800: Fix XSS in catalogue/*detail.tt - isbn Bug 16800: Fix XSS in additem.pl Bug 17315: (Bug 17210 follow-up) Fix "Save to lists" links from the result page Bug 17316: Do not display the list's name if the user does not have permission - OPAC Bug 17316: Do not display the list's name if the user does not have permission - Staff Bug 17294: Make reserves_stats.pl plack safe Bug 17296: Display warning if AnonymousPatron is not correctly set Bug 17300: Fix serials search Bug 16816: Do not copy parameters used when duplicating a report Bug 14707: Update existing installations and correct wrong values Bug 14435: Add the ability to store result's report Bug 16519: Replace 'our' with 'my' in [opac-]addbybiblionumbers.pl Bug 16551: Display the name of lists to the search results at the OPAC Bug 16552: Add the ability to change the default holdings sort Bug 16961: Add Koha::Objects->update Bug 16273: Add the new pref PatronSelfRegistrationPrefillForm Bug 16273: Add the ability not to display the login details for newly registered patrons Bug 15895: Remove useless discard_changes calls Bug 17088: Add tests to cover the changes Bug 17396: Remove unnecessary t/DataTables/Members.t is unnecessary tests Bug 17386: Simplify code Bug 16769: Uniformise calls to Koha::Cache->set_in_cache Bug 16838: ES - install mappings for new installs Bug 17372: Standardize Elasticsearch paths Bug 17091: Add AUTOLOAD to Koha::Objects Bug 17091: Remove explicit declaration of Koha::Objects->update Bug 17091: Remove explicit declaration of Koha::Objects->count Bug 17091: Remove explicit declaration of Koha::Objects->pager Bug 17091: Remove explicit declaration of Koha::Objects->reset Bug 17091: In a first phase, restrict the usage of AUTOLOAD in Koha::Objects Bug 17091: Add delete to the Koha::Objects AUTOLOAD method Bug 17358: Rename COU with COUNTRY and LAN with LANG Bug 17357: Replace WTHDRAWN with WITHDRAWN in installer files Bug 17226: Improve Koha::Object's AUTOLOAD method Bug 17226: Make Koha::Object->get_column available Bug 14899: Add tableDND JS lib Bug 14899: Add the mapping configuration page in the admin module Bug 14899: Add a link to the new page in the admin Bug 14899: Add a reset option Bug 17216: Add Koha::AuthorisedValueCategory|ies classes Bug 17216: Add new table authorised_value_categories and populate it Bug 17216: Add some other AV categories Bug 17216: DBIC Schema changes Bug 17216: Update the admin interface Bug 17216: Add FK on mss.authorised_value Bug 17216: Use Koha::AVC from mss.pl Bug 17216: Add FK on authorised_values.category Bug 17216: Update DBIC Schema Bug 17216: Update DBIC schema for MSS Bug 17216: Fix tests Bug 17216: Fix other tests Bug 17216: Do not display branches, itemtypes and cn_source Bug 17216: Do no display the empty string category name Bug 17216: Internal AV should be correctly handled when creating a new category Bug 17216: Move the AV cat list file to the top level Bug 17248 - Koha::AuthorisedValues - Remove GetKohaAuthorisedValueLib Bug 17094: Make Koha::Virtualshelf methods return Koha::Objects-based objects Bug 16850: Add test coverage for CanBookBeIssued Bug 16850: Remove C4::Members::IsMemberBlocked Bug 17389: (bug 16035 follow-up) Fix export non-default frameworks Bug 17389: Clear logs Bug 17365: Fix XSS in moremember.pl and memberentry.pl Bug 16358: Do not redirect to the editor when deleting records Bug 17216: Revert changes to ItemsSearchField schema file Bug 10337: Add a script to populate devs' DBs with sample data Bug 17393: Fix non-Latin chars handling in self reg Bug 17426: Do not set AutoCommit in tests Bug 10455: Remove biblioitems.marc - DB changes Bug 10455: Remove biblioitems.marc Bug 10455: Remove biblioitems.marc - rm MARC21_parse_test.pl Bug 10455: Remove biblioitems.marc - update delete_records_via_leader.pl Bug 10455: (follow-up) Remove biblioitems.marc Bug 10455: (follow-up 2) Remove biblioitems.marc Bug 10455: (follow-up 3) Remove biblioitems.marc Bug 10455: Remove MARC21_utf8_flag_fix.pl Bug 10455: Fix tests Bug 17368: Update KitchenSinkPlugin.kpz Bug 17411: Remove 3 other occurrences of exit 1 Bug 17173: Quick jump to subfield edition form Bug 17249: Remove GetKohaAuthorisedValuesFromField - Add classes MarcSubfieldStructure[s] Bug 17249: Remove GetKohaAuthorisedValuesFromField - add tests Bug 17249: Remove GetKohaAuthorisedValuesFromField - Add search_by_marc_field Bug 17249: Remove GetKohaAuthorisedValuesFromField - inventory Bug 17249: Remove GetKohaAuthorisedValuesFromField - (follow-up) inventory Bug 17249: Remove GetKohaAuthorisedValuesFromField Bug 17249: GetKohaAuthorisedValuesFromField - rm GetAuthValCodeFromField Bug 17250 - Koha::AuthorisedValues - Remove GetAuthValCode Bug 17250: Do not retrieve marc subfield structure when the authorised value is not defined Bug 17251: Koha::AuthorisedValues - Remove GetKohaAuthorisedValuesMapping Bug 17252 - Koha::AuthorisedValues - Remove GetAuthorisedValueByCode Bug 17253: Koha::AuthorisedValues - Remove GetKohaAuthorisedValues Bug 17253: Fetch all the columns instead of only authorised_value Bug 16891: Move C4::Members::MoveMemberToDeleted to Koha::Patron->move_to_deleted Bug 16907: Koha::Patrons - Move DelMember to ->delete Bug 16907: Koha::Patrons - Move HandleDelBorrower to ->delete Bug 16907: Make sure the log will be written only if the patron has been deleted Bug 17445: Just some refactoring Bug 17445: Move the params check after the authentication check Bug 15131: Add AllowItemsOnHoldCheckoutSCO to UsageStats Bug 16965: Add Koha::Objects->search_related Bug 16965: search_related returns an instanciated Koha::Objects-based object Bug 16965: Allow Koha::Objects->result_class Bug 17080: Handle default values for NOT NULL columns from Koha::Object->new Bug 17080: Make C4::Members::AddMember uses Koha::Patron->store Bug 17080: borrowers table - use default values defined in the DBIx::Class schema Bug 17080: borrowers.checkprevcheckout - use the default value defined in the DBIx::Class schema Bug 17080: categories.checkprevcheckout - use the default value defined in the DBIx::Class schema Bug 17425: Add the Object::MethodNotCoveredByTests exception Bug 5670: Add the 'required' class to required fields Bug 5670: mv housebound_* to search_housebound_* Bug 5670: remove useless call to ->new when ->search is enought Bug 5670: Update constraint name to match with the one in updatedatabase Bug 5670: Does not return 0 in Koha::Patron->housebound_* methods Bug 5670: Use Koha.Preference to retrieve syspref from templates Bug 5670: Use the fa icon for the save button Bug 5670: Add a confirmation message on delete Bug 16850: Adjust number of tests Bug 17375: Search by dateofbirth - Add tests Bug 17375: Search by dateofbirth - handle invalid dates Bug 14874: Set default DefaultPatronSearchFields Bug 17495: Fix 'method selected not covered by test' in reports/issues_stats.pl Bug 14598: Fix warning from effective_itemtype Bug 5260: make tests pass even without patron cat 'PT' Bug 5260: Insert the new letter for existing installs Bug 5260: simplify script and error handling Bug 5260: Use post params instead of get to avoid putting op=email in the browser history Bug 7679: Followup: circulation statistics wizard improvements Bug 15801: Koha::BiblioFrameworks - Remove C4::Koha::GetFrameworksLoop Bug 15801: Koha::BiblioFrameworks - Remove C4::Koha::getframeworks Bug 15801: Koha::BiblioFrameworks - Remove C4::Koha::getframeworkinfo Bug 15801: minor fixes Bug 13321: Rename variables Bug 13321: use the populate_with_prices where needed Bug 13321: Fix the prices calculation method Bug 13321: Tax and prices calculation - DB Changes Bug 13321: Csv export - Display rrp and ecost with and without taxes Bug 13321: Fix unitprice rounding Bug 13324: The fund values should be based on tax included values Bug 13323: Tax rate can change on receiving - DB changes Bug 13323: Tax rate can change on receiving Bug 17428: (QA followup) Remove warning Bug 17356: Add atomic update .perl skeleton file Bug 13321: Fix tests in Budgets.t Bug 16912: Koha::Patrons - Move AddEnrolmentFeeIfNeeded to ->add_enrolment_fee_if_needed Bug 16912: Koha::Patrons - Move and rewrite tests for AddEnrolmentFeeIfNeeded Bug 16912: Update patron category enrolment fees Bug 17397: Simplify code passing the Koha::Object to the template Bug 17397: Do not display parenthesis if the manager has been deleted Bug 15803: Koha::AuthorisedValues - Remove C4::Koha::GetAuthorisedValueCategories Bug 17459: Add a script to create a superlibrarian user Bug 15581: Add a circ rule to limit the auto renewals given a delay Bug 15581: Display the latest auto renew date possible when renewing manually Bug 15581: Display the generic "schedule for auto renew" message on the checkouts table Bug 15581: Change wording for auto too late Bug 17261: The default memcached namespace is "koha" Bug 17261: Memcached may not longer be running Bug 17274: Display the place where the memcached is picked Bug 16852: Remove GetBorrowerCategorycode Bug 17524: Fix datepicker check for iso dates Bug 17537: Fix valid-templates.t for some include files Bug 17538: (Bug 17216 follow-up) Fix t/db_dependent/Upload.t Bug 17540: (Bug 7216 followup) Fix tests for auth_values_input_www.t Bug 17494: Make sure the same verification token won't be generated twice Bug 12633: Remove export line Bug 16908: Remove non-desired export line Bug 17548: Fix step 1 of memberentry Bug 17476: Add a way to bypass dt_from_string processing time for slow servers Bug 17535: Fix search for reports by keywords Bug 17552: Revert "Bug 17091: Remove explicit declaration of Koha::Objects->reset" Bug 17552: Continue revert and add tests to highlight the problem Bug 17564: Fix t/db_dependent/Acquisition/OrderUsers.t Bug 17563: Fix Acquisition/CancelReceipt.t Bug 17562: Fix Acquisition.t Bug 17582: Fix authority framework edition Bug 15690: CardnumberLength should not be bigger than 16 Bug 17555: Add Koha::Patron->category Bug 17594: Make Koha::Object->discard_changes available Bug 17604: GetMemberDetails - Add Koha::Patron::Category->effective_BlockExpiredPatronOpacActions Bug 17579: Add the Koha::Patron->is_expired Bug 17579: Make sure we are testing the real life Bug 17599: Move C4::Circulation::GetIssuingRule to Koha::IssuingRules->get_effective_issuing_rule Bug 17522: Fix opac-user.pl if OpacRenewalAllowed is set Bug 17599: Make the tests pass Revert "Bug 17634: Unit test t/db_dependent/ArticleRequests.t is failing" Bug 17634: Fix circ dependency with require instead of use Bug 17637: Fix tests Auth_with_ldap.t Bug 17641: Fix t/Biblio/Isbd.t Bug 17633: Do not call set_preference from tests Bug 17640: Fix t/db_dependent/Template/Plugin/Categories.t Bug 17431: Create the object we need instead of assuming something exists Bug 17431: Remove use of C4::Items and C4::Biblio Bug 17651: borrowers.updated_on can be null - swagger def Bug 17323: Column search_history.time cannot be null Bug 17377: Add tests for json2marc Bug 17377: ES - Take control fields into account Bug 17659: Fix sample_notices.sql for fr-CA Bug 17654: Add tests to enforce swagger definition files integrity Bug 17657: Fix locations of item types images Bug 17513: Create GRANT for user at localhost in koha-create Bug 17642: Try to fix AV code Bug 17642: Add find_by_koha_field Bug 17642: use find_by_koha_field when needed Bug 17642: Add get_description_by_koha_field Bug 17642: use get_description_by_koha_field when needed Bug 17642: Add and use get_descriptions_by_koha_field Bug 17642: Do not explode if no authorised value exist Bug 17660: #adv is considered as an ad by adblock Bug 17626: Remove INSTALL.distri files Bug 17626: Remove existing install instructions and link to the wiki pages instead Bug 17391: Add atomic update file Bug 17391: Fix number of values in sysprefs.sql Bug 17278: Use available limit when requesting zebra when ccl query is used Bug 17278: Fix "show all items" link Bug 17278: Fix test compilation errors Josef Moravec (13): Bug 17444: Enable exporting by time, not only date Bug 17341: Enhance the report action button on guided_reports.pl Bug 17434: Moremember displaying primary and secondary phone number twice Bug 16952: Czech language definitions for sorting in Zebra Bug 17397: Show name of librarian who created circulation message Bug 17443: Make possible to renew patron by later of expiry and current date Bug 17443: Added tests Bug 17402 Enhance the actions button on serials-search.pl Bug 17518: Displayed language name for Czech is wrong Bug 17558: Fix adding manager id to patron messages in store method Bug 17558: Add more tests Bug 17558: QA followup - use TestBuilder for creating patron Bug 17616: Select tag on elasticsearch mappings page is not closed properly Julian FIOL (1): Bug 14707 : Replace UsageStatsCountry syspref from free text to a dropdown list. Julian Maurice (24): Bug 16693: Remove reserve/renewscript.pl Bug 16271: Allow more filters on /api/v1/holds Bug 14793: New cataloguing plugin unimarc_field_225a_bis Bug 16212: Add script minifySwagger.pl Bug 13501: Add JS library select2 3.5.4 Bug 13501: Indentation fix (batchMod-edit.tt) Bug 13501: Move "Required" and checkbox after input/select Bug 13501: Highlight select2 control if field is required and value is missing Bug 13501: Fix behavior of 'Delete subfield' button on select2 controls Bug 14695: Fix typo in template Bug 7677: QA followup Bug 7677: UT: Remove $dbh->rollback Bug 7679: circulation statistics wizard improvements Bug 7679: Fix criteria display Bug 7679: Group different case values in the same row/column Bug 7679: Fix several bugs in circulation statistics wizard Bug 7679: Fix two SQL queries when using patron attributes Bug 7679: Various fixes for circulation statistics wizard Bug 7679: Display all table headers (case and accent sensitive) Bug 13321: Recalculate tax_value for partially received orders Bug 13321: Update DBIx::Class schema files Bug 13321: Fix table display in invoice page Bug 13323: QA fix (trailing whitespace) Bug 13323: Recalculate tax_value for partially received orders Karl Holten (1): Bug 16289: Abbreviated formatting for numbering patterns Katrin Fischer (26): Bug 16472: Update MARC21 de-DE frameworks to update 22 (April 2016) Bug 16893 - Missing closing tag disrupts patron checkouts page style Bug 7441: QA follow-up - Add note about missing NORMARC support Bug 17074: Fix links in result list of 'scan indexes' and keep search term visible Bug 17074: Follow-up: fixing encoding issues with multiple search terms Bug 11144: Fix sequence of cronjobs: automatic renewal - fines - overdue notices Bug 17301: Follow-up - Standardize headings Bug 17345: Fix typo in sysprefs.sql Bug 17441 - t/db_dependent/Letters.t fails on Jenkins Bug 14610 - Follow-up Bug 14610: Follow-up 2 Bug 6934: QA follow-up Bug 6934: Fix tiny capitalization issue missed before Bug 5260 - Add option to send an order by e-mail to the acquisition module Bug 5260: Unit tests for new functionality in SendAlert Bug 5260 - Schema changes Bug 5260: Follow-up - Reindenting POD of SendAlerts Bug 5260: QA follow-up: Fix error when no notice template is defined Bug 5260: QA follow-up - Add sample ACQORDER notice to sample notices Bug 7679 - Follow-up for terminology Bug 7679: Follow-up to fix group by hour Bug 16123: Remove bold formatting from first level fund Bug 15581: Follow-up - suggested change to the OPAC message Bug 12359: Add HidePatronName functionality to the holds queue Bug 17543: Update German web installer sample files for 16.11 Bug 17391: Add missing prefs to sysprefs.sql Koha Team Lyon 3 (1): Bug_17484 Search with date range limit (lower and upper) does not work Koha instance kohadev-koha (1): Bug 16551: Follow-up - Regenerated opac.css file Kyle M Hall (185): Bug 16569 - Message box for "too many checked out" is empty if AllowTooManyOverride is not enabled Bug 16610 - Regression in SIP2 user password handling Bug 10459 - DBRev 16.06.00.002 Bug 16492 - Checkouts ( and possibly checkins and other actions ) will use the patron home branch as the logged in library Bug 16636 [QA Followup] - Move tests to t/External Bug 10459 - Update Schema Bug 16692 - Error "No method update!" when creating new serial issue Bug 16672 - Add ability to remove expired holidays from special_holidays Bug 16672 [QA Followup] - Convert negative days to positive days Bug 16148 [Follow-up] - Use Font Awesome for arrows instead of images Bug 16534: (followup) - Tidy AddIssue Bug 11490 - DBRev 16.06.00.003 Bug 16612 - Cannot set "Until date" for "Enrollment period" for Patron Categories Bug 16737 - Error when deleting EDIFACT message Bug 3669 [QA Followup] - Give the text area some breathing room Bug 15485 - DBRev 16.06.00.004 Bug 16745 - Add edit catalog and edit items links to serials toolbar Bug 16768 - DBRev 16.06.00.005 Bug 14048: [QA Followup] Bug 14048 [QA Followup] - Delete only the removed system preference Bug 3534 - DBRev 16.06.00.007 Bug 16780 - Specify due date always sets time as AM when using 12 hour time format Bug 6906 - DBRev 16.06.00.008 Bug 14757 - Allow the use of Template Toolkit syntax for slips and notices Bug 14757 [QA Followup] - Add Unit Tests Bug 14757 [QA Followup] - Don't overload new for Modifications Bug 14790 - Add Opac view link to search results Bug 14790 - Add OPAC view link to items editor Bug 14790 - Add OPAC view link to Serials detail Bug 14790 [QA Followup] - Don't show links unless OPACBaseURL is set Bug 14902 - DBRev 16.06.00.009 Bug 14902 - Fix issues with updatedatabase.pl Bug 15128 [QA Followup] - Make suggestion display after being added Bug 15128 [QA Followup 2] - Only count pending suggestions for the limit Bug 15128 - DBRev 15128 Bug 16917 - Error when importing patrons, Column 'checkprevcheckout' cannot be null Bug 16934 - Cannot add notes to canceled and deleted order line Bug 11606 - DBRev 16.06.00.011 Bug 16573 - DBRev 16.06.00.012 Bug 15397 - Pay selected does not works as expected Bug 16436 - Allow action logs to be logged to the koha log file Bug 16436 [QA Followup] - Use debug instead of info Bug 16988 - Suspending a hold with AutoResumeSuspendedHolds disabled results in error Bug 7441 - search results showing wrong branch? Bug 7441 - DBRev 16.06.00.013 Bug 17055 - Add classes to different note types to allow for styling on checkins page Bug 7741 - DBRev 16.06.00.013 - Add IGNORE to insert in case of backporting Bug 16829 - DBRev 16.06.00.014 Bug 14642 - DBRev 16.06.00.015 Bug 16960 - Patron::Modifications should be fixed Bug 14390 - Fine not updated from 'FU' to 'F' on renewal Bug 14390 [QA Followup] - Unit Test Bug 14390 [QA Followup] - Fix warning Bug 16212 - Generate initial swagger.min.json file Bug 14504: Changes missed while fixing patches Bug 16942 - Confirm hold results in ugly error Bug 16942 [QA Followup] - Add unit test Bug 14868 - Update swagger.min.json Bug 11144 [QA Followup] - Let each script run in sequence even if one fails Revert Bug 17177 - This bug was for 3.20.x only Bug 7045 - DBRev 16.06.00.016 Bug 7045 - DBRev 16.06.00.017 Bug 11360 - Disable barcode field and submit button when a hold is found Bug 11360 [QA Followup] - Fix styles and button order Bug 10848 - Fix DBRev description Bug 11360 - Fix merge conflict Bug 14695 - Update database Bug 14695 - Update DB Schema file Bug 14695 - Add new circulation rule Bug 14695 - Tidy C4::Reserves::CanItemBeReserved Bug 14695 - Add ability to place multiple item holds on a given record per patron Bug 14695 [QA Followup] - Filling one hold fills all of them Bug 14695 [QA Followup] - Make existing unit tests pass Bug 14695 [QA Followup] - Fix clearing of all holds by patron at checkout Bug 14695 [QA Followup] - Fix method names 'type' to '_type' Bug 14695 [QA Followup] - Disable "Holds to place (count)" unless "Hold next available item" is checked Bug 14695 [QA Followup] - Tell librarian if item doesn't allow or forces item level holds in the OPAC Bug 14695 [QA Followup] - Unit Tests Bug 14695 [QA Followup] - Fix issues found by QA script Bug 16573 - Update Schema Bug 17189 [QA Followup] - Missing $ on $key var for unsafe variant Bug 14695 [QA Followup] Bug 14695 - DBRev 16.06.00.018 Bug 7045 - Fix DBRev 16.06.00.016 Bug 16911 [QA Followup] - Fix number of categories to look for after deleting one Bug 16851 [QA Followup] - Fix Unit Tests Bug 15839 - DBRev 16.06.00.019 Bug 16272 [QA Followup] - Indexer fails on indexing temparary testing records Bug 16272 - DBRev 16.06.00.020 Bug 16275 - DBRev 16.06.00.021 Bug 16685 - Use eval instead of do for .perl atomicupdates Bug 16685 [QA Followup] - Use Path::Tiny::slurp instead of File::Slurp Bug 17032 [QA Followup] - Update path to swagger.json file Bug 16978 - DBRev 16.06.00.022 Bug 17187 - DBRev 16.06.00.023 Bug 15164 - Allow editing of the invoice number after initial saving Bug 16911 [QA Followup] - No need to 'use C4::Members' Bug 6852 [QA Followup] - Tidy AddItem Bug 17284 - Patron details page ( moremember.pl ) show logged in library as patron's home library Bug 16311 - DBRev 16.06.00.024 Bug 16311 - Fix DBRev description Bug 7677 [QA Followup] - Replace GetItemnumberFromSerialId with use of Koha::Serial::Item(s) Bug 7677 - DBRev 16.06.00.025 Bug 7677 [QA Followup] - Fix issues with kohastructure Bug 7677 - Schema update Bug 7677 - Remove atomic update Bug 16274 - DBRev 16.06.00.026 Bug 16276 - DBRev 16.06.00.027 Bug 16276 - Update schema Bug 17010 - Canceling a hold awaiting pickup no longer alerts librarian about next hold Bug 12629 - Software error when trying to merge records from different frameworks Bug 13134 - Add patron category to returns confirmation dialogs Bug 17135 - DBRev 16.06.00.028 Bug 17327: Add unit test for regression Bug 17327: Item level holds no longer enforced Bug 14707 - DBRev 16.06.00.029 Bug 14707 - Remove atomic update Bug 16552 - DBRev 16.06.00.030 Bug 16273 - DBRev 16.06.00.031 Bug 17352 - Patron search type is hard coded to 'contain' in circ/circulation.pl Bug 15895 - Add Koha::Account module, use Koha::Account::pay internally for recordpayment Bug 15900 - Remove use of recordpayment in ProcessOfflinePayment Bug 15900 [QA Followup] - Use Koha::Patrons instead of Koha::Borrowers Bug 15901 - Remove use of recordpayment in C4::SIP::ILS::Transaction::FeePayment Bug 15902 - Remove use of recordpayment in process_koc.pl Bug 15902 [QA Followup] - Use Koha::Patrons instead of Koha::Borrowers Bug 15903 - Remove use of recordpayment in paycollect.pl Bug 15899 - Fix up unit tests Bug 15899 - Remove C4::Accounts::recordpayment Bug 17292 - Use of DBIx in updatedatabase.pl broke upgrade Bug 17088 - Bad MARC XML can halt export_records.pl Bug 17226 - Fix unit tests Bug 14899 - Convert links to buttons, add icons Bug 14514 - LocalHoldsPriority and the HoldsQueue conflict with each other Bug 10455 - DBRev 16.06.00.034 Bug 15131 - DBRev 16.06.00.035 Bug 17080 [QA Followup] - Fix number of tests Bug 17425 [QA Followup] - Remove superfluous tests Bug 5670 - DBRev 16.06.00.036 Bug 14610 - Add ability to place article requests in Koha - Update database Bug 14610 - Add and update modules Bug 14610 - Add and update scripts Bug 14610 - Add unit tests Bug 14610 - Update opac.css via less Bug 14610 [QA Followup] - Implement staff patron tab Bug 14610 [QA Followup] - Add notices to all language files Bug 14610 [QA Followup] - Add classes to table headers Bug 14610 [QA Followup] - Fix publishercode issue Bug 14610 - Update Schema files Bug 14610 - DBRev 16.06.00.037 Bug 14874 - DBRev 16.06.00.038 Bug 14598: (QA followup) Don't die on bad barcode Bug 14598 [QA Followup] - Only fetch bib data if needed Bug 14598 [QA Followup] - Correct the behavior of GetItem Bug 14598 [QA Followup] - Make unit test pass Bug 14598 [QA Followup] - Update localuse statistics also Bug 14598 - DBRev 16.06.00.039 Bug 5260 - DBRev 16.06.00.040 Bug 14629 - DBRev 16.06.00.041 Bug 14629 - Fix # of unit tests Bug 13321 - DBRev 16.06.00.042 Bug 13323 - DBRev 16.06.00.043 Bug 13321 / 13323 - Update Schema Bug 17397 - DBRev 16.06.00.044 Bug 17443 - DBRev 16.06.00.045 Bug 17397 - Update Schema Files Bug 15581 - DBRev 16.06.00.046 Bug 17518 - DBRev 16.06.00.047 Bug 16493: acq matching on title and author Bug 16493: [QA Followup] Restore title and author match as an option, make it the default Bug 17494: Prevent duplicate tokens from getting stored Bug 17589 - Improper method type in Koha::ItemType(s) Bug 17579 [QA Followup] - Fix the number of tests Bug 17634: Unit test t/db_dependent/ArticleRequests.t is failing Bug 17640 [QA Followup] - Remove any outstanding issues before removing patrons Bug 17644 - t/db_dependent/Exporter/Record.t fails Bug 14736 - AllowRenewalIfOtherItemsAvailable slows circulation down in case of a record with many items and many holds Bug 17601 - Regression: Incomplete CSS update introduced by Bug 14610 Bug 17663 - DBRev 16.06.00.048 Bug 17132 - Availability search broken when using Elastic Bug 17391 - DBRev 16.06.00.049 Bug 8835 - DBRev 16.06.00.050 Add release notes for the 16.11.00 release Merge remote-tracking branch 'translations/16.11.0-translate' into HEAD DBRev 16.11.00.000 Lari Taskula (23): Bug 16200: Make 'Hold waiting too long' translatable and give it an unique accounttype Bug 16200: Convert all existing expired holds accounttype to HE Bug 17042: Fix missing column in hold.json Bug 17041: Fix missing properties in patron.json Bug 16212: Use swagger.min.json insted of swagger.json Bug 16699: Split parameters and paths in Swagger Bug 16699: Add borrowernumberQueryParam for reusability Bug 16699: Fix mixed-up indentation from 2-4 spaces to 2 spaces Bug 16699: Support multiple types in primitive definitions Bug 16699: Reference new x-primitives in currently defined objects Bug 16699: Move Swagger-related files to api/v1/swagger Bug 16699: Remove requirement from borrowernumberQueryParam Bug 14868: Give users possibility to request their own object Bug 14868: Use x-koha-authorization in current routes Bug 14868: Display required permissions in permission error response Bug 17032: Make sure Swagger object definition is up-to-date with Koha-object Bug 17539: Fix Undefined subroutine &C4::Circulation::GetItem error Bug 17539: Fix Already in a transaction error Bug 17539: Fix failing Reserves.t tests if category enrolmentfee > 0 Bug 17431: Fix failing test t/db_dependent/api/v1/holds.t Bug 17431: (follow-up) Fix issuingrules Bug 17419: Fix smsalertnumber and mobile confusion in moremember.pl Bug 17086: Reword borrowers to patrons in Swagger tags for holds Lee Jamison (1): Bug 17220: Change hold confirmation string from 'Place hold' to 'Confirm hold' Liz (1): Bug 16619 - installer stuck in infinite loop Liz Rea (2): Bug 15213 - Fix tools sidebar to highlight Patron lists when in that module Bug 17356 - update README Lyon3 Team (1): Bug 14968 - found shouldn't be set to null when cancelling holds Magnus Enger (6): Bug 16823 - Comment out koha-rebuild-zebra in koha-common.cron.d Bug 17228 - Fix whitespace in etc/SIPconfig.xml Bug 17228 - Make two versions of SIPconfig.xml identical Bug 5456 - Create a link to opac-ics.pl Bug 17267 - Document koha-create --adminuser Bug 17266 - Update man page for koha-remove with -p Marc (11): Bug 16947: Can not modify patron messaging preferences Bug 16945: PatronSelfRegistration: Add note about setting PatronSelfRegistrationDefaultCategory Bug 17082: Translatability: Fix sentence splitting in member.tt Bug 17076 - Format fines in patron search results table Bug 17078 - Format fines on opac-account.pl Bug 16989 - Advanced search form does not display translated itemtype Bug 16953: Acquisitions home: Remove trailing › from breadcrumbs Bug 17403: Internal Server Error while deleting patron Bug 11217: The # in accountlines descriptions makes them un-writeoffable Bug 17411 - Change exit 1 to exit 0 in acqui/basket.pl to prevent Internal Server Error Bug 17404: Patron deletion page: Fix title and breadcrumb Marc V?ron (47): Bug 9543 - Show patrons messaging subscription on holds notification Bug 9543 - (Follow-up) Show patrons messaging subscription on holds notification Bug 16560: Translatability: Issues with "The entered " in opac-memberentry.tt Bug 16589 - Quote of the day: Fix upload with csv files associated to LibreOffice Calc Bug 16540 - Clean up opac-auth.tt for translatability Bug 16563: Translatability: Issues in opac-account.tt (sentence splitting) Bug 16620: Translatability: Fix problem with isolated word "please" in auth.tt Bug 16633: Translatability: Issues in tags/review.tt (sentence splitting) Bug 16634: Translatability: Fix issue in memberentrygen.tt Bug 16729: Use member-display-address-style*-includes when printing user summary Bug 16747 - Patron card creator broken with version 16.05 Bug 16534: (followup) Correct tiny typo Bug 16742: Remove unused template subject.tt Bug 16697: Translatability: Fix problem with isolated "'s"in request.tt Bug 16718 - Translatability: Fix problems with sentence splitting by in about.tt Bug 16768 - Add official number format for Switzerland: 1'234'567.89 Bug 16768: Add tests for Swiss number format Bug 16768: Update systempreferences.options (additional value CH) Bug 16768: (followup) Add Swiss format for datatables (format_price.inc) Bug 16772 - Change label from 'For:' to 'Library:' to ease translation Bug 16854: request.tt: Logic to display messages broken Bug 16774: Format date on 'Transfers to receive' page to dateformat system preference Bug 16562 - Translatability: Issue in opac-user.tt (separated word 'item') Bug 16779: Move road type after address in US style address formatting (main address) Bug 16795 - Patron categories: Accept integers only for enrolment period and age limits Bug 16857 - patron-attr-types.tt: Get rid of warnings "Argument "" isn't numeric" Bug 10760: Alternate Address: Make street number and street type editable Bug 10760: Alternate Address: Display street number and street type Bug 10760: (followup) Move street type after address Bug 16730 - Use member-display-address-style*-includes in moremember-brief.tt Bug 16682: Fix display if Batch patron modification tool does not get any patrons Bug 16682: (followup) Fix display if Batch patron modification tool does not get any patrons Bug 16810: Fines note not showing on checkout Bug 14138: Patroncard: Warn user if PDF creation fails Bug 16621: Translatability: Issues in opac-user.tt (sentence splitting) Bug 16701: Translatability: Fix problem with isolated ' in currency.tt Bug 16941: Can not add new patron in staff client Bug 16871: Translatability: Avoid [%%-problem and fix related sentence splitting in catalogue/detail.tt Bug 17100: Do not display payments if patron has nothing to pay Bug 16741 - Remove dead code "sub itemissues" from C4/Circulation.pm Bug 17149 - EDI accounts: Add missing '>' to breadcrumb Bug 13134: Fix template file to make category appear Bug 17144: Fix variable scope issues in edi_account.pl Bug 17322 - Translation breaks opac-ics.tt Bug 17384 - Categories do not display in patron editing form if they have only one category assigned Bug 17386: Add opac notes for patron to self checkout screen Bug 16687 - Translatability: Fix issues in Administration preferences Marcel de Rooy (88): Bug 16504: [QA Follow-up] Make koha-qa happy with two newlines Bug 16610: [QA Follow-up] Add a test Bug 16443: [QA Follow-up] Add two tests for get_fields Bug 16428: [QA Follow-up] Useless call to GetMarcStructure in _build_default_values_for_mod_marc Bug 10459: Borrowers should have a timestamp Bug 16609: Catch warning from Koha::Hold in Hold.t Bug 16635: [QA Follow-up] Eliminate some global package vars Bug 16636: [QA Follow-up] Make BakerTaylor plack safe Bug 16636: [QA Follow-up] Move External_BakerTaylor.t to t Bug 16502: Table koha_plugin_com_bywatersolutions_kitchensink_mytable not always dropped after running Plugin.t Bug 16502: Add additional test to Plugins.t Bug 16502: Adjust test for GetPlugins Bug 16502: Replace a few other ok-calls by is-calls Bug 16500: Catch two warns in TestBuilder.t with warning_like Bug 16500: [QA Follow-up] Catch warning if branch MPL already exists Bug 16607: Remove CPL/MPL from two unit tests Bug 16717: Remove hardcoded category from Holds.t Bug 16644: Plack: Use to_app to remove warning about Plack::App::CGIBin instance Bug 16751: What is sitemaper? Bug 16671: [QA Follow-up] Add new itemtype and remove bailout Bug 16671: [QA Follow-up] Replace remaining itemtype lines Bug 16859: Fix wrong item field name in export.pl Bug 15006: Centralize timeout logic and allow zero client timeout Bug 15006: [QA Follow-up] Satisfy qa tools with one tab less Bug 15006: [QA Follow-up] Only handle login requests in raw_transport Bug 16777: Correct intranet search alias Bug 7143: [QA Follow-up] Adjusting developer information Bug 16971: Missing dependency for HTML::Entities Bug 6499: [QA Follow-up] Trivial adjustments Bug 16929: Prevent opac-memberentry waiting for random chars Bug 16929: [QA Follow-up] Shortcut methods and use statements Bug 16929: [QA Follow-up] Add dependency for Bytes::Random::Secure Bug 16992: [QA Follow-up] Member-password should pass an userid Bug 17097: [QA Follow-up] Exit after redirect Bug 14390: [QA Follow-up] UpdateFine should be passed a hash Bug 14390: [Follow-up] Only update FU record in UpdateFine Bug 17223: Add Cache::Memcached to PerlDependencies Bug 16809: Follow-up for scalarizing biblionumber Bug 10407: Resolve warnings from child process Bug 10407: Add marcxml import (follow-up) Bug 10407: Add two subtests to t/ImportBatch.t Bug 10407: [QA Follow-up] Hashref process_batch params Bug 15407: [QA Follow-up] Fix POD in reserves_stats.pl Bug 15407: [QA Follow-up] Joubu, add your tests Bug 15407: [QA Follow-up] Confusing cathash removed Bug 15758: [QA Follow-up] Remove onlymine from Plugin/Branches.pm Bug 15758: [QA Follow-up] Some corrections related to GetBranchName Bug 15758: [QA Follow-up] Corrections related to GetBranches Bug 15758: [QA Follow-up] Final touch? Bug 17089: [QA Follow-up] Add some test descriptions to Ratings.t Bug 15839: [QA Follow-up] Update existing rows in dbrev Bug 15839: [QA Follow-up] Paging on opac-showreviews Bug 15839: [QA Follow-up] Error checking in opac-review.pl Bug 16365: Adding additional unsafe call-candidates from Acquisition Bug 16365: [QA Follow-up] Add some comment lines to Cache.pm Bug 16586: Koha Plugins: Limit results of GetPlugins by metadata Bug 16586: [QA Follow-up] Add test for two metadata conditions Bug 17109: Remove second authentication from (opac-)sendbasket Bug 17109: Add CSRF token to [opac-]sendbasket Bug 17109: Use Koha.Preference in sendbasket template Bug 17109: [QA Follow-up] Die when wrong token Bug 17110: Lower CSRF expiry in Koha::Token Bug 17110: Add unit test for MaxAge parameter in Token.t Bug 17187: Lower the timeout preference from 139 days to 1 day Bug 6852: Staged import reports wrong success for items Bug 16276: [QA Follow-up] Number of tests corrected Bug 16276: [QA Follow-up] Only track when pref is enabled Bug 17135: [QA Follow-up] Change location of new script to fix fines Bug 17135: [QA Follow-up] Changes as to reporting Bug 17302: [Follow-up] Make Normalize.pm undef-resistent Bug 7143: Release team for 16.11 Bug 17088: [Follow-up] Adjust POD in Logger.pm Bug 17088: [Follow-up] Use Logger for failed exports Bug 16769: [QA Follow-up] Still found an occurrence Bug 16769: [QA Follow-up] Remove unsupported deepcopy parameter Bug 17441: [QA Follow-up] Return value of SendAlerts Bug 17446: Typo seleted Bug 16245: [QA Follow-up] Replace typeofrecord2 by biblevel Bug 16965: [Follow-up] Adjust get_object_class Bug 14598: [QA Follow-up] Small changes Bug 14629: [QA Follow-up] Small tidy up Bug 17356: [QA Follow-up] Minor changes to skeleton.perl Bug 17539: [QA Follow-up] Move handle after schema Bug 17572: [QA Follow-up] Cosmetic changes Bug 17642: [QA Follow-up] Issues_stats.pl is not plack safe Bug 17663: Forgotten userpermissions from bug 14686 Bug 8835: Drop issn_idx for completeness Bug 8835: New db rev for issn_idx Mark Tompsett (30): Bug 16582 t/Price.t test should pass if Test::DBIx::Class is not available Bug 16618: 00-load.t prematurely stops all testing Bug 10459 renamed timestamp to updated_on Bug 16635: t/00-load.t warning from C4/Barcodes/hbyymmincr.pm Bug 16636: t/00-load.t warning from C4/External/BakerTaylor.pm Bug 16637: Dependency for C4::Tags not listed Bug 16869: Silence and catch warnings in t/db_dependent/SuggestionEngine_ExplodedTerms.t Bug 16860: Catch warning t/db_dependent/ClassSource.t Bug 16805: Tweak new test message to say getalert Bug 16805: Log in with database admin user breaks OPAC Bug 16866: Catch warning t/db_dependent/Languages.t Bug 16920: sysprefs.sql - missing comma for MaxOpenSuggestions Bug 16868: Silence error t/db_dependent/Linker_FirstMatch.t Bug 16864: Silence warnings in t/db_dependent/ILSDI_Services.t Bug 16622: some tests triggered by prove t fail for unset KOHA_CONF Bug 10148: Marc21 field 007 builder improper reload values Bug 16885: koha-stop-zebra should be more sure of stopping zebrasrv Bug 16615: Follow up - missed a spot Bug 16809: Silence authority warnings C4::Biblio::TransformHtmlToMarc Bug 11592: Updated License Text and use Modern::Perl Bug 11592: Add should_hide_marc method to filter Bug 11592: Applying filtering to opac interface. Bug 11592: Biblio tweak for MARCSUBJECT Bug 11592: MARCView and ISBD followup Bug 16978: Add delete reports user permission Bug 16978: Followup - Copy create_report permissions for delete_report Bug 17307: Smaller counter-patch Bug 17324: Deal with branchcode NULL issue Bug 17292: Follow up - tweak to make it pass cleaner Bug 15690: Hardcoded 16 is uncool Martin Renvoize (3): Bug 17432: Remove minification Bug 17445: Add 'malformed query' error response Bug 17428: [REST] best practice followup Mason James (1): Bug 17035 - Koha allows system-wide 'read' access to all Koha zebra databases, by default Matthias Meusburger (5): BZ7677: New areas in subscriptions and new functions when receiving. Bug 7677 [Follow-up]: New areas in subscriptions and new functions when receiving. Bug 7677 [QA Followup] - Replace GetItemnumberFromSerialId with use of Koha::Serial::Item(s) Bug 7677: QA followup Bug 17481: Fix incorrect merge of bug 11048 (logout redirection for CAS authentication) Mirko Tietgen (14): Bug 17013 - build-git-snapshot: add basetgz parameter and update master version number Bug 17064 - Delete backup marc21_framework_DEFAULT.sql~ file Bug 17065 - Rename C4/Auth_cas_servers.yaml.orig Bug 17043 - debian/list-deps fixes, master edition Bug 17043 - master control file Bug 17043 - Readonly deps Bug 17019 - debian/changelog update Bug 17062 - debian/control.in update: change maintainer Bug 17087 - Set Test::WWW::Mechanize version to 1.42 Bug 15200 - t/Creators.t fails when using build-git-snapshot Bug 17084 - Automatic debian/control updates (master) Bug 17223 Follow-up: updated control file Bug 17085 - Specify libmojolicious-perl min version Bug 17084 debian/control updates (master) Morgane Alonso (1): Bug 12509 - Fix Untranslatable Restriction added by overdues process NguyenDuyTinh (1): Bug 16705 - Add missing status to serials history in OPAC Nick Clemens (53): Bug 9543 - Show patrons messaging subscription on holds notification not already waiting Bug 16708 - (QA followup) Fix pod copy/paste error Bug 16651: Notes field blank for 952$z in opac-course-details.pl Bug 3534 - Patron quick add form Bug 3534 - QA Followup - use floating save Bug 3534 (QA Followup) Fix indentation, show guarantor form, ignore bad data in pref Bug 3534 (QA Followup) Rebase and change floating save Bug 16855 - Poor performance due to high overhead of SQL call in export.pl Bug 16807: Frameworks unordered in dropdown when adding/editing a biblio Bug 16807 - Use Koha::BiblioFrameworks instead of GetFrameWorkLoop Bug 14902 - Add qualifier menu to staff side "Search the Catalog" Bug 15128 - Add ability to limit patrons open purchase suggestions Bug 15128 - Followup Bug 15128 (QA Followup) Display all purchase suggestions whether or not suggestion was added Correct enforcement of 0 limit Bug 15128 - (QA Followup) Fix use of 'my' variable causing loss of data Bug 15128 - (QA Followup) Don't get patrons suggestions if limit not set Bug 15853 - Add author and link columns to opac course reserves table Bug 16681 - Allow update of opacnote via batch patron modification tool Bug 11606: Add Novelist client to staff Bug 17231 - HTML5MediaYouTube should recognize youtu.be links from youtube as well at the full links Bug 17231 - (QA Followup) Bug 16918 (QA Followup) - Add reverse proxy and fix intranet vs opac typo Bug 8030 - Change pickup location of a hold from patron record Bug 8030 (QA Followup) - Use REST api and provide feedback Bug 8030 - (QA followup) Remove svc file no longer user Use animated gif for waiting as elsewhere Remove confirmation Bug 8030 - (QA Folllowup) Use Koha::Libraries Bug 17295 - Missed variable removal in subscription-add.pl from Bug 15758 Bug 14752 - Add multiple copies to a basket at once Bug 14752 - (QA followup) Remove annoying modal, use dialog box instead Bug 16732 - Add audio alerts (custom sound notifications) to web based self checkout Bug 17213 - Self registration cardnumber is not editable if errors found when form submitted Bug 17213 - Add HTML5 validation to cardnumber field on patron self registration Bug 17331 - Show holding branch in holds awaiting pickup report Bug 15975 - Add Owning Library Column to Checkouts Bug 15975 (QA Followup) Fix colspan for footer Bug 17301 - Add callnumber to label-edit-batch.pl Bug 16520 (Follow up) Rebase fixes Bug 15388 - Show Syndetics covers by UPC in search results Bug 17392 - opac/svc/overdrive_proxy is not plack safe Bug 10455 (QA Followup) Bug 17154 (QA followup) replace tabs with spaces Bug 14752 - Followup to fix error if barcode fields undefined Bug 14874 - Add ability to search for patrons by date of birth from checkout and patron quick searches Bug 14629 - Add aggressive ISSN matching feature equivalent to the aggressive ISBN matcher Bug 14629 - [QA Followup] Pass invalid ISSN through GetVariationsOfISSN Bug 14629 - (QA Followup) sysprefs.sql changes Bug 13321 - (QA Followup) Restore standing order functionality Bug 16641: Update Novelist in OPAC to use updated call to fetch content Bug 17204: Rancor Z39.50 search fails under plack Bug 16520 - (Follow up) Restore retrieval of syspref_cache Bug 17590 - Exporting reports as CSV with 'delimiter' SysPref set to 'tabulation' creates files with 't' as separator Bug 17626 (QA followup) Bug 17391 (QA Followup) use INSERT INGORE in atomicupdate Nicole C Engard (2): Bug 16727: Clarify upload category note Bug 16981: Add EDI Admin to Acq Menu Nightly Build Bot (1): Bug 17084 - Automatic debian/control updates (unstable) Oliver Bock (1): Bug 16615: Open Library API fails for full-site-SSL Olli-Antti Kivilahti (5): Bug 15172: Serial enumchron/sequence not visible when returning/checking in Items Bug 14844: Corrupted storable string. When adding/editing an Item, cookie LastCreatedItem might be corrupted. Bug 14868: Swagger2-driven Permission checking Bug 10407: Allow MARCXML records to be imported via GUI (groundwork) Bug 16556 - KohaToMarcMapped columns sharing same field with biblio(item)number are removed. Owen Leonard (65): Bug 16548 - All libraries selected on Tools -> Export Data screen Bug 16001 - Use standard message dialog when there are no cities to list Bug 16450 - Remove the use of "onclick" from guarantor search template Bug 16437 - Automatic item modifications by age needs prettying Bug 16336 [Revised] UX of holds patron search with long lists of results Bug 16005 - Standardize use of icons for delete and cancel operations Bug 16529 - Clean up and improve upload template Bug 15676 - Actions in pending offline circulation actions are not translatable Bug 16592 - Use Bootstrap modal for MARC and Card preview on acquisitions receipt summary page Bug 16127 - Add discharge menu item to patron toolbar Bug 16541 - Make edit and delete links styled buttons in cities administration Bug 16543 - Make edit and delete links styled buttons in patron attribute types administration Bug 16148 - Revised layout and behavior of marc modification template management Bug 16148 [Follow-up] Revised layout and behavior of marc modification template management Bug 16462 - Change default sorting of circulation patron search results to patron name Bug 16400 [Follow-up] Proposal to uniform the placement of submit buttons Bug 16468 - Remove last "onclick" from the stage MARC records template Bug 16469 - Remove the use of "onclick" from some catalog pages Bug 16477 - Improve staff client cart JavaScript and template Bug 16490 - Add an "add to cart" link for each search results in the staff client Bug 16494 - Remove the use of "onclick" from some patron pages Bug 16513 - Improvements and fixes for quote upload process Bug 16549 - Remove the use of "onclick" from header search forms Bug 16557 - Remove the use of "onclick" from several include files Bug 16602 - Remove the use of "onclick" from several templates Bug 16762: Record matching rules: Remove match check link removes too much Bug 16600 - Remove some obsolete references to Greybox in some templates Bug 16566 [Revised] 'Print slip' button formatting inconsistent Bug 16778: Replace usage of Greybox modals with Bootstrap modals Bug 16893: Missing closing tag disrupts patron detail page style Bug 16900 - Hold suspend button incorrectly styled in patron holds list Bug 16538: Improve the style of progress bars Bug 16906 - Add DataTables pagination and filter to top of saved SQL reports table Bug 16310 - Remove the use of "onclick" from audio alerts template Bug 16903 - Multiple class attributes on catalog search tab Bug 13921 - XSLT Literary Formats Not Showing Bug 11019 - Require some fields when adding authorized value category Bug 17200 - Badly formatted "hold for" patron name on catalog detail page Bug 16464 - If a patron has been discharged, show a message in the OPAC Bug 14612 - Overdue notice triggers should show branchname instead of branchcode Bug 16576 [Revised] Remove the use of "onclick" from label templates Bug 16738 - Improve EDIFACT messages template Bug 17011 - Remove "onblur" event attribute from some templates Bug 16937 [Revised] Remove "onclick" from the manage staged MARC records template Bug 17112: Action buttons for course reserves detail page Bug 16946 [Revised] Remove the use of "onclick" from several serials templates Bug 16963 - Remove the use of "onclick" from subscription add template Bug 16968 - Remove the use of "onclick" from serial patron and vendor search templates Bug 16995 - Remove event attributes from two include files Bug 17012 - Remove more event attributes from administration templates Bug 16938: Remove the use of "onclick" from batch patrons modification template Bug 13949 - Item search should have holding library Bug 17194 - When edit record, Button "Z39.50/SRU search" not work Bug 16967: Remove the use of "onclick" from serial frequency and numbering management Bug 17147 [Revised] Streamline messages following batch record modification Bug 17010 [Follow-up] Canceling a hold awaiting pickup no longer alerts librarian about next hold Bug 16752 - Remove the use of event attributes from some acquisitions templates - Funds Bug 16752 - Remove the use of event attributes from some acquisitions templates - Transfer order Bug 16752 [Revised] Remove the use of event attributes from some acquisitions templates - Uncertain prices Bug 17056 - Remove event attributes from various templates Bug 17083: Remove more event attributes from tools templates Bug 17417 [Revised] Correct invalid markup around news on the staff client home page Bug 16991: Add subtitle to holds to pull report Bug 17545 [Revised] Make "Add biblio" not hidden by language chooser Bug 17645 - Remove obsolete interface customization images Radek ?iman (1): Bug 17559: Fixed HTML element ID of B_streetnumber Rafal Kopaczka (1): Bug 17245: Untranslatable abbreviated names of seasons. Robin Sheat (1): Bug 16617 - fix issues with debian/control Rocio Dressler (1): Bug 16537 - Overdue and Status triggers grammar Rodrigo Santellan (1): Bug 17405 Edit record uses Default framework Sophie Meynieux (3): Bug 13914 : Fix UNION in SQL request for reserves statistics Bug 10227 : Fix GetMessagingPreferences when digest is possible Bug 17154 : Note column is missing on account lines receipt Srdjan (1): Bug 16716: Replaced wrong GROUP BY with DISTINCT Tomas Cohen Arazi (111): Bug 16578: Fix wide character errors in opac-export.pl Bug 16667: Unused variable and function call in circulation.pl Bug 13074: (followup) remove useless diag Bug 16720: Remove DBIx ActionLogs.pm Bug 15485: Introduce new sysprefs for lists XSLTs Bug 15485: Use lists-specific XSLT sysprefs Bug 15485: (QA followup) Fix behaviour and default values Bug 15485: (QA followup) Simplify logic and use *ResultsDisplay value during upgrade Bug 14048: Add RefundLostItemFeeRule table and classes Bug 14048: Unit tests Bug 14048: Add a refund rules setting form in smart-rules Bug 14048: Hook new rules into C4::Circulation Bug 14048: Add syspref and atomic update Bug 14048: (QA followup) Update syspref name for HEA Bug 14048: (QA followup) Fix typo on syspref value Bug 14048: (followup) Use the original holding branch Bug 14048: (QA folloup) C4::Context->preference should be used Bug 14048: (QA followup) Default to 1 if no default rule Bug 16819: Unit tests for C4::Members::DelMember Bug 16819: C4::Members::DelMember should use Koha::Holds to delete holds Bug 16830: Remove -x usage on koha-indexer Bug 16830: (followup) Remove weird character from warning in rebuild_zebra.pl Bug 17044: Fix wrong destination for 'api' directory Bug 17030: Enable REST api on packages Bug 17030: Make REST api available on packages with plack enabled Bug 16974: Make koha-plack should check and fix log files permissions Bug 16829: Add 'interface' column to action_logs Bug 16829: make logaction and GetLogs aware of the interface column Bug 16829: Add 'interface' to the log viewer Bug 16829: DBIx update Bug 16829: Unit tests for logaction's 'interface parameter' Bug 14642: Add HoldsLog syspref Bug 14642: Add logging for Holds Bug 14642: (QA followup) Make HoldsLog default to 0 Bug 14642: (QA followup) Add tests for Koha::Hold->delete Bug 17050: (QA followup) Use Mojo::Transaction to get the remote address Bug 15023: Allow patron anonymize/bulk delete tool to be limited by branch Bug 15023: (followup) Remove warnings Bug 14504: (QA followup) Tidy tests Bug 14504: (QA followup) Fix delete_records_via_leader.pl call to DelItemCheck Bug 14504: (followup) Make deletion conditional on --commit Bug 16699: (QA followup) Move minified swagger file into the swagger/ dir Bug 14868: (QA followup) Change permission check order Bug 14868: (QA followup) POD fixes Bug 11921: (QA followup) Remove remaining unused var Bug 11592: (QA followup) Simplify code Bug 11592: (QA followup) Add missing framework code to ViewPolicy filter calls Bug 16822: Make koha-common call koha-plack without --quiet Bug 16911: (QA followup) CGI->param should not be called in list context Bug 11921: (followup) Don't die on non-existent koha-conf.xml Bug 15758: (QA followup) Remove leftover reference to C4::Branch Bug 2389: Add --test switch to overdue_notices.pl Bug 2389: (followup) Add documentation and fix use case Bug 17327: (QA followup) Remove Carp::Always which is not used Bug 17332: Include memcached configuration in koha-conf files Bug 17332: Remove memcached config from apache files Bug 17336: Add api_secret_passphrase entry in packages setup Bug 17302: Add Koha::Util::Normalize for normalization functions Bug 17304: Introduce C4::Matcher::_get_match_keys unit tests Bug 17430: Make MarkIssueReturned.t create its own data Bug 10337: (QA followup) Allow choosing MARC flavour Bug 10337: (followup) Upper case MARC flavour Bug 17318: Unit tests Bug 17318: Make C4::Matcher::_get_match_keys handle 'norms' param Bug 17318: Allow chosing fixed normalization routines Bug 15131: Instroduce AllowItemsOnHoldCheckoutSCO syspref Bug 15131: Make SCO use the new syspref. Bug 17425: Make Koha::Object raise exceptions Bug 17425: Add Try::Tiny dependency Bug 14598: (regression tests) AddReturn should store itemtype on 'statistics' table Bug 14598: Make C4::Circulation::AddReturn store the right itemtype Bug 14598: (DB update) fix NULL itemtypes in statistics on 'return' rows Bug 14598: (followup) Remove unused and non-existent C4::ItemType include Bug 14598: (QA followup) use deleted{items|biblioitems} during upgrade Bug 17428: [REST] Cities endpoint unit tests Bug 17428: [REST] Cities swagger specification Bug 17428: [REST] Koha::REST::V1::Cities introduced Bug 17428: (QA followup) Fix community site in swagger file Bug 4880: Make koha-remove stop all instance's services Bug 14874: (followup) Fix typo introduced in sysprefs.sql Bug 17261: Add memcached configuration info to about.pl Bug 17261: (followup) Rebase against 17189 and 11921 Bug 17261: (followup) Mention the need to start memcached before plack Bug 17504: Make the installer show the right dmbs help if wrong permissions Bug 17544 - : Remove t::lib::Mocks dependency from populate_db.pl Bug 17539: (QA followup) Silence warnings Bug 17494: (QA followup) Fix exception name Bug 17563: (followup) Silence undef warnings Bug 17572: Remove itemtype-related warnings from issue.t Bug 17572: (followup) Remove test's hardcoded values Bug 17573: Remove itemtype-related warnings from DecreaseLoanHighHolds.t Bug 17574: Remove itemtype-related warnings from LocalHoldsPriority.t Bug 17575: Remove itemtype-related warnings from Circulation.t Bug 17575: (followup) Remove missing fine type warnings Bug 17587: Remove itemtype-related IsItemIssued.t warnings Bug 17592: Remove itemtype-related maxsuspensiondays.t warnings Bug 17603: Remove itemtype-related Borrower_Discharge.t warnings Bug 17567: Make populate_db.pl initialize ES mappings Bug 17607: Fix patron definition in Swagger Bug 17599: (QA followup) Remove userenv warning Bug 17599: (QA followup) Perltidy really long lines Bug 17635: Fix templates with missing body id Bug 17633: (QA followup) Remove unneeded warnings Bug 17640: (QA followup) Add more tests Bug 17633: (QA followup) remove debugging leftover Bug 17640: (Jonathan complain followup) Use Koha::*->search->delete instead Bug 17638: Make sure t/db_dependent/Search.t doesn't use a cached koha-conf.xml Bug 17646: Remove itemtype-related IssueSlip.t warnings Bug 17636: Remove itemtype-related GetIssues.t warnings Bug 17647: Remove itemtype-related CancelReceipt.t warnings Bug 17653: Remove itemtype-related t/db_dependent/Circulation* warnings Zeno Tajoli (3): Bug 16601: Update of italian MARC21 files Bug 16585: Update Italian installer sample files for 16.05 Bug 13405 - System information has misleading information about indexing mode genevieve (2): Bug 6934: Fix code in CashRegisterStats (dataTables pagination, more accurate descriptions, add a delimiter pull down, change C4::Dates to Koha::DateUtils) Bug 6934: New features, note added to transaction information, total caculated for negative types of transaction kohamaster (1): Bug 17435: Gives ability to display stocknumber in search results phette23 (3): Bug 16613: fix MARC 09X help links Bug 17068: empty
  • in opac-reserve.tt Bug 16806: no error message for 'too_soon' renewal radiuscz (1): Bug 17521: Added missing age limit check remi (6): Bug 12748 - Fixes duplicate serials with an "expected" status bug Bug 12748 - Add test for step 7 and 8 and rename findSerialByStatus Bug 6934: QA Follow-up Bug 6934: Fixed Calendar and removed used of unexisting and unused C4::Budgets getCurrency Bug 6934: second fix to calendars Bug 6934: fixed encoding issue simith (1): Bug 6934: New report Cash Register Statistics ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Nov 28 13:05:25 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 28 Nov 2016 12:05:25 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-1-g3c9d916 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 3c9d916641196a9a892d6be24d885ee8539be7bd (commit) from 7636c68d769a1c2e62ced6aa9f2fbe12adf22c8d (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 3c9d916641196a9a892d6be24d885ee8539be7bd Author: Fr?d?ric Demians Date: Sat Oct 22 12:41:21 2016 +0200 Bug 17292 Follow-up, fix typos - wrong assignation - reference to 'serials' table rather than 'serial' Signed-off-by: Fr?d?ric Demians Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 00:15:38 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 28 Nov 2016 23:15:38 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x created. v16.11.00-1-g3c9d916 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, 16.11.x has been created at 3c9d916641196a9a892d6be24d885ee8539be7bd (commit) - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:24:06 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:24:06 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-3-g3128ee6 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 3128ee6953e3bde9f9851f7bf7e24aaa25db3b53 (commit) via 2e6be2f343c46867e83b70e245fb03838ecc560e (commit) from 3c9d916641196a9a892d6be24d885ee8539be7bd (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 3128ee6953e3bde9f9851f7bf7e24aaa25db3b53 Author: Nick Clemens Date: Tue Nov 22 11:28:51 2016 +0000 Bug 17344 - Followup to fix selectors Add '#' selector to several tags Fix some spacing Remove duplicated line To highlight that all is working set PatronQuickAddFields as below for testing: streetnumber|address|address2|city|state|zipcode|country|branchcode Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 2e6be2f343c46867e83b70e245fb03838ecc560e Author: Nick Clemens Date: Mon Nov 21 11:47:00 2016 +0000 Bug 17344 - Can't set guarantor in quick add brief form This patch updates the guarantor form to work with the quick add form To test: 1 - Quick add a 'Kid' patron (or other patron type that may have guarantor) 2 - Verify form appears as expected 3 - Test that you can add a patron manually or using selector 4 - Test that deletion works as expected 5 - Test 3 and 4 from the full version of the form 6 - Save or cancel and add a new patron using the full form only 7 - Verify that adding/deleting guarantor works with no errors 8 - Sign off Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/members/memberentrygen.tt | 4 +++ koha-tmpl/intranet-tmpl/prog/js/members.js | 29 ++++++++++++++------ 2 files changed, 24 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:41:21 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:41:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-4-g5485f10 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 5485f10ed2c2086da92b86375471acabaff0539b (commit) from 3128ee6953e3bde9f9851f7bf7e24aaa25db3b53 (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 5485f10ed2c2086da92b86375471acabaff0539b Author: Kyle M Hall Date: Tue Nov 29 17:36:59 2016 +0000 DBRev 16.12.00.000 - the road goes ever on Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 6 ++++++ 1 file changed, 6 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:44:14 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:44:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-5-g6f4cbc8 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 6f4cbc8dad2b4c78768d38b033aa4dd89c28a7e6 (commit) from 5485f10ed2c2086da92b86375471acabaff0539b (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 6f4cbc8dad2b4c78768d38b033aa4dd89c28a7e6 Author: Jonathan Druart Date: Thu Nov 24 13:37:52 2016 +0000 Bug 17676: Update default COLLATE of marc_subfield_structure (This issue has been raised on bug 17216 comments 93-103) On bug 11944 (3.19.00.006) we updated the default COLLATE for all our tables to utf8_unicode_ci but not the marc_subfield_structure table. Indeed we want to keep tagsubfield a utf8_bin (to allow lowercase and uppercase of the same letter for subfields). We should have set the default collate to utf8_unicode_ci for further changes. This patch updates the DB entry 3.19.00.006 to set the default COLLATE to this table (for people upgrading from prior to 3.19.00.006) and set this default COLLATE on 16.06.00.033 (for people upgrading from after 3.19.00.006). The error is: DBD::mysql::db do failed: Can't create table `koha_kohadev`.`#sql-306_9f9` (errno: 150 "Foreign key constraint is incorrectly formed") [for Statement " ALTER TABLE marc_subfield_structure MODIFY COLUMN authorised_value VARCHAR(32) DEFAULT NULL, ADD CONSTRAINT marc_subfield_structure_ibfk_1 FOREIGN KEY (authorised_value) REFERENCES authorised_value_categories (category_name) ON UPDATE CASCADE ON DELETE SET NULL; "] at installer/data/mysql/updatedatabase.pl line 13175. Upgrade to 16.06.00.033 done (Bug 17216 - Add a new table to store authorized value categories) Test plan: 1/ git checkout v3.18.00 2/ Do an install 3/ git checkout master; 4/ perl installer/data/mysql/updatedatabase.pl => Without this patch, you get the error => With this patch applied you will not get it and the default COLLATE for marc_subfield_structure will be correctly set. Make sure tagsubfield is still utf8_bin Signed-off-by: Mark Tompsett Signed-off-by: Marcel de Rooy Will put some notes on the Bugzilla report. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 8 ++++++++ 1 file changed, 8 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:46:00 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:46:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-8-g2d769cd 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 2d769cd5081de0572f9b59e3dbcb99f309caf0a2 (commit) via a329494f8926a6056433f9c8ba31322e363189bd (commit) via ce87a89374b1016ced5cb15c189fdf6055599f56 (commit) from 6f4cbc8dad2b4c78768d38b033aa4dd89c28a7e6 (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 2d769cd5081de0572f9b59e3dbcb99f309caf0a2 Author: Julian Maurice Date: Thu Oct 13 11:05:00 2016 +0200 Bug 14699: Reword "Select all/Clear all" and change their behaviour "Select all" -> "Select all visible rows" "Clear all" -> "Clear selection on visible rows" + fix the bug where the Delete link was visually enabled only if you checked a box in the first page (now every checkbox enable the link) Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit a329494f8926a6056433f9c8ba31322e363189bd Author: Julian Maurice Date: Tue Sep 8 08:49:44 2015 +0200 Bug 14699: Show number of selected searches in search history With the number displayed, it should remove the ambiguity about what "Select all" and "Clear all" do. The number is repeated in the "Delete" confirmation dialog. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit ce87a89374b1016ced5cb15c189fdf6055599f56 Author: Julian Maurice Date: Thu Aug 20 15:38:59 2015 +0200 Bug 14699: Fix intranet search history issues due to pagination DataTables removes hidden rows from the DOM. Because of that, "Select all", "Clear all" and the form submission don't work correctly (basically they act only on the currently displayed page). This patch fixes just that. Test plan: 1/ Go to your search history page 2/ Make you sure you have at least 21 entries in your search history. If not, do some searches and come back here. 3/ Click "Select all" and change page. The checkboxes on the new page should be checked. 4/ Check some checkboxes on this new page and click "Clear all". Go back to the previous page, checkboxes shouldn't be checked. 5/ Check some checkboxes on at least 2 different pages and click "Delete". All selected search history entries should be deleted. 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/catalogue/search-history.tt | 94 ++++++++++++++------ 1 file changed, 69 insertions(+), 25 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:46:41 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:46:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-9-g8dce1cd 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 8dce1cde3a8b1d0cd742f26545aa1d09e4ff63df (commit) from 2d769cd5081de0572f9b59e3dbcb99f309caf0a2 (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 8dce1cde3a8b1d0cd742f26545aa1d09e4ff63df Author: Jonathan Druart Date: Fri Aug 19 12:01:32 2016 +0100 Bug 16873: Improve renewal error messages on self check When a patron is not allowed to renew from the self check module, the only message displayed is "No renewals allowed". It would be nicer to let him/her know that the renewal is not allowed because it's a on-site checkout or automatic renewal. To do so we can call CanBookBeRenewed instead of CanBookBeIssued and get the renewal error. Test plan: 0/ Switch off AllowSelfCheckReturns 1/ check out an item and tick "auto renewal" 2/ Go on the self check module => auto renewal message is displayed 3/ check out an item and tick "on-site checkout" 4/ Go on the self check module => on-site checkout message is displayed 5/ check out an item without ticking any checkboxes (regular checkout) Renew it to reach the max renew allowed 6/ Go on the self check module => regular checkout message is displayed 7/ Switch on AllowSelfCheckReturns and repeat previous steps => "Return this item" button is displayed in addition of the renewal error message Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 23 ++++++++++++-------- opac/sco/sco-main.pl | 12 +++++----- 2 files changed, 19 insertions(+), 16 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:47:17 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:47:17 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-10-gfc084f9 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 fc084f90d1da1dedb70c97a225d3df332f8224d2 (commit) from 8dce1cde3a8b1d0cd742f26545aa1d09e4ff63df (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 fc084f90d1da1dedb70c97a225d3df332f8224d2 Author: Fridolin Somers Date: Tue Oct 4 12:52:46 2016 +0200 Bug 17395 - exporting checkouts in CVS generates a file with wrong extension In checkouts table, the is an export form (when some exports syspref are enabled). Export using a CSV profile will create a file with name koha.mrc (same as ISO2709 export). It would be better with koha.csv. Bug 14647 manages the export page, this but will only manage for export from checkouts table where file name is hard-coded. Test plan : - Enable checkouts exports by setting syspref ExportWithCsvProfile with a profile for record export - Go to circ page of a patron with checkouts : /cgi-bin/koha/circ/circulation.pl?borrowernumber=xxx - Show checkouts table - Select some checkboxes in "Export" column - Select "CSV" in export format combo-box - Click on "Export" => Without patch, the generated file is koha.mrc => With patch, the generated file is koha.csv - Check ISO2709 export generates a file named koha.mrc Signed-off-by: Dani Elder Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: tools/export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:48:18 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:48:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-11-gf0cb5c4 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 f0cb5c43dcb23d6e55914e6cfef8431bae8f4086 (commit) from fc084f90d1da1dedb70c97a225d3df332f8224d2 (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 f0cb5c43dcb23d6e55914e6cfef8431bae8f4086 Author: Katrin Fischer Date: Mon Nov 7 23:16:06 2016 +0100 Bug 17577: Improve sample notices for article requests - Adds "Dear..." - Fixes capitalization - Removes 'E-mail' from the description as you could also have a print template To test: - Make sure the SQL has no errors - Install the letters and proof read them If you agree - sign off! Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/en/mandatory/sample_notices.sql | 12 ++++++------ installer/data/mysql/es-ES/mandatory/sample_notices.sql | 10 +++++----- installer/data/mysql/fr-CA/obligatoire/sample_notices.sql | 10 +++++----- .../data/mysql/fr-FR/1-Obligatoire/sample_notices.sql | 10 +++++----- installer/data/mysql/it-IT/necessari/notices.sql | 10 +++++----- .../data/mysql/nb-NO/1-Obligatorisk/sample_notices.sql | 10 +++++----- installer/data/mysql/pl-PL/mandatory/sample_notices.sql | 10 +++++----- installer/data/mysql/ru-RU/mandatory/sample_notices.sql | 10 +++++----- 8 files changed, 41 insertions(+), 41 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 18:49:10 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 17:49:10 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-12-g9191246 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 9191246b87da14fd0c2098bc3e9b189845dd68a4 (commit) from f0cb5c43dcb23d6e55914e6cfef8431bae8f4086 (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 9191246b87da14fd0c2098bc3e9b189845dd68a4 Author: Aleisha Amohia Date: Wed Nov 23 01:25:23 2016 +0000 Bug 17670: Grammar mistakes - effect vs affect In two places: 1. Administration -> Preferences -> Circulation -> AllowMultipleIssuesOnABiblio: says effect, should say affect 2. Reports -> Lost Items -> Help (top-right corner): says effect, should say affect To test, navigate to these two places and confirm charges have been made and are correct. Sponsored-by: Catalyst IT Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/help/reports/itemslost.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Nov 29 23:15:48 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 22:15:48 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.00-3-g961a2f5 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, 16.11.x has been updated via 961a2f530a6bfc4d1a9c2b4bf3ff24c13b58fde8 (commit) via 51e5ee1b0c5c205cc5104b7fbb9684de7cc99125 (commit) from 3c9d916641196a9a892d6be24d885ee8539be7bd (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 961a2f530a6bfc4d1a9c2b4bf3ff24c13b58fde8 Author: Nick Clemens Date: Tue Nov 22 11:28:51 2016 +0000 Bug 17344 - Followup to fix selectors Add '#' selector to several tags Fix some spacing Remove duplicated line To highlight that all is working set PatronQuickAddFields as below for testing: streetnumber|address|address2|city|state|zipcode|country|branchcode Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer commit 51e5ee1b0c5c205cc5104b7fbb9684de7cc99125 Author: Nick Clemens Date: Mon Nov 21 11:47:00 2016 +0000 Bug 17344 - Can't set guarantor in quick add brief form This patch updates the guarantor form to work with the quick add form To test: 1 - Quick add a 'Kid' patron (or other patron type that may have guarantor) 2 - Verify form appears as expected 3 - Test that you can add a patron manually or using selector 4 - Test that deletion works as expected 5 - Test 3 and 4 from the full version of the form 6 - Save or cancel and add a new patron using the full form only 7 - Verify that adding/deleting guarantor works with no errors 8 - Sign off Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/members/memberentrygen.tt | 4 +++ koha-tmpl/intranet-tmpl/prog/js/members.js | 29 ++++++++++++++------ 2 files changed, 24 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 00:10:10 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 29 Nov 2016 23:10:10 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.00-8-g53528e1 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, 16.11.x has been updated via 53528e15802859ec49e9a908c2a6cf164da278b4 (commit) via 479e5157f38d9d583467d1e44ec9f13a3dae0d81 (commit) via 05360ebb41cc2029b0445a9995f9887a90b1a591 (commit) via 0e2c857dbb4e4a512548c2838b2e6a10bbfb5211 (commit) via 45d791658d82de51dce7c9e98b94750297dfc2d8 (commit) from 961a2f530a6bfc4d1a9c2b4bf3ff24c13b58fde8 (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 53528e15802859ec49e9a908c2a6cf164da278b4 Author: Jonathan Druart Date: Fri Aug 19 12:01:32 2016 +0100 Bug 16873: Improve renewal error messages on self check When a patron is not allowed to renew from the self check module, the only message displayed is "No renewals allowed". It would be nicer to let him/her know that the renewal is not allowed because it's a on-site checkout or automatic renewal. To do so we can call CanBookBeRenewed instead of CanBookBeIssued and get the renewal error. Test plan: 0/ Switch off AllowSelfCheckReturns 1/ check out an item and tick "auto renewal" 2/ Go on the self check module => auto renewal message is displayed 3/ check out an item and tick "on-site checkout" 4/ Go on the self check module => on-site checkout message is displayed 5/ check out an item without ticking any checkboxes (regular checkout) Renew it to reach the max renew allowed 6/ Go on the self check module => regular checkout message is displayed 7/ Switch on AllowSelfCheckReturns and repeat previous steps => "Return this item" button is displayed in addition of the renewal error message Signed-off-by: Josef Moravec Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer commit 479e5157f38d9d583467d1e44ec9f13a3dae0d81 Author: Julian Maurice Date: Thu Oct 13 11:05:00 2016 +0200 Bug 14699: Reword "Select all/Clear all" and change their behaviour "Select all" -> "Select all visible rows" "Clear all" -> "Clear selection on visible rows" + fix the bug where the Delete link was visually enabled only if you checked a box in the first page (now every checkbox enable the link) Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer commit 05360ebb41cc2029b0445a9995f9887a90b1a591 Author: Julian Maurice Date: Tue Sep 8 08:49:44 2015 +0200 Bug 14699: Show number of selected searches in search history With the number displayed, it should remove the ambiguity about what "Select all" and "Clear all" do. The number is repeated in the "Delete" confirmation dialog. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer commit 0e2c857dbb4e4a512548c2838b2e6a10bbfb5211 Author: Julian Maurice Date: Thu Aug 20 15:38:59 2015 +0200 Bug 14699: Fix intranet search history issues due to pagination DataTables removes hidden rows from the DOM. Because of that, "Select all", "Clear all" and the form submission don't work correctly (basically they act only on the currently displayed page). This patch fixes just that. Test plan: 1/ Go to your search history page 2/ Make you sure you have at least 21 entries in your search history. If not, do some searches and come back here. 3/ Click "Select all" and change page. The checkboxes on the new page should be checked. 4/ Check some checkboxes on this new page and click "Clear all". Go back to the previous page, checkboxes shouldn't be checked. 5/ Check some checkboxes on at least 2 different pages and click "Delete". All selected search history entries should be deleted. Followed test plan. Works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer commit 45d791658d82de51dce7c9e98b94750297dfc2d8 Author: Jonathan Druart Date: Thu Nov 24 13:37:52 2016 +0000 Bug 17676: Update default COLLATE of marc_subfield_structure (This issue has been raised on bug 17216 comments 93-103) On bug 11944 (3.19.00.006) we updated the default COLLATE for all our tables to utf8_unicode_ci but not the marc_subfield_structure table. Indeed we want to keep tagsubfield a utf8_bin (to allow lowercase and uppercase of the same letter for subfields). We should have set the default collate to utf8_unicode_ci for further changes. This patch updates the DB entry 3.19.00.006 to set the default COLLATE to this table (for people upgrading from prior to 3.19.00.006) and set this default COLLATE on 16.06.00.033 (for people upgrading from after 3.19.00.006). The error is: DBD::mysql::db do failed: Can't create table `koha_kohadev`.`#sql-306_9f9` (errno: 150 "Foreign key constraint is incorrectly formed") [for Statement " ALTER TABLE marc_subfield_structure MODIFY COLUMN authorised_value VARCHAR(32) DEFAULT NULL, ADD CONSTRAINT marc_subfield_structure_ibfk_1 FOREIGN KEY (authorised_value) REFERENCES authorised_value_categories (category_name) ON UPDATE CASCADE ON DELETE SET NULL; "] at installer/data/mysql/updatedatabase.pl line 13175. Upgrade to 16.06.00.033 done (Bug 17216 - Add a new table to store authorized value categories) Test plan: 1/ git checkout v3.18.00 2/ Do an install 3/ git checkout master; 4/ perl installer/data/mysql/updatedatabase.pl => Without this patch, you get the error => With this patch applied you will not get it and the default COLLATE for marc_subfield_structure will be correctly set. Make sure tagsubfield is still utf8_bin Signed-off-by: Mark Tompsett Signed-off-by: Marcel de Rooy Will put some notes on the Bugzilla report. Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 8 ++ .../prog/en/modules/catalogue/search-history.tt | 94 ++++++++++++++------ .../opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 23 +++-- opac/sco/sco-main.pl | 12 ++- 4 files changed, 96 insertions(+), 41 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 13:05:53 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 12:05:53 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-12-gd42234e 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 d42234e411f23368c7b6aa4134504d66434067a1 (commit) via ce23f810ce14fdd43caf1d6d221e6b1d3fc82427 (commit) from 3daf399cacc99077cab5139ffaf29fa4fe500762 (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 d42234e411f23368c7b6aa4134504d66434067a1 Author: Kyle M Hall Date: Wed Jun 8 10:53:25 2016 +0000 Bug 16493: [QA Followup] Restore title and author match as an option, make it the default Signed-off-by: Tomas Cohen Arazi commit ce23f810ce14fdd43caf1d6d221e6b1d3fc82427 Author: Kyle M Hall Date: Wed May 11 14:19:41 2016 +0000 Bug 16493: acq matching on title and author When you order from a staged file you're getting duplicate warnings that are inaccurate. For example, when you order a file of 50 DVDs for example and they don't have ISBNs they're matching on the books. And then you have to order them one by one. This patch replaces the use of FindDuplicates with Koha's match point system. This means you can select from the same match points defined and used in the batch record importer, or you can opt to skip matching altogether! Test Plan: 1) Import a record with a title, isbn and author. 2) Delete the from the record and stage it again 3) Attempt to add it to a basket via the staged record 4) You should note the gives you the "No records imported" message 5) Apply this patch 6) Create a matcher for ISBN 7) Create a matcher for Author/Title 8) Attempt to add the record to your basket using the ISBN matcher 8) Koha should find no match and import the record to the basket 9) Stage the record again 10) Attempt to add the record to your basket using the Title/Author matcher 11) You should recieve the "No records imported" message. Signed-off-by: Barbara Fondren Signed-off-by: Nicole C Engard Signed-off-by: Tomas Cohen Arazi ----------------------------------------------------------------------- Summary of changes: acqui/addorderiso2709.pl | 15 +++++++- .../prog/en/modules/acqui/addorderiso2709.tt | 36 +++++++++++++++++--- 2 files changed, 46 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 13:11:46 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 12:11:46 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-13-gc0b3988 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 c0b3988af5dfcd7b02be267e11c52dec7e54a63c (commit) from d42234e411f23368c7b6aa4134504d66434067a1 (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 c0b3988af5dfcd7b02be267e11c52dec7e54a63c Author: Matthias Meusburger Date: Fri Oct 21 17:04:58 2016 +0200 Bug 17481: Fix incorrect merge of bug 11048 (logout redirection for CAS authentication) Signed-off-by: Martin Renvoize Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Auth_with_cas.pm | 1 - 1 file changed, 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 13:17:11 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 12:17:11 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-14-g9d0c798 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 9d0c7986f957b601605130df0ab9fdbc842e970a (commit) from c0b3988af5dfcd7b02be267e11c52dec7e54a63c (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 9d0c7986f957b601605130df0ab9fdbc842e970a Author: Fridolin Somers Date: Tue Oct 4 12:36:11 2016 +0200 Bug 17394 - exporting checkouts with items selects without items in combo-box In checkouts table, the is an export form (when some exports syspref are enabled). When selecting some checkouts and selecting "ISO2709 with items" in export format combo-box, clicking on "Export" will select "ISO2709 without items" in the export format combo-box. This is quite strange. Its because the form as 2 inputs with same name and id "output_format" : an hidden input (the wanted arg for tools/export.pl) and a select (the export format combo-box). So an action meant on the hidden input impacts the select. This patch corrects by changing id and name of the export format combo-box : issues-table-output-format TEST plan : - Enable checkouts exports by setting syspref ExportWithCsvProfile with a profile - Go to circ page of a patron with checkouts : /cgi-bin/koha/circ/circulation.pl?borrowernumber=xxx - Show checkouts table - Select some checkboxes in "Export" column - Select "ISO2709 with items" in export format combo-box - Click on "Export" => Without patch, the export format combo-box changes to "ISO2709 without items" => With patch, the export format combo-box does not changes - Check the export file contains the items - Check exports "ISO2709 without items" and "CSV" are OK Signed-off-by: Jesse Maseto Signed-off-by: Katrin Fischer Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc | 4 ++-- koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 13:23:07 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 12:23:07 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-16-gd89346d 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 d89346dc47f3338c91a10962266cc98777924598 (commit) via 4c943184db60f2eefac4e77cab20d88cd19aaabf (commit) from 9d0c7986f957b601605130df0ab9fdbc842e970a (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 d89346dc47f3338c91a10962266cc98777924598 Author: Fridolin Somers Date: Mon Nov 7 16:07:01 2016 +0100 Bug 17420 - record export fails when itemtype on biblio - followup Same as previous patch for misc/export_records.pl. Test plan : - Use syspref item-level_itypes = biblio record - Run misc/export_records.pl => Without patch you get an error : DBD::mysql::st execute failed: Unknown column 'biblioitems.itemtype' in 'where clause' ... => With patch you get a correct export file Signed-off-by: Bernardo Gonzalez Kriegel Export Ok, no errors. Signed-off-by: Marcel de Rooy Signed-off-by: Julian Maurice commit 4c943184db60f2eefac4e77cab20d88cd19aaabf Author: Fridolin Somers Date: Mon Oct 10 16:46:04 2016 +0200 Bug 17420 - record export fails when itemtype on biblio In Tools, Export data, you can export with a filter on item type. When item type is on biblio record, you get the error : export.pl: DBIx::Class::ResultSet::next(): Unknown column 'biblioitems.itemtype' in 'where clause' at /home/koha/src/Koha/Objects.pm line 150 Looks like its because this code use to be a SQL Select and is now a DBIx call : C4::Context->preference('item-level_itypes') ? ( 'items.itype' => $itemtype ) : ( 'me.itemtype' => $itemtype ) This patch corrects by using "me.itemtype" Test plan : - Use syspref item-level_itypes = biblio record - Go to Tools > Export data : /cgi-bin/koha/tools/export.pl - Select an item type - Click on "Export biblio records" => Without patch you get an error 500 => With patch you get a correct export file Signed-off-by: Bernardo Gonzalez Kriegel Fix the issue, no errors. Signed-off-by: Marcel de Rooy Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: misc/export_records.pl | 2 +- tools/export.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 13:31:32 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 12:31:32 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-18-g497e280 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 497e28039f392276a4415c49192fb73110ba6642 (commit) via 59ac8b8340b427c91d7d0cf7f69d9c232d572771 (commit) from d89346dc47f3338c91a10962266cc98777924598 (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 497e28039f392276a4415c49192fb73110ba6642 Author: Mark Tompsett Date: Wed Sep 14 15:14:02 2016 -0400 Bug 15690: Hardcoded 16 is uncool Signed-off-by: Mark Tompsett Followed test plan in comment #7, works as expectd. Signed-off-by: Marc Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit a618c62ae6c6ddc8334e795ddb1760a7363a88f8) Signed-off-by: Julian Maurice commit 59ac8b8340b427c91d7d0cf7f69d9c232d572771 Author: Jonathan Druart Date: Tue Sep 13 15:43:50 2016 +0100 Bug 15690: CardnumberLength should not be bigger than 16 borrowers.cardnumber is a varchar(16), so CardnumberLength should not have a max > 16 Test plan: Test different value in CardnumberLength ("20", "20,30", "40,") Edit a patron a make sure the text display under the cardnumber input is correct Signed-off-by: Mark Tompsett Signed-off-by: Marc Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit 87380d8b460857157b4cf06fa8def626d1d2badb) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 4 ++++ .../prog/en/modules/admin/preferences/patrons.pref | 2 +- t/Members/cardnumber.t | 19 +++++++++++++++++-- 3 files changed, 22 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:04:05 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:04:05 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-32-gf080cf4 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 f080cf45462422cd9f4aa2b0c46db7e563bc5b0f (commit) via 0c1201bcce5d6d141658dccd8761c568abc0c795 (commit) via 64e417850da2877ee232e277ce443ccec18e3f11 (commit) via 96440b4fe1bfec932b7f17b4893dbd8f6ce70073 (commit) via 8a47182483e8eac33d49ecd3de22cf62537595d1 (commit) via 5aa4771dd2d01f43b5f16a9794422c2914f07c81 (commit) via 86c195a5ebf84b557def8e18ac625f591bf186bc (commit) via a81bbe17b50a4a02d0d2915a0c15057ef44cbd3b (commit) via c29b60fb268640d4fdbc40dcb0ca8c15f83c5822 (commit) via b7679dd0a90fc6022b1a1f6126ffbe7ac32521bc (commit) via 95c65c5a893e0433f13fcb3aeccd0b6ccefd0e70 (commit) via 4df3dbbdde4df7e2f69c59e74ca98cff9fd111b2 (commit) via 7c40950513d80c3064140b187624289c9dbdddca (commit) via 465e1a203fc398a232a4ba79caebb9003e3266af (commit) from 497e28039f392276a4415c49192fb73110ba6642 (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 f080cf45462422cd9f4aa2b0c46db7e563bc5b0f Author: Kyle M Hall Date: Fri Oct 28 11:30:38 2016 +0000 Bug 14598: Update DB rev (3.22.12.002) Signed-off-by: Julian Maurice commit 0c1201bcce5d6d141658dccd8761c568abc0c795 Author: Marcel de Rooy Date: Fri Oct 28 09:54:20 2016 +0200 Bug 14598: [QA Follow-up] Small changes [1] Renames the dbrev version to XXX; adding a my for $sth, although not strictly necessary it feels better. [2] Circulation.t stumbles over: Undefined subroutine &C4::Circulation::GetItem called at ... line 1283. Somehow this is related to use_ok instead of a regular use. Worked around this by require_ok and adding a regular use. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 3660c451a36db128c143b6388d0d1f34babff4ac) Signed-off-by: Julian Maurice commit 64e417850da2877ee232e277ce443ccec18e3f11 Author: Jonathan Druart Date: Thu Apr 7 12:03:49 2016 +0100 Bug 14598: Fix warning from effective_itemtype Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit ec96a0cb3f25f53fbe14f6c93a8d28b48d3b7286) Signed-off-by: Julian Maurice commit 96440b4fe1bfec932b7f17b4893dbd8f6ce70073 Author: Tomas Cohen Arazi Date: Wed Apr 6 11:34:26 2016 -0300 Bug 14598: (QA followup) use deleted{items|biblioitems} during upgrade If the 'statistics' table contains circulation information about items that are no longer on the DB it will raise a warning. This patch makes the updatedatabase.pl script use the deleteditems and deletedbiblioitems tables to get information for those items on the statistics table. To reproduce: - Have your sample DB contain some circulation data on the statistics table - Make sure some of them have NULL itemtype: > UPDATE statistics SET itemtype = NULL WHERE type='return'; - Check the upgrade query catches them: > SELECT s.itemnumber, i.itype, b.itemtype FROM ( SELECT DISTINCT itemnumber FROM statistics WHERE ( type = "return" OR type = "localuse" ) AND itemtype IS NULL ) s LEFT JOIN ( SELECT itemnumber,biblionumber, itype FROM items UNION SELECT itemnumber,biblionumber, itype FROM deleteditems ) i ON (s.itemnumber=i.itemnumber) LEFT JOIN ( SELECT biblionumber, itemtype FROM biblioitems UNION SELECT biblionumber, itemtype FROM deletedbiblioitems ) b ON (i.biblionumber=b.biblionumber); +------------+-------+----------+ | itemnumber | itype | itemtype | +------------+-------+----------+ | 732 | BK | BK | | 731 | BK | BK | +------------+-------+----------+ 2 rows in set (0.00 sec) - Delete the items, and some biblio too. - Re-run the query => SUCCESS: Same results - Go reset to NULL the itemtypes > UPDATE statistics SET itemtype = NULL WHERE type='return'; - Run the updatedatabase.pl script: $ sudo koha-shell koahdev ; cd kohaclone $ perl installer/data/mysql/updatedatabase.pl => SUCCESS: No warnings Note: It is possible that on production sites, if the sysadmin is cleaning the deleted{items|biblioitems|biblio} tables, there will be warnings. This is expected as they need to know some data lacks information. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 3fa514133b33aca3727111d2ddfdd0bdb3d5d639) Signed-off-by: Julian Maurice commit 8a47182483e8eac33d49ecd3de22cf62537595d1 Author: Tomas Cohen Arazi Date: Fri Apr 1 12:25:39 2016 -0300 Bug 14598: (followup) Remove unused and non-existent C4::ItemType include Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit e31eb08e29f637f90d095df31388bf64f2b685a9) Signed-off-by: Julian Maurice commit 5aa4771dd2d01f43b5f16a9794422c2914f07c81 Author: Kyle M Hall Date: Tue Jan 19 14:34:20 2016 +0000 Bug 14598 [QA Followup] - Update localuse statistics also Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit c042307db35f59fe2dca8d8fa214be7b39b0277e) Signed-off-by: Julian Maurice commit 86c195a5ebf84b557def8e18ac625f591bf186bc Author: Kyle M Hall Date: Tue Jan 12 16:04:55 2016 +0000 Bug 14598 [QA Followup] - Make unit test pass Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit ad800ce36e07915628602c4f6ba2ccf83bacdd16) Signed-off-by: Julian Maurice commit a81bbe17b50a4a02d0d2915a0c15057ef44cbd3b Author: Kyle M Hall Date: Fri Dec 18 14:59:02 2015 +0000 Bug 14598 [QA Followup] - Correct the behavior of GetItem Currently GetItem sets itemtype to the biblio itemtype if no item level itemtype exists. Instead, it should only do this if item_level-itypes is not set. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 73b85e98755e075044db72b973cb3ebd6c0f4891) Signed-off-by: Julian Maurice commit c29b60fb268640d4fdbc40dcb0ca8c15f83c5822 Author: Kyle M Hall Date: Fri Nov 20 14:23:22 2015 +0000 Bug 14598 [QA Followup] - Only fetch bib data if needed Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 4384e081968c7dd9c95c34d78bda2eba199a3243) Signed-off-by: Julian Maurice commit b7679dd0a90fc6022b1a1f6126ffbe7ac32521bc Author: Brendan A Gallagher Date: Thu Nov 19 21:13:05 2015 +0000 Bug 14598 - QA Followup touching CanBookBeIssued subroutine Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 096b6c3938d060ab973e76f6840bd26ec8ef26cd) Signed-off-by: Julian Maurice commit 95c65c5a893e0433f13fcb3aeccd0b6ccefd0e70 Author: Tomas Cohen Arazi Date: Tue Sep 1 11:52:17 2015 -0300 Bug 14598: (DB update) fix NULL itemtypes in statistics on 'return' rows This patch introduces an updatedatabase.pl entry that takes care of updating existing statistics rows. It does so by looping on the statistics rows, collecting itemnumber occurences that are have NULL itemtypes. It then chooses the right itemtype following what is proposed on bug 14651, and then updates the rows in statistics using the calculated itemtype. Regards Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 2cdec7ff9178fd8f70b5885b7c2936ddf09e69f7) Signed-off-by: Julian Maurice commit 4df3dbbdde4df7e2f69c59e74ca98cff9fd111b2 Author: Kyle M Hall Date: Mon Jul 27 11:16:56 2015 -0400 Bug 14598: (QA followup) Don't die on bad barcode Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 34eb4c1fa95ea14047413436b8df42299d029ca4) Signed-off-by: Julian Maurice commit 7c40950513d80c3064140b187624289c9dbdddca Author: Tomas Cohen Arazi Date: Mon Jul 27 11:40:38 2015 -0300 Bug 14598: Make C4::Circulation::AddReturn store the right itemtype This patch makes C4::Circulation::AddReturn correctly store the itemtype on the 'statistics' table. To reproduce: - Checkout master. - Make a checkout. - Check the 'statistics' table and notice the itemtype is correctly set > SELECT * FROM statistics; - Check the item in. - Check the 'statistics' table and notice the itemtype is not set > SELECT * FROM statistics WHERE type="return"; => FAIL: itemtype is set to NULL To test: - Apply the regression tests patch - Run the tests: $ prove t/db_dependent/Circulation/Returns.t => FAIL: Tests fail - Apply this patch - Run the regression tests: $ prove t/db_dependent/Circulation/Returns.t => SUCCESS: Tests now pass. - Repeat the 'To reproduce' steps => SUCCESS: itemtype is now correctly set (in real life) - Happily sign off :-D Sponsored-by: Universidad Empresarial Siglo 21 Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 285ac7a31eb50262af9c6a51502630ba150b14fa) Signed-off-by: Julian Maurice commit 465e1a203fc398a232a4ba79caebb9003e3266af Author: Tomas Cohen Arazi Date: Sun Jul 26 02:05:16 2015 -0300 Bug 14598: (regression tests) AddReturn should store itemtype on 'statistics' table This patch adds tests for C4::Circulation::AddReturn(). Both tests are wrapped inside a subtest, and look for AddReturn storing the right itemtype on the 'statistics' table. Note: It also refactors the file a bit, to avoid side effects. And uses TestBuilder to make it independent on already-present db data. It also removes warnings by mocking C4::Context::userenv To test: - Apply the patch - Run the tests: $ prove t/db_dependent/Circulation/Returns.t => FAIL: Tests fail bacause AddReturn is not storing the itemtype - Sign off :-D Sponsored-by: Universidad Empresarial Siglo 21 Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 357a69b0e174c813ef52d1ee7f47cd810c76938d) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 33 ++-- C4/Items.pm | 37 ++--- Koha.pm | 2 +- Koha/Schema/Result/Item.pm | 2 +- installer/data/mysql/updatedatabase.pl | 50 ++++++ t/db_dependent/Circulation.t | 17 +- t/db_dependent/Circulation/Returns.t | 284 +++++++++++++++++++++++++++----- t/db_dependent/Items.t | 86 +++++++--- 8 files changed, 400 insertions(+), 111 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:08:44 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:08:44 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-33-geaeca1c 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 eaeca1cd4fbdbb92188420c7e6fb6f9bc422b3e3 (commit) from f080cf45462422cd9f4aa2b0c46db7e563bc5b0f (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 eaeca1cd4fbdbb92188420c7e6fb6f9bc422b3e3 Author: Koha Team Lyon 3 Date: Tue Oct 25 13:37:47 2016 +0200 Bug 17484: Search with date range limit (lower and upper) does not work If the period is entered without spaces wrapping the hyphen You can't get any result Signed-off-by: Mirko Tietgen I can't reproduce the error, search still works after applying the patch Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 660be0e0195613ce9eaaf45b17d2e5db4ad705f0) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: catalogue/search.pl | 7 +------ opac/opac-search.pl | 6 +----- 2 files changed, 2 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:10:53 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:10:53 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-34-ge7f5161 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 e7f5161bc76d282f113ae63de768fa81cec52b63 (commit) from eaeca1cd4fbdbb92188420c7e6fb6f9bc422b3e3 (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 e7f5161bc76d282f113ae63de768fa81cec52b63 Author: Jonathan Druart Date: Tue Sep 20 11:40:13 2016 +0100 Bug 17323: Column search_history.time cannot be null When doing a search, with SearchHistory pref switched on: DBD::mysql::st execute failed: Column 'time' cannot be null [for Statement " INSERT INTO search_history( userid, sessionid, query_desc, query_cgi, type, total, time ) VALUES( ?, ?, ?, ?, ?, ?, ? ) " with ParamValues: 0="7874", 1='12338a0bd8da63e32c79ee84f8493a07', 2="kw,wrdl: d", 3='q=d', 4='biblio', 5=6104, 6=undef] at C4/Search/History.pm line 34. Since MySLQ 5.7, undef does not mean "the default value". To let the DBMS set the default value (CURRENT_TIMESTAMP), the parameter should not be passed Test plan: OPAC+Intranet, swith the 2 SearchHistory syspref on Do a search => Without this patch, you will get an error in the log and the row will not be inserted in the table. => With this patch, everything must go fine Signed-off-by: Chris Cormack Signed-off-by: Marcel de Rooy Not verified with MySQL 5.7. But this looks good to me. Works under Jessie. Signed-off-by: Kyle M Hall (cherry picked from commit 6d5b056a14e5671f51735dded7609f65ca389f00) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Search/History.pm | 6 +++--- t/db_dependent/Search/History.t | 18 +++++++++++++++++- 2 files changed, 20 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:15:18 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:15:18 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-35-g84ff856 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 84ff856f7718117dcec4e2d684de5514deb02250 (commit) from e7f5161bc76d282f113ae63de768fa81cec52b63 (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 84ff856f7718117dcec4e2d684de5514deb02250 Author: Kyle M Hall Date: Wed Aug 24 11:13:48 2016 +0000 Bug 14736 - AllowRenewalIfOtherItemsAvailable slows circulation down in case of a record with many items and many holds If the AllowRenewalIfOtherItemsAvailable sys pref is set to allow, and a borrower has an item checked out that has many items {30+} AND many holds {70+) on it, loading the checkouts table for this borrower takes FOREVER to load. The load time takes forever, because of the factoring that happens to determine if an item is truly available for renewal. This patch swaps the use of GetMemberDetails for GetMember and reorders the subroutine calls to check each items' renewability from fastest to slowest. In a test case, the results of pre patch were: Start of loop: 2016-08-24T11:05:14 End of loop: 2016-08-24T11:05:29 Resulting in 15 seconds being spent in the loop Post patch results were: Start of loop: 2016-08-24T11:08:43 End of loop: 2016-08-24T11:08:48 Resulting in only 5 seconds being spent in the loop! Test Plan: 1) Apply this patch 2) Note there are no changes in functionality for the renewals column of the patron checkouts table. If you wish to go further and test the performance benefit: 1) Create a record with 50 items and 100 holds ( 50 waiting, 50 unfilled ) 2) Check out one of the waiting holds to a patron 3) Time the amount of time it takes for the checkouts table to load 4) Apply this patch 5) Repeat step 3, you should see an improvement in load time Signed-off-by: Jesse Maseto Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 665c5c62fa8b61752e65ff9d18487befc38cb647) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:22:38 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:22:38 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-36-g564f86d 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 564f86dd981f0403401539d17614da1423abb308 (commit) from 84ff856f7718117dcec4e2d684de5514deb02250 (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 564f86dd981f0403401539d17614da1423abb308 Author: Jonathan Druart Date: Thu Oct 27 14:15:57 2016 +0000 Bug 17513: Create GRANT for user at localhost in koha-create See the bug description for the details. Test plan: Use this script to create a new koha installation, using MariaDB You should not display "user koha_kohadev doesn't have enough privilege on database koha_kohadev " Signed-off-by: Martin Renvoize Signed-off-by: Marcel de Rooy Confirm that this still works (with MySQL). Signed-off-by: Kyle M Hall (cherry picked from commit 474a369fc03f992971c8af11c910f778e34ac9b9) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: debian/scripts/koha-create | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:35:37 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:35:37 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-37-g3323882 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 3323882bcb455470c782e89b2597499dcd23d738 (commit) from 564f86dd981f0403401539d17614da1423abb308 (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 3323882bcb455470c782e89b2597499dcd23d738 Author: Nick Clemens Date: Tue Nov 8 17:26:36 2016 +0000 Bug 17590 - Exporting reports as CSV with 'delimiter' SysPref set to 'tabulation' creates files with 't' as separator To test: Set 'delimiter' system preference to 'tabs' Export a report as csv Open the file in text editor and note fields separated by character 't' Apply patch Export report as CSV Open file in text editor and note tabs are used to separate fields Signed-off-by: Bernardo Gonzalez Kriegel tabs now, no errors. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit b4d94a5ea4a3d9dac4295c53497cbb25e1b1212b) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: reports/guided_reports.pl | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:39:17 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:39:17 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-38-g8b2124a 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 8b2124a96f8dd3909549ad696f8e282bd6acbd8b (commit) from 3323882bcb455470c782e89b2597499dcd23d738 (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 8b2124a96f8dd3909549ad696f8e282bd6acbd8b Author: Lari Taskula Date: Mon Oct 10 17:06:07 2016 +0300 Bug 17419: Fix smsalertnumber and mobile confusion in moremember.pl members/moremember.pl will set mobile number as smsalertnumber in template if smsalertnumber is not defined. This will cause incorrect display for SMS number in patron's Details-tab. This confusion between smsalertnumber and mobile is already fixed in Bug 14683, but members/moremember.pl was not fixed yet. This is a minor issue since it won't occur for manually added new patrons due to fixes already pushed in Bug 14683, but in case patron's smsalertnumber is null in database, this bug can be replicated: To test: 1. Set EnhancedMessagingPreferences to "Allow" and make sure SMSSendDriver has been set. 2. Add a new patron, give it a mobile/other phone number. 3. Run a SQL query: update koha.borrowers set smsalertnumber=NULL where borrowernumber=XXX; (replace XXX with your new patron's borrowernumber) 4. Go to patron's details tab and observe that SMS number shows the mobile/ other phone you provided earlier. 5. Apply patch. 6. Refresh patron's details tab. 7. Observe that smsalertnumber is now empty, as it should be. Followed test plan, works as expected. Signed-off-by: Marc Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit 88e0264413b1dc9ecf5dbe562636f40c7e0555d1) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: members/moremember.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:40:41 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:40:41 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-39-g49cbbcf 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 49cbbcf35238378ea71402cb15f03adaff3de446 (commit) from 8b2124a96f8dd3909549ad696f8e282bd6acbd8b (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 49cbbcf35238378ea71402cb15f03adaff3de446 Author: Jonathan Druart Date: Fri Nov 18 15:26:17 2016 +0000 Bug 17660: #adv is considered as an ad by adblock So let's rename it! Test plan: Edit a $t in any framework, you should be able to unfold the "Advanced constraints" part Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit a0416ff132469e6816554136707e398f114ab13e) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/admin/marc_subfields_structure.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:46:57 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:46:57 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-44-gb8dd36e 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 b8dd36ecf1d4a9a3af899effae6a43e93adfe5c4 (commit) via 688268b1fc00d48ee8a4cf5a4a6baee693955695 (commit) via 5215dcf946231dc8d4afb22fbd0d0722cce051a3 (commit) via 1201f42e492dee0c788911499187f0793a1edfba (commit) via f65faf1cf6ba08f6ef3ee68570dc23b7792456ad (commit) from 49cbbcf35238378ea71402cb15f03adaff3de446 (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 b8dd36ecf1d4a9a3af899effae6a43e93adfe5c4 Author: Kyle M Hall Date: Tue Nov 22 11:38:26 2016 +0000 Bug 17391: Update DB rev (3.22.12.003) Signed-off-by: Julian Maurice commit 688268b1fc00d48ee8a4cf5a4a6baee693955695 Author: Nick Clemens Date: Tue Nov 22 11:05:19 2016 +0000 Bug 17391 (QA Followup) use INSERT INGORE in atomicupdate Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 0a84274f6bfa3ea6e4c37367da7a449d98ce8aca) Signed-off-by: Julian Maurice commit 5215dcf946231dc8d4afb22fbd0d0722cce051a3 Author: Jonathan Druart Date: Thu Nov 17 09:01:19 2016 +0000 Bug 17391: Fix number of values in sysprefs.sql Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 49f8e05b20bd10e017877b996254c47cd2444385) Signed-off-by: Julian Maurice commit 1201f42e492dee0c788911499187f0793a1edfba Author: Jonathan Druart Date: Thu Nov 17 08:58:55 2016 +0000 Bug 17391: Add atomic update file Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit d785cd5b0a025dd2670c7259fd20038f450ab1ef) Signed-off-by: Julian Maurice commit f65faf1cf6ba08f6ef3ee68570dc23b7792456ad Author: Katrin Fischer Date: Sun Oct 16 14:20:42 2016 +0200 Bug 17391: Add missing prefs to sysprefs.sql Adds - ReturnpathDefault - ReplytoDefault to the sysprefs.sql file. To test: - Run the web installer in any language - Check all preferences are installed without error - Check prefs listed above now exsit in your systempreferences table Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 15e57368bba86844d103fa46cd3a47438565c56e) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/sysprefs.sql | 2 ++ installer/data/mysql/updatedatabase.pl | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 14:53:40 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 13:53:40 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.12-45-g8ee1b67 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 8ee1b67f589603980bdc5a5c898dca4809ecd752 (commit) from b8dd36ecf1d4a9a3af899effae6a43e93adfe5c4 (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 8ee1b67f589603980bdc5a5c898dca4809ecd752 Author: Fridolin Somers Date: Tue Oct 4 12:52:46 2016 +0200 Bug 17395 - exporting checkouts in CVS generates a file with wrong extension In checkouts table, the is an export form (when some exports syspref are enabled). Export using a CSV profile will create a file with name koha.mrc (same as ISO2709 export). It would be better with koha.csv. Bug 14647 manages the export page, this but will only manage for export from checkouts table where file name is hard-coded. Test plan : - Enable checkouts exports by setting syspref ExportWithCsvProfile with a profile for record export - Go to circ page of a patron with checkouts : /cgi-bin/koha/circ/circulation.pl?borrowernumber=xxx - Show checkouts table - Select some checkboxes in "Export" column - Select "CSV" in export format combo-box - Click on "Export" => Without patch, the generated file is koha.mrc => With patch, the generated file is koha.csv - Check ISO2709 export generates a file named koha.mrc Signed-off-by: Dani Elder Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit fc084f90d1da1dedb70c97a225d3df332f8224d2) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: tools/export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 16:05:38 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 15:05:38 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.22.13 created. v3.22.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.22.13 has been created at aff8bbd17889a365204eaa0aab657a31eac77b75 (tag) tagging 2618afd8bb9f72b29c36b0d49da9c0f51b6fb7fd (commit) replaces v3.22.12 tagged by Julian Maurice on Wed Nov 30 15:59:30 2016 +0100 - Log ----------------------------------------------------------------- Koha release 3.22.13 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJYPulSAAoJELCH1RJUPDmpYeQP/0scjWcMOQBiy5y/t1p4N7ro 4f9KNsueQTh4TWyWKRx2FgHobiLNMemL+SB08/5H3h0+zqFeFSTB6deFaGQyIAC8 snuNWLl9/jgwFq+ymrZEbUE+77dZzoDBpcDWfV5bUURgiNfKesBD5s2PiCeCe9Dd eS4CjJ3QZEsnxBIp8a/Td6iEcigrAnAHXt3MR630e+R9N7dN8K6O3zD/N7hxuk0/ zqUau0gXT9SklFagPQdnf+Puly5LXyqmZpeJ/lhlHRWSKPtbg0a9s82p9N8Dv679 iU0fgKYqGqVmB/vPK4MKJuDeGf3KXZpHZDOv+/L9yaEVy91l/EmZ/tjXTGe9PdQk 2+GL0w+lW/O2zSuWcKi+pDgVpPUsD7PKuPeQD9bEip+DMZtRneDjOHbmJdWYlnqx qrkgvmKQgdgwiTT7VRx5bYO9mKfFW4dIcYwx/lB1kmYedx025hMCtT3CdwJqPeRp KDiL2c5zbXcZ4WQQiCIL1FlxBCccau04nCRKRVzSLKLboctBAdjVjTx5yLfyfbG3 HOycZ3RH71SoyNKyRk2P3l0WKrp7/XxbqZznzdmP1yLe0rqez1T3zin2vVlCGOik dGXBjoxqQPVF39vwI4RkSoipRdT/wRvlrXq6bkoPN4zX0ODaroz2bzu9Nj4+9d53 7vN2I2buPbzmsXcUO+sH =230c -----END PGP SIGNATURE----- Brendan A Gallagher (1): Bug 14598 - QA Followup touching CanBookBeIssued subroutine Fridolin Somers (6): Bug 17376 - rebuild_zebra.pl in daemon mode no database access kills the process Bug 16935 - launch export_records.pl with deleted_barcodes param fails Bug 17394 - exporting checkouts with items selects without items in combo-box Bug 17420 - record export fails when itemtype on biblio Bug 17420 - record export fails when itemtype on biblio - followup Bug 17395 - exporting checkouts in CVS generates a file with wrong extension Jonathan Druart (9): Bug 17375: Search by dateofbirth - Add tests Bug 17375: Search by dateofbirth - handle invalid dates Bug 15690: CardnumberLength should not be bigger than 16 Bug 14598: Fix warning from effective_itemtype Bug 17323: Column search_history.time cannot be null Bug 17513: Create GRANT for user at localhost in koha-create Bug 17660: #adv is considered as an ad by adblock Bug 17391: Add atomic update file Bug 17391: Fix number of values in sysprefs.sql Josef Moravec (2): Bug 17434: Moremember displaying primary and secondary phone number twice Bug 17518: Displayed language name for Czech is wrong Julian Maurice (4): Bug 17518: Update DB rev (3.22.12.001) Translation updates for 3.22.13 Update release notes for 3.22.13 release Increment version for 3.22.13 release Katrin Fischer (1): Bug 17391: Add missing prefs to sysprefs.sql Koha Team Lyon 3 (1): Bug 17484: Search with date range limit (lower and upper) does not work Kyle M Hall (10): Bug 16493: acq matching on title and author Bug 16493: [QA Followup] Restore title and author match as an option, make it the default Bug 14598: (QA followup) Don't die on bad barcode Bug 14598 [QA Followup] - Only fetch bib data if needed Bug 14598 [QA Followup] - Correct the behavior of GetItem Bug 14598 [QA Followup] - Make unit test pass Bug 14598 [QA Followup] - Update localuse statistics also Bug 14598: Update DB rev (3.22.12.002) Bug 14736 - AllowRenewalIfOtherItemsAvailable slows circulation down in case of a record with many items and many holds Bug 17391: Update DB rev (3.22.12.003) Lari Taskula (1): Bug 17419: Fix smsalertnumber and mobile confusion in moremember.pl Marcel de Rooy (1): Bug 14598: [QA Follow-up] Small changes Mark Tompsett (1): Bug 15690: Hardcoded 16 is uncool Matthias Meusburger (1): Bug 17481: Fix incorrect merge of bug 11048 (logout redirection for CAS authentication) Nick Clemens (2): Bug 17590 - Exporting reports as CSV with 'delimiter' SysPref set to 'tabulation' creates files with 't' as separator Bug 17391 (QA Followup) use INSERT INGORE in atomicupdate Owen Leonard (1): Bug 17417 [Revised] Correct invalid markup around news on the staff client home page Tomas Cohen Arazi (7): Bug 4880: Make koha-remove stop all instance's services Bug 17504: Make the installer show the right dmbs help if wrong permissions Bug 14598: (regression tests) AddReturn should store itemtype on 'statistics' table Bug 14598: Make C4::Circulation::AddReturn store the right itemtype Bug 14598: (DB update) fix NULL itemtypes in statistics on 'return' rows Bug 14598: (followup) Remove unused and non-existent C4::ItemType include Bug 14598: (QA followup) use deleted{items|biblioitems} during upgrade ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Nov 30 16:05:20 2016 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 30 Nov 2016 15:05:20 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.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 branch, 3.22.x has been updated via 2618afd8bb9f72b29c36b0d49da9c0f51b6fb7fd (commit) via 6801c59149223485f83486bc28a4a638cc8dd61b (commit) via 123502bb4cf363c32b15ce5698150c5f57251453 (commit) from 8ee1b67f589603980bdc5a5c898dca4809ecd752 (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 2618afd8bb9f72b29c36b0d49da9c0f51b6fb7fd Author: Julian Maurice Date: Wed Nov 30 14:55:28 2016 +0100 Increment version for 3.22.13 release commit 6801c59149223485f83486bc28a4a638cc8dd61b Author: Julian Maurice Date: Wed Nov 30 15:05:32 2016 +0100 Update release notes for 3.22.13 release commit 123502bb4cf363c32b15ce5698150c5f57251453 Author: Julian Maurice Date: Wed Nov 30 15:30:46 2016 +0100 Translation updates for 3.22.13 ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 6 + misc/release_notes/release_notes_3_22_13.md | 311 ++ 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-staff-help.po | 2 +- misc/translator/po/am-Ethi-staff-prog.po | 335 +- misc/translator/po/ar-Arab-marc-MARC21.po | 2 +- 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 | 2 +- misc/translator/po/ar-Arab-staff-help.po | 2 +- misc/translator/po/ar-Arab-staff-prog.po | 341 +- 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-staff-help.po | 2 +- misc/translator/po/az-AZ-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/be-BY-staff-prog.po | 338 +- misc/translator/po/bg-Cyrl-marc-MARC21.po | 8 +- 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 | 89 +- misc/translator/po/bg-Cyrl-staff-help.po | 2 +- misc/translator/po/bg-Cyrl-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/bn-IN-staff-prog.po | 335 +- 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 | 12 +- misc/translator/po/ca-ES-staff-help.po | 2 +- misc/translator/po/ca-ES-staff-prog.po | 344 +- 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 | 2 +- misc/translator/po/cs-CZ-staff-help.po | 2 +- misc/translator/po/cs-CZ-staff-prog.po | 341 +- misc/translator/po/cy-GB-marc-MARC21.po | 2 +- misc/translator/po/cy-GB-marc-NORMARC.po | 2 +- misc/translator/po/cy-GB-marc-UNIMARC.po | 2 +- misc/translator/po/cy-GB-opac-bootstrap.po | 2 +- misc/translator/po/cy-GB-staff-help.po | 2 +- misc/translator/po/cy-GB-staff-prog.po | 335 +- misc/translator/po/da-DK-marc-MARC21.po | 2 +- 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 | 2 +- misc/translator/po/da-DK-staff-help.po | 2 +- misc/translator/po/da-DK-staff-prog.po | 338 +- misc/translator/po/de-CH-marc-MARC21.po | 2 +- 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 | 2 +- misc/translator/po/de-CH-staff-help.po | 4 +- misc/translator/po/de-CH-staff-prog.po | 341 +- misc/translator/po/de-DE-marc-MARC21.po | 10 +- 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 | 14 +- misc/translator/po/de-DE-pref.po | 401 +- misc/translator/po/de-DE-staff-help.po | 7 +- misc/translator/po/de-DE-staff-prog.po | 409 +- 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 | 200 +- misc/translator/po/el-GR-staff-help.po | 2 +- misc/translator/po/el-GR-staff-prog.po | 341 +- 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-staff-help.po | 2 +- misc/translator/po/en-GB-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/en-NZ-staff-prog.po | 341 +- 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-staff-help.po | 2 +- misc/translator/po/eo-staff-prog.po | 335 +- 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 | 2 +- misc/translator/po/es-ES-pref.po | 400 +- misc/translator/po/es-ES-staff-help.po | 2 +- misc/translator/po/es-ES-staff-prog.po | 397 +- 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-staff-help.po | 2 +- misc/translator/po/eu-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/fa-Arab-staff-prog.po | 338 +- misc/translator/po/fi-FI-marc-MARC21.po | 112 +- misc/translator/po/fi-FI-marc-NORMARC.po | 12 +- misc/translator/po/fi-FI-marc-UNIMARC.po | 2 +- misc/translator/po/fi-FI-opac-bootstrap.po | 616 +-- misc/translator/po/fi-FI-pref.po | 1662 ++++---- misc/translator/po/fi-FI-staff-help.po | 1531 +++---- misc/translator/po/fi-FI-staff-prog.po | 855 ++-- 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-staff-help.po | 2 +- misc/translator/po/fo-FO-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/fr-CA-staff-prog.po | 341 +- 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 | 396 +- misc/translator/po/fr-FR-staff-help.po | 13 +- misc/translator/po/fr-FR-staff-prog.po | 694 ++-- 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-staff-help.po | 2 +- misc/translator/po/gl-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/he-Hebr-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/hi-staff-prog.po | 349 +- 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-staff-help.po | 2 +- misc/translator/po/hr-HR-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/hu-HU-staff-prog.po | 335 +- 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 | 2 +- misc/translator/po/hy-Armn-pref.po | 397 +- misc/translator/po/hy-Armn-staff-help.po | 2 +- misc/translator/po/hy-Armn-staff-prog.po | 404 +- misc/translator/po/ia-marc-MARC21.po | 2 +- misc/translator/po/ia-marc-NORMARC.po | 2 +- misc/translator/po/ia-marc-UNIMARC.po | 2 +- misc/translator/po/ia-opac-bootstrap.po | 2 +- misc/translator/po/ia-staff-help.po | 2 +- misc/translator/po/ia-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/id-ID-staff-prog.po | 335 +- misc/translator/po/iq-CA-marc-MARC21.po | 2 +- misc/translator/po/iq-CA-marc-NORMARC.po | 2 +- misc/translator/po/iq-CA-marc-UNIMARC.po | 2 +- misc/translator/po/iq-CA-opac-bootstrap.po | 2 +- misc/translator/po/iq-CA-staff-help.po | 2 +- misc/translator/po/iq-CA-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/is-IS-staff-prog.po | 335 +- 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 | 2 +- misc/translator/po/it-IT-staff-help.po | 2 +- misc/translator/po/it-IT-staff-prog.po | 355 +- misc/translator/po/iu-CA-marc-MARC21.po | 2 +- misc/translator/po/iu-CA-marc-NORMARC.po | 2 +- misc/translator/po/iu-CA-marc-UNIMARC.po | 2 +- misc/translator/po/iu-CA-opac-bootstrap.po | 2 +- misc/translator/po/iu-CA-staff-help.po | 2 +- misc/translator/po/iu-CA-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/ja-Jpan-JP-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/ka-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/km-KH-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/kn-Knda-staff-prog.po | 335 +- 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 | 6 +- misc/translator/po/ko-Kore-KP-staff-help.po | 2 +- misc/translator/po/ko-Kore-KP-staff-prog.po | 341 +- 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-staff-help.po | 2 +- misc/translator/po/ku-Arab-staff-prog.po | 338 +- 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-staff-help.po | 2 +- misc/translator/po/lo-Laoo-staff-prog.po | 337 +- 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-staff-help.po | 2 +- misc/translator/po/mi-NZ-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/ml-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/mon-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/mr-staff-prog.po | 335 +- misc/translator/po/ms-MY-marc-MARC21.po | 2 +- 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-staff-help.po | 2 +- misc/translator/po/ms-MY-staff-prog.po | 339 +- misc/translator/po/my-marc-MARC21.po | 2 +- misc/translator/po/my-marc-NORMARC.po | 2 +- misc/translator/po/my-marc-UNIMARC.po | 2 +- misc/translator/po/my-opac-bootstrap.po | 2 +- misc/translator/po/my-staff-help.po | 2 +- misc/translator/po/my-staff-prog.po | 335 +- misc/translator/po/nb-NO-marc-MARC21.po | 12 +- 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 | 2 +- misc/translator/po/nb-NO-staff-help.po | 2 +- misc/translator/po/nb-NO-staff-prog.po | 341 +- 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-staff-help.po | 2 +- misc/translator/po/ne-NE-staff-prog.po | 335 +- misc/translator/po/nl-BE-marc-MARC21.po | 1936 +++++---- misc/translator/po/nl-BE-marc-NORMARC.po | 204 +- misc/translator/po/nl-BE-marc-UNIMARC.po | 2770 ++++++------- misc/translator/po/nl-BE-opac-bootstrap.po | 1389 ++++--- misc/translator/po/nl-BE-pref.po | 649 +-- misc/translator/po/nl-BE-staff-help.po | 12 +- misc/translator/po/nl-BE-staff-prog.po | 369 +- 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-staff-help.po | 2 +- misc/translator/po/nl-NL-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/nn-NO-staff-prog.po | 335 +- misc/translator/po/oc-marc-NORMARC.po | 2 +- misc/translator/po/oc-staff-prog.po | 1 + 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-staff-help.po | 2 +- misc/translator/po/pbr-staff-prog.po | 335 +- misc/translator/po/pl-PL-marc-MARC21.po | 8 +- misc/translator/po/pl-PL-marc-NORMARC.po | 10 +- misc/translator/po/pl-PL-marc-UNIMARC.po | 2 +- misc/translator/po/pl-PL-opac-bootstrap.po | 2 +- misc/translator/po/pl-PL-pref.po | 396 +- misc/translator/po/pl-PL-staff-help.po | 10 +- misc/translator/po/pl-PL-staff-prog.po | 391 +- 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-staff-help.po | 2 +- misc/translator/po/prs-staff-prog.po | 335 +- 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 | 2 +- misc/translator/po/pt-BR-staff-help.po | 48 +- misc/translator/po/pt-BR-staff-prog.po | 347 +- 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 | 2 +- misc/translator/po/pt-PT-pref.po | 398 +- misc/translator/po/pt-PT-staff-help.po | 2 +- misc/translator/po/pt-PT-staff-prog.po | 394 +- 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-staff-help.po | 2 +- misc/translator/po/ro-RO-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/ru-RU-staff-prog.po | 338 +- 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-staff-help.po | 2 +- misc/translator/po/rw-RW-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/sd-PK-staff-prog.po | 335 +- misc/translator/po/sk-SK-marc-MARC21.po | 2 +- 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 | 2 +- misc/translator/po/sk-SK-staff-help.po | 2 +- misc/translator/po/sk-SK-staff-prog.po | 341 +- 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-staff-help.po | 2 +- misc/translator/po/sl-SI-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/sq-AL-staff-prog.po | 337 +- 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-staff-help.po | 2 +- misc/translator/po/sr-Cyrl-staff-prog.po | 335 +- misc/translator/po/sv-SE-marc-MARC21.po | 362 +- misc/translator/po/sv-SE-marc-NORMARC.po | 26 +- misc/translator/po/sv-SE-marc-UNIMARC.po | 286 +- misc/translator/po/sv-SE-opac-bootstrap.po | 589 ++- misc/translator/po/sv-SE-pref.po | 2438 +++++------ misc/translator/po/sv-SE-staff-help.po | 595 ++- misc/translator/po/sv-SE-staff-prog.po | 5015 +++++++++++------------ 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-staff-help.po | 2 +- misc/translator/po/sw-KE-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/ta-LK-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/ta-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/tet-staff-prog.po | 341 +- 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-staff-help.po | 2 +- misc/translator/po/th-TH-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/tl-PH-staff-prog.po | 335 +- misc/translator/po/tr-TR-marc-MARC21.po | 32 +- 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 | 130 +- misc/translator/po/tr-TR-pref.po | 430 +- misc/translator/po/tr-TR-staff-help.po | 2 +- misc/translator/po/tr-TR-staff-prog.po | 815 ++-- 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 | 2 +- misc/translator/po/uk-UA-staff-help.po | 2 +- misc/translator/po/uk-UA-staff-prog.po | 338 +- 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-staff-help.po | 2 +- misc/translator/po/ur-Arab-staff-prog.po | 335 +- 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-staff-help.po | 2 +- misc/translator/po/vi-VN-staff-prog.po | 338 +- misc/translator/po/zh-Hans-CN-marc-MARC21.po | 2 +- 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 | 2 +- misc/translator/po/zh-Hans-CN-staff-help.po | 2 +- misc/translator/po/zh-Hans-CN-staff-prog.po | 340 +- misc/translator/po/zh-Hans-TW-marc-MARC21.po | 2 +- 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 | 2 +- misc/translator/po/zh-Hans-TW-staff-help.po | 2 +- misc/translator/po/zh-Hans-TW-staff-prog.po | 340 +- 490 files changed, 26433 insertions(+), 26251 deletions(-) create mode 100644 misc/release_notes/release_notes_3_22_13.md hooks/post-receive -- main Koha release repository