From gitmaster at git.koha-community.org Mon Feb 6 18:51:33 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 06 Feb 2017 17:51:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-359-g6abf904 Message-ID: This is an automated email from the git hooks/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 6abf904bffbf433b26a6da904fec2b1800274c20 (commit) via 2e9ae12aa4af4aed7725389ac2f54484838a1471 (commit) via cbbe3619b90b747eb0fdb1eab7073eaf8a71a49a (commit) via 77c34a3d7790e67c61d70061ed139ec3c25f79b0 (commit) via 0031db5c172052296cb67dc50de59786ad1dc268 (commit) via a233f06574f5ca6417245cba58162af1360bf327 (commit) via a6b13fbcb315d3749da23d494c11e4b6f9e70165 (commit) from af345984486a3e105c1e95111b885b7c907ca69a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6abf904bffbf433b26a6da904fec2b1800274c20 Author: Kyle M Hall Date: Mon Feb 6 17:43:47 2017 +0000 Bug 17960 - DBRev 16.12.00.007 Signed-off-by: Kyle M Hall commit 2e9ae12aa4af4aed7725389ac2f54484838a1471 Author: Jonathan Druart Date: Thu Feb 2 09:22:09 2017 +0100 Bug 17960: Replace missing occurrences Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit cbbe3619b90b747eb0fdb1eab7073eaf8a71a49a Author: Jonathan Druart Date: Tue Jan 24 09:14:26 2017 +0100 Bug 17960: Add opac_news.content values in tests Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 77c34a3d7790e67c61d70061ed139ec3c25f79b0 Author: Jonathan Druart Date: Thu Jan 19 16:54:50 2017 +0100 Bug 17960: DBIC Schema changes for opac_news.content Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 0031db5c172052296cb67dc50de59786ad1dc268 Author: Jonathan Druart Date: Fri Jan 20 02:31:41 2017 +0100 Bug 17960: Update installed files git grep opac_news.new installer should not return any occurrences in sql files Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit a233f06574f5ca6417245cba58162af1360bf327 Author: Jonathan Druart Date: Tue Jan 17 08:29:23 2017 +0100 Bug 17960: Rename opac_news.new with opac_news.content The field opac_news.new is very confusing and should be renamed. If you want to access it via Koha::NewsItem you will have trouble: use Koha::News; my $news_item = Koha::News->next; say $news_item->new; => Attempt to bless into a reference at /home/vagrant/kohaclone/Koha/Object.pm line 78. This patchset is going to rename this DB field to opac_news_content instead. Since the opac_news.new can be used in notice templates, we need to warn the user during the update DB process that some templates must be updated. Test plan: 0/ Apply the first patch "Add a test to highlight the issue" and confirm that the test fail 1/ Apply this second patch 2/ Execute the DB entry 3/ Confirm that you get a warning if at least one of your notice templates is using opac_news.new 4/ Confirm that the test new pass 5/ Add/update and delete a news 6/ Confirm that the RSS new feed still works as expected Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit a6b13fbcb315d3749da23d494c11e4b6f9e70165 Author: Jonathan Druart Date: Sat Jan 21 10:49:40 2017 +0100 Bug 17960: Add a test to highlight the issue With only this patch applied, proving t/db_dependent/Koha/News.t will return "Attempt to bless into a reference at /home/vagrant/kohaclone/Koha/Object.pm line 78." Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- Koha/Schema/Result/OpacNews.pm | 11 +++++------ .../data/mysql/de-DE/mandatory/sample_notices.sql | 2 +- installer/data/mysql/de-DE/optional/sample_news.sql | 2 +- .../data/mysql/en/mandatory/sample_notices.sql | 2 +- installer/data/mysql/en/optional/sample_news.sql | 2 +- .../data/mysql/es-ES/mandatory/sample_notices.sql | 2 +- installer/data/mysql/es-ES/optional/sample_news.sql | 2 +- .../data/mysql/fr-CA/facultatif/sample_news.sql | 2 +- .../data/mysql/fr-CA/obligatoire/sample_notices.sql | 2 +- .../mysql/fr-FR/1-Obligatoire/sample_notices.sql | 2 +- .../data/mysql/fr-FR/2-Optionel/sample_news.sql | 2 +- installer/data/mysql/it-IT/necessari/notices.sql | 2 +- .../data/mysql/it-IT/necessari/sample_news.sql | 2 +- installer/data/mysql/kohastructure.sql | 2 +- .../mysql/nb-NO/1-Obligatorisk/sample_notices.sql | 2 +- .../data/mysql/nb-NO/2-Valgfritt/sample_news.sql | 2 +- .../data/mysql/pl-PL/mandatory/sample_notices.sql | 2 +- installer/data/mysql/pl-PL/optional/sample_news.sql | 2 +- .../data/mysql/ru-RU/mandatory/sample_notices.sql | 2 +- installer/data/mysql/ru-RU/optional/sample_news.sql | 16 ++++++++-------- .../data/mysql/uk-UA/mandatory/sample_notices.sql | 5 ++--- installer/data/mysql/uk-UA/optional/sample_news.sql | 16 ++++++++-------- installer/data/mysql/updatedatabase.pl | 19 +++++++++++++++++++ .../intranet-tmpl/prog/en/modules/intranet-main.tt | 2 +- .../prog/en/modules/members/moremember-receipt.tt | 2 +- .../prog/en/modules/tools/koha-news.tt | 6 +++--- .../opac-tmpl/bootstrap/en/modules/opac-main.tt | 2 +- .../opac-tmpl/bootstrap/en/modules/opac-news-rss.tt | 2 +- t/db_dependent/Koha/News.t | 5 ++++- t/db_dependent/NewsChannels.t | 12 ++++++------ tools/koha-news.pl | 6 +++--- 32 files changed, 81 insertions(+), 61 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 08:15:59 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 07:15:59 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.03-9-g118a594 Message-ID: This is an automated email from the git hooks/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 118a594f20bb4992a415b39ba566db84e8fc2c33 (commit) via f8867ecd05f0acdfe5cfb847db97f1f5872c6e60 (commit) via 2cf8c4b3c22a73b9a7d1429aeb7ba07d7f78c27b (commit) via 5089001faa40c42e5d90e1e76059c3b5d3a0ab1f (commit) via 958c1581226d993da4e5dfd72dbbfb9ba9318517 (commit) via abd7febc1e8afa589b3b10eccf59e1dfbd40fb8a (commit) via 9b23c350862a3215671aca173330dd25a92b78af (commit) via 32c8bf4a3dbcd1b15de5221589c974ef78b6b1e6 (commit) via 36685a439a438dd12bd12e65287cc3f0c1b6c198 (commit) from bbc37dcf46ee8ad7b8a1c885a09d4179124b0571 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 118a594f20bb4992a415b39ba566db84e8fc2c33 Author: Jonathan Druart Date: Wed Dec 28 13:51:17 2016 +0000 Bug 7533: Add a warning to the about page if template_cache_dir is not set We need to tell the administrators that it would be great for them to set this config entry. Test plan: - Do not set template_cache_dir and confirm that you see the warning - Set template_cache_dir and confirm that you do not see the warning Signed-off-by: Magnus Enger Both templates for koha-conf.xml are updated. After applying the patach a warning was correctly displayed. After adding template_cache_dir to koha-conf.xml and restarting memcached it went away. Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 7d140258a051921d78f46ac1d9e9443cbcfbd51b) Signed-off-by: Katrin Fischer commit f8867ecd05f0acdfe5cfb847db97f1f5872c6e60 Author: Jonathan Druart Date: Wed Dec 28 13:49:59 2016 +0000 Bug 7533: Add the template_cache_dir entry to koha-conf.xml And comment it, as we don't know what are the sysop's preferences Signed-off-by: Magnus Enger Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 819cea62f222286b016941d8ba08da0996289668) Signed-off-by: Katrin Fischer commit 2cf8c4b3c22a73b9a7d1429aeb7ba07d7f78c27b Author: radiuscz Date: Mon Oct 24 00:57:03 2016 +0200 Bug 17487: Styling moved from style attribute into staff-global.css Test plan: 1) Apply patch 2) Display Z39.50 search dialogs: - cataloguing / new from Z39.50 - authorities / new from Z39.50 - acquisition / new from an external source 3) Select all / Clear all should be placed below "Search targets" header 4) [Optionally] Set some style in IntranetUserCSS for class z3950checks https://bugs.koha-community.org/show_bug.cgi?id=17487 Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit aaf6b6724f5c7c6e29433600d55b9f1e8836a77b) Signed-off-by: Katrin Fischer commit 5089001faa40c42e5d90e1e76059c3b5d3a0ab1f Author: radiuscz Date: Sun Oct 23 02:51:53 2016 +0200 Bug 17487: Links to "select/clear all" moved below the header tag Test plan: 1) Apply patch 2) Display Z39.50 search dialogs: - cataloguing / new from Z39.50 - authorities / new from Z39.50 - acquisition / new from an external source 3) Select all / Clear all should be placed below "Search targets" header https://bugs.koha-community.org/show_bug.cgi?id=17487 Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit f05b2986da26717f70134b07020c509821aeb3f7) Signed-off-by: Katrin Fischer commit 958c1581226d993da4e5dfd72dbbfb9ba9318517 Author: Marcel de Rooy Date: Tue Dec 13 14:10:45 2016 +0100 Bug 17726: [QA Follow-up] Add test descriptions Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit ddf1d9bcdde4790b713eca8040f0c9fce8fdcf6a) Signed-off-by: Katrin Fischer commit abd7febc1e8afa589b3b10eccf59e1dfbd40fb8a Author: Jonathan Druart Date: Mon Dec 12 22:38:40 2016 +0000 Bug 17726: TestBuilder - Add default values The items.more_subfields_xml is set to random data (generated by TestBuilder), and so GetMarcBiblio does not manage to embed items (if needed). The error is: :1: parser error : Start tag expected, '<' not found More precisely it explodes in C4::Items::_parse_unlinked_item_subfields_from_xml when MARC::Record->new_from_xml is called with an invalid xml This patch adds a default values mechanism to TestBuilder to avoid modifying all the existing calls. Test plan: Set SearchEngine to ElasticSearch prove t/db_dependent/Circulation.pl should return green with this patch Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 41358176e1d276e47d3034a37bd089b7e6c7e846) Signed-off-by: Katrin Fischer commit 9b23c350862a3215671aca173330dd25a92b78af Author: Nick Clemens Date: Fri Jan 13 18:06:34 2017 +0000 Bug 8361 (QA Followup) Add warnings - Added message to circulation.tt to warn if rule undefined for patron/itemtype combination To test: 1 - Remove all circ rules 2 - Add one rule 3 - Checkout to patron an itemtype that is outside of rule defined above 4 - Note explanation that no rule is defined Signed-off-by: Kyle M Hall (cherry picked from commit 63f7cbc777521c33f8ada3e1068be01b98da9050) Signed-off-by: Katrin Fischer commit 32c8bf4a3dbcd1b15de5221589c974ef78b6b1e6 Author: Jonathan Druart Date: Tue Nov 22 11:23:23 2016 +0000 Bug 8361: Do not allow checkouts if no rules are defined We should require a circulation rule to allow checkouts and reject them if no rules are defined. Test plan: - Delete all issuing rules - Check an item out => Without this patch the checkout is allowed => With this patch applied it is rejected Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 11dfb2e0b2d32c313f556b623ee8522b4342af26) Signed-off-by: Katrin Fischer commit 36685a439a438dd12bd12e65287cc3f0c1b6c198 Author: Karen Jen Date: Tue Jan 17 22:46:02 2017 +0000 Bug 17823: Add label for MARC 583 - Action note test plan Edit a record Edit field 583a to add an action note Save the record and confirm that the note does not show up in staff client or opac Apply patch and refresh page Action note should now show up in staff client and opac Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit 16dcea233008c0560c5a9783a3e6dd60470b06b1) Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 4 ++++ about.pl | 2 ++ debian/templates/koha-conf-site.xml.in | 4 ++++ etc/koha-conf.xml | 4 ++++ koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 4 ++++ koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 10 ++++++++-- .../prog/en/modules/acqui/z3950_search.tt | 3 ++- .../en/modules/cataloguing/z3950_auth_search.tt | 3 ++- .../prog/en/modules/cataloguing/z3950_search.tt | 3 ++- .../prog/en/modules/circ/circulation.tt | 6 +++++- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 21 ++++++++++++++++++++ .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 1 + t/db_dependent/Circulation/TooMany.t | 12 +++++------ t/db_dependent/TestBuilder.t | 11 +++++++++- t/lib/TestBuilder.pm | 15 ++++++++++++++ 15 files changed, 90 insertions(+), 13 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 17:21:54 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 16:21:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-360-g0b2393c Message-ID: This is an automated email from the git hooks/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 0b2393cd655eb43e2d9893b40fb48abf1e786618 (commit) from 6abf904bffbf433b26a6da904fec2b1800274c20 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0b2393cd655eb43e2d9893b40fb48abf1e786618 Author: Josef Moravec Date: Wed Feb 1 20:48:49 2017 +0100 Bug 18033: Remove duplicate code in paycollect.pl Test plan: 0) apply the patch 1) try to pay individual fee, with full amount and partial amount it should work the same as before patch Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: members/paycollect.pl | 32 +++++++++----------------------- 1 file changed, 9 insertions(+), 23 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:24:22 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:24:22 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-362-g4f178fa Message-ID: This is an automated email from the git hooks/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 4f178fad53fb748bd1ccf67680e02411918c9584 (commit) via d1077b5ae6aa5c375ef91e6150a7d39b60513325 (commit) from 0b2393cd655eb43e2d9893b40fb48abf1e786618 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4f178fad53fb748bd1ccf67680e02411918c9584 Author: Olli-Antti Kivilahti Date: Tue Jan 10 16:28:35 2017 +0200 Bug 17255 - Upgrade Elastic Search code to work with version 5.1 Builds on top of commit: Bug 17255 - Upgrade Elastic Search code to work with version 2.4+ - rebased wip -Fix data type 'string' to 'keyword' and 'text' -index: not_analyzed deprecated, replaced with type: keyword which is equivalent -store: yes was deprecated, use store: true TODO: Installer bindings to both the debian package install and the raw developer install. A taster in Buug 17851 ZE TEST PLAN 0. Remove existing ES and reinstall ES 5.1 apt-get purge elasticsearch Follow instruction here: https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html 1. Reset Elasticsearch index since facets are hard coded to dynamic search_marc_mappings. 1a. perl -e 'use Koha::SearchEngine::Elasticsearch; Koha::SearchEngine::Elasticsearch->reset_elasticsearch_mappings();' 1b. If you get trouble, simply DELETE FROM [search_fields|search_marc_to_fields|search_marc_mapping]; and retry 1a. 1c. Destroy elasticsearch index curl -XDELETE localhost:9200/koha_biblios so it can be recreated 2. Recreate the index: perl misc/search_tools/rebuild_elastic_search.pl 2a. Add something to index if your koha.biblio-table is empty 3. Fetch all indexed records and the facet for subject__facet curl -XGET localhost:9200/koha_biblios/data/_search?pretty -d '{ "aggregations": { "my_agg": { "terms": { "field": "subject__facet" } } } }' 4. Run the included tests: perl t/db_dependent/Koha_Elasticsearch_Indexer.t perl t/db_dependent/Koha_Elasticsearch.t perl t/db_dependent/Koha_SearchEngine_Elasticsearch_Search.t Have fun with your new ES 5.1 cluster! Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit d1077b5ae6aa5c375ef91e6150a7d39b60513325 Author: Olli-Antti Kivilahti Date: Mon Jan 9 18:17:48 2017 +0200 Bug 17255 - Upgrade Elastic Search code to work with version 2.4+ - rebased wip -Changed deprecated facets to aggregations -Fixed boolean datatypes not allowing analyzers to be specified -Fixed deprecated '_id' to 'es_id'. Now the ES-index has the correct id==biblionumber ZE TEST PLAN 1. Reset Zebra index since facets are hard coded to dynamic search_marc_mappings. 2. perl misc/search_tools/rebuild_elastic_search.pl 3. Fetch all indexed records and the facet for subject__facet curl -XGET localhost:9200/koha_biblios/data/_search?pretty -d '{ "aggregations": { "my_agg": { "terms": { "field": "subject__facet" } } } }' Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/SearchEngine/Elasticsearch.pm | 98 +++++++++++++------- Koha/SearchEngine/Elasticsearch/Indexer.pm | 2 + Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 4 +- Koha/SearchEngine/Elasticsearch/Search.pm | 16 ++-- .../{Koha_Elasticsearch. => Koha_Elasticsearch.t} | 2 +- 5 files changed, 75 insertions(+), 47 deletions(-) rename t/db_dependent/{Koha_Elasticsearch. => Koha_Elasticsearch.t} (94%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:50:26 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:50:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-366-geee1f23 Message-ID: This is an automated email from the git hooks/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 eee1f23bc49d233bca6c8a8004dd6e79e2425484 (commit) via 9f460de741902a3c35e4ecaef0275608fd2f4750 (commit) via 1017edad1c27d2624fb8ed6f8fb0018985b33295 (commit) via 4cdcdb3cb5ebefedcb44766745078a949227f0a5 (commit) from 4f178fad53fb748bd1ccf67680e02411918c9584 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit eee1f23bc49d233bca6c8a8004dd6e79e2425484 Author: Jonathan Druart Date: Thu Nov 12 12:28:38 2015 +0000 Bug 15030: Add tests This test will prevent regression on the lost of data when items.itemcallnumber is linked with a plugin. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall commit 9f460de741902a3c35e4ecaef0275608fd2f4750 Author: Blou Date: Thu Oct 22 16:49:10 2015 -0400 Bug 15030 - continue. The enumchron value was overwritten by 'header' even when value supplied Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall commit 1017edad1c27d2624fb8ed6f8fb0018985b33295 Author: Blou Date: Wed Oct 21 14:35:18 2015 -0400 Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value This fixes the remaining fields from serials-edit.pl that were seeing their previously entered values be oblitarated with each new edit. The fields associated to a plugin (dateaccessioned and barcode) were always displaying with each new edit, losing the previous effort. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall commit 4cdcdb3cb5ebefedcb44766745078a949227f0a5 Author: Blou Date: Mon Oct 19 12:16:05 2015 -0400 Bug 15030 - Certain values in serials' items are lost on next edit When editing serials subscription, we can edit them but some values are not pulled from the DB correctly to be put in the edit box. If not noticed, the value will be overwritten on the next save. Test: - Create a subscription - Edit itemcallnumber (952o?) and make sure to have a different value than the default one. - Save. - Edit it again - The saved value is not there. This is true for itemcallnumber and a few other fields. This was caused by calls to ->field($subfield). This would always fail, of course. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 13 +++++--- .../prog/en/modules/serials/serials-edit.tt | 6 ++-- t/db_dependent/Serials.t | 32 ++++++++++++++++++-- 3 files changed, 42 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:51:27 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:51:27 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-367-g4740438 Message-ID: This is an automated email from the git hooks/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 4740438b41573d24c6e83d182e2ce1cf6fc54545 (commit) from eee1f23bc49d233bca6c8a8004dd6e79e2425484 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4740438b41573d24c6e83d182e2ce1cf6fc54545 Author: Dobrica Pavlinusic Date: Mon Jan 30 12:42:09 2017 +0100 Bug 17775 - Add new user with LDAP not works under Plack This patch fixes internal server error: Undefined subroutine &C4::Auth_with_ldap::AddMember called at /srv/koha_ffzg/C4/Auth_with_ldap.pm line 213. It occurs only under plack, and it's strange since C4::Members does EXPORT AddMember and we are importing it into Auth_with_ldap.pm (and it does work under CGI). Signed-off-by: Liz Rea Signed-off-by: Jonathan Druart I did not test but trust author and signoffer. The change cannot hurt. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Auth_with_ldap.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:52:14 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:52:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-369-g80a4383 Message-ID: This is an automated email from the git hooks/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 80a43833f89ea1f31753245cb2d6f20acb7216a4 (commit) via 544cf17d6f3279d95835ba42d40d49982e97f0a2 (commit) from 4740438b41573d24c6e83d182e2ce1cf6fc54545 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 80a43833f89ea1f31753245cb2d6f20acb7216a4 Author: Jonathan Druart Date: Mon Feb 6 09:18:29 2017 +0100 Bug 18044: Add a test Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 544cf17d6f3279d95835ba42d40d49982e97f0a2 Author: Chris Nighswonger Date: Sun Feb 5 16:11:30 2017 -0500 Bug 18044: Label Batches not displaying SQL expects lists to be comma separated. A trailing comma must also be avoided. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Creators/Lib.pm | 2 +- t/db_dependent/Creators/Lib.t | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:53:19 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:53:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-370-g79c7423 Message-ID: This is an automated email from the git hooks/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 79c742303cf3e81acfd64c072cfd9567613c899c (commit) from 80a43833f89ea1f31753245cb2d6f20acb7216a4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 79c742303cf3e81acfd64c072cfd9567613c899c Author: Dobrica Pavlinusic Date: Mon Jan 30 13:02:36 2017 +0100 Bug 18013 - acqui/transferorder.pl typo in find method This typo was introduced in Bug 13726 and has obvious fix Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: acqui/transferorder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:54:23 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:54:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-371-g6495fac Message-ID: This is an automated email from the git hooks/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 6495facedbccde81ca66a552de94d72ecb5b361e (commit) from 79c742303cf3e81acfd64c072cfd9567613c899c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6495facedbccde81ca66a552de94d72ecb5b361e Author: Josef Moravec Date: Wed Jan 18 12:36:37 2017 +0000 Bug 18005: Re-styled pagination on search results with Bootstrap Test plan: 0. Don't apply path 1. Make catalogue search in staff client with more then 20 results, scroll down to see that pagination is broken 2. Apply the patch 3. Make similar search and confirm, the pagination looks OK with new style Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 4 ++++ koha-tmpl/intranet-tmpl/prog/en/includes/page-numbers.inc | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:56:56 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:56:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-373-g58e7a0a Message-ID: This is an automated email from the git hooks/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 58e7a0a5d510de6a035329ea86a130996dda5849 (commit) via 0eb5d8491ebbf44f213d0cbe05695521dafc6dd9 (commit) from 6495facedbccde81ca66a552de94d72ecb5b361e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 58e7a0a5d510de6a035329ea86a130996dda5849 Author: Tomas Cohen Arazi Date: Tue Jan 24 08:34:44 2017 -0300 Bug 17871: (followup) Remove zebra::* from the packages templates Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 0eb5d8491ebbf44f213d0cbe05695521dafc6dd9 Author: David Cook Date: Tue Jan 10 12:36:25 2017 +1100 Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ This patch restores access to zebra facets (or zebra::snippet) with YAZ 5.8.1 or higher. It was failing due to The entry in retrieval-info-bib-dom.xml which IndexData said it wasn't even needed to get that access. Edit: I amended the commit message (tcohen) Signed-off-by: Colin Campbell Signed-off-by: Tomas Cohen Arazi I tested on kohadevbox and found no regression or behaviour change. I will provide a followup for the packages. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: debian/templates/marc21-retrieval-info-bib-dom.xml | 1 - debian/templates/normarc-retrieval-info-bib-dom.xml | 1 - debian/templates/unimarc-retrieval-info-bib-dom.xml | 1 - etc/zebradb/retrieval-info-bib-dom.xml | 2 -- 4 files changed, 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:58:05 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:58:05 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-374-g844cf7a Message-ID: This is an automated email from the git hooks/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 844cf7a748c2b4f567bec2e5088665a9edf94468 (commit) from 58e7a0a5d510de6a035329ea86a130996dda5849 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 844cf7a748c2b4f567bec2e5088665a9edf94468 Author: Mirko Tietgen Date: Mon Jan 30 15:59:59 2017 +0100 Bug 18015 - On shelf holds allowed > "If all unavailable" ignores notforloan If in the circ rules matrix you set "On shelf holds allowed" to "If all unavailable", items with status "Not for loan" are considered available and break the functionality. Test plan: - Set "On shelf holds allowed" to "If all unavailable" for your patron and item category (or everyone and everything) - Have two items for a record. Check out one - Set 7 - Not for loan: "Not For Loan" for the second item - Try to place a hold. Does not work. - Apply the patch - Try to place a hold. Should work now. Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Reserves.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:59:10 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:59:10 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-375-g95e9476 Message-ID: This is an automated email from the git hooks/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 95e94766af653de4bc721af64981140cacecf567 (commit) from 844cf7a748c2b4f567bec2e5088665a9edf94468 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 95e94766af653de4bc721af64981140cacecf567 Author: Julian Maurice Date: Wed Jan 18 11:29:57 2017 +0100 Bug 17922: Use correct number of digits when replacing date placeholders This patch also fixes a typo ("<<" should be "<>") Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: cataloguing/addbiblio.pl | 6 +++--- cataloguing/additem.pl | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 18:59:55 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 17:59:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-376-g18529d7 Message-ID: This is an automated email from the git hooks/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 18529d7cc5a6334e45d977da9ddfe5429f402c2b (commit) from 95e94766af653de4bc721af64981140cacecf567 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 18529d7cc5a6334e45d977da9ddfe5429f402c2b Author: Josef Moravec Date: Tue Jan 24 07:16:37 2017 +0000 Bug 17929 - You can't edit indicators in the cataloging screen Test plan: 0. Do not apply the patch 1. Edit a biblio record, note you can't edit an indicator (in fact you edit it, but can't see the value) 2. Edit an authority record, note you can't edit an indicator (in fact you edit it, but can't see the value) 3. Apply the patch, you may need clear the browser cache (in Firefox Ctrl+F5 is often enough) 4. Repeat steps 1 and 2 - but now you will be able to edit the indicator Signed-off-by: J Schmidt Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/css/addbiblio.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 19:00:35 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 18:00:35 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-377-g21ac9fc Message-ID: This is an automated email from the git hooks/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 21ac9fcdc2ca449a491cc79e68cc854ee248d911 (commit) from 18529d7cc5a6334e45d977da9ddfe5429f402c2b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 21ac9fcdc2ca449a491cc79e68cc854ee248d911 Author: Lari Taskula Date: Mon Dec 12 16:49:44 2016 +0200 Bug 16387: Fix default shortened loan period time When a loan period is shortened due to using decreaseLoanHighHolds* the time is always set to the current time in X days, even if the original loan period is given in days and not in hours. It should default to 23:59 as is normal for loan periods given in days. As original due date time defaults to 23:59 when given in days, this patch modifies the hours and minutes of shortened due date to be equal to original due date. To test: 1. prove t/db_dependent/DecreaseLoanHighHolds.t Signed-off-by: Grace McKenzie Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 3 +++ t/db_dependent/DecreaseLoanHighHolds.t | 14 +++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 19:01:12 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 18:01:12 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-380-g185256d Message-ID: This is an automated email from the git hooks/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 185256deba961c2595ce934afbb910cf3ad952e0 (commit) via b68557148d17295557cae449e5617166950ac47f (commit) via 92a4e0e5f36fd4c5c817db96f8206b3ad903436e (commit) from 21ac9fcdc2ca449a491cc79e68cc854ee248d911 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 185256deba961c2595ce934afbb910cf3ad952e0 Author: Jonathan Druart Date: Fri Jan 27 10:14:46 2017 +0100 Bug 17782: Fix tests Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit b68557148d17295557cae449e5617166950ac47f Author: Nick Clemens Date: Wed Jan 25 15:59:42 2017 +0000 Bug 17782 - (QA Followup) Fix tests prove t/db_dependent/Koha/Patrons.t Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 92a4e0e5f36fd4c5c817db96f8206b3ad903436e Author: Nick Clemens Date: Thu Dec 15 14:17:55 2016 +0000 Bug 17782 - Patron updated_on field should be set to current timestamp when borrower is deleted To test: 01 Find a patron 02 Get the updated_on value from the db in borrowers table 03 Delete the patron 04 Get the update_on value from the db on deletedborrowers table 05 Values from 02 and 04 are the same 06 Apply patch 07 Repeat 01-04 08 Values should now be different Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Patron.pm | 1 + t/db_dependent/Koha/Patrons.t | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 19:01:57 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 18:01:57 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-384-g2f64fd3 Message-ID: This is an automated email from the git hooks/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 2f64fd3918a205ac21630657160f61200c791320 (commit) via 105b82b8461786ac6695e90aa8a2c1d4c36b4190 (commit) via d628cd828d938e7c263faee2081ea8f4045b956b (commit) via 9d805b5b5f6711bc6b5efcb846756c6763dabc07 (commit) from 185256deba961c2595ce934afbb910cf3ad952e0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2f64fd3918a205ac21630657160f61200c791320 Author: Tomas Cohen Arazi Date: Fri Feb 3 15:57:42 2017 -0300 Bug 17927: (QA followup) Fix timestamp nullable in hold.json Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 105b82b8461786ac6695e90aa8a2c1d4c36b4190 Author: Tomas Cohen Arazi Date: Tue Jan 17 15:19:06 2017 -0300 Bug 17927: (QA followup) Fix boolean types Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit d628cd828d938e7c263faee2081ea8f4045b956b Author: Josef Moravec Date: Fri Nov 4 00:34:38 2016 +0000 Bug 17927: (followup) Fix /cities cityid type Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 9d805b5b5f6711bc6b5efcb846756c6763dabc07 Author: Lari Taskula Date: Tue Aug 16 13:37:29 2016 +0300 Bug 17927: Fix /holds and /patrons data types This patch changes current Swagger definitions for patrons and holds to have data types corresponding to column data types in their database tables. To test: 1. GET http://yourlibrary/api/v1/patrons/YYY where YYY is existing borrowernumber 2. Observe that numbers / integers are in string data type. 3. Apply this patch 4. Repeat step 1. 5. Observe that numbers / integers are now actually numbers / integers. Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: api/v1/swagger/definitions/hold.json | 16 +++++++++++++++- api/v1/swagger/definitions/patron.json | 17 +++++++++-------- api/v1/swagger/x-primitives.json | 13 +++++-------- 3 files changed, 29 insertions(+), 17 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 7 23:30:25 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 07 Feb 2017 22:30:25 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.03-23-gdeaeed7 Message-ID: This is an automated email from the git hooks/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 deaeed7903d78965cab25099dcb9831547e8ad9f (commit) via 5e3ab17d5c3d4d5705eac257cb429272a56f7048 (commit) via c3abbc2453ad4378a92bf60692468706a7117678 (commit) via 090f2885b7a910ee84212fa5bb0141611121eb77 (commit) via fdf1f974770247dc4b8decfb3318e31b940be48d (commit) via add14acd9f197ac91ef37d4720d3486c67f3b841 (commit) via 0e50ef7c2afad535a42e428c3a3f92341465ae83 (commit) via 62848b134c30dbd980be7d2658832c2a18f804c8 (commit) via d13835de10ecc8e7035931c4eab8c358d63c49f4 (commit) via b61ff540611f0dfd28dd7818dc1d03062cb4c159 (commit) via e005d17bb6a6181a8b7d00a8e9bb7d75e9b2c071 (commit) via 6f959cd149c0484417056f50b0fb6590c837c428 (commit) via 18ad4150eadff0f229c1cc73950f8e53568ed249 (commit) via 3f084924e6df501e4256089c7a641911f378286f (commit) from 118a594f20bb4992a415b39ba566db84e8fc2c33 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit deaeed7903d78965cab25099dcb9831547e8ad9f Author: Jonathan Druart Date: Fri Jan 27 10:14:46 2017 +0100 Bug 17782: Fix tests Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 185256deba961c2595ce934afbb910cf3ad952e0) Signed-off-by: Katrin Fischer commit 5e3ab17d5c3d4d5705eac257cb429272a56f7048 Author: Nick Clemens Date: Wed Jan 25 15:59:42 2017 +0000 Bug 17782 - (QA Followup) Fix tests prove t/db_dependent/Koha/Patrons.t Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit b68557148d17295557cae449e5617166950ac47f) Signed-off-by: Katrin Fischer commit c3abbc2453ad4378a92bf60692468706a7117678 Author: Nick Clemens Date: Thu Dec 15 14:17:55 2016 +0000 Bug 17782 - Patron updated_on field should be set to current timestamp when borrower is deleted To test: 01 Find a patron 02 Get the updated_on value from the db in borrowers table 03 Delete the patron 04 Get the update_on value from the db on deletedborrowers table 05 Values from 02 and 04 are the same 06 Apply patch 07 Repeat 01-04 08 Values should now be different Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 92a4e0e5f36fd4c5c817db96f8206b3ad903436e) Signed-off-by: Katrin Fischer commit 090f2885b7a910ee84212fa5bb0141611121eb77 Author: Lari Taskula Date: Mon Dec 12 16:49:44 2016 +0200 Bug 16387: Fix default shortened loan period time When a loan period is shortened due to using decreaseLoanHighHolds* the time is always set to the current time in X days, even if the original loan period is given in days and not in hours. It should default to 23:59 as is normal for loan periods given in days. As original due date time defaults to 23:59 when given in days, this patch modifies the hours and minutes of shortened due date to be equal to original due date. To test: 1. prove t/db_dependent/DecreaseLoanHighHolds.t Signed-off-by: Grace McKenzie Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 21ac9fcdc2ca449a491cc79e68cc854ee248d911) Signed-off-by: Katrin Fischer commit fdf1f974770247dc4b8decfb3318e31b940be48d Author: Julian Maurice Date: Wed Jan 18 11:29:57 2017 +0100 Bug 17922: Use correct number of digits when replacing date placeholders This patch also fixes a typo ("<<" should be "<>") Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 95e94766af653de4bc721af64981140cacecf567) Signed-off-by: Katrin Fischer commit add14acd9f197ac91ef37d4720d3486c67f3b841 Author: Mirko Tietgen Date: Mon Jan 30 15:59:59 2017 +0100 Bug 18015 - On shelf holds allowed > "If all unavailable" ignores notforloan If in the circ rules matrix you set "On shelf holds allowed" to "If all unavailable", items with status "Not for loan" are considered available and break the functionality. Test plan: - Set "On shelf holds allowed" to "If all unavailable" for your patron and item category (or everyone and everything) - Have two items for a record. Check out one - Set 7 - Not for loan: "Not For Loan" for the second item - Try to place a hold. Does not work. - Apply the patch - Try to place a hold. Should work now. Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 844cf7a748c2b4f567bec2e5088665a9edf94468) Signed-off-by: Katrin Fischer commit 0e50ef7c2afad535a42e428c3a3f92341465ae83 Author: Tomas Cohen Arazi Date: Tue Jan 24 08:34:44 2017 -0300 Bug 17871: (followup) Remove zebra::* from the packages templates Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit 58e7a0a5d510de6a035329ea86a130996dda5849) Signed-off-by: Katrin Fischer commit 62848b134c30dbd980be7d2658832c2a18f804c8 Author: David Cook Date: Tue Jan 10 12:36:25 2017 +1100 Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ This patch restores access to zebra facets (or zebra::snippet) with YAZ 5.8.1 or higher. It was failing due to The entry in retrieval-info-bib-dom.xml which IndexData said it wasn't even needed to get that access. Edit: I amended the commit message (tcohen) Signed-off-by: Colin Campbell Signed-off-by: Tomas Cohen Arazi I tested on kohadevbox and found no regression or behaviour change. I will provide a followup for the packages. Signed-off-by: Kyle M Hall (cherry picked from commit 0eb5d8491ebbf44f213d0cbe05695521dafc6dd9) Signed-off-by: Katrin Fischer commit d13835de10ecc8e7035931c4eab8c358d63c49f4 Author: Jonathan Druart Date: Mon Feb 6 09:18:29 2017 +0100 Bug 18044: Add a test Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 80a43833f89ea1f31753245cb2d6f20acb7216a4) Signed-off-by: Katrin Fischer commit b61ff540611f0dfd28dd7818dc1d03062cb4c159 Author: Chris Nighswonger Date: Sun Feb 5 16:11:30 2017 -0500 Bug 18044: Label Batches not displaying SQL expects lists to be comma separated. A trailing comma must also be avoided. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 544cf17d6f3279d95835ba42d40d49982e97f0a2) Signed-off-by: Katrin Fischer commit e005d17bb6a6181a8b7d00a8e9bb7d75e9b2c071 Author: Dobrica Pavlinusic Date: Mon Jan 30 12:42:09 2017 +0100 Bug 17775 - Add new user with LDAP not works under Plack This patch fixes internal server error: Undefined subroutine &C4::Auth_with_ldap::AddMember called at /srv/koha_ffzg/C4/Auth_with_ldap.pm line 213. It occurs only under plack, and it's strange since C4::Members does EXPORT AddMember and we are importing it into Auth_with_ldap.pm (and it does work under CGI). Signed-off-by: Liz Rea Signed-off-by: Jonathan Druart I did not test but trust author and signoffer. The change cannot hurt. Signed-off-by: Kyle M Hall (cherry picked from commit 4740438b41573d24c6e83d182e2ce1cf6fc54545) Signed-off-by: Katrin Fischer commit 6f959cd149c0484417056f50b0fb6590c837c428 Author: Jonathan Druart Date: Thu Nov 12 12:28:38 2015 +0000 Bug 15030: Add tests This test will prevent regression on the lost of data when items.itemcallnumber is linked with a plugin. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit eee1f23bc49d233bca6c8a8004dd6e79e2425484) Signed-off-by: Katrin Fischer commit 18ad4150eadff0f229c1cc73950f8e53568ed249 Author: Blou Date: Wed Oct 21 14:35:18 2015 -0400 Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value This fixes the remaining fields from serials-edit.pl that were seeing their previously entered values be oblitarated with each new edit. The fields associated to a plugin (dateaccessioned and barcode) were always displaying with each new edit, losing the previous effort. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit 1017edad1c27d2624fb8ed6f8fb0018985b33295) Signed-off-by: Katrin Fischer commit 3f084924e6df501e4256089c7a641911f378286f Author: Blou Date: Mon Oct 19 12:16:05 2015 -0400 Bug 15030 - Certain values in serials' items are lost on next edit When editing serials subscription, we can edit them but some values are not pulled from the DB correctly to be put in the edit box. If not noticed, the value will be overwritten on the next save. Test: - Create a subscription - Edit itemcallnumber (952o?) and make sure to have a different value than the default one. - Save. - Edit it again - The saved value is not there. This is true for itemcallnumber and a few other fields. This was caused by calls to ->field($subfield). This would always fail, of course. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit 4cdcdb3cb5ebefedcb44766745078a949227f0a5) Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: C4/Auth_with_ldap.pm | 2 +- C4/Circulation.pm | 3 ++ C4/Creators/Lib.pm | 2 +- C4/Items.pm | 13 +++++--- C4/Reserves.pm | 2 +- Koha/Patron.pm | 1 + cataloguing/addbiblio.pl | 6 ++-- cataloguing/additem.pl | 8 ++--- debian/templates/marc21-retrieval-info-bib-dom.xml | 1 - .../templates/normarc-retrieval-info-bib-dom.xml | 1 - .../templates/unimarc-retrieval-info-bib-dom.xml | 1 - etc/zebradb/retrieval-info-bib-dom.xml | 2 -- t/db_dependent/Creators/Lib.t | 4 ++- t/db_dependent/DecreaseLoanHighHolds.t | 14 ++++++++- t/db_dependent/Koha/Patrons.t | 9 ++++-- t/db_dependent/Serials.t | 32 ++++++++++++++++++-- 16 files changed, 75 insertions(+), 26 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 09:38:19 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 08:38:19 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-1-gbd3188a Message-ID: This is an automated email from the git hooks/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 bd3188a2b38afdd51af6ca16f0955f5bd7cfe61d (commit) from ce1cdb5794bf18cc26de35ccfa0ac921422df62a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bd3188a2b38afdd51af6ca16f0955f5bd7cfe61d Author: Karen Jen Date: Tue Jan 17 22:46:02 2017 +0000 Bug 17823: Add label for MARC 583 - Action note test plan Edit a record Edit field 583a to add an action note Save the record and confirm that the note does not show up in staff client or opac Apply patch and refresh page Action note should now show up in staff client and opac Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit 16dcea233008c0560c5a9783a3e6dd60470b06b1) Signed-off-by: Katrin Fischer (cherry picked from commit 36685a439a438dd12bd12e65287cc3f0c1b6c198) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 21 ++++++++++++++++++++ .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 1 + 2 files changed, 22 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 09:55:41 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 08:55:41 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-3-g91120fe Message-ID: This is an automated email from the git hooks/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 91120fee8c0d60c733c2b0c08030451d378e5e82 (commit) via 809b0a28b7b2e9c76fad671fa1ed82cf45d7ed97 (commit) from bd3188a2b38afdd51af6ca16f0955f5bd7cfe61d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 91120fee8c0d60c733c2b0c08030451d378e5e82 Author: Nick Clemens Date: Fri Jan 13 18:06:34 2017 +0000 Bug 8361 (QA Followup) Add warnings - Added message to circulation.tt to warn if rule undefined for patron/itemtype combination To test: 1 - Remove all circ rules 2 - Add one rule 3 - Checkout to patron an itemtype that is outside of rule defined above 4 - Note explanation that no rule is defined Signed-off-by: Kyle M Hall (cherry picked from commit 63f7cbc777521c33f8ada3e1068be01b98da9050) Signed-off-by: Katrin Fischer (cherry picked from commit 9b23c350862a3215671aca173330dd25a92b78af) Signed-off-by: Julian Maurice commit 809b0a28b7b2e9c76fad671fa1ed82cf45d7ed97 Author: Jonathan Druart Date: Tue Nov 22 11:23:23 2016 +0000 Bug 8361: Do not allow checkouts if no rules are defined We should require a circulation rule to allow checkouts and reject them if no rules are defined. Test plan: - Delete all issuing rules - Check an item out => Without this patch the checkout is allowed => With this patch applied it is rejected Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 11dfb2e0b2d32c313f556b623ee8522b4342af26) Signed-off-by: Katrin Fischer (cherry picked from commit 32c8bf4a3dbcd1b15de5221589c974ef78b6b1e6) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 4 ++++ .../intranet-tmpl/prog/en/modules/circ/circulation.tt | 6 +++++- t/db_dependent/Circulation/TooMany.t | 12 ++++++------ 3 files changed, 15 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:12:33 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:12:33 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-5-g7abba8f Message-ID: This is an automated email from the git hooks/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 7abba8fccb368ab41776476fe2ef57ad171be372 (commit) via 11fd2e0c4b29921f576679d4092990f05e0efaa0 (commit) from 91120fee8c0d60c733c2b0c08030451d378e5e82 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7abba8fccb368ab41776476fe2ef57ad171be372 Author: radiuscz Date: Mon Oct 24 00:57:03 2016 +0200 Bug 17487: Styling moved from style attribute into staff-global.css Test plan: 1) Apply patch 2) Display Z39.50 search dialogs: - cataloguing / new from Z39.50 - authorities / new from Z39.50 - acquisition / new from an external source 3) Select all / Clear all should be placed below "Search targets" header 4) [Optionally] Set some style in IntranetUserCSS for class z3950checks https://bugs.koha-community.org/show_bug.cgi?id=17487 Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit aaf6b6724f5c7c6e29433600d55b9f1e8836a77b) Signed-off-by: Katrin Fischer (cherry picked from commit 2cf8c4b3c22a73b9a7d1429aeb7ba07d7f78c27b) Signed-off-by: Julian Maurice commit 11fd2e0c4b29921f576679d4092990f05e0efaa0 Author: radiuscz Date: Sun Oct 23 02:51:53 2016 +0200 Bug 17487: Links to "select/clear all" moved below the header tag Test plan: 1) Apply patch 2) Display Z39.50 search dialogs: - cataloguing / new from Z39.50 - authorities / new from Z39.50 - acquisition / new from an external source 3) Select all / Clear all should be placed below "Search targets" header https://bugs.koha-community.org/show_bug.cgi?id=17487 Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit f05b2986da26717f70134b07020c509821aeb3f7) Signed-off-by: Katrin Fischer (cherry picked from commit 5089001faa40c42e5d90e1e76059c3b5d3a0ab1f) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css | 4 ++++ koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt | 3 ++- .../intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt | 3 ++- .../intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt | 3 ++- 4 files changed, 10 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:31:15 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:31:15 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-8-gf2694ea Message-ID: This is an automated email from the git hooks/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 f2694ea4a92827d5ddb3e018f7d9569c1458d2d9 (commit) via d7d79b2af9ea5db22d8df4344b5d07f2e2b42e52 (commit) via 9bc4064947d22d903a0fca88aaaec48dd0969c48 (commit) from 7abba8fccb368ab41776476fe2ef57ad171be372 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f2694ea4a92827d5ddb3e018f7d9569c1458d2d9 Author: Jonathan Druart Date: Thu Nov 12 12:28:38 2015 +0000 Bug 15030: Add tests This test will prevent regression on the lost of data when items.itemcallnumber is linked with a plugin. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit eee1f23bc49d233bca6c8a8004dd6e79e2425484) Signed-off-by: Katrin Fischer (cherry picked from commit 6f959cd149c0484417056f50b0fb6590c837c428) Signed-off-by: Julian Maurice commit d7d79b2af9ea5db22d8df4344b5d07f2e2b42e52 Author: Blou Date: Wed Oct 21 14:35:18 2015 -0400 Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value This fixes the remaining fields from serials-edit.pl that were seeing their previously entered values be oblitarated with each new edit. The fields associated to a plugin (dateaccessioned and barcode) were always displaying with each new edit, losing the previous effort. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit 1017edad1c27d2624fb8ed6f8fb0018985b33295) Signed-off-by: Katrin Fischer (cherry picked from commit 18ad4150eadff0f229c1cc73950f8e53568ed249) Signed-off-by: Julian Maurice commit 9bc4064947d22d903a0fca88aaaec48dd0969c48 Author: Blou Date: Mon Oct 19 12:16:05 2015 -0400 Bug 15030 - Certain values in serials' items are lost on next edit When editing serials subscription, we can edit them but some values are not pulled from the DB correctly to be put in the edit box. If not noticed, the value will be overwritten on the next save. Test: - Create a subscription - Edit itemcallnumber (952o?) and make sure to have a different value than the default one. - Save. - Edit it again - The saved value is not there. This is true for itemcallnumber and a few other fields. This was caused by calls to ->field($subfield). This would always fail, of course. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit 4cdcdb3cb5ebefedcb44766745078a949227f0a5) Signed-off-by: Katrin Fischer (cherry picked from commit 3f084924e6df501e4256089c7a641911f378286f) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 13 ++++++++----- t/db_dependent/Serials.t | 32 ++++++++++++++++++++++++++++++-- 2 files changed, 38 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:31:53 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:31:53 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-9-g47d7e1d Message-ID: This is an automated email from the git hooks/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 47d7e1da7559ff40789332fa9be4391adbcc5983 (commit) from f2694ea4a92827d5ddb3e018f7d9569c1458d2d9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 47d7e1da7559ff40789332fa9be4391adbcc5983 Author: Julian Maurice Date: Thu Feb 9 10:25:05 2017 +0100 Add missing 'use' in C4/Items.pm ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:36:05 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:36:05 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-10-ge2d9cc0 Message-ID: This is an automated email from the git hooks/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 e2d9cc0251858902735753305b4298f22a84b915 (commit) from 47d7e1da7559ff40789332fa9be4391adbcc5983 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e2d9cc0251858902735753305b4298f22a84b915 Author: Dobrica Pavlinusic Date: Mon Jan 30 12:42:09 2017 +0100 Bug 17775 - Add new user with LDAP not works under Plack This patch fixes internal server error: Undefined subroutine &C4::Auth_with_ldap::AddMember called at /srv/koha_ffzg/C4/Auth_with_ldap.pm line 213. It occurs only under plack, and it's strange since C4::Members does EXPORT AddMember and we are importing it into Auth_with_ldap.pm (and it does work under CGI). Signed-off-by: Liz Rea Signed-off-by: Jonathan Druart I did not test but trust author and signoffer. The change cannot hurt. Signed-off-by: Kyle M Hall (cherry picked from commit 4740438b41573d24c6e83d182e2ce1cf6fc54545) Signed-off-by: Katrin Fischer (cherry picked from commit e005d17bb6a6181a8b7d00a8e9bb7d75e9b2c071) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Auth_with_ldap.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:38:47 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:38:47 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-12-g7d69d5b Message-ID: This is an automated email from the git hooks/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 7d69d5be1a688e2fed179560d7372523fd48cc2b (commit) via a76fe18ca4b288d27b26f8f150817af2adb04b16 (commit) from e2d9cc0251858902735753305b4298f22a84b915 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7d69d5be1a688e2fed179560d7372523fd48cc2b Author: Jonathan Druart Date: Mon Feb 6 09:18:29 2017 +0100 Bug 18044: Add a test Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 80a43833f89ea1f31753245cb2d6f20acb7216a4) Signed-off-by: Katrin Fischer (cherry picked from commit d13835de10ecc8e7035931c4eab8c358d63c49f4) Signed-off-by: Julian Maurice commit a76fe18ca4b288d27b26f8f150817af2adb04b16 Author: Chris Nighswonger Date: Sun Feb 5 16:11:30 2017 -0500 Bug 18044: Label Batches not displaying SQL expects lists to be comma separated. A trailing comma must also be avoided. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 544cf17d6f3279d95835ba42d40d49982e97f0a2) Signed-off-by: Katrin Fischer (cherry picked from commit b61ff540611f0dfd28dd7818dc1d03062cb4c159) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Creators/Lib.pm | 2 +- t/db_dependent/Creators/Lib.t | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:40:58 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:40:58 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-14-gbd29f17 Message-ID: This is an automated email from the git hooks/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 bd29f17c65f4acfa3b96dbd07cb28442e0086a69 (commit) via 82db12af6f0a957a03c466400c6024cf6a5cf08c (commit) from 7d69d5be1a688e2fed179560d7372523fd48cc2b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bd29f17c65f4acfa3b96dbd07cb28442e0086a69 Author: Tomas Cohen Arazi Date: Tue Jan 24 08:34:44 2017 -0300 Bug 17871: (followup) Remove zebra::* from the packages templates Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit 58e7a0a5d510de6a035329ea86a130996dda5849) Signed-off-by: Katrin Fischer (cherry picked from commit 0e50ef7c2afad535a42e428c3a3f92341465ae83) Signed-off-by: Julian Maurice commit 82db12af6f0a957a03c466400c6024cf6a5cf08c Author: David Cook Date: Tue Jan 10 12:36:25 2017 +1100 Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ This patch restores access to zebra facets (or zebra::snippet) with YAZ 5.8.1 or higher. It was failing due to The entry in retrieval-info-bib-dom.xml which IndexData said it wasn't even needed to get that access. Edit: I amended the commit message (tcohen) Signed-off-by: Colin Campbell Signed-off-by: Tomas Cohen Arazi I tested on kohadevbox and found no regression or behaviour change. I will provide a followup for the packages. Signed-off-by: Kyle M Hall (cherry picked from commit 0eb5d8491ebbf44f213d0cbe05695521dafc6dd9) Signed-off-by: Katrin Fischer (cherry picked from commit 62848b134c30dbd980be7d2658832c2a18f804c8) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: debian/templates/marc21-retrieval-info-bib-dom.xml | 1 - debian/templates/normarc-retrieval-info-bib-dom.xml | 1 - debian/templates/unimarc-retrieval-info-bib-dom.xml | 1 - etc/zebradb/retrieval-info-bib-dom.xml | 2 -- 4 files changed, 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:42:43 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:42:43 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-15-gab135c0 Message-ID: This is an automated email from the git hooks/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 ab135c07aab4229fbf02916683cfa10c06044e2d (commit) from bd29f17c65f4acfa3b96dbd07cb28442e0086a69 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ab135c07aab4229fbf02916683cfa10c06044e2d Author: Julian Maurice Date: Wed Jan 18 11:29:57 2017 +0100 Bug 17922: Use correct number of digits when replacing date placeholders This patch also fixes a typo ("<<" should be "<>") Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 95e94766af653de4bc721af64981140cacecf567) Signed-off-by: Katrin Fischer (cherry picked from commit fdf1f974770247dc4b8decfb3318e31b940be48d) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: cataloguing/addbiblio.pl | 6 +++--- cataloguing/additem.pl | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:48:08 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:48:08 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-16-gb42c7b8 Message-ID: This is an automated email from the git hooks/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 b42c7b8d44028178ecfc9af2106c5fc3e836bd1d (commit) from ab135c07aab4229fbf02916683cfa10c06044e2d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b42c7b8d44028178ecfc9af2106c5fc3e836bd1d Author: Lari Taskula Date: Mon Dec 12 16:49:44 2016 +0200 Bug 16387: Fix default shortened loan period time When a loan period is shortened due to using decreaseLoanHighHolds* the time is always set to the current time in X days, even if the original loan period is given in days and not in hours. It should default to 23:59 as is normal for loan periods given in days. As original due date time defaults to 23:59 when given in days, this patch modifies the hours and minutes of shortened due date to be equal to original due date. To test: 1. prove t/db_dependent/DecreaseLoanHighHolds.t Signed-off-by: Grace McKenzie Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 21ac9fcdc2ca449a491cc79e68cc854ee248d911) Signed-off-by: Katrin Fischer (cherry picked from commit 090f2885b7a910ee84212fa5bb0141611121eb77) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Circulation.pm | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 9 10:59:09 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 09 Feb 2017 09:59:09 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-17-g03c5625 Message-ID: This is an automated email from the git hooks/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 03c5625371cca27acb7428b51a6cb0e436259295 (commit) from b42c7b8d44028178ecfc9af2106c5fc3e836bd1d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 03c5625371cca27acb7428b51a6cb0e436259295 Author: Julian Maurice Date: Thu Feb 9 10:51:24 2017 +0100 Bug 17782: deletedborrowers.updated_on should be set to current timestamp ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 08:31:50 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 07:31:50 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.03-24-g3f1c6b0 Message-ID: This is an automated email from the git hooks/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 3f1c6b05fa3c6c0dcbfeedf88c0c3919af54a952 (commit) from deaeed7903d78965cab25099dcb9831547e8ad9f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3f1c6b05fa3c6c0dcbfeedf88c0c3919af54a952 Author: Jonathan Druart Date: Tue Dec 6 15:37:50 2016 +0100 Bug 17731: Remove noxml option from rebuild_zebra.pl The removal of the noxml is a logical follow-up of bug 16506 (which make xml the default). Actually this option should have been removed by bug 10455 (it removes the biblioitem.marc field). Test plan: Make sure the rebuild_zebra.pl script works as before. Signed-off-by: Emma Smith Signed-off-by: Kyle M Hall (cherry picked from commit 7a2cbfba1f271d307045d867654ff0d7de939aa6) Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: misc/migration_tools/rebuild_zebra.pl | 135 ++++++++++----------------------- 1 file changed, 42 insertions(+), 93 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 14:52:43 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 13:52:43 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-385-g6ce97d9 Message-ID: This is an automated email from the git hooks/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 6ce97d9b06843fa65d6fb4a6d7c8cecd322bc8d6 (commit) from 2f64fd3918a205ac21630657160f61200c791320 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6ce97d9b06843fa65d6fb4a6d7c8cecd322bc8d6 Author: Luke Honiss Date: Thu Jan 19 02:55:31 2017 +0000 Bug 11450: Hold Request Confirm Deletion ==TEST PLAN== 1) Go to an item with a hold and click on the holds tab on the left 2) Click the red 'X' 3) The hold will be deleted immediately 4) Apply patch 5) Return to an item with a hold and click the 'X' 6) There will now be a confirmation dialog 7) Click cancel and the dialog will disappear and the hold will not be deleted 8) Click OK and the hold will be deleted Restored indentations - Mark Tompsett Signed-off-by: Mark Tompsett Signed-off-by: Christopher Brannon Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 14:53:23 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 13:53:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-386-g27a4149 Message-ID: This is an automated email from the git hooks/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 27a4149625252e4c28dc97df998d82fd6f2652b8 (commit) from 6ce97d9b06843fa65d6fb4a6d7c8cecd322bc8d6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 27a4149625252e4c28dc97df998d82fd6f2652b8 Author: Jonathan Druart Date: Sat Jan 21 08:48:20 2017 +0100 Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist If NOT_LOAN is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your NOT_LOAN authorised values Go on the item search form => You will not get the JS error and the "Status" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Owen Leonard Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/catalogue/itemsearch.tt | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 14:54:26 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 13:54:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-388-ga1f348f Message-ID: This is an automated email from the git hooks/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 a1f348fe5cbdcc00194f4e0f4410ad71c57ad7b0 (commit) via 3732e8dcb2899ff446aa9ec4e427dde544b79edb (commit) from 27a4149625252e4c28dc97df998d82fd6f2652b8 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a1f348fe5cbdcc00194f4e0f4410ad71c57ad7b0 Author: Josef Moravec Date: Thu Feb 9 13:09:56 2017 +0000 Bug 18073: Followup - don't use CONCAT_WS Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 3732e8dcb2899ff446aa9ec4e427dde544b79edb Author: Josef Moravec Date: Tue Feb 7 17:44:12 2017 +0100 Bug 18073: Holds to pull table enhancement Test plan: 0) apply the patch 1) enable on shelf hold in administration -> circulation and fines rules 2) create some holds on avalaible items 3) go to administration -> columns settings and confirm there is new holds-to-pull table in circulation section 4) go to circulation -> holds to pull page and confirm that 4a) that the page does work as before 4b) there is ne "Column visibility" button in datatable toolbar 4c) the column configuration does work as expected 4d) there is new column "First patron" with link to patron which is first in holds queue for given record 4e) sorting works ax expected 4f) filters (in teh bottom of table) work as expected Signed-off-by: Katrin Fischer Works nicely! https://bugs.koha-community.org/show_bug.cgi?id=18079 Signed-off-by: Marcel de Rooy ----------------------------------------------------------------------- Summary of changes: admin/columns_settings.yml | 27 +++++++++++++++++ circ/pendingreserves.pl | 8 +++-- .../prog/en/modules/circ/pendingreserves.tt | 31 ++++++++++++-------- 3 files changed, 52 insertions(+), 14 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 14:55:09 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 13:55:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-389-g95873bf Message-ID: This is an automated email from the git hooks/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 95873bfa88d3f18350acdd3fea3d421083a59950 (commit) from a1f348fe5cbdcc00194f4e0f4410ad71c57ad7b0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 95873bfa88d3f18350acdd3fea3d421083a59950 Author: Josef Moravec Date: Wed Feb 8 08:49:46 2017 +0000 Bug 18079: Holds to pull cleanup Changes made: - remove obsolete comment in pendingreserves.pl - use Modern::Perl in circ/pendingreserves.pl - get rid of unusable param run_report - followup for bug 8454 - get rid of references to hold status - followup for bug 9320 - remove unused data from SQL and reservedata structure Test plan: 1) Apply patch from bug 18073 2) Apply patch on this bug 3) Enable on shelf hold in administration -> circulation and fines rules 4) Create some holds on avalaible items 5) Confirm that circulation -> holds to pull page works as expected 6) Try to find any regression Signed-off-by: Katrin Fischer Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: circ/pendingreserves.pl | 146 ++++++++------------ .../prog/en/modules/circ/pendingreserves.tt | 5 +- 2 files changed, 62 insertions(+), 89 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 14:57:55 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 13:57:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-390-gac99f64 Message-ID: This is an automated email from the git hooks/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 ac99f64010c6bdbe40abc2b823c2180b9b223425 (commit) from 95873bfa88d3f18350acdd3fea3d421083a59950 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ac99f64010c6bdbe40abc2b823c2180b9b223425 Author: Jonathan Druart Date: Wed Feb 8 12:41:37 2017 +0100 Bug 18076: Replace holds_to_place_count with an input type=text From http://www.template-toolkit.org/docs/manual/Directives.html#section_WHILE """ The Template Toolkit uses a failsafe counter to prevent runaway WHILE loops which would otherwise never terminate. If the loop exceeds 1000 iterations then an undef exception will be thrown, reporting the error: WHILE loop terminated (> 1000 iterations) The $Template::Directive::WHILE_MAX variable controls this behaviour and can be set to a higher value if necessary. """ I do not think we want to increase this value, and I do not think we want to display a dropdown list with 1000 entries. This patch replaces the dropdown list with an input text. Test plan: - Set circulation conditions - holds per record = 999 - Search for record with items - Go to the holds tab - Search for a patron - Verify that when you send your search, the 'internal server error' is not shown and you see the input text. You should be able to enter a value > than 999 and < 1 Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:00:15 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:00:15 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-391-gae2c1e6 Message-ID: This is an automated email from the git hooks/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 ae2c1e6a83fab8b76606cc84a306b37d3b7403e4 (commit) from ac99f64010c6bdbe40abc2b823c2180b9b223425 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ae2c1e6a83fab8b76606cc84a306b37d3b7403e4 Author: Jonathan Druart Date: Wed Feb 8 17:49:41 2017 +0100 Bug 17940: (follow-up 14695) Fix - Mark holds as waiting when transfer is done When an item from Library A is reserved and set to be picked up at Library B, the hold buttons fail to confirm or cancel during check in at Library B when the item is transferred from Library A. Test plan: * Create a hold for item at Library A to be picked up at Library B. * Check in item at Library A to trigger the transfer. => item shows in transit * Switch to Library B and check in item. * Confirm the hold. => item shows waiting Signed-off-by: Christopher Brannon Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: circ/returns.pl | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:01:39 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:01:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-392-gba89de5 Message-ID: This is an automated email from the git hooks/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 ba89de5837bbe3055a8b0a04517332d8aee68da7 (commit) from ae2c1e6a83fab8b76606cc84a306b37d3b7403e4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ba89de5837bbe3055a8b0a04517332d8aee68da7 Author: Jonathan Druart Date: Tue Nov 22 09:35:07 2016 +0000 Bug 16984: Do not clone the item block for standing orders If AcqCreateItem is set to ordering and the basket is marked as "standing orders", when ordering a JS error is raised: additem.js:176 Uncaught TypeError: window[events[i]] is not a function The item block should not be displayed in that case. Test plan: - Set AcqCreateItem to "ordering" - Create a basket and tick the "Standing orders" checkbox - Add an order to this basket => Without this patch you get the JS error => With this patch applied you will not get it Signed-off-by: Claire Gravely Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:02:19 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:02:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-393-g9081637 Message-ID: This is an automated email from the git hooks/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 908163754010df8d78acf463d6777ba2c4c3a2e9 (commit) from ba89de5837bbe3055a8b0a04517332d8aee68da7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 908163754010df8d78acf463d6777ba2c4c3a2e9 Author: Emma Date: Wed Jan 18 21:37:23 2017 +0000 Bug 17134: Replace item types codes with category in facets (opac) To test: -Search in OPAC for two or more items -Note that item types display category codes rather than names -Make change to file and test in OPAC Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: opac/opac-search.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:03:36 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:03:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-395-ge9cd82e Message-ID: This is an automated email from the git hooks/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 e9cd82e4ca754024009608242d7c9930ac248cff (commit) via 317abac238147cf20f09d2aa0b0dc069c12b0892 (commit) from 908163754010df8d78acf463d6777ba2c4c3a2e9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e9cd82e4ca754024009608242d7c9930ac248cff Author: Jonathan Druart Date: Thu Feb 2 10:28:21 2017 +0100 Bug 17988: Add a comment to explain the line Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 317abac238147cf20f09d2aa0b0dc069c12b0892 Author: Oleg Vasylenko Date: Wed Jan 25 12:01:05 2017 +0200 Bug 17988 - Select2 prevents correct tag expand/minimize functionality Overview: Select2 (Bug 13501) introduced divs and inputs that broke some assumptions about the expected HTML structure. Because of that, expanding fields to show all hidden subfields does not work properly. Steps to Reproduce: 1. Open some book in the editor or create new (cataloguing/addbiblio.pl) 2. Try to minimize or expand fields, that have among subfields the following: ? Thesaurus driven subfield ? subfield with Select2 ? Hidden subfield. Actual Results: ?? some fields become hidden, some not, and vice versa ?? in the console, you'll see ?Uncaught TypeError: Cannot read property 'match' of null? Expected Results: ?? all subfields should minimize/maximize completely Additional Information: This happens because Select2 adds some divs, that do not have ID property. The following patch adds check for the needed attribute existance. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/js/cataloging.js | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:04:25 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:04:25 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-396-g137cbd8 Message-ID: This is an automated email from the git hooks/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 137cbd8d09be549c9ae97dfad746a9c52d27b9a6 (commit) from e9cd82e4ca754024009608242d7c9930ac248cff (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 137cbd8d09be549c9ae97dfad746a9c52d27b9a6 Author: Marcel de Rooy Date: Thu Oct 27 15:07:29 2016 +0200 Bug 17512: Improve handling dates in C4::Items This is a follow-up on the internal server error on 0000-00-00 in the items column onloan. This patch deals with preventing to have such dates at all in the date fields of items. It is accomplished by: [1] Adding a (private) subroutine _mod_item_dates. It takes an item hash and replaces date values if needed. [2] AddItem and ModItem call _koha_new_item resp. koha_modify_item. In these routines a call to the new _mod_item_dates is inserted. [3] Although the routine is actually private, I have added some unit tests to Items.t. Test plan: [1] Add a new item. Fill a correct date in dateaccessioned and an invalid date in Price effective from (=replacementpricedate). [2] Verify that dateaccessioned is saved correctly and replacementpricedate is still null (does not contain 0000-00-00). [3] Edit the item again. Fill some text in dateaccessioned and put a correct date in replacementpricedate. Verify the results. [4] Run t/db_dependent/Items.t Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 30 ++++++++++++++++++++++++++++ t/db_dependent/Items.t | 52 +++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 81 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:04:58 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:04:58 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-397-g21d63c8 Message-ID: This is an automated email from the git hooks/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 21d63c8fb0c2ae3a8ca7caaf0d4041b7189213c3 (commit) from 137cbd8d09be549c9ae97dfad746a9c52d27b9a6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 21d63c8fb0c2ae3a8ca7caaf0d4041b7189213c3 Author: Tomas Cohen Arazi Date: Sat Dec 17 09:25:54 2016 -0300 Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Looking at the default framework's fields that are linked to authority records, there's a divergence with the Zebra index definitions. This yields to authority usage count be incorrect for users searching for authority records. MariaDB [koha_kohadev]> SELECT tagfield,tagsubfield,authtypecode FROM marc_subfield_structure WHERE authtypecode IS NOT NULL AND authtypecode<>'' AND frameworkcode='' GROUP BY tagfield,tagsubfield,authtypecode ; +----------+-------------+--------------+ | tagfield | tagsubfield | authtypecode | +----------+-------------+--------------+ | 100 | a | PERSO_NAME | | 110 | a | CORPO_NAME | | 111 | a | MEETI_NAME | | 130 | a | UNIF_TITLE | | 440 | a | UNIF_TITLE | | 600 | a | PERSO_NAME | | 610 | a | CORPO_NAME | | 611 | a | MEETI_NAME | | 630 | a | UNIF_TITLE | | 648 | a | CHRON_TERM | | 650 | a | TOPIC_TERM | | 651 | a | GEOGR_NAME | | 654 | a | TOPIC_TERM | | 655 | a | GENRE/FORM | | 656 | a | TOPIC_TERM | | 657 | a | TOPIC_TERM | | 658 | a | TOPIC_TERM | | 662 | a | GEOGR_NAME | | 690 | a | TOPIC_TERM | | 691 | a | GEOGR_NAME | | 696 | a | PERSO_NAME | | 697 | a | CORPO_NAME | | 698 | a | MEETI_NAME | | 699 | a | UNIF_TITLE | | 700 | a | PERSO_NAME | | 710 | a | CORPO_NAME | | 711 | a | MEETI_NAME | | 730 | a | UNIF_TITLE | | 796 | a | PERSO_NAME | | 797 | a | CORPO_NAME | | 798 | a | MEETI_NAME | | 799 | a | UNIF_TITLE | | 800 | a | PERSO_NAME | | 810 | a | CORPO_NAME | | 811 | a | MEETI_NAME | | 830 | a | UNIF_TITLE | | 896 | a | PERSO_NAME | | 897 | a | CORPO_NAME | | 898 | a | MEETI_NAME | | 899 | a | UNIF_TITLE | +----------+-------------+--------------+ This patch adds the missing ones to the authority number index as it is done for the rest of the fields. To test: - Verify that etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml contains intries pointing the $9 subfield of all the fields in the 'tagfield' column above, to the Koha-Auth-Number:w index. - Sign off :-D Signed-off-by: Hugo Agud Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../marc21/biblios/biblio-koha-indexdefs.xml | 42 +++++++ .../marc21/biblios/biblio-zebra-indexdefs.xsl | 126 ++++++++++++++++++++ 2 files changed, 168 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:05:58 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:05:58 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-398-gadd1579 Message-ID: This is an automated email from the git hooks/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 add15799229df7a1910d759f487c0006bf3f30ae (commit) from 21d63c8fb0c2ae3a8ca7caaf0d4041b7189213c3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit add15799229df7a1910d759f487c0006bf3f30ae Author: Mason James Date: Sun Jan 29 00:47:20 2017 +1300 Bug 18009 - IssueSlip.t test fails if launched between 00:00 and 00:59 to test patch... 1/ set date between 00:00 and 00:59 $ sudo date -s 'Sun Jan 29 00:41:55 NZDT 2017' 2/ run prove, see fail $ prove -v t/db_dependent/Members/IssueSlip.t ... t/db_dependent/Members/IssueSlip.t (Wstat: 65280 Tests: 1 Failed: 0) Result: FAIL 3/ apply patch 4/ run prove, see pass $ prove -v t/db_dependent/Members/IssueSlip.t ... All tests successful. Result: PASS NOTE: for code obscurity you could have also done a modulus 24. ;) Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Members/IssueSlip.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:06:37 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:06:37 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-399-gdbada67 Message-ID: This is an automated email from the git hooks/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 dbada67196818834f158890c0c348c0259085f7e (commit) from add15799229df7a1910d759f487c0006bf3f30ae (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit dbada67196818834f158890c0c348c0259085f7e Author: Magnus Enger Date: Thu Nov 10 14:32:44 2016 +0000 Bug 4126 - Exit bulkmarcimport if -a and -b given Currently it is possible to spceify both --biblios and --authorities as command line switches to bulkmarcimport.pl. This does not make sense so we should exit early and explain that these switches are mutually exclusive. To test: - Run one of these and check that there is no complaint about missing options: perl misc/migration_tools/bulkmarcimport.pl -a -b sudo koha-shell -c "perl misc/migration_tools/bulkmarcimport.pl -a -b" kohadev - Observe that this displays the perldoc, but does not complain about mutually exclusive switches. - Apply the patch - Rerun the command(s) from earlier. - Verify that the script is now halted and a small explanation given. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: misc/migration_tools/bulkmarcimport.pl | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:07:55 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:07:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-403-gbcd566c Message-ID: This is an automated email from the git hooks/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 bcd566c5f6a847d7b3f359af119bb8218f23bf77 (commit) via ad38b24308df1cd3d451302d2ada3a4e59c45b62 (commit) via 24ac8392b39ac82b528cb931e97c19c0e582fbf8 (commit) via ac004aa63ec4dfbb73329d150ef6b32ac8ea5e87 (commit) from dbada67196818834f158890c0c348c0259085f7e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bcd566c5f6a847d7b3f359af119bb8218f23bf77 Author: Julian Maurice Date: Fri Feb 3 13:31:56 2017 +0100 Bug 18014: QA follow-up: Use ok() instead of is() for '>' comparison Signed-off-by: Julian Maurice Signed-off-by: Kyle M Hall commit ad38b24308df1cd3d451302d2ada3a4e59c45b62 Author: Marcel de Rooy Date: Mon Jan 30 15:19:35 2017 +0100 Bug 18014: AddAuthority should respect AUTO_INCREMENT Instead of using the MAX(authid)+1 logic, AddAuthority should just save the record and get the new id. The authid column is an autoincrement. This eliminates problems where a newly assigned authid also refers to a previously deleted record. (And it will not cause problems when refining the dontmerge functionality on report 9988.) Note: ModAuthority also calls AddAuthority to update an existing record; in that case we should not create a new record even if the record should not be found any more (which should be exceptional). This patch also simplifies handling of 001 in the authority record: in all cases this field is updated now; no need to check its contents. Test plan: [1] Run t/db_dependent/AuthoritiesMarc.t [2] Add a new authority record via the interface Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 24ac8392b39ac82b528cb931e97c19c0e582fbf8 Author: Marcel de Rooy Date: Tue Jan 31 09:11:05 2017 +0100 Bug 18014: Add test to AuthoritiesMarc.t to expose problem in AddAuthority Since AddAuthority uses max(id)+1 logic to produce the next authid, authority id's will be reused when you delete the last record. This may be a source of problems and will be addressed on the next patch. This patch add a test to expose the problem. Test plan: [1] Run t/db_dependent/AuthoritiesMarc.t Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit ac004aa63ec4dfbb73329d150ef6b32ac8ea5e87 Author: Marcel de Rooy Date: Tue Jan 31 08:59:45 2017 +0100 Bug 18014: General update of AuthoritiesMarc.t Modern::Perl, Koha::Database, etc. Test plan: Run t/db_dependent/AuthoritiesMarc.t Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/AuthoritiesMarc.pm | 45 ++++++++++++-------------------------- t/db_dependent/AuthoritiesMarc.t | 28 +++++++++++++++++++----- 2 files changed, 36 insertions(+), 37 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:12:14 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:12:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-404-g543dc8e Message-ID: This is an automated email from the git hooks/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 543dc8e0365240441114359b7ddfa74863a318b6 (commit) from bcd566c5f6a847d7b3f359af119bb8218f23bf77 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 543dc8e0365240441114359b7ddfa74863a318b6 Author: Zoe Schoeler Date: Wed Jan 18 00:55:43 2017 +0000 Bug 17838 Availability limit broken until an item has been checked out. TEST PLAN 1. Make sure you have no items checked out. 2. Run sudo koha-rebuild-zebra -f -v kohadev. 3. Go to search the catalog and search. 4. Check items availability and then click on limit to currently available items. 5. This should return no results. 6. Apply patch and reload. 7. Results should show. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Attribute 14: " Specifies whether un-indexed fields should be ignored. A zero value (default) throws a diagnostic when an un-indexed field is specified. A non-zero value makes it return 0 hits." From http://www.indexdata.com/zebra/doc/querymodel-zebra.html Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: etc/zebradb/ccl.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:13:38 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:13:38 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-407-g2e315c0 Message-ID: This is an automated email from the git hooks/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 2e315c0cc6f31991868b17276807f28cdcce4306 (commit) via ed5cb5fc9727ca09deb392f4392c1aa35b4e47a5 (commit) via 99cc3bdd0ec676d29205fb09d1a4e4b1e8889df0 (commit) from 543dc8e0365240441114359b7ddfa74863a318b6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2e315c0cc6f31991868b17276807f28cdcce4306 Author: Jonathan Druart Date: Thu Feb 9 13:13:50 2017 +0100 Bug 18089: Remove warnings from tests using DBIx::Class fixtures Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit ed5cb5fc9727ca09deb392f4392c1aa35b4e47a5 Author: Kyle M Hall Date: Thu Feb 9 11:48:40 2017 +0000 Bug 18089 - All XSLT testing singleBranchMode = 0 fails to show even if install has only 1 branch Due to the way it has been implemented, singleBranchMode is set to an empty string rather than 0 if there is only one branch. This causes any block that tests for singleBranchMOde to be 0 to never appear. Test Plan: 1) Apply this patch set 2) prove t/XSLT.t Signed-off-by: Jenny Schmidt Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 99cc3bdd0ec676d29205fb09d1a4e4b1e8889df0 Author: Kyle M Hall Date: Thu Feb 9 11:48:08 2017 +0000 Bug 18089 - Unit test Signed-off-by: Jenny Schmidt Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/XSLT.pm | 2 +- t/XSLT.t | 28 ++++++++++++++++++++++++++-- 2 files changed, 27 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:16:28 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:16:28 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-409-g5c1daf0 Message-ID: This is an automated email from the git hooks/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 5c1daf010ec97ed405bf7825eaa8143c225252b1 (commit) via 460c9b1b1594b8beebedbc28809fe47bc8d3313c (commit) from 2e315c0cc6f31991868b17276807f28cdcce4306 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5c1daf010ec97ed405bf7825eaa8143c225252b1 Author: Marcel de Rooy Date: Tue Jan 24 16:39:28 2017 +0100 Bug 17982: Fix the use of uniq in sub themelanguage Doing uniq( \@themes ) is useless. It will just return to you the only reference you gave it. List::MoreUtils::uniq requires a list instead of an arrayref. So it is a trivial fix that makes sub themelanguage return one theme instead of three themes like [ 'prog', 'prog', 'prog' ]. Note that Template->new inserts one or two include paths to TT for each of these three identical themes. Test plan: [1] Run t/db_dependent/Templates.t (should no longer fail) [2] Run t/db_dependent/Auth.t (triggering themelanguage) [3] Open a page on OPAC or intranet. (Did you restart Plack?) Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett EDIT (Marcel): Amended test plan for additional unit test. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 460c9b1b1594b8beebedbc28809fe47bc8d3313c Author: Marcel de Rooy Date: Thu Feb 2 08:40:58 2017 +0100 Bug 17982: Expose wrong use of uniq This test should fail without the patch fixing the uniq calls. Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Templates.pm | 6 +++--- t/db_dependent/Templates.t | 15 ++++++++++++++- 2 files changed, 17 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:17:39 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:17:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-410-g680e6ce Message-ID: This is an automated email from the git hooks/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 680e6ce7d1aa53e716ea9fdab9c67e621fb828e2 (commit) from 5c1daf010ec97ed405bf7825eaa8143c225252b1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 680e6ce7d1aa53e716ea9fdab9c67e621fb828e2 Author: Adrien Saurat Date: Thu Dec 13 10:13:19 2012 +0100 Bug 8306: Patrons statistics, fix for patron activity choice The "inactive" for "patron activity" choice is now effective. Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: reports/borrowers_stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:18:13 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:18:13 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-411-gda3ccdc Message-ID: This is an automated email from the git hooks/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 da3ccdc14379816ea849eeb56ab321d8e7db59a2 (commit) from 680e6ce7d1aa53e716ea9fdab9c67e621fb828e2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit da3ccdc14379816ea849eeb56ab321d8e7db59a2 Author: Nick Clemens Date: Fri Feb 3 11:38:53 2017 +0000 Bug 18047 - JavaScript error on item search form unless LOC defined If LOC is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your LOC authorised values Go on the item search form => You will not get the JS error and the "Shelving location" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/catalogue/itemsearch.tt | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:18:48 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:18:48 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-412-g4bd2188 Message-ID: This is an automated email from the git hooks/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 4bd2188affee568de81342d0af24fcf0239d9f01 (commit) from da3ccdc14379816ea849eeb56ab321d8e7db59a2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4bd2188affee568de81342d0af24fcf0239d9f01 Author: Chloe Date: Thu Jan 21 03:20:58 2016 +0000 Bug 15584 - Staff client list errors are incorrectly styled To Test- 1. In the Staff Client, go to Lists (/cgi-bin/koha/virtualshelves/shelves.pl) and create a new list with the same name as an existing one. --note that it has some red in it like an error 2. apply patch 3. In the Staff Client, go to Lists (/cgi-bin/koha/virtualshelves/shelves.pl) and create a new list with the same name as an existing one. --note that now it should be just yellow with black writing as an alert Signed-off-by: Mirko Tietgen Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: virtualshelves/shelves.pl | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:19:26 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:19:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-414-g7704478 Message-ID: This is an automated email from the git hooks/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 7704478836c42088519bb4a91833720d921bc890 (commit) via b4c66d5cc4be5ca555799a719ff07ffae5b2f45f (commit) from 4bd2188affee568de81342d0af24fcf0239d9f01 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7704478836c42088519bb4a91833720d921bc890 Author: Mark Tompsett Date: Fri Jan 20 17:34:56 2017 +0000 Bug 17935: Follow up for C4::Plugin... TEST PLAN --------- -- apply first patch git grep "C4::Plugin" -- still two references perldoc Koha::Plugins::Base perldoc Koha::Plugins::Handler -- apply this patch git grep "C4::Plugin" -- no references perldoc Koha::Plugins::Base perldoc Koha::Plugins::Handler -- should look fixed Please enter the commit message for your changes. Lines starting Signed-off-by: David Cook Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit b4c66d5cc4be5ca555799a719ff07ffae5b2f45f Author: Marcel de Rooy Date: Wed Jan 18 16:56:16 2017 +0100 Bug 17935: Adjust some POD lines, fix a few typos This patch does the following: [1] Move some POD lines from Cache to Caches. [2] Correct C4::Plugins to Koha::Plugins in POD line of Koha::Plugins [3] POD Koha/AuthorisedValue.pm: lib_opac moved to opac_description [4] The POD in Koha/Patron.pm uses head2 and head3 inconsistently. Ran s/^=head2/=head3/ on those lines (7 substitutions on 7 lines) [5] Correct a copied POD line from reports/issues_stats.pl in reports/reserve_stats.pl. [6] Correct a test description in t/db_dependent/Koha/Authorities.t. You should never delete the library :) [7] Correct typo shouild in a comment of rebuild_zebra.pl Test plan: [1] Read the patch. Does it make sense? [2] Run perldoc Koha/Cache.pm and Koha/Caches.pm [3] Run t/db_dependent/Koha/Authorities.t Signed-off-by: Marcel de Rooy Signed-off-by: David Cook Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/AuthorisedValue.pm | 8 +++----- Koha/Cache.pm | 13 +++---------- Koha/Caches.pm | 29 +++++++++++++++++++++++++++++ Koha/Patron.pm | 14 +++++++------- Koha/Plugins.pm | 2 +- Koha/Plugins/Base.pm | 2 +- Koha/Plugins/Handler.pm | 2 +- misc/migration_tools/rebuild_zebra.pl | 4 ++-- reports/reserves_stats.pl | 2 +- t/db_dependent/Koha/Authorities.t | 2 +- 10 files changed, 49 insertions(+), 29 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 15:38:19 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 14:38:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-415-gadca735 Message-ID: This is an automated email from the git hooks/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 adca73545e75c31198e3d094512da7961460ed02 (commit) from 7704478836c42088519bb4a91833720d921bc890 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit adca73545e75c31198e3d094512da7961460ed02 Author: Marc V?ron Date: Fri Feb 10 16:07:13 2017 +0100 Bug 18095: Batch item modification: Better message if no item is modified If no item is modified, the result page of Batch item modification says: "item(s) modified (with fields modified)." The message should be: "No items modified" To reproduce: - Go to Tools -> Batch item modification - Put a barcode in and click Continue - Do not make any changes and/or deselect all item(s) - Click "Save" => Result message reads: "item(s) modified (with fields modified)." To test: - Apply patch - Repeat steps above - Verify that message makes sense. NOTE: Also tested positive case with actual field change. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 16:02:40 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 15:02:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-420-g261747e Message-ID: This is an automated email from the git hooks/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 261747e477fa19c8cff3c689685f37a45bcc9e66 (commit) via 35076653a4c8161da981150b4f8d74111a2a87e3 (commit) via 7c4565428d85b08fa2f375c0ba56a160a4750d9c (commit) via 78e539460fb1dcbc4daae47c312afd64d2d97040 (commit) via 9ada51e6b4ea581104f7b55586ec4ed4a056d76c (commit) from adca73545e75c31198e3d094512da7961460ed02 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 261747e477fa19c8cff3c689685f37a45bcc9e66 Author: Matthias Meusburger Date: Wed Oct 19 16:36:13 2016 +0200 Bug 15503 [QA Followup] - Display "uneven number of fields" error only in relevant biblios Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 35076653a4c8161da981150b4f8d74111a2a87e3 Author: Matthias Meusburger Date: Thu Oct 20 11:47:27 2016 +0200 Bug 15503 [Followup] - Add replacementprice and itemcallnumber Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 7c4565428d85b08fa2f375c0ba56a160a4750d9c Author: Kyle M Hall Date: Fri Sep 16 13:05:41 2016 +0000 Bug 15503 [QA Followup] - Remove the use of GetBranchesLoop Signed-off-by: Nick Clemens Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 78e539460fb1dcbc4daae47c312afd64d2d97040 Author: Matthias Meusburger Date: Wed Aug 31 11:13:33 2016 +0200 Bug 15503 - Fix adding multiple items in multiple biblios. Signed-off-by: Nick Clemens Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens commit 9ada51e6b4ea581104f7b55586ec4ed4a056d76c Author: Matthias Meusburger Date: Tue Jun 28 15:06:46 2016 +0200 Bug 15503: Grab Item Information from Order Files The goal of this development is to automatically generate items in Koha with populated information based on a 9XX field and subfield, with the new syspref MarcItemFieldsToOrder. Signed-off-by: Nick Clemens Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens ----------------------------------------------------------------------- Summary of changes: acqui/addorderiso2709.pl | 371 +++++++++++++++++--- .../Bug_15503_MarcItemFieldsToOrder.sql | 1 + installer/data/mysql/sysprefs.sql | 1 + .../prog/en/modules/acqui/addorderiso2709.tt | 95 ++++- .../en/modules/admin/preferences/acquisitions.pref | 6 + 5 files changed, 413 insertions(+), 61 deletions(-) create mode 100644 installer/data/mysql/atomicupdate/Bug_15503_MarcItemFieldsToOrder.sql hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 16:08:05 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 15:08:05 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-421-g1d20018 Message-ID: This is an automated email from the git hooks/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 1d2001803cd0f2851bbd37b9664f2ed9569760dd (commit) from 261747e477fa19c8cff3c689685f37a45bcc9e66 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1d2001803cd0f2851bbd37b9664f2ed9569760dd Author: Kyle M Hall Date: Tue Feb 14 15:01:24 2017 +0000 Bug 15503 - DBRev 16.12.00.008 Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- .../mysql/atomicupdate/Bug_15503_MarcItemFieldsToOrder.sql | 1 - installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/Bug_15503_MarcItemFieldsToOrder.sql hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 16:17:44 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 15:17:44 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-425-g2d427b2 Message-ID: This is an automated email from the git hooks/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 2d427b25aa778c7eafbc67af066f849c32b7cf06 (commit) via aa2ecb58d5a298a705d8b783bfa8b57834296048 (commit) via 9b13e062757f938b0c9bfc2e6a159e222ae41bec (commit) via 73ec9a075a3a3d26bba21e75b58db48c90599b40 (commit) from 1d2001803cd0f2851bbd37b9664f2ed9569760dd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2d427b25aa778c7eafbc67af066f849c32b7cf06 Author: Koha instance kohadev-koha Date: Tue Feb 14 14:52:10 2017 +0000 Bug 15503 (QA Followup) Fix tabs Dereference hash for each Signed-off-by: Kyle M Hall commit aa2ecb58d5a298a705d8b783bfa8b57834296048 Author: Kyle M Hall Date: Tue Jan 24 08:15:35 2017 -0800 Bug 15503 - Populate the order prices Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 9b13e062757f938b0c9bfc2e6a159e222ae41bec Author: Matthias Meusburger Date: Mon Dec 12 16:11:08 2016 +0000 Bug 15503 [QA Followup] - Use Koha::AuthorisedValues and fetch notforloan values. Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 73ec9a075a3a3d26bba21e75b58db48c90599b40 Author: Kyle M Hall Date: Thu Nov 3 10:44:56 2016 +0000 Bug 15503 [QA Followup] - Set itype and ccode properly Signed-off-by: Benjamin Daeuber Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: acqui/addorderiso2709.pl | 32 +++++++++++++++----- .../prog/en/modules/acqui/addorderiso2709.tt | 13 ++++++-- 2 files changed, 36 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 14 22:42:27 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 14 Feb 2017 21:42:27 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.03-46-g2591dfa Message-ID: This is an automated email from the git hooks/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 2591dfa8a0df3372e96e556620ba22b5b79afccf (commit) via 8e11d51b6eef3614c6eb77b11217b57b247d8441 (commit) via 74018f23119d887aa5d6e4dffdf05f5d28db0a0b (commit) via 7f4bef9bfec20529607cca635e08561fbdcc0ea1 (commit) via dc40f04752804131de38621b1ad6646f1438a1a8 (commit) via b441c89f4f71bb6036dcb9d2ac5a4e24392714bc (commit) via 7e3ffc7f87b09c0b33c2f82ba04fee89e789c2d2 (commit) via 8f086404ad5ae440ac2b92cdd494610f4c7e3ac7 (commit) via c622e8df475f742cf95c71e09c23529659457958 (commit) via 2e5be93600e64a431b97e3fce6fe427619e398f0 (commit) via 448f6f5127812e23e6c9f44dda2e0228b20cb941 (commit) via 83ec31965824b4d632bb62f5569fde430fa3858e (commit) via f45cd420d1bed73b9a85c5260ae4a781041a6626 (commit) via c4f977b76f171130d7f9c370ef6e27b6c0fd2384 (commit) via cb1bc00361bf3e468470b8e1500a4e752e60d161 (commit) via 37ad15eae7e8773ae8ee4cb342b5adf3d54d0ff0 (commit) via 46506e215e42eaa854377337f8588436144ce1e3 (commit) via 87edb0bdddab634598ae75db71748a446a6d37ed (commit) via 5023593010d62cdcdb7191b7694de9ce58d5ff82 (commit) via dfe8fd300d114e6b45fdc47d107fd56d791dd898 (commit) via e0b64c0f4ae29eae1a7c71d3d9e328683aa51317 (commit) via 2d363f136d8d9c4b35dfac455ea4f877fac7905d (commit) from 3f1c6b05fa3c6c0dcbfeedf88c0c3919af54a952 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2591dfa8a0df3372e96e556620ba22b5b79afccf Author: Katrin Fischer Date: Tue Feb 14 22:11:51 2017 +0100 Bug 17913: Database update - Add system preference AuthorityMergeMode commit 8e11d51b6eef3614c6eb77b11217b57b247d8441 Author: Josef Moravec Date: Wed Feb 8 20:45:51 2017 +0000 Bug 17913: [16.11.x] followup Signed-off-by: Josef Moravec commit 74018f23119d887aa5d6e4dffdf05f5d28db0a0b Author: Marcel de Rooy Date: Mon Jan 23 14:06:48 2017 +0100 Bug 17913: [16.11.x] Authority merge fix [PUSHED_17.05] Squashed into one patch for 16.11.x Signed-off-by: Josef Moravec commit 7f4bef9bfec20529607cca635e08561fbdcc0ea1 Author: Marc V?ron Date: Fri Feb 10 16:07:13 2017 +0100 Bug 18095: Batch item modification: Better message if no item is modified If no item is modified, the result page of Batch item modification says: "item(s) modified (with fields modified)." The message should be: "No items modified" To reproduce: - Go to Tools -> Batch item modification - Put a barcode in and click Continue - Do not make any changes and/or deselect all item(s) - Click "Save" => Result message reads: "item(s) modified (with fields modified)." To test: - Apply patch - Repeat steps above - Verify that message makes sense. NOTE: Also tested positive case with actual field change. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit adca73545e75c31198e3d094512da7961460ed02) Signed-off-by: Katrin Fischer commit dc40f04752804131de38621b1ad6646f1438a1a8 Author: Chloe Date: Thu Jan 21 03:20:58 2016 +0000 Bug 15584 - Staff client list errors are incorrectly styled To Test- 1. In the Staff Client, go to Lists (/cgi-bin/koha/virtualshelves/shelves.pl) and create a new list with the same name as an existing one. --note that it has some red in it like an error 2. apply patch 3. In the Staff Client, go to Lists (/cgi-bin/koha/virtualshelves/shelves.pl) and create a new list with the same name as an existing one. --note that now it should be just yellow with black writing as an alert Signed-off-by: Mirko Tietgen Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 4bd2188affee568de81342d0af24fcf0239d9f01) Signed-off-by: Katrin Fischer commit b441c89f4f71bb6036dcb9d2ac5a4e24392714bc Author: Nick Clemens Date: Fri Feb 3 11:38:53 2017 +0000 Bug 18047 - JavaScript error on item search form unless LOC defined If LOC is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your LOC authorised values Go on the item search form => You will not get the JS error and the "Shelving location" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit da3ccdc14379816ea849eeb56ab321d8e7db59a2) Signed-off-by: Katrin Fischer commit 7e3ffc7f87b09c0b33c2f82ba04fee89e789c2d2 Author: Adrien Saurat Date: Thu Dec 13 10:13:19 2012 +0100 Bug 8306: Patrons statistics, fix for patron activity choice The "inactive" for "patron activity" choice is now effective. Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 680e6ce7d1aa53e716ea9fdab9c67e621fb828e2) Signed-off-by: Katrin Fischer commit 8f086404ad5ae440ac2b92cdd494610f4c7e3ac7 Author: Jonathan Druart Date: Thu Feb 9 13:13:50 2017 +0100 Bug 18089: Remove warnings from tests using DBIx::Class fixtures Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 2e315c0cc6f31991868b17276807f28cdcce4306) Signed-off-by: Katrin Fischer commit c622e8df475f742cf95c71e09c23529659457958 Author: Kyle M Hall Date: Thu Feb 9 11:48:40 2017 +0000 Bug 18089 - All XSLT testing singleBranchMode = 0 fails to show even if install has only 1 branch Due to the way it has been implemented, singleBranchMode is set to an empty string rather than 0 if there is only one branch. This causes any block that tests for singleBranchMOde to be 0 to never appear. Test Plan: 1) Apply this patch set 2) prove t/XSLT.t Signed-off-by: Jenny Schmidt Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit ed5cb5fc9727ca09deb392f4392c1aa35b4e47a5) Signed-off-by: Katrin Fischer commit 2e5be93600e64a431b97e3fce6fe427619e398f0 Author: Kyle M Hall Date: Thu Feb 9 11:48:08 2017 +0000 Bug 18089 - Unit test Signed-off-by: Jenny Schmidt Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 99cc3bdd0ec676d29205fb09d1a4e4b1e8889df0) Signed-off-by: Katrin Fischer commit 448f6f5127812e23e6c9f44dda2e0228b20cb941 Author: Zoe Schoeler Date: Wed Jan 18 00:55:43 2017 +0000 Bug 17838 Availability limit broken until an item has been checked out. TEST PLAN 1. Make sure you have no items checked out. 2. Run sudo koha-rebuild-zebra -f -v kohadev. 3. Go to search the catalog and search. 4. Check items availability and then click on limit to currently available items. 5. This should return no results. 6. Apply patch and reload. 7. Results should show. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Attribute 14: " Specifies whether un-indexed fields should be ignored. A zero value (default) throws a diagnostic when an un-indexed field is specified. A non-zero value makes it return 0 hits." From http://www.indexdata.com/zebra/doc/querymodel-zebra.html Signed-off-by: Kyle M Hall (cherry picked from commit 543dc8e0365240441114359b7ddfa74863a318b6) Signed-off-by: Katrin Fischer commit 83ec31965824b4d632bb62f5569fde430fa3858e Author: Magnus Enger Date: Thu Nov 10 14:32:44 2016 +0000 Bug 4126 - Exit bulkmarcimport if -a and -b given Currently it is possible to spceify both --biblios and --authorities as command line switches to bulkmarcimport.pl. This does not make sense so we should exit early and explain that these switches are mutually exclusive. To test: - Run one of these and check that there is no complaint about missing options: perl misc/migration_tools/bulkmarcimport.pl -a -b sudo koha-shell -c "perl misc/migration_tools/bulkmarcimport.pl -a -b" kohadev - Observe that this displays the perldoc, but does not complain about mutually exclusive switches. - Apply the patch - Rerun the command(s) from earlier. - Verify that the script is now halted and a small explanation given. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit dbada67196818834f158890c0c348c0259085f7e) Signed-off-by: Katrin Fischer commit f45cd420d1bed73b9a85c5260ae4a781041a6626 Author: Mason James Date: Sun Jan 29 00:47:20 2017 +1300 Bug 18009 - IssueSlip.t test fails if launched between 00:00 and 00:59 to test patch... 1/ set date between 00:00 and 00:59 $ sudo date -s 'Sun Jan 29 00:41:55 NZDT 2017' 2/ run prove, see fail $ prove -v t/db_dependent/Members/IssueSlip.t ... t/db_dependent/Members/IssueSlip.t (Wstat: 65280 Tests: 1 Failed: 0) Result: FAIL 3/ apply patch 4/ run prove, see pass $ prove -v t/db_dependent/Members/IssueSlip.t ... All tests successful. Result: PASS NOTE: for code obscurity you could have also done a modulus 24. ;) Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit add15799229df7a1910d759f487c0006bf3f30ae) Signed-off-by: Katrin Fischer commit c4f977b76f171130d7f9c370ef6e27b6c0fd2384 Author: Tomas Cohen Arazi Date: Sat Dec 17 09:25:54 2016 -0300 Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Looking at the default framework's fields that are linked to authority records, there's a divergence with the Zebra index definitions. This yields to authority usage count be incorrect for users searching for authority records. MariaDB [koha_kohadev]> SELECT tagfield,tagsubfield,authtypecode FROM marc_subfield_structure WHERE authtypecode IS NOT NULL AND authtypecode<>'' AND frameworkcode='' GROUP BY tagfield,tagsubfield,authtypecode ; +----------+-------------+--------------+ | tagfield | tagsubfield | authtypecode | +----------+-------------+--------------+ | 100 | a | PERSO_NAME | | 110 | a | CORPO_NAME | | 111 | a | MEETI_NAME | | 130 | a | UNIF_TITLE | | 440 | a | UNIF_TITLE | | 600 | a | PERSO_NAME | | 610 | a | CORPO_NAME | | 611 | a | MEETI_NAME | | 630 | a | UNIF_TITLE | | 648 | a | CHRON_TERM | | 650 | a | TOPIC_TERM | | 651 | a | GEOGR_NAME | | 654 | a | TOPIC_TERM | | 655 | a | GENRE/FORM | | 656 | a | TOPIC_TERM | | 657 | a | TOPIC_TERM | | 658 | a | TOPIC_TERM | | 662 | a | GEOGR_NAME | | 690 | a | TOPIC_TERM | | 691 | a | GEOGR_NAME | | 696 | a | PERSO_NAME | | 697 | a | CORPO_NAME | | 698 | a | MEETI_NAME | | 699 | a | UNIF_TITLE | | 700 | a | PERSO_NAME | | 710 | a | CORPO_NAME | | 711 | a | MEETI_NAME | | 730 | a | UNIF_TITLE | | 796 | a | PERSO_NAME | | 797 | a | CORPO_NAME | | 798 | a | MEETI_NAME | | 799 | a | UNIF_TITLE | | 800 | a | PERSO_NAME | | 810 | a | CORPO_NAME | | 811 | a | MEETI_NAME | | 830 | a | UNIF_TITLE | | 896 | a | PERSO_NAME | | 897 | a | CORPO_NAME | | 898 | a | MEETI_NAME | | 899 | a | UNIF_TITLE | +----------+-------------+--------------+ This patch adds the missing ones to the authority number index as it is done for the rest of the fields. To test: - Verify that etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml contains intries pointing the $9 subfield of all the fields in the 'tagfield' column above, to the Koha-Auth-Number:w index. - Sign off :-D Signed-off-by: Hugo Agud Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 21d63c8fb0c2ae3a8ca7caaf0d4041b7189213c3) Signed-off-by: Katrin Fischer commit cb1bc00361bf3e468470b8e1500a4e752e60d161 Author: Marcel de Rooy Date: Thu Oct 27 15:07:29 2016 +0200 Bug 17512: Improve handling dates in C4::Items This is a follow-up on the internal server error on 0000-00-00 in the items column onloan. This patch deals with preventing to have such dates at all in the date fields of items. It is accomplished by: [1] Adding a (private) subroutine _mod_item_dates. It takes an item hash and replaces date values if needed. [2] AddItem and ModItem call _koha_new_item resp. koha_modify_item. In these routines a call to the new _mod_item_dates is inserted. [3] Although the routine is actually private, I have added some unit tests to Items.t. Test plan: [1] Add a new item. Fill a correct date in dateaccessioned and an invalid date in Price effective from (=replacementpricedate). [2] Verify that dateaccessioned is saved correctly and replacementpricedate is still null (does not contain 0000-00-00). [3] Edit the item again. Fill some text in dateaccessioned and put a correct date in replacementpricedate. Verify the results. [4] Run t/db_dependent/Items.t Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 137cbd8d09be549c9ae97dfad746a9c52d27b9a6) Signed-off-by: Katrin Fischer commit 37ad15eae7e8773ae8ee4cb342b5adf3d54d0ff0 Author: Oleg Vasylenko Date: Wed Jan 25 12:01:05 2017 +0200 Bug 17988 - Select2 prevents correct tag expand/minimize functionality Overview: Select2 (Bug 13501) introduced divs and inputs that broke some assumptions about the expected HTML structure. Because of that, expanding fields to show all hidden subfields does not work properly. Steps to Reproduce: 1. Open some book in the editor or create new (cataloguing/addbiblio.pl) 2. Try to minimize or expand fields, that have among subfields the following: ? Thesaurus driven subfield ? subfield with Select2 ? Hidden subfield. Actual Results: ?? some fields become hidden, some not, and vice versa ?? in the console, you'll see ?Uncaught TypeError: Cannot read property 'match' of null? Expected Results: ?? all subfields should minimize/maximize completely Additional Information: This happens because Select2 adds some divs, that do not have ID property. The following patch adds check for the needed attribute existance. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 317abac238147cf20f09d2aa0b0dc069c12b0892) Signed-off-by: Katrin Fischer commit 46506e215e42eaa854377337f8588436144ce1e3 Author: Emma Date: Wed Jan 18 21:37:23 2017 +0000 Bug 17134: Replace item types codes with category in facets (opac) To test: -Search in OPAC for two or more items -Note that item types display category codes rather than names -Make change to file and test in OPAC Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 908163754010df8d78acf463d6777ba2c4c3a2e9) Signed-off-by: Katrin Fischer commit 87edb0bdddab634598ae75db71748a446a6d37ed Author: Jonathan Druart Date: Tue Nov 22 09:35:07 2016 +0000 Bug 16984: Do not clone the item block for standing orders If AcqCreateItem is set to ordering and the basket is marked as "standing orders", when ordering a JS error is raised: additem.js:176 Uncaught TypeError: window[events[i]] is not a function The item block should not be displayed in that case. Test plan: - Set AcqCreateItem to "ordering" - Create a basket and tick the "Standing orders" checkbox - Add an order to this basket => Without this patch you get the JS error => With this patch applied you will not get it Signed-off-by: Claire Gravely Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit ba89de5837bbe3055a8b0a04517332d8aee68da7) Signed-off-by: Katrin Fischer commit 5023593010d62cdcdb7191b7694de9ce58d5ff82 Author: Jonathan Druart Date: Wed Feb 8 17:49:41 2017 +0100 Bug 17940: (follow-up 14695) Fix - Mark holds as waiting when transfer is done When an item from Library A is reserved and set to be picked up at Library B, the hold buttons fail to confirm or cancel during check in at Library B when the item is transferred from Library A. Test plan: * Create a hold for item at Library A to be picked up at Library B. * Check in item at Library A to trigger the transfer. => item shows in transit * Switch to Library B and check in item. * Confirm the hold. => item shows waiting Signed-off-by: Christopher Brannon Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit ae2c1e6a83fab8b76606cc84a306b37d3b7403e4) Signed-off-by: Katrin Fischer commit dfe8fd300d114e6b45fdc47d107fd56d791dd898 Author: Jonathan Druart Date: Wed Feb 8 12:41:37 2017 +0100 Bug 18076: Replace holds_to_place_count with an input type=text From http://www.template-toolkit.org/docs/manual/Directives.html#section_WHILE """ The Template Toolkit uses a failsafe counter to prevent runaway WHILE loops which would otherwise never terminate. If the loop exceeds 1000 iterations then an undef exception will be thrown, reporting the error: WHILE loop terminated (> 1000 iterations) The $Template::Directive::WHILE_MAX variable controls this behaviour and can be set to a higher value if necessary. """ I do not think we want to increase this value, and I do not think we want to display a dropdown list with 1000 entries. This patch replaces the dropdown list with an input text. Test plan: - Set circulation conditions - holds per record = 999 - Search for record with items - Go to the holds tab - Search for a patron - Verify that when you send your search, the 'internal server error' is not shown and you see the input text. You should be able to enter a value > than 999 and < 1 Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit ac99f64010c6bdbe40abc2b823c2180b9b223425) Signed-off-by: Katrin Fischer commit e0b64c0f4ae29eae1a7c71d3d9e328683aa51317 Author: Jonathan Druart Date: Sat Jan 21 08:48:20 2017 +0100 Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist If NOT_LOAN is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your NOT_LOAN authorised values Go on the item search form => You will not get the JS error and the "Status" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Owen Leonard Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 27a4149625252e4c28dc97df998d82fd6f2652b8) Signed-off-by: Katrin Fischer commit 2d363f136d8d9c4b35dfac455ea4f877fac7905d Author: Luke Honiss Date: Thu Jan 19 02:55:31 2017 +0000 Bug 11450: Hold Request Confirm Deletion ==TEST PLAN== 1) Go to an item with a hold and click on the holds tab on the left 2) Click the red 'X' 3) The hold will be deleted immediately 4) Apply patch 5) Return to an item with a hold and click the 'X' 6) There will now be a confirmation dialog 7) Click cancel and the dialog will disappear and the hold will not be deleted 8) Click OK and the hold will be deleted Restored indentations - Mark Tompsett Signed-off-by: Mark Tompsett Signed-off-by: Christopher Brannon Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 6ce97d9b06843fa65d6fb4a6d7c8cecd322bc8d6) Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: C4/AuthoritiesMarc.pm | 101 ++++++++++++---- C4/Items.pm | 30 +++++ C4/XSLT.pm | 2 +- Koha.pm | 2 +- circ/returns.pl | 1 + etc/zebradb/ccl.properties | 2 +- .../marc21/biblios/biblio-koha-indexdefs.xml | 42 +++++++ .../marc21/biblios/biblio-zebra-indexdefs.xsl | 126 ++++++++++++++++++++ installer/data/mysql/updatedatabase.pl | 7 ++ .../prog/en/modules/acqui/neworderempty.tt | 2 +- .../en/modules/admin/preferences/authorities.pref | 9 ++ .../prog/en/modules/catalogue/itemsearch.tt | 36 ++++-- .../prog/en/modules/reserve/request.tt | 18 ++- .../prog/en/modules/tools/batchMod-edit.tt | 6 +- koha-tmpl/intranet-tmpl/prog/js/cataloging.js | 1 + misc/migration_tools/bulkmarcimport.pl | 2 + opac/opac-search.pl | 2 +- reports/borrowers_stats.pl | 2 +- t/XSLT.t | 28 ++++- t/db_dependent/Authorities/Merge.t | 107 +++++++++++------ t/db_dependent/Items.t | 52 +++++++- t/db_dependent/Members/IssueSlip.t | 4 +- virtualshelves/shelves.pl | 39 +++--- 23 files changed, 505 insertions(+), 116 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 15 04:42:37 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 15 Feb 2017 03:42:37 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.09-2-gf847a41 Message-ID: This is an automated email from the git hooks/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 f847a41b2e4146d04c6f37aaa59ec004945bb92a (commit) from a908353c9100a8253047ca1c4354450aaaa5c5e3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f847a41b2e4146d04c6f37aaa59ec004945bb92a Author: Mason James Date: Mon Feb 13 19:28:54 2017 +1300 Bug 18026 - URL to database columns link in system Here's a patch for the 16.05 series, and the command I used to do the search/replace grep -irl 'schema.koha-community.org/tables' ./* | grep -v .git | xargs perl -pi -e 's^koha-community.org/tables^koha-community.org/16_05/tables^' ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/admin/preferences/acquisitions.pref | 2 +- .../intranet-tmpl/prog/en/modules/admin/preferences/opac.pref | 6 +++--- .../intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 15 08:11:35 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 15 Feb 2017 07:11:35 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.03-47-g2cd3236 Message-ID: This is an automated email from the git hooks/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 2cd32363301431b8f9886eb0e60a8ad5160e339a (commit) from 2591dfa8a0df3372e96e556620ba22b5b79afccf (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2cd32363301431b8f9886eb0e60a8ad5160e339a Author: Mason James Date: Wed Feb 15 16:11:09 2017 +1300 Bug 18026 - URL to database columns link in system preferences is incorrect (16.11.x) Here's a patch for the 16.11.x branch modified: koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref modified: koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref modified: koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/admin/preferences/acquisitions.pref | 2 +- .../intranet-tmpl/prog/en/modules/admin/preferences/opac.pref | 6 +++--- .../intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 15 12:19:36 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 15 Feb 2017 11:19:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-427-g7621886 Message-ID: This is an automated email from the git hooks/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 762188646904156e4b1c12bb4d2e04a060674e59 (commit) via 444bdcc2a50c64037c0f463200683009d8ae0b6e (commit) from 2d427b25aa778c7eafbc67af066f849c32b7cf06 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 762188646904156e4b1c12bb4d2e04a060674e59 Author: Jonathan Druart Date: Wed Feb 15 08:11:41 2017 +0000 Bug 17780: Add a comment to explain the line Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 444bdcc2a50c64037c0f463200683009d8ae0b6e Author: Oleg Vasylenko Date: Tue Jan 24 17:58:39 2017 +0200 Bug 17780 - When choose an author in authority results new window shows a blank screen Select2 (Bug 13501) introduced divs and inputs that broke some assumptions about the expected HTML structure. This patch checks if input has name attribute, because some inputs in Select2 have not. To test: Try to add info from the authorities to field that has subfield with Select2 (subfield with authorised values on Koha 16.11+) Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/authorities/blinddetail-biblio-search.tt | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 15 12:25:03 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 15 Feb 2017 11:25:03 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-428-g7698f64 Message-ID: This is an automated email from the git hooks/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 7698f6453c6c14b4986d573c33f0e49cd73652c6 (commit) from 762188646904156e4b1c12bb4d2e04a060674e59 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7698f6453c6c14b4986d573c33f0e49cd73652c6 Author: Josef Moravec Date: Wed Feb 15 06:52:32 2017 +0000 Bug 18119: Fix comment in cataloguing.js Test plan: Go to cataloging, and try something which depends on javascript - collapse/uncollapse fields, open authority search window, ... -> without patch it is not working -> with patch it is working correctly Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/js/cataloging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 15 20:12:12 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 15 Feb 2017 19:12:12 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.09-4-g49f8732 Message-ID: This is an automated email from the git hooks/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 49f87321d7702878498d7ef76109a47ffc4a6b1c (commit) via 1df44a06cc15729fb9b4053d42062e22243a0f26 (commit) from f847a41b2e4146d04c6f37aaa59ec004945bb92a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 49f87321d7702878498d7ef76109a47ffc4a6b1c Author: Jonathan Druart Date: Mon Feb 6 09:18:29 2017 +0100 Bug 18044: Add a test Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 1df44a06cc15729fb9b4053d42062e22243a0f26 Author: Chris Nighswonger Date: Sun Feb 5 16:11:30 2017 -0500 Bug 18044: Label Batches not displaying SQL expects lists to be comma separated. A trailing comma must also be avoided. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Mason James ----------------------------------------------------------------------- Summary of changes: C4/Creators/Lib.pm | 2 +- t/db_dependent/Creators/Lib.t | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:29:11 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:29:11 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-431-g745c4c3 Message-ID: This is an automated email from the git hooks/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 745c4c3da662ac71874f9be8e88d111bc6fe8b1c (commit) via 6ee62d4917481f77db26f858491266cb86d2252c (commit) via 083a8f7b7274bdf9e9547bee60366259374c1c20 (commit) from 7698f6453c6c14b4986d573c33f0e49cd73652c6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 745c4c3da662ac71874f9be8e88d111bc6fe8b1c Author: Jonathan Druart Date: Thu Jan 19 11:20:33 2017 +0100 Bug 17933: Do not instanciate a patron if not needed Signed-off-by: Dobrica Pavlinusic Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 6ee62d4917481f77db26f858491266cb86d2252c Author: Jonathan Druart Date: Thu Jan 19 11:13:36 2017 +0100 Bug 17933: Add test and return unless defined dob Without this patch get_age return actually 0 instead of Signed-off-by: Dobrica Pavlinusic Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 083a8f7b7274bdf9e9547bee60366259374c1c20 Author: Dobrica Pavlinusic Date: Wed Jan 18 17:12:30 2017 +0100 Bug 17933 - Internal software error when searching patron without birth date When patrons don't have date of birth (which is not required) patron search results on moremember page produce internal server error since we can't convert MySQL invalid date 0000-00-00 to datetime object and call strfdate on it. Additionally, since we assign dates to template variables and after than assign whole $data hash to template, later assigment overrides previous one, so we see birth date field even for patrons which don't have one. This patch fixes both of those problems. Test: 1. edit patron and remove it's birth date 2. try to search for it, and verify server error 3. apply patch 4. repeat search for patron and verify that it works and doesn't have enpty birth date field Signed-off-by: Grace McKenzie Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Patron.pm | 1 + members/moremember.pl | 6 ++++-- t/db_dependent/Koha/Patrons.t | 4 +++- 3 files changed, 8 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:31:40 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:31:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-434-ga471ad8 Message-ID: This is an automated email from the git hooks/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 a471ad80bb70ed790cf7f544a45cdd3e61672ff4 (commit) via 01f69eb8a258cead5f448c70e1efddc87a341299 (commit) via e87dab6411a40ae0eba3d56032760d705ef62eaf (commit) from 745c4c3da662ac71874f9be8e88d111bc6fe8b1c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a471ad80bb70ed790cf7f544a45cdd3e61672ff4 Author: Jonathan Druart Date: Wed Feb 15 17:14:11 2017 +0000 Bug 18025: Simplify logic and avoid 1 call to ValidateBorrowernumber Signed-off-by: Liz Rea This is fine with me. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 01f69eb8a258cead5f448c70e1efddc87a341299 Author: Jonathan Druart Date: Wed Feb 15 17:13:41 2017 +0000 Bug 18025: Fix test Signed-off-by: Liz Rea Seems to work fine Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit e87dab6411a40ae0eba3d56032760d705ef62eaf Author: Liz Rea Date: Tue Jan 31 21:59:01 2017 +0000 Bug 18025 - Expired password recovery links cause sql crash When a user gets an email, but doesn't act or visit it within two days, attempting to create a new one causes a collision. We should just delete the old one, assuming they still want to reset their password. To test: create yourself a borrower with a userid and password. Attempt a password recovery on the OPAC update the entry in the database for that user to have an expired token e.g. update borrower_password_recovery set valid_until = '2017-01-25 03:25:26' where borrowernumber = 12; Attempt another password recovery operation - should error apply the patch Try it again - no error, new token is generated and additional email with new link is sent. Issue reproduced - is resolved by patch Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Patron/Password/Recovery.pm | 21 ++++++++++++++++-- opac/opac-password-recovery.pl | 15 +++++++------ t/db_dependent/Passwordrecovery.t | 43 +++++++++++++++++++++++++++++++++++-- 3 files changed, 69 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:32:14 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:32:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-435-gc6e09ca Message-ID: This is an automated email from the git hooks/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 c6e09ca3877ced4afb05ea27175c46aa134dc3b3 (commit) from a471ad80bb70ed790cf7f544a45cdd3e61672ff4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c6e09ca3877ced4afb05ea27175c46aa134dc3b3 Author: Jonathan Druart Date: Fri Feb 17 10:59:22 2017 +0100 Bug 18136: Fix ExportRemoveFields pre-fill behaviour Looks like it's caused by bug 13190. Variable export_remove_fields is not sent to the template, let's retrieve the syspref's value using the TT plugin. Test plan: Fill ExportRemoveFields with something (100a for instance) Go on a checkout list page At the bottom, the "do not export fields" input box should be pre-filled with the content of the syspref Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:40:54 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:40:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-436-g116301a Message-ID: This is an automated email from the git hooks/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 116301ae473075a6e183beb0027bd3657816b5e6 (commit) from c6e09ca3877ced4afb05ea27175c46aa134dc3b3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 116301ae473075a6e183beb0027bd3657816b5e6 Author: Jonathan Druart Date: Thu Feb 2 01:09:38 2017 +0100 Bug 18045: Fix Reserves.t tests - caching issues If the cache has to be cleaned when marc structure is updated. Before this patch, if the age restriction was not mapped, Reserves.t failed with: Tag "" is not a valid tag. at t/db_dependent/Reserves.t line 523. Test plan: Just confirm that the tests still pass and that the changes make sense. Signed-off-by: Marcel de Rooy It seems that only removing the key MarcSubfieldStructure- should be enough, but it does not hurt either to remove those four keys. Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Reserves.t | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:41:41 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:41:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-437-gd115602 Message-ID: This is an automated email from the git hooks/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 d115602c9881371d38f3b1c4bda66e979984b218 (commit) from 116301ae473075a6e183beb0027bd3657816b5e6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d115602c9881371d38f3b1c4bda66e979984b218 Author: Tomas Cohen Arazi Date: Mon Feb 6 16:22:51 2017 -0300 Bug 18068: ES - Fix location and (home|holding)branch facets This patch makes the 'Locations' facet work as expected (i.e. having the same behaviour it has for Zebra: picking the 952$c in MARC21 and 995e for UNIMARC). It also adds the code to handle holding and home library settings for facets and makes the facets show the library name instead of the branch code. The mappings are updated so the labels match what facets.inc expect to work properly. To test: - On master, do a search that returns biblios with items having homebranch set. => FAIL: Under the 'Locations' label on the facets you will notice branchcodes are shown. - Apply the patch - Restart memcached and plack (just in case, it was tricky) - Reset your mappings: http://localhost:8081/cgi-bin/koha/admin/searchengine/elasticsearch/mappings.pl?op=reset&i_know_what_i_am_doing=1 - Restart memcached and plack (again, not sure if needed) - Make sure this mappings are set: homebranch => HomeLibrary holdingbranch => HoldingLibrary (Note: it might not be set due to the place the yaml file is being picked) - Reindex your records: $ sudo koha-shell kohadev k$ cd kohaclone k$ perl misc/search_tools/rebuild_elastic_search.pl -d -v - Repeat the initial search => SUCCESS: 'Location' contains the right stuff, 'Home libraries' and 'Holding libraries' too. - Run k$ prove t/db_dependent/Koha_SearchEngine_Elasticsearch_Search.t => SUCCESS: Tests pass! - Sign off :-D Note: play with the 'DisplayLibraryFacets' syspref options. Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 12 ++++++++- Koha/SearchEngine/Elasticsearch/Search.pm | 6 +++++ admin/searchengine/elasticsearch/mappings.yaml | 27 +++++++++++++++++--- .../Koha_SearchEngine_Elasticsearch_Search.t | 26 ++++++++++++++++++- 4 files changed, 65 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:43:06 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:43:06 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-438-g40babe1 Message-ID: This is an automated email from the git hooks/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 40babe1a10b2a7bbe0bbcf06a0aab42c732f8751 (commit) from d115602c9881371d38f3b1c4bda66e979984b218 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 40babe1a10b2a7bbe0bbcf06a0aab42c732f8751 Author: Aleisha Amohia Date: Tue Feb 14 01:12:43 2017 +0000 Bug 14854: Add DataTables on upload results table This patch adds datatables to the upload results table. Tools -> Upload To test: 1) Go to Tools -> Upload 2) Put any search term in search box, click Search 3) Confirm table shows as datatable and sorting works on all columns EXCEPT Actions Sponsored-by: Catalyst IT Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:44:04 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:44:04 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-439-gedfcb17 Message-ID: This is an automated email from the git hooks/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 edfcb171ebe23869a63c3b5ef823096bb4fba7da (commit) from 40babe1a10b2a7bbe0bbcf06a0aab42c732f8751 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit edfcb171ebe23869a63c3b5ef823096bb4fba7da Author: Caitlin Goodger Date: Thu Jan 19 23:31:16 2017 +0000 Bug 17948 Link to make a new list in masthead in OPAC does not take you straight to add form Test Form 1: Go to OPAC and click on add new list. 2: It takes you to Your Lists and not straight to add a new list 3: Apply patch 4: Refresh and when you click on new list it should take you straight to add a new list Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:49:31 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:49:31 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-441-g849877d Message-ID: This is an automated email from the git hooks/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 849877d8d3bcd3791c624a84ec5e4cb0550fa0fe (commit) via 5d279befed1b6faf829ab0ebd19357dbfc7c576e (commit) from edfcb171ebe23869a63c3b5ef823096bb4fba7da (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 849877d8d3bcd3791c624a84ec5e4cb0550fa0fe Author: Marcel de Rooy Date: Mon Jan 23 11:40:48 2017 +0100 Bug 17950: Merge.t: Improve variable handling at top level This patch does: [1] Remove unused $dbh. [2] Move all mocking statements to one sub. [3] Promote a few lexicals to globals when used in the subtests. Test plan: Run t/db_dependent/Authorities/Merge.t Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett Signed-off-by: Julian Maurice Signed-off-by: Kyle M Hall commit 5d279befed1b6faf829ab0ebd19357dbfc7c576e Author: Marcel de Rooy Date: Mon Jan 23 10:44:57 2017 +0100 Bug 17950: Improve quick UNIMARC fix in Merge.t Bug 17909 and 17913 added a quick fix for Merge.t on UNIMARC records. This patch improves that fix with the sub compare_fields, a merge from compare_field_count and compare_field_order. Also it adds the option to test MARC21/UNIMARC by adding a command line switch that triggers mocking the marcflavour preference. The test on a cleared field 609 in strict mode has been broken up in two tests: first a count without 609 and then counting 609s only. Note: Could have mocked GetMarcBiblio too, but decided to go this way. Test plan: [1] Run perl t/db_dependent/Authorities/Merge.t [2] (For UNIMARC users:) Run perl Merge.t -flavour MARC21 [3] (For others:) Run perl Merge.t -flavour UNIMARC Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett Signed-off-by: Julian Maurice Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Authorities/Merge.t | 114 +++++++++++++++++++----------------- 1 file changed, 60 insertions(+), 54 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:50:46 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:50:46 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-443-g4c8ac01 Message-ID: This is an automated email from the git hooks/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 4c8ac01a1d3f3334b03dfab1fd3d8fab27af3957 (commit) via c6e0d42521fa6b62fd0f39d79e7acbbf3639d40a (commit) from 849877d8d3bcd3791c624a84ec5e4cb0550fa0fe (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4c8ac01a1d3f3334b03dfab1fd3d8fab27af3957 Author: Jonathan Druart Date: Mon Jan 16 14:10:22 2017 +0100 Bug 17962: Add Koha::Tmp::Order[s] These packages should not be used outside the TT syntax scope. A rewrite of Koha::Acquisition::Order[s] should be considered instead. Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall commit c6e0d42521fa6b62fd0f39d79e7acbbf3639d40a Author: Jonathan Druart Date: Mon Jan 16 13:25:31 2017 +0100 Bug 17962: TT syntax for notices - Prove that ACQ_NOTIF_ON_RECEIV is compatible To make ACQ_NOTIF_ON_RECEIV TT compatible, we need to expose data from the aqorders table. We already have a package for it in the Koha namespace but it is based on Koha::Object[s]. The other path creates dummy Koha::Tmp::Order[s] packages to make it usable. Of course we should use a valid Koha::Acquisition::Order[s] based on Koha::Object, but it's outside the scope of this bug report. This notice template is quite simple, and it's a good one to start. From C4::Acq::NotifyOrderUsers, GetPreparedLetter is called with 4 elements: the library, the patron to notify, the biblio and the order information. Note that prior to this patch aqorders was filled from GetOrder, which retrieved a lot of information from the acquisition table (aqbasket, aqbookseller). The idea with the TT syntax is to access the data from where it really exists. So if a user wants to display the basket name, [% order.basket.basketname %] should be used instead. Note that this will not work at the moment, the basket method is not defined in the order package. However the basic template should work as before. The test added to TemplateToolkit proves that. Test plan: Use the default ACQ_NOTIF_ON_RECEIV to notify a patron that an order has been received. That generated template should be exactly the same as prior to this patch. Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Letters.pm | 6 ++ Koha/{BiblioFramework.pm => Tmp/Order.pm} | 6 +- Koha/{Cities.pm => Tmp/Orders.pm} | 10 ++-- t/db_dependent/Letters/TemplateToolkit.t | 88 ++++++++++++++++++++++++++++- 4 files changed, 101 insertions(+), 9 deletions(-) copy Koha/{BiblioFramework.pm => Tmp/Order.pm} (87%) copy Koha/{Cities.pm => Tmp/Orders.pm} (83%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:51:55 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:51:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-445-g286f2f4 Message-ID: This is an automated email from the git hooks/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 286f2f4d4470e3c1ba3db876de1ae12bbc69c347 (commit) via 86cfae3e059c7782e0b16d2cb9276057f5a49fc1 (commit) from 4c8ac01a1d3f3334b03dfab1fd3d8fab27af3957 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 286f2f4d4470e3c1ba3db876de1ae12bbc69c347 Author: Jonathan Druart Date: Mon Jan 23 12:35:13 2017 +0100 Bug 17958: Add tests for Koha::Notice::Template[s] Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 86cfae3e059c7782e0b16d2cb9276057f5a49fc1 Author: Jonathan Druart Date: Mon Jan 16 14:10:09 2017 +0100 Bug 17958: Add Koha::Notice::Template[s] packages (letter table) This just add Koha::Letter[s] for later uses. Test plan: prove t/db_dependent/Koha/Notices.t should return green Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/{BiblioFramework.pm => Notice/Template.pm} | 6 +- Koha/{BiblioFrameworks.pm => Notice/Templates.pm} | 10 +-- t/db_dependent/Koha/Notices.t | 71 +++++++++++++++++++++ 3 files changed, 79 insertions(+), 8 deletions(-) copy Koha/{BiblioFramework.pm => Notice/Template.pm} (86%) copy Koha/{BiblioFrameworks.pm => Notice/Templates.pm} (81%) create mode 100644 t/db_dependent/Koha/Notices.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 12:56:16 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 11:56:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-446-ga5ca6cf Message-ID: This is an automated email from the git hooks/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 a5ca6cf07028766169aececa3a19080a33548d62 (commit) from 286f2f4d4470e3c1ba3db876de1ae12bbc69c347 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a5ca6cf07028766169aececa3a19080a33548d62 Author: Jonathan Druart Date: Mon Jan 16 14:46:26 2017 +0100 Bug 17959 - Add the Koha::Notice::Message[s] packages (message_queue table) This just add Koha::Notice::Message[s] for later uses. Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/{BiblioFramework.pm => Notice/Message.pm} | 6 +++--- Koha/{BiblioFrameworks.pm => Notice/Messages.pm} | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) copy Koha/{BiblioFramework.pm => Notice/Message.pm} (85%) copy Koha/{BiblioFrameworks.pm => Notice/Messages.pm} (80%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 13:13:35 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 12:13:35 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-447-gbf2c0be Message-ID: This is an automated email from the git hooks/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 bf2c0be829c6129fa860b01f60ef3da04d10ecc7 (commit) from a5ca6cf07028766169aececa3a19080a33548d62 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bf2c0be829c6129fa860b01f60ef3da04d10ecc7 Author: Owen Leonard Date: Mon Jan 23 15:57:54 2017 +0000 Bug 17972 - Reformat acquisitions sidebar menu with acquisitions and administration sections This patch makes changes to acquisitions-menu.inc so that the style matches that of the Administration and Tools sidebar menus. The links are now divided up between Acquisitions (/acqui/) and Administration (/admin/). The link-highlighting JavaScript used elsewhere has been added. To test, apply the patch and view the Acquisitions home page. - Check that the "Acquisitions home" link is highlighted (bold). - Test the other Acquisitions links to confirm that highlighting works. - Click any link in the Administration section of the sidebar menu. - Confirm that everything looks correct and works correctly. Signed-off-by: Aleisha Amohia Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/acquisitions-menu.inc | 55 ++++++++++++++------ 1 file changed, 38 insertions(+), 17 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 13:17:18 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 12:17:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-448-g6f3732e Message-ID: This is an automated email from the git hooks/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 6f3732ee7228890f9253bd79c96596d6b10ab141 (commit) from bf2c0be829c6129fa860b01f60ef3da04d10ecc7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6f3732ee7228890f9253bd79c96596d6b10ab141 Author: Kyle M Hall Date: Fri Feb 17 12:10:15 2017 +0000 Bug 5784 - Undo link in breadcrumbs Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 13:18:30 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 12:18:30 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-449-g2f763a9 Message-ID: This is an automated email from the git hooks/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 2f763a96890bc469f3aaea8f3be6c1ccb3603c91 (commit) from 6f3732ee7228890f9253bd79c96596d6b10ab141 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2f763a96890bc469f3aaea8f3be6c1ccb3603c91 Author: Jonathan Druart Date: Sat Jan 21 16:47:03 2017 +0100 Bug 17973: Add the Koha::Checkout->item method Test plan: prove t/db_dependent/Koha/Checkouts.t should return green Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Checkout.pm | 15 +++++++++++++++ t/db_dependent/Koha/Checkouts.t | 9 ++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 13:18:55 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 12:18:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-451-g236dbdf Message-ID: This is an automated email from the git hooks/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 236dbdf5f1922f98305df8b4c3aee040c0086b05 (commit) via c614342f2743b1076b6a7a6740ea6586acf547ac (commit) from 2f763a96890bc469f3aaea8f3be6c1ccb3603c91 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 236dbdf5f1922f98305df8b4c3aee040c0086b05 Author: Nick Clemens Date: Thu Feb 16 11:04:11 2017 +0000 Bug 17974 (QA Followup) Use the $biblio_rs variable In case of Koha::Object you can call new_from_dbic directly, however, it fails for Koha::Objects so using an intermediary variable should be done for consistency Signed-off-by: Kyle M Hall commit c614342f2743b1076b6a7a6740ea6586acf547ac Author: Jonathan Druart Date: Sat Jan 21 16:45:34 2017 +0100 Bug 17974: Add the Koha::Item->biblio method Test plan: prove t/db_dependent/Koha/Items.t should return green Signed-off-by: Josef Moravec Signed-off-by: Nick Clemens ----------------------------------------------------------------------- Summary of changes: Koha/Item.pm | 14 ++++++++++++++ t/db_dependent/Koha/Items.t | 10 +++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 13:19:56 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 12:19:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-452-g87dacff Message-ID: This is an automated email from the git hooks/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 87dacffdf3e3a2371720269af22a5de90d3f90fc (commit) from 236dbdf5f1922f98305df8b4c3aee040c0086b05 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 87dacffdf3e3a2371720269af22a5de90d3f90fc Author: Aleisha Amohia Date: Mon Jan 23 22:41:15 2017 +0000 Bug 17977: Add acquisitions sidebar menu to suggestions To test: 1) Go to Acquisitions -> Suggestions 2) Notice no acquisitions sidebar 3) Apply patch and refresh page 4) Sidebar menu should now show. Sponsored-by: Catalyst IT Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 13:21:21 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 12:21:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-453-g2b9662e Message-ID: This is an automated email from the git hooks/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 2b9662e0ca87f6344a8edb9093e06c811295df6c (commit) from 87dacffdf3e3a2371720269af22a5de90d3f90fc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2b9662e0ca87f6344a8edb9093e06c811295df6c Author: Jonathan Druart Date: Wed Jan 25 11:33:43 2017 +0100 Bug 17990: Refactor Perl module versions check The code is duplicated, variable are not set ($_), code is hard to read, not covered by tests and the subroutine has 2 completely different behaviors depending on the presence of the "module" parameter. No need more ti rewrite it. Test plan: - Use koha_perl_deps.pl with the different options (-u -m -a -i) - Go on the about page, "Perl modules" tab You should not see any differences from before and after this patch Signed-off-by: David Cook Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Installer/PerlModules.pm | 84 ++++++++++++++++++++++--------------------- about.pl | 2 +- installer/install.pl | 2 +- koha_perl_deps.pl | 2 +- t/Installer_PerlModules.t | 50 +++++++++++++++++++------- t/Installer_pm.t | 6 ++-- 6 files changed, 86 insertions(+), 60 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 14:28:01 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 13:28:01 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-461-gc5901ca Message-ID: This is an automated email from the git hooks/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 c5901cad450e8a869e7b53347cc6dbf4604f7a90 (commit) via 70e709393db743b3c722b0c574adface1787e98f (commit) via 43f56795c7b0d02a6263ae93975ee155b8d89043 (commit) via 2f6d26a93fd02b5f12e4219148a7bcfe102b5703 (commit) via 531ec010ca5dcdcdfe51267519c2029fbcf68442 (commit) via 306e2c5fa74af614496ac1ab31ff1316e2f54126 (commit) via 35fad66881f77b3f569f9081fdcbf04f6e1a8ed0 (commit) via 4ecc98c37f7d8bcdc89f6d6af2042997fce5e42e (commit) from 2b9662e0ca87f6344a8edb9093e06c811295df6c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c5901cad450e8a869e7b53347cc6dbf4604f7a90 Author: Jonathan Druart Date: Thu Feb 16 14:07:05 2017 +0000 Bug 16749: Add is_instance check to koha-upgrade-schema Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 70e709393db743b3c722b0c574adface1787e98f Author: Marcel de Rooy Date: Thu Feb 16 14:33:57 2017 +0100 Bug 16749: Check instancename in adjust_paths_dev_install Check if the instance does not exist (or was not even passed). Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 43f56795c7b0d02a6263ae93975ee155b8d89043 Author: Jonathan Druart Date: Thu Feb 16 12:57:17 2017 +0000 Bug 16749: Use is_instance to make sure the dev instance exist Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 2f6d26a93fd02b5f12e4219148a7bcfe102b5703 Author: Marcel de Rooy Date: Mon Feb 13 08:56:17 2017 +0100 Bug 16749: Go with a boolean flag, we love booleans As requested by Jonathan on comment 10 on Bugzilla and supported by Tomas, we should use the dev_install entry in koha-conf as a boolean flag. Since we already used it as a path, this patch is not too strict about it. If the entry is not empty and not equal to "0", we will interpret it as a true value. The path is taken from the intranetdir entry. Test plan: [1] Copy debian/scripts/koha-functions.sh to /usr/share/koha/bin [2] For a dev install: Remove the dev install line, or toggle its value between empty string, 0 or 1 and each time test stop/start koha-indexer. Check the path to rebuild_zebra with ps aux|grep indexer. If you have no entry, an empty entry or a zero, you should see a regular path. (Note: You can do something similar with koha-start-sip.) [3] For a regular install: Remove the dev install line. Stop/start koha-indexer or koha-plack, and verify that it still works. Add a dev_install line with 0, and repeat stop/start. Signed-off-by: Marcel de Rooy Signed-off-by: Mirko Tietgen Tested in a package installation of master+16749 Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 531ec010ca5dcdcdfe51267519c2029fbcf68442 Author: Marcel de Rooy Date: Mon Sep 12 11:51:22 2016 +0200 Bug 16749: Update debian docs for koha-translate This patch adds the -d option to the documentation (with thanks to Magnus Enger). Signed-off-by: Mirko Tietgen Tested in a package installation of master+16749 Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 306e2c5fa74af614496ac1ab31ff1316e2f54126 Author: Marcel de Rooy Date: Thu Jun 16 10:38:54 2016 +0200 Bug 16749: Adjustments for koha-translate [AMENDED February 10, 2017] [1] Added reading /etc/default/koha-common as in the other debian scripts. We need it for KOHA_HOME. [2] Add a -d|--dev parameter for dev installs. [3] No hardcoded PERL5LIB or KOHA_INSTALL_DIR (KOHA_HOME). They are read from default file or set by adjust_paths_dev_install. [4] Adjust template paths for dev installs: OPAC_TMPL, INTRANET_TMPL. [5] Remove references to obsolete themes ccsr and prog. Test plan: [1] Regular package install: Copy koha-translate to /usr/sbin. Run koha-translate -l to show installed languages. Run koha-translate -l -a to show available languages. Add a language: koha-translate -i nl-NL. Check template folders in regular location (/usr/share/koha/...) Remove a language: koha-translate -r nl-NL. Check again. [2] Dev install or kohadevbox: Copy koha-translate to /usr/sbin. If needed, add the line to koha-conf.xml. Run koha-translate -l -d yourinstance to show installed languages. (Note: You only see the languages installed in this instance.) Add a language: koha-translate -i nl-NL -d yourinstance. Check template folders in the clone. Remove a language: koha-translate -r nl-NL -d yourinstance. Note: Make sure you have sufficient file permissions for the kohaclone files and koha-conf.xml. On kohadevbox you might need to run sudo koha-translate within the the vagrant user context. Signed-off-by: Marcel de Rooy Tested on Jessie (Debian VM and Kohadevbox) Signed-off-by: Mirko Tietgen Tested in a package installation of master+16749 Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 35fad66881f77b3f569f9081fdcbf04f6e1a8ed0 Author: Marcel de Rooy Date: Fri Feb 10 10:33:57 2017 +0100 Bug 16749: Adjustments for koha-plack [1] Use run_safe_xmlstarlet for plack workers and requests [2] Simplify adjust_paths. The lazy export statement is actually enough to replace adjust_paths by one direct call to adjust_paths_dev_install. Test plan: [1] Copy koha-functions.sh and koha-plack: cp [YOUR_PATH]/debian/scripts/koha-functions.sh /usr/share/koha/bin/ cp [YOUR_PATH]/debian/scripts/koha-plack /usr/sbin/ where YOUR_PATH might well be /home/vagrant/kohaclone. [2] Make sure that you have dev_install in koha-conf. Stop and start koha-plack. Verify with ps aux|grep plack. [3] Rename dev_install to nodev_install (in start and end tag). Now stop/start koha-plack. Verify with ps aux|grep plack. [4] Change plack_requests to 51 in your koha-conf. Restart Plack and check that you see 51 in ps aux|grep plack. Signed-off-by: Marcel de Rooy Tested on Jessie (Debian VM and Kohadevbox) Signed-off-by: Mirko Tietgen Tested in a package installation of master+16749 Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 4ecc98c37f7d8bcdc89f6d6af2042997fce5e42e Author: Marcel de Rooy Date: Fri Feb 10 09:37:13 2017 +0100 Bug 16749: Adjust xmlstarlet calls in koha-functions In various scripts we use xmlstarlet to extract values from koha-conf. If we call xmlstarlet on non-existing entries in koha-conf, this may however result in silently failing scripts (when set -e is in effect). A function run_safe_xmlstarlet is added for situations where the entry might not exist. It will not halt execution. This patch only adjusts koha-functions.sh and modifies the xmlstarlet calls for dev_install and zebra_loglevels. Note: The function does not need to check file existence. If the file does not exist, xmlstarlet warns about it; the function returns empty string, but does not set an error exit status. Test plan: See second patch ("koha-plack adjustments"). Signed-off-by: Marcel de Rooy Signed-off-by: Mirko Tietgen Tested in a package installation of master+16749 Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: debian/docs/koha-translate.xml | 6 +++ debian/scripts/koha-functions.sh | 30 ++++++++++---- debian/scripts/koha-plack | 42 ++++--------------- debian/scripts/koha-translate | 79 +++++++++++++++++++++++++++--------- debian/scripts/koha-upgrade-schema | 12 ++++-- 5 files changed, 102 insertions(+), 67 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 14:42:21 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 13:42:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-462-gf0e7a12 Message-ID: This is an automated email from the git hooks/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 f0e7a120ced84b4577f90d2e1879289c02b69bcd (commit) from c5901cad450e8a869e7b53347cc6dbf4604f7a90 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f0e7a120ced84b4577f90d2e1879289c02b69bcd Author: remi Date: Wed Mar 9 11:48:31 2016 -0500 Bug 16018: Merge.pl code cleanup Original patch from Remi Mayrand-Provencher. Amended by Marcel de Rooy (January 2017), part of omnibus bug 17908. EDIT: We cannot remove the ModAuthority call, since the reference record is the result of the merge and should be saved. Variable $overwrite is not used and can be removed. It is not useful to postpone a merge to the cron job here, since the old authority record is deleted. (Note that bug 9988 will address this subject too.) Removing the call to C4::ImportBatch::SetImportRecordStatus: Since $recordid2 is not an import_record_id, this is useless and potentially wrong. Removed the if statement for @errors, since it is not used at this point; putting the result of a comparison into $error is not useful either. Note: there is a lot of code in merge.pl around breeding that is actually unused. Template tools/manage-marc-import.tt contains two unused blocks final_match_link and match_link that contain a (unreachable) call to authorities/merge.pl with parameters: mergereference=breeding&authid=[% record_lis.match_id %]&authid=[% record_lis.import_record_id %] It seems that this would show the records correctly, but would not merge them correctly since that code expects two authority records. Leaving the signoff of Mehdi since he essentially tested the merge call. Test plan: [1] Restart Plack and restart koha-indexer. (I had some problems related to indexing as a result of the marcxml transition.) [2] Go to Authorities. Select two authorities to merge, start with two of the same type. Make sure that both are used in a few biblio records. Select at least one subfield from the authority to be removed for inclusion in the authority to be kept ("reference record"). [3] Click Merge. You come back to the kept authority record. Note: The number of attached records may not yet be updated. This depends on the speed of koha-indexer. If you wait a bit and refresh, you should have the correct number. First check the authority record again for the inserted subfield. Now check a biblio that was ALREADY attached to the reference record. And check a biblio that was FORMERLY attached to the deleted one. Note: See bug 17913 to see how pref AuthorityMergeMode impacts this. [4] Try steps 2 and 3 again for a merge of two authority records that do not have the same authority type noting the remarks below. For instance try to merge from a CORPO_NAME to a PERSO_NAME record. Make a change in say 040$a of the record to be deleted. And select that field later on the merge form. Normally, you would use the PERSO_NAME framework in the merge now. When checking the authority record, look at 040a. When checking the record that was linked to the CORPO_NAME, check if it contains the PERSO_NAME authority in the correct field (say 100, 600, 700). Signed-off-by: mehdi Signed-off-by: Marcel de Rooy Tested merging PERSO_NAME to PERSO_NAME and PERSO_NAME to CORPO_NAME. Signed-off-by: Julian Maurice Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: authorities/merge.pl | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:38:51 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:38:51 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-463-ga3d2273 Message-ID: This is an automated email from the git hooks/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 a3d2273b3516129eab774e95841a5cb61c8e4580 (commit) from f0e7a120ced84b4577f90d2e1879289c02b69bcd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a3d2273b3516129eab774e95841a5cb61c8e4580 Author: Jonathan Druart Date: Tue Nov 15 10:17:22 2016 +0000 Bug 17627: Move C4::Koha::GetItemTypesByCategory to Koha::ItemTypes C4::Koha::GetItemTypesByCategory can be easily replaced with Koha::ItemTypes->search({ searchcategory => ? }); So let's replace it where it is used. Test plan: Make sure this patch does not break the test plan of bug 10937 Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Koha.pm | 20 +------------------- opac/opac-search.pl | 3 ++- t/db_dependent/Koha.t | 15 ++++++++------- 3 files changed, 11 insertions(+), 27 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:40:16 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:40:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-467-gb6de109 Message-ID: This is an automated email from the git hooks/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 b6de10944c768dcd80f85029c1a068d6b53a12f6 (commit) via 02f781fee06cb9ce8df8940acc2e8833cb57644b (commit) via 39d090a8b6ecb2c97197f839a05c930a36ea6504 (commit) via 51f62ccb302e02b04ca608d382ce343ffd18726e (commit) from a3d2273b3516129eab774e95841a5cb61c8e4580 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b6de10944c768dcd80f85029c1a068d6b53a12f6 Author: Tomas Cohen Arazi Date: Tue Jan 24 10:48:31 2017 -0300 Bug 17932: (followup) Tidy tests This patch makes the tests create its own data instead of searching the DB for a branchcode and a categorycode. It does so on each subtest, because there shouldn't be side effects between subtests. I also wrapped each subtest inside a transaction, for the same reason. To test: - Apply this patch - Run: $ prove t/db_dependent/Koha/Object.t => SUCCESS: Tests return green with this patch - Sign off :-D Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 02f781fee06cb9ce8df8940acc2e8833cb57644b Author: Tomas Cohen Arazi Date: Tue Jan 24 10:41:00 2017 -0300 Bug 17932: Unit tests This patch adds unit tests for the Koha::Object::TO_JSON function. It tests on top of Koha::Patron as Koha::Object needs to be instantiated. To test: - Apply the patch - Run: $ prove -v t/db_dependent/Koha/Object.t => SUCCESS: New tests for TO_JSON are run and return green. - Sign off :-D Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 39d090a8b6ecb2c97197f839a05c930a36ea6504 Author: Tomas Cohen Arazi Date: Mon Jan 23 09:47:54 2017 -0300 Bug 17932: (followup) Fix /patrons endpoint Bug 17927 introduced data type fixes on the /patrons endpoint (integer and boolean types got fixed). This led to the /patrons endpoint not to work because the underlying code didn't provide the right data. With the introduction of TO_JSON on Koha::Object(s) we now have a way to output the proper data types. This patch does so by: - Adding is_boolean => 1 to the relevant columns on the Borrower.pm schema file. - Tweaking the controller class for the /patrons endpoint so it doesn't use the $object(s)->unblessed call but just let the Mojo::JSON library pick out TO_JSON implementation instead on rendering the output. - It adds a new test for booleans. To test: - Have 17927 applied - Run: $ prove t/db_dependent/api/v1/patrons.t => FAIL: Tests fail [1] - Apply this patches - Run: $ prove t/db_dependent/api/v1/patrons.t => SUCCESS: Tests pass! - Sign off! :-D [1] It is self explanatory to just try the API using any of the available tools (I use HttpRequester on Firefox) Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 51f62ccb302e02b04ca608d382ce343ffd18726e Author: Tomas Cohen Arazi Date: Wed Jan 18 15:37:42 2017 -0300 Bug 17932: Add a TO_JSON method to Koha::Object(s) Bug 17927 fixes data types on the current REST endpoints. If you test those endpoints, you will notice trying to access them (for listing or retrieving single objects yields a data type error. Notably on booleans but also on integers. Integers fail due to https://rt.cpan.org/Ticket/Display.html?id=119904 but it needs some global solution until there's a DBD::mysql release backported to the supported distros. There's the option to use http://search.cpan.org/~frew/DBIx-Class-Helpers-2.033002/lib/DBIx/Class/Helper/Row/NumifyGet.pm to get the integer columns fixed as a workaround: __PACKAGE__->add_columns( borrowernumber => { data_type => 'integer', is_nullable => 0, is_numeric => 1, } ); I didn't find bug reports related to this (maybe because we don't use warnings everywhere) But I don't think is worth going such a heavy overhead. A similar situation takes place for Boolean values. They need to be prepared for JSON output. This could have been done using DBIx filters as pointed out by Martin: __PACKAGE__->filter_column( lost => { filter_to_storage => sub { $_[1] ? 1 : 0 }, filter_from_storage => sub { $_[1] ? Mojo::JSON->true : Mojo::JSON->false } } ); but this could have other consequences that are worth exploring on another bug (i.e. it would mean we need to take care of every place where this boolean data is used/set needs to handle this data types nicely. Such would be the case if we were a Mojo-only app, but we aren't. We use Koha::Obect(s) in the whole app. Period. This patch adds the need to specify on the schema files, columns that are actually boolean, because we have no way to detect them for now (i.e. they are all tinyint, but we use tinyint for non-boolean stuff too). So if this patch is accepted, we would need to specify boolean columns like this: __PACKAGE__->add_columns( '+lost' => { is_boolean => 1 } ); This patch adds a TO_JSON method for Koha::Object(s) to be used for serializing Koha::Object-derived objects into JSON strings. To test it (as Koha::Object(s) need to be instantiated) I provide tests on top of the Koha::Patron(s) classes in the followup patches. [1] Yes, we use TINYINT(1) for booleans, but from DBIC's perspective there's no way to read the (1) in runtime. Sponsored-by: ByWater Solutions Signed-off-by: Nick Clemens Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Object.pm | 56 ++++++++++++++++++++++++++++ Koha/Objects.pm | 12 ++++++ Koha/REST/V1/Patron.pm | 4 +- Koha/Schema/Result/Borrower.pm | 5 +++ t/db_dependent/Koha/Object.t | 77 +++++++++++++++++++++++++++++++++++---- t/db_dependent/api/v1/patrons.t | 8 ++-- 6 files changed, 150 insertions(+), 12 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:41:28 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:41:28 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-469-g2877575 Message-ID: This is an automated email from the git hooks/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 2877575ae0a515161b14fcaae41fdf3c66d210f1 (commit) via 16414374aa7e3e8cb6863943646ea57e8128be96 (commit) from b6de10944c768dcd80f85029c1a068d6b53a12f6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2877575ae0a515161b14fcaae41fdf3c66d210f1 Author: Mark Tompsett Date: Mon Jan 9 14:53:11 2017 +0000 Bug 17793: Follow up for identified missing changes I ran: $ git grep -l cat-search.inc | grep admin This means I believe the outstanding ones are (koha-tmpl/intranet-tmpl/prog/en/modules/): - admin/auth_subfields_structure.tt - admin/clone-rules.tt - admin/marc_subfields_structure.tt - admin/searchengine/elasticsearch/mappings.tt One other was recommended by Katrin in comment #9: - plugins/plugins-home.tt Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 16414374aa7e3e8cb6863943646ea57e8128be96 Author: Aleisha Amohia Date: Mon Dec 19 22:56:12 2016 +0000 Bug 17793: Make sysprefs search show on all Admin pages This patch is amended to use the sysprefs search on all Administration pages that do not have their own custom search. To test: 1) Go to Administration 2) Notice Catalogue search at the top - seems out of place. 3) Apply patch and refresh page. 4) Notice admin / sysprefs search now shows and is more appropriate. 5) Confirm searching for sysprefs still works This patch affects the following pages: - admin-home.pl - audio_alerts.pl - authtypes.pl - auth_tag_structure.pl - authorised_values.pl - biblio_framework.pl - marctagstructure.pl - branch_transfer_limits.pl - branches.pl - checkmarc.pl - classsources.pl - columns_settings.pl - didyoumean.pl - edi_accounts.pl - edi_ean_accounts.pl - fieldmapping.pl - item_circulation_alerts.pl - items_search_fields.pl - items_search_field.pl - item_types.pl - koha2marklinks.pl - matching-rules.pl - oai_sets.pl - oai_set_mappings.pl - patron-attr-types.pl - smart-rules.pl - transport-cost-matrix.pl - sms_providers.pl Sponsored-by: Catalyst IT Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/audio_alerts.tt | 2 +- .../intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/authtypes.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/biblio_framework.tt | 2 +- .../intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/classsources.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/clone-rules.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/didyoumean.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_ean_accounts.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/fieldmapping.tt | 2 +- .../intranet-tmpl/prog/en/modules/admin/item_circulation_alerts.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/items_search_field.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/items_search_fields.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/koha2marclinks.tt | 2 +- .../intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/matching-rules.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_set_mappings.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_sets.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt | 2 +- .../prog/en/modules/admin/searchengine/elasticsearch/mappings.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/sms_providers.tt | 2 +- .../intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:42:41 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:42:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-471-gd5446ed Message-ID: This is an automated email from the git hooks/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 d5446ed480283c37598a46271fea6c568e3919b2 (commit) via 8c8b17b114f3a7248634c695a70defed36be7a7a (commit) from 2877575ae0a515161b14fcaae41fdf3c66d210f1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d5446ed480283c37598a46271fea6c568e3919b2 Author: Mark Tompsett Date: Wed Jan 4 16:11:03 2017 +0000 Bug 17846: Remove get_infos_of declaration The function which was removed was still being exported. This removes it completely. Signed-off-by: Mark Tompsett Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall commit 8c8b17b114f3a7248634c695a70defed36be7a7a Author: Jonathan Druart Date: Wed Jan 4 12:39:18 2017 +0100 Bug 17846: Remove C4::Koha::get_infos_of This subroutine does not longer make any senses. The call to get_infos_of can be replaced with $dbh->selectall_hashref. The third argument of this subroutine was never used. Test plan (for developer only): Compare the 2 codes and confirm that they are equivalent Signed-off-by: Mark Tompsett Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Biblio.pm | 3 ++- C4/Items.pm | 3 ++- C4/Koha.pm | 49 ------------------------------------------------- 3 files changed, 4 insertions(+), 51 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:44:51 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:44:51 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-472-g86ec263 Message-ID: This is an automated email from the git hooks/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 86ec263b2d0994ecb53ff283ef246b529d4570e2 (commit) from d5446ed480283c37598a46271fea6c568e3919b2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 86ec263b2d0994ecb53ff283ef246b529d4570e2 Author: Aleisha Amohia Date: Fri Jan 13 00:19:48 2017 +0000 Bug 17895: 'Re-set' typo fix To test: 1) Log into OPAC and go to change your password 2) Enter current password incorrectly and click Submit changes 3) Observe error message and typo 're-set' 4) Apply patch and refresh page 5) May be asked to resend data - if so, click Resend, if not, repeat step 2 6) Observe error message and corrected spelling of 'reset' Sponsored-by: Catalyst IT Signed-off-by: Caitlin Goodger Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-passwd.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:46:26 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:46:26 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-473-ge8420b5 Message-ID: This is an automated email from the git hooks/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 e8420b5d80558a8a74f7f6a1421352dcad2c9c88 (commit) from 86ec263b2d0994ecb53ff283ef246b529d4570e2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e8420b5d80558a8a74f7f6a1421352dcad2c9c88 Author: Aleisha Amohia Date: Mon Jan 23 22:32:39 2017 +0000 Bug 17947: Searching my library first shows the branchcode by the search bar rather than branchname Test Plan 1: Turn on SearchMyLibraryFirst and go into OPAC 2: It should say Search (in Only) 3: Apply patch and refresh page. It should now say Search (in only) Sponsored-by: Catalyst IT Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:50:31 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:50:31 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-474-gad707d0 Message-ID: This is an automated email from the git hooks/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 ad707d027482d5b926df59c1660bc4fdb7670c94 (commit) from e8420b5d80558a8a74f7f6a1421352dcad2c9c88 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ad707d027482d5b926df59c1660bc4fdb7670c94 Author: Jonathan Druart Date: Thu Jan 19 18:03:55 2017 +0100 Bug 17968: Remove useless variable $item_format in C4::Overdues::parse_overdues_letter The variable $item_format is not used and should be removed from this subroutine. Moreover it the letter parameter, but it is never sent to this subroutine. letter_code is expected instead. Test plan: No test plan, just read the code and `git grep ` Signed-off-by: Mark Tompsett Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Overdues.pm | 6 ------ 1 file changed, 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:52:57 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:52:57 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-477-g1c205a2 Message-ID: This is an automated email from the git hooks/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 1c205a2ed5113b2be1f51a883eb4d3cb3d3a6425 (commit) via f5f8aa4a8832a9334c4518191839196e5966387f (commit) via f7eca64f80f811bc4c276b668a8cdd6f378fedb8 (commit) from ad707d027482d5b926df59c1660bc4fdb7670c94 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1c205a2ed5113b2be1f51a883eb4d3cb3d3a6425 Author: Marcel de Rooy Date: Fri Feb 3 08:08:07 2017 +0100 Bug 18036: [QA Follow-up] Descriptions and mock_preference Adjusted a few test descriptions. The test depends on template being set to prog. Made that explicit by adding a mock_preference. If you change the mock to bootstrap, this test will fail. Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit f5f8aa4a8832a9334c4518191839196e5966387f Author: Mark Tompsett Date: Thu Feb 2 12:04:37 2017 -0500 Bug 18036: All 4 cases tested Added theme, lang, and availablethemes tests for all 4 cases. Previously just availablethemes was tested. Signed-off-by: Marcel de Rooy The warns from Mark's additional patch showed all four cases. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit f7eca64f80f811bc4c276b668a8cdd6f378fedb8 Author: Mark Tompsett Date: Thu Feb 2 12:16:01 2017 -0500 Bug 18036: Perlcritic improve t/db_dependent/Templates.t TEST PLAN --------- 1) apply 17982 2) perlcritic -3 t/db_dependent/Templates.t -- messages 3) apply this patch 4) perlcritic -3 t/db_dependent/Templates.t -- OK 5) run koha qa test tools Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Templates.t | 59 +++++++++++++++++++++++++++++++++++--------- 1 file changed, 48 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:53:40 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:53:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-478-g1226d1f Message-ID: This is an automated email from the git hooks/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 1226d1f593014b426ab4cddbcc2cc505be413994 (commit) from 1c205a2ed5113b2be1f51a883eb4d3cb3d3a6425 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1226d1f593014b426ab4cddbcc2cc505be413994 Author: Aleisha Amohia Date: Thu Feb 2 22:58:34 2017 +0000 Bug 18040: Updating buttons in Tools -> Upload local cover image To test: 1) Go to Tools -> Upload local cover image 2) Select an image and click Upload file 3) Notice Process images button looks different to Upload file button 4) Apply patch and refresh page 5) Follow steps 1-3 again and notice the changed styling of the buttons Sponsored-by: Catalyst IT Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 16:54:31 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 15:54:31 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-479-g62cc2bc Message-ID: This is an automated email from the git hooks/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 62cc2bc000b3eab4451965b117264de061b1d61d (commit) from 1226d1f593014b426ab4cddbcc2cc505be413994 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 62cc2bc000b3eab4451965b117264de061b1d61d Author: Julian Maurice Date: Mon Feb 6 14:58:06 2017 +0100 Bug 18063: Remove dead code from tools/manage-marc-import.tt Signed-off-by: Mark Tompsett Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/tools/manage-marc-import.tt | 27 -------------------- 1 file changed, 27 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 18:16:23 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 17:16:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-480-g95525f5 Message-ID: This is an automated email from the git hooks/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 95525f527b8837620ffad1c72344d2218de2a57e (commit) from 62cc2bc000b3eab4451965b117264de061b1d61d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 95525f527b8837620ffad1c72344d2218de2a57e Author: David Cook Date: Mon Feb 13 16:39:41 2017 +1100 Bug 18099 - Put call number in its own column on inventory screen TEST PLAN 0) Apply patch 1) Create an item with a call number in 952$o (e.g. ABC 123) 2) Using the inventory tool, make sure you "Select items you want to check" which include that item (e.g. Item callnumber between: A and C) 3) Click "Submit" 4) The call number appears in the column marked "Call number" instead of appearing as [ABC 123] under the library in the "Library" column Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 18:18:35 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 17:18:35 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-481-g78720b2 Message-ID: This is an automated email from the git hooks/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 78720b20a28bfc7ad5ef40d87ce7e429b4c983d4 (commit) from 95525f527b8837620ffad1c72344d2218de2a57e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 78720b20a28bfc7ad5ef40d87ce7e429b4c983d4 Author: Aleisha Amohia Date: Wed Feb 15 00:03:28 2017 +0000 Bug 7626: Delete multiple tags in OPAC at once This patch removes the individual 'Delete' buttons for every tag as suggested in Comment 0. It adds a checkbox to every tag, with a 'Delete selected tags' button at the bottom of the table. This patch also adds a function to check if any checkboxes have been checked before submitting the form (only works with JS enabled). To test: 1) Find a record in the OPAC and add some tags to it 2) Go to your tags and notice the checkboxes, no more delete buttons for each tag 3) Click 'Delete selected tags' button without selecting any tags 4) Confirm alert shows up. Click OK 5) Select one or more tags and click 'Delete selected tags' button 6) Confirm delete is successful and correct number of deleted tags shows up Sponsored-by: Catalyst IT 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: .../opac-tmpl/bootstrap/en/modules/opac-tags.tt | 34 ++++++++++++++------ 1 file changed, 24 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 18:18:59 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 17:18:59 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-482-g056b16e Message-ID: This is an automated email from the git hooks/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 056b16ead75e09fd260361b0068866154b07e1a0 (commit) from 78720b20a28bfc7ad5ef40d87ce7e429b4c983d4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 056b16ead75e09fd260361b0068866154b07e1a0 Author: Aleisha Amohia Date: Thu Feb 2 23:30:43 2017 +0000 Bug 11932: Move delete checkbox on patron modification to right To test: 1) Go to Tools -> Batch patron modification 2) Put in a user cardnumber and click Continue 3) Notice checkboxes on the left of the input fields 4) Apply patch and refresh page (resend information if prompted) 5) Notice checkboxes on the right of the input fields 6) Confirm they still work as expected Sponsored-by: Catalyst IT NOTE: Why not left before the label? And while functional, is there a pretty align it nicely with all the other checkboxes CSS styling somehow? Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 18:19:23 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 17:19:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-484-g856d7a6 Message-ID: This is an automated email from the git hooks/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 856d7a66230ce6df2770b844d33689380cf7f325 (commit) via c98acf87738aea9588f8a425a85ec20201e93820 (commit) from 056b16ead75e09fd260361b0068866154b07e1a0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 856d7a66230ce6df2770b844d33689380cf7f325 Author: Jonathan Druart Date: Tue Feb 14 13:42:41 2017 +0100 Bug 14405: Remove pagination type, there is no pagination at the OPAC Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit c98acf87738aea9588f8a425a85ec20201e93820 Author: Aleisha Amohia Date: Thu Feb 2 04:16:53 2017 +0000 Bug 14405: Add datatables to fines table in OPAC To test: 1) Apply patch 2) Go to OPAC -> Your account 3) Confirm you can now sort on all columns Sponsored-by: Catalyst IT NOTE: NICE! Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 18:24:33 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 17:24:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-492-gd64e470 Message-ID: This is an automated email from the git hooks/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 d64e4707ff55ef157be22fcda0d81e9fda14aaaa (commit) via 042912ab68d40eed06ee112863b616152d54a1e4 (commit) via 61c752a98b81fcbb2304ad38dc09df12a5daaf87 (commit) via 6c02e5f8dbaf26ed0ac37c896cadc111161f9870 (commit) via 0d55faa9a9f195b4380bce768357cde1acd719d4 (commit) via d1d12fc770c2d6b9a8a2fa62c7162c74229cc190 (commit) via 00c5929c1a6c267ec782d620c867f24749cc122a (commit) via eb26c85b13f0db04693bea5161446ec060ad2016 (commit) from 856d7a66230ce6df2770b844d33689380cf7f325 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d64e4707ff55ef157be22fcda0d81e9fda14aaaa Author: Kyle M Hall Date: Fri Feb 17 17:17:12 2017 +0000 Bug 17453 - DBRev 16.12.00.009 Signed-off-by: Kyle M Hall commit 042912ab68d40eed06ee112863b616152d54a1e4 Author: Nick Clemens Date: Wed Feb 15 20:13:14 2017 +0000 Bug 17453 (QA Followup) Add line break before note message https://bugs.koha-community.org/show_bug.cgi?id=14753 Signed-off-by: Kyle M Hall commit 61c752a98b81fcbb2304ad38dc09df12a5daaf87 Author: Jonathan Druart Date: Fri Feb 10 08:54:39 2017 +0100 Bug 17453: Take into account items that are lost or damaged If all the items are either lost, damaged or checked out, then pickup should be allowed. Signed-off-by: Nick Clemens https://bugs.koha-community.org/show_bug.cgi?id=14753 Signed-off-by: Kyle M Hall commit 6c02e5f8dbaf26ed0ac37c896cadc111161f9870 Author: Jonathan Druart Date: Thu Feb 9 18:46:38 2017 +0100 Bug 17453: Add a visible notification to patron to explain why the hold locations are disabled Signed-off-by: Nick Clemens https://bugs.koha-community.org/show_bug.cgi?id=14753 Signed-off-by: Kyle M Hall commit 0d55faa9a9f195b4380bce768357cde1acd719d4 Author: Jonathan Druart Date: Mon Oct 31 11:16:05 2016 +0000 Bug 17453: Allow pickup at a library where all items are checked out If all items are checked out then it should be possible to select the pickup library for that record. Signed-off-by: Janet McGowan Signed-off-by: Nick Clemens https://bugs.koha-community.org/show_bug.cgi?id=14753 Signed-off-by: Kyle M Hall commit d1d12fc770c2d6b9a8a2fa62c7162c74229cc190 Author: Jonathan Druart Date: Mon Oct 24 09:02:19 2016 +0000 Bug 17453: Add exceptions This patch adds the ability to define patron categories not affected by the behavior of OPACHoldsIfAvailableAtPickup. The new pref OPACHoldsIfAvailableAtPickupExceptions get a list of patron categories (separated by pipes |). Signed-off-by: Nick Clemens https://bugs.koha-community.org/show_bug.cgi?id=14753 Signed-off-by: Kyle M Hall commit 00c5929c1a6c267ec782d620c867f24749cc122a Author: Jonathan Druart Date: Tue Oct 18 14:02:58 2016 +0100 Bug 17453: Inter-site holds improvement At the moment users can reserve items and choose any library as a pick up location, but there is no mechanism to prevent users from reserving items that are available on the shelf at any given location from reserving the item at the same location, essentially creating a Fetch and Collect scenario. This has an impact on staff workloads as they are having to process reservations and check shelves for items that students can already come and collect from the open library shelves. The aim of this enhancement is to decrease the impact on staff workload there should be a restriction in place that prevents users from requesting items for collection at a library where the item is currently available. Implementation: We first tried to add a new circulation rule adding a 4th ?NotIfAvailableAtPickupLibrary? option to "On shelf holds allowed". That would make the development more flexible. But in that case we quickly faced non-trivial problematics: Let's say you have 3 items I1, I2 and I3. The first one has onshelfholds set to Yes and 2 others has it set to ?NotIfAvailableAtPickupLibrary?. What would be the expected behavior if a hold is placed at biblio level? And if a hold is placed at item level for I1? This second point could be answered by reworking the interface to move the libraries dropdown list elsewhere (1 list per item) or by adding a lot of JS code to handle the different situation. But it would be much more complicated to implement. So finally I moved back to the simple approach and added a new pref to handle the behavior globally. Test plan: 0/ Switch off OPACHoldsIfAvailableAtPickup 1/ Let's say you have 3 libraries L1, L2, L3, create 2 items owned by L1 and L2 2/ Place a biblio level hold. You should only be able to pick it up at L3 2/ Place a item level hold. You should only be able to pick it up at L3 3/ Create a third items owned by L3 4/ Now you should not be able to place a hold on this record anymore Sponsored-by: University of the Arts London Signed-off-by: Nick Clemens https://bugs.koha-community.org/show_bug.cgi?id=14753 Signed-off-by: Kyle M Hall commit eb26c85b13f0db04693bea5161446ec060ad2016 Author: Jonathan Druart Date: Tue Oct 18 13:06:55 2016 +0100 Bug 17453: Add pref OPACHoldsIfAvailableAtPickup Signed-off-by: Nick Clemens https://bugs.koha-community.org/show_bug.cgi?id=14753 ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/sysprefs.sql | 2 + installer/data/mysql/updatedatabase.pl | 16 ++++++++ .../en/modules/admin/preferences/circulation.pref | 10 +++++ .../opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 16 +++++++- opac/opac-reserve.pl | 40 ++++++++++++++++++++ 6 files changed, 84 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 17 18:26:24 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 17 Feb 2017 17:26:24 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-493-g830786a Message-ID: This is an automated email from the git hooks/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 830786aba7084698c081a3f7745fe0fe54643c18 (commit) from d64e4707ff55ef157be22fcda0d81e9fda14aaaa (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 830786aba7084698c081a3f7745fe0fe54643c18 Author: Magnus Enger Date: Tue Oct 18 09:47:19 2016 +0000 Bug 17461: Warn about plugins that can't be loaded The logs should have some info if a module has been installed that can not be loaded. To test: - Make sure you have an up to date dev install - Install v1.0 of the KitchenSink plugin from https://github.com/bywatersolutions/koha-plugin-kitchen-sink/releases - Make sure the plugin does not show up in the list of installed plugins, and that the intranet-error.log has no info about it - Apply the patch - Reload plugins-home.pl - Verify that there is now some interesting info in intranet-error.log Signed-off-by: Liz Rea Works as advertised, generates useful diagnostic information in the form of a log entry to either intranet-error or plack-error.log. Relief, thanks Magnus! Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Plugins.pm | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sun Feb 19 22:31:20 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sun, 19 Feb 2017 21:31:20 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.03-61-g083b20d Message-ID: This is an automated email from the git hooks/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 083b20d34ac87e215e20948a0a7d4fe862a872d6 (commit) via d204482b5e801e47bb516ece52f0596cc14c2aea (commit) via 44e4772c428300c45bd477a0fe8cde7d33167a3e (commit) via 37fd4f0becc0f5884983dd1f64bd53a71005c166 (commit) via 41335270815dd88f9678531befef4ee8126baaa1 (commit) via d4bf99e488740201832743bf9e8f5b0e4915902c (commit) via 34eff6378614572735d768824695b104564ce76f (commit) via 7ee00feb7098c6413ae372fda5c03a14ccfbbe2c (commit) via c9ee7be2548bd47dbfe8dc4efb39b60869c36518 (commit) via 6c8aa636cc13e970aa2a3b3b18dc87292ea60ab8 (commit) via 7c4463513433a65ccc8ea0c53a8124f727377a6c (commit) via 7736967c6942c6e5a9cbaf0c4e307485f02704b6 (commit) via 7894a34479b1b3a120938687fbd856be9f756bfc (commit) via e2b22a3195ba0ddf8a80b3ea3bf77f1d9af456fc (commit) from 2cd32363301431b8f9886eb0e60a8ad5160e339a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 083b20d34ac87e215e20948a0a7d4fe862a872d6 Author: root Date: Thu Feb 16 15:00:29 2017 +0100 Bug 17913: [16.11.x] Add syspref to sysprefs.sql See comment 69. commit d204482b5e801e47bb516ece52f0596cc14c2aea Author: Magnus Enger Date: Tue Oct 18 09:47:19 2016 +0000 Bug 17461: Warn about plugins that can't be loaded The logs should have some info if a module has been installed that can not be loaded. To test: - Make sure you have an up to date dev install - Install v1.0 of the KitchenSink plugin from https://github.com/bywatersolutions/koha-plugin-kitchen-sink/releases - Make sure the plugin does not show up in the list of installed plugins, and that the intranet-error.log has no info about it - Apply the patch - Reload plugins-home.pl - Verify that there is now some interesting info in intranet-error.log Signed-off-by: Liz Rea Works as advertised, generates useful diagnostic information in the form of a log entry to either intranet-error or plack-error.log. Relief, thanks Magnus! Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit 830786aba7084698c081a3f7745fe0fe54643c18) Signed-off-by: Katrin Fischer commit 44e4772c428300c45bd477a0fe8cde7d33167a3e Author: Marcel de Rooy Date: Mon Jan 23 11:40:48 2017 +0100 Bug 17950: Merge.t: Improve variable handling at top level This patch does: [1] Remove unused $dbh. [2] Move all mocking statements to one sub. [3] Promote a few lexicals to globals when used in the subtests. Test plan: Run t/db_dependent/Authorities/Merge.t Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett Signed-off-by: Julian Maurice Signed-off-by: Kyle M Hall (cherry picked from commit 849877d8d3bcd3791c624a84ec5e4cb0550fa0fe) Signed-off-by: Katrin Fischer commit 37fd4f0becc0f5884983dd1f64bd53a71005c166 Author: Marcel de Rooy Date: Mon Jan 23 10:44:57 2017 +0100 Bug 17950: Improve quick UNIMARC fix in Merge.t Bug 17909 and 17913 added a quick fix for Merge.t on UNIMARC records. This patch improves that fix with the sub compare_fields, a merge from compare_field_count and compare_field_order. Also it adds the option to test MARC21/UNIMARC by adding a command line switch that triggers mocking the marcflavour preference. The test on a cleared field 609 in strict mode has been broken up in two tests: first a count without 609 and then counting 609s only. Note: Could have mocked GetMarcBiblio too, but decided to go this way. Test plan: [1] Run perl t/db_dependent/Authorities/Merge.t [2] (For UNIMARC users:) Run perl Merge.t -flavour MARC21 [3] (For others:) Run perl Merge.t -flavour UNIMARC Signed-off-by: Marcel de Rooy Signed-off-by: Mark Tompsett Signed-off-by: Julian Maurice Signed-off-by: Kyle M Hall (cherry picked from commit 5d279befed1b6faf829ab0ebd19357dbfc7c576e) Signed-off-by: Katrin Fischer commit 41335270815dd88f9678531befef4ee8126baaa1 Author: Tomas Cohen Arazi Date: Mon Feb 6 16:22:51 2017 -0300 Bug 18068: ES - Fix location and (home|holding)branch facets This patch makes the 'Locations' facet work as expected (i.e. having the same behaviour it has for Zebra: picking the 952$c in MARC21 and 995e for UNIMARC). It also adds the code to handle holding and home library settings for facets and makes the facets show the library name instead of the branch code. The mappings are updated so the labels match what facets.inc expect to work properly. To test: - On master, do a search that returns biblios with items having homebranch set. => FAIL: Under the 'Locations' label on the facets you will notice branchcodes are shown. - Apply the patch - Restart memcached and plack (just in case, it was tricky) - Reset your mappings: http://localhost:8081/cgi-bin/koha/admin/searchengine/elasticsearch/mappings.pl?op=reset&i_know_what_i_am_doing=1 - Restart memcached and plack (again, not sure if needed) - Make sure this mappings are set: homebranch => HomeLibrary holdingbranch => HoldingLibrary (Note: it might not be set due to the place the yaml file is being picked) - Reindex your records: $ sudo koha-shell kohadev k$ cd kohaclone k$ perl misc/search_tools/rebuild_elastic_search.pl -d -v - Repeat the initial search => SUCCESS: 'Location' contains the right stuff, 'Home libraries' and 'Holding libraries' too. - Run k$ prove t/db_dependent/Koha_SearchEngine_Elasticsearch_Search.t => SUCCESS: Tests pass! - Sign off :-D Note: play with the 'DisplayLibraryFacets' syspref options. Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit d115602c9881371d38f3b1c4bda66e979984b218) Signed-off-by: Katrin Fischer commit d4bf99e488740201832743bf9e8f5b0e4915902c Author: Jonathan Druart Date: Thu Feb 2 01:09:38 2017 +0100 Bug 18045: Fix Reserves.t tests - caching issues If the cache has to be cleaned when marc structure is updated. Before this patch, if the age restriction was not mapped, Reserves.t failed with: Tag "" is not a valid tag. at t/db_dependent/Reserves.t line 523. Test plan: Just confirm that the tests still pass and that the changes make sense. Signed-off-by: Marcel de Rooy It seems that only removing the key MarcSubfieldStructure- should be enough, but it does not hurt either to remove those four keys. Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 116301ae473075a6e183beb0027bd3657816b5e6) Signed-off-by: Katrin Fischer commit 34eff6378614572735d768824695b104564ce76f Author: Jonathan Druart Date: Fri Feb 17 10:59:22 2017 +0100 Bug 18136: Fix ExportRemoveFields pre-fill behaviour Looks like it's caused by bug 13190. Variable export_remove_fields is not sent to the template, let's retrieve the syspref's value using the TT plugin. Test plan: Fill ExportRemoveFields with something (100a for instance) Go on a checkout list page At the bottom, the "do not export fields" input box should be pre-filled with the content of the syspref Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit c6e09ca3877ced4afb05ea27175c46aa134dc3b3) Signed-off-by: Katrin Fischer commit 7ee00feb7098c6413ae372fda5c03a14ccfbbe2c Author: Jonathan Druart Date: Wed Feb 15 17:14:11 2017 +0000 Bug 18025: Simplify logic and avoid 1 call to ValidateBorrowernumber Signed-off-by: Liz Rea This is fine with me. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit a471ad80bb70ed790cf7f544a45cdd3e61672ff4) Signed-off-by: Katrin Fischer commit c9ee7be2548bd47dbfe8dc4efb39b60869c36518 Author: Jonathan Druart Date: Wed Feb 15 17:13:41 2017 +0000 Bug 18025: Fix test Signed-off-by: Liz Rea Seems to work fine Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 01f69eb8a258cead5f448c70e1efddc87a341299) Signed-off-by: Katrin Fischer commit 6c8aa636cc13e970aa2a3b3b18dc87292ea60ab8 Author: Liz Rea Date: Tue Jan 31 21:59:01 2017 +0000 Bug 18025 - Expired password recovery links cause sql crash When a user gets an email, but doesn't act or visit it within two days, attempting to create a new one causes a collision. We should just delete the old one, assuming they still want to reset their password. To test: create yourself a borrower with a userid and password. Attempt a password recovery on the OPAC update the entry in the database for that user to have an expired token e.g. update borrower_password_recovery set valid_until = '2017-01-25 03:25:26' where borrowernumber = 12; Attempt another password recovery operation - should error apply the patch Try it again - no error, new token is generated and additional email with new link is sent. Issue reproduced - is resolved by patch Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit e87dab6411a40ae0eba3d56032760d705ef62eaf) Signed-off-by: Katrin Fischer commit 7c4463513433a65ccc8ea0c53a8124f727377a6c Author: Josef Moravec Date: Wed Feb 15 06:52:32 2017 +0000 Bug 18119: Fix comment in cataloguing.js Test plan: Go to cataloging, and try something which depends on javascript - collapse/uncollapse fields, open authority search window, ... -> without patch it is not working -> with patch it is working correctly Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 7698f6453c6c14b4986d573c33f0e49cd73652c6) Signed-off-by: Katrin Fischer commit 7736967c6942c6e5a9cbaf0c4e307485f02704b6 Author: Jonathan Druart Date: Thu Feb 2 10:28:21 2017 +0100 Bug 17988: Add a comment to explain the line Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit e9cd82e4ca754024009608242d7c9930ac248cff) Signed-off-by: Katrin Fischer commit 7894a34479b1b3a120938687fbd856be9f756bfc Author: Jonathan Druart Date: Wed Feb 15 08:11:41 2017 +0000 Bug 17780: Add a comment to explain the line Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 762188646904156e4b1c12bb4d2e04a060674e59) Signed-off-by: Katrin Fischer commit e2b22a3195ba0ddf8a80b3ea3bf77f1d9af456fc Author: Oleg Vasylenko Date: Tue Jan 24 17:58:39 2017 +0200 Bug 17780 - When choose an author in authority results new window shows a blank screen Select2 (Bug 13501) introduced divs and inputs that broke some assumptions about the expected HTML structure. This patch checks if input has name attribute, because some inputs in Select2 have not. To test: Try to add info from the authorities to field that has subfield with Select2 (subfield with authorised values on Koha 16.11+) Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart (cherry picked from commit 444bdcc2a50c64037c0f463200683009d8ae0b6e) Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: Koha/Patron/Password/Recovery.pm | 21 +++- Koha/Plugins.pm | 2 + Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 12 ++- Koha/SearchEngine/Elasticsearch/Search.pm | 6 ++ admin/searchengine/elasticsearch/mappings.yaml | 27 ++++- installer/data/mysql/sysprefs.sql | 1 + .../prog/en/includes/checkouts-table.inc | 2 +- .../authorities/blinddetail-biblio-search.tt | 1 + koha-tmpl/intranet-tmpl/prog/js/cataloging.js | 2 +- opac/opac-password-recovery.pl | 15 +-- t/db_dependent/Authorities/Merge.t | 114 ++++++++++---------- .../Koha_SearchEngine_Elasticsearch_Search.t | 26 ++++- t/db_dependent/Passwordrecovery.t | 43 +++++++- t/db_dependent/Reserves.t | 21 +++- 14 files changed, 217 insertions(+), 76 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 10:14:05 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 09:14:05 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-18-gda8f4e0 Message-ID: This is an automated email from the git hooks/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 da8f4e0aa360733f69fb4038651fc57a748c2b40 (commit) from 03c5625371cca27acb7428b51a6cb0e436259295 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit da8f4e0aa360733f69fb4038651fc57a748c2b40 Author: Luke Honiss Date: Thu Jan 19 02:55:31 2017 +0000 Bug 11450: Hold Request Confirm Deletion ==TEST PLAN== 1) Go to an item with a hold and click on the holds tab on the left 2) Click the red 'X' 3) The hold will be deleted immediately 4) Apply patch 5) Return to an item with a hold and click the 'X' 6) There will now be a confirmation dialog 7) Click cancel and the dialog will disappear and the hold will not be deleted 8) Click OK and the hold will be deleted Restored indentations - Mark Tompsett Signed-off-by: Mark Tompsett Signed-off-by: Christopher Brannon Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 6ce97d9b06843fa65d6fb4a6d7c8cecd322bc8d6) Signed-off-by: Katrin Fischer (cherry picked from commit 2d363f136d8d9c4b35dfac455ea4f877fac7905d) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 10:18:59 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 09:18:59 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-19-g47cd8da Message-ID: This is an automated email from the git hooks/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 47cd8dac59b02f0fcd16bd5bdefa0918e7331349 (commit) from da8f4e0aa360733f69fb4038651fc57a748c2b40 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 47cd8dac59b02f0fcd16bd5bdefa0918e7331349 Author: Jonathan Druart Date: Sat Jan 21 08:48:20 2017 +0100 Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist If NOT_LOAN is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your NOT_LOAN authorised values Go on the item search form => You will not get the JS error and the "Status" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Owen Leonard Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 27a4149625252e4c28dc97df998d82fd6f2652b8) Signed-off-by: Katrin Fischer (cherry picked from commit e0b64c0f4ae29eae1a7c71d3d9e328683aa51317) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/catalogue/itemsearch.tt | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 10:34:15 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 09:34:15 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-20-g973bf93 Message-ID: This is an automated email from the git hooks/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 973bf93c69fb1528e36693c07e9759c7011506ac (commit) from 47cd8dac59b02f0fcd16bd5bdefa0918e7331349 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 973bf93c69fb1528e36693c07e9759c7011506ac Author: Marcel de Rooy Date: Thu Oct 27 15:07:29 2016 +0200 Bug 17512: Improve handling dates in C4::Items This is a follow-up on the internal server error on 0000-00-00 in the items column onloan. This patch deals with preventing to have such dates at all in the date fields of items. It is accomplished by: [1] Adding a (private) subroutine _mod_item_dates. It takes an item hash and replaces date values if needed. [2] AddItem and ModItem call _koha_new_item resp. koha_modify_item. In these routines a call to the new _mod_item_dates is inserted. [3] Although the routine is actually private, I have added some unit tests to Items.t. Test plan: [1] Add a new item. Fill a correct date in dateaccessioned and an invalid date in Price effective from (=replacementpricedate). [2] Verify that dateaccessioned is saved correctly and replacementpricedate is still null (does not contain 0000-00-00). [3] Edit the item again. Fill some text in dateaccessioned and put a correct date in replacementpricedate. Verify the results. [4] Run t/db_dependent/Items.t Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 137cbd8d09be549c9ae97dfad746a9c52d27b9a6) Signed-off-by: Katrin Fischer (cherry picked from commit cb1bc00361bf3e468470b8e1500a4e752e60d161) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 30 ++++++++++++++++++++++++++++ t/db_dependent/Items.t | 52 +++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 81 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 10:36:01 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 09:36:01 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-21-gf7b6770 Message-ID: This is an automated email from the git hooks/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 f7b6770ef12d9fbd441e1ff4eec5d693546d5ae6 (commit) from 973bf93c69fb1528e36693c07e9759c7011506ac (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f7b6770ef12d9fbd441e1ff4eec5d693546d5ae6 Author: Tomas Cohen Arazi Date: Sat Dec 17 09:25:54 2016 -0300 Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Looking at the default framework's fields that are linked to authority records, there's a divergence with the Zebra index definitions. This yields to authority usage count be incorrect for users searching for authority records. MariaDB [koha_kohadev]> SELECT tagfield,tagsubfield,authtypecode FROM marc_subfield_structure WHERE authtypecode IS NOT NULL AND authtypecode<>'' AND frameworkcode='' GROUP BY tagfield,tagsubfield,authtypecode ; +----------+-------------+--------------+ | tagfield | tagsubfield | authtypecode | +----------+-------------+--------------+ | 100 | a | PERSO_NAME | | 110 | a | CORPO_NAME | | 111 | a | MEETI_NAME | | 130 | a | UNIF_TITLE | | 440 | a | UNIF_TITLE | | 600 | a | PERSO_NAME | | 610 | a | CORPO_NAME | | 611 | a | MEETI_NAME | | 630 | a | UNIF_TITLE | | 648 | a | CHRON_TERM | | 650 | a | TOPIC_TERM | | 651 | a | GEOGR_NAME | | 654 | a | TOPIC_TERM | | 655 | a | GENRE/FORM | | 656 | a | TOPIC_TERM | | 657 | a | TOPIC_TERM | | 658 | a | TOPIC_TERM | | 662 | a | GEOGR_NAME | | 690 | a | TOPIC_TERM | | 691 | a | GEOGR_NAME | | 696 | a | PERSO_NAME | | 697 | a | CORPO_NAME | | 698 | a | MEETI_NAME | | 699 | a | UNIF_TITLE | | 700 | a | PERSO_NAME | | 710 | a | CORPO_NAME | | 711 | a | MEETI_NAME | | 730 | a | UNIF_TITLE | | 796 | a | PERSO_NAME | | 797 | a | CORPO_NAME | | 798 | a | MEETI_NAME | | 799 | a | UNIF_TITLE | | 800 | a | PERSO_NAME | | 810 | a | CORPO_NAME | | 811 | a | MEETI_NAME | | 830 | a | UNIF_TITLE | | 896 | a | PERSO_NAME | | 897 | a | CORPO_NAME | | 898 | a | MEETI_NAME | | 899 | a | UNIF_TITLE | +----------+-------------+--------------+ This patch adds the missing ones to the authority number index as it is done for the rest of the fields. To test: - Verify that etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml contains intries pointing the $9 subfield of all the fields in the 'tagfield' column above, to the Koha-Auth-Number:w index. - Sign off :-D Signed-off-by: Hugo Agud Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 21d63c8fb0c2ae3a8ca7caaf0d4041b7189213c3) Signed-off-by: Katrin Fischer (cherry picked from commit c4f977b76f171130d7f9c370ef6e27b6c0fd2384) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../marc21/biblios/biblio-koha-indexdefs.xml | 42 +++++++ .../marc21/biblios/biblio-zebra-indexdefs.xsl | 126 ++++++++++++++++++++ 2 files changed, 168 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 10:38:37 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 09:38:37 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-22-gc7af305 Message-ID: This is an automated email from the git hooks/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 c7af305e73ed8f914b2e32633f38e4b3add74f33 (commit) from f7b6770ef12d9fbd441e1ff4eec5d693546d5ae6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c7af305e73ed8f914b2e32633f38e4b3add74f33 Author: Mason James Date: Sun Jan 29 00:47:20 2017 +1300 Bug 18009 - IssueSlip.t test fails if launched between 00:00 and 00:59 to test patch... 1/ set date between 00:00 and 00:59 $ sudo date -s 'Sun Jan 29 00:41:55 NZDT 2017' 2/ run prove, see fail $ prove -v t/db_dependent/Members/IssueSlip.t ... t/db_dependent/Members/IssueSlip.t (Wstat: 65280 Tests: 1 Failed: 0) Result: FAIL 3/ apply patch 4/ run prove, see pass $ prove -v t/db_dependent/Members/IssueSlip.t ... All tests successful. Result: PASS NOTE: for code obscurity you could have also done a modulus 24. ;) Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit add15799229df7a1910d759f487c0006bf3f30ae) Signed-off-by: Katrin Fischer (cherry picked from commit f45cd420d1bed73b9a85c5260ae4a781041a6626) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Members/IssueSlip.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 10:39:44 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 09:39:44 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-23-gb96ca00 Message-ID: This is an automated email from the git hooks/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 b96ca0028ca0acd2b35ace9012488e41591a0854 (commit) from c7af305e73ed8f914b2e32633f38e4b3add74f33 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b96ca0028ca0acd2b35ace9012488e41591a0854 Author: Magnus Enger Date: Thu Nov 10 14:32:44 2016 +0000 Bug 4126 - Exit bulkmarcimport if -a and -b given Currently it is possible to spceify both --biblios and --authorities as command line switches to bulkmarcimport.pl. This does not make sense so we should exit early and explain that these switches are mutually exclusive. To test: - Run one of these and check that there is no complaint about missing options: perl misc/migration_tools/bulkmarcimport.pl -a -b sudo koha-shell -c "perl misc/migration_tools/bulkmarcimport.pl -a -b" kohadev - Observe that this displays the perldoc, but does not complain about mutually exclusive switches. - Apply the patch - Rerun the command(s) from earlier. - Verify that the script is now halted and a small explanation given. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit dbada67196818834f158890c0c348c0259085f7e) Signed-off-by: Katrin Fischer (cherry picked from commit 83ec31965824b4d632bb62f5569fde430fa3858e) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: misc/migration_tools/bulkmarcimport.pl | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 10:41:12 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 09:41:12 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-24-gf99d9f3 Message-ID: This is an automated email from the git hooks/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 f99d9f347c9d01ef5e6ec48444b40ebb4efd15e6 (commit) from b96ca0028ca0acd2b35ace9012488e41591a0854 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f99d9f347c9d01ef5e6ec48444b40ebb4efd15e6 Author: Zoe Schoeler Date: Wed Jan 18 00:55:43 2017 +0000 Bug 17838 Availability limit broken until an item has been checked out. TEST PLAN 1. Make sure you have no items checked out. 2. Run sudo koha-rebuild-zebra -f -v kohadev. 3. Go to search the catalog and search. 4. Check items availability and then click on limit to currently available items. 5. This should return no results. 6. Apply patch and reload. 7. Results should show. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Attribute 14: " Specifies whether un-indexed fields should be ignored. A zero value (default) throws a diagnostic when an un-indexed field is specified. A non-zero value makes it return 0 hits." From http://www.indexdata.com/zebra/doc/querymodel-zebra.html Signed-off-by: Kyle M Hall (cherry picked from commit 543dc8e0365240441114359b7ddfa74863a318b6) Signed-off-by: Katrin Fischer (cherry picked from commit 448f6f5127812e23e6c9f44dda2e0228b20cb941) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: etc/zebradb/ccl.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 11:02:33 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 10:02:33 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-25-g53c42f3 Message-ID: This is an automated email from the git hooks/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 53c42f32e1badae8bf93cf3c3f95f40ab4a114b6 (commit) from f99d9f347c9d01ef5e6ec48444b40ebb4efd15e6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 53c42f32e1badae8bf93cf3c3f95f40ab4a114b6 Author: Adrien Saurat Date: Thu Dec 13 10:13:19 2012 +0100 Bug 8306: Patrons statistics, fix for patron activity choice The "inactive" for "patron activity" choice is now effective. Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 680e6ce7d1aa53e716ea9fdab9c67e621fb828e2) Signed-off-by: Katrin Fischer (cherry picked from commit 7e3ffc7f87b09c0b33c2f82ba04fee89e789c2d2) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: reports/borrowers_stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 11:09:09 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 10:09:09 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-26-gfc63527 Message-ID: This is an automated email from the git hooks/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 fc63527b2f01357a80198808b2b081b6fce4e58a (commit) from 53c42f32e1badae8bf93cf3c3f95f40ab4a114b6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit fc63527b2f01357a80198808b2b081b6fce4e58a Author: Nick Clemens Date: Fri Feb 3 11:38:53 2017 +0000 Bug 18047 - JavaScript error on item search form unless LOC defined If LOC is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your LOC authorised values Go on the item search form => You will not get the JS error and the "Shelving location" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit da3ccdc14379816ea849eeb56ab321d8e7db59a2) Signed-off-by: Katrin Fischer (cherry picked from commit b441c89f4f71bb6036dcb9d2ac5a4e24392714bc) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/catalogue/itemsearch.tt | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 11:39:19 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 10:39:19 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-27-g99e55b3 Message-ID: This is an automated email from the git hooks/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 99e55b3653f4bbab09b4866ab7b0512efce930f9 (commit) from fc63527b2f01357a80198808b2b081b6fce4e58a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 99e55b3653f4bbab09b4866ab7b0512efce930f9 Author: Mason James Date: Wed Feb 15 16:17:41 2017 +1300 Bug 18026 - URL to database columns link in system preferences is incorrect (3.22.x) Here's a patch for the 3.22.x branch Signed-off-by: Baptiste Wojtkowski ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/admin/preferences/acquisitions.pref | 2 +- .../intranet-tmpl/prog/en/modules/admin/preferences/opac.pref | 4 ++-- .../intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 11:45:32 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 10:45:32 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-28-g7968d5d Message-ID: This is an automated email from the git hooks/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 7968d5d59be0bc3f5bb8ad903c45bd2fc3aefac8 (commit) from 99e55b3653f4bbab09b4866ab7b0512efce930f9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7968d5d59be0bc3f5bb8ad903c45bd2fc3aefac8 Author: Jonathan Druart Date: Fri Feb 17 10:59:22 2017 +0100 Bug 18136: Fix ExportRemoveFields pre-fill behaviour Looks like it's caused by bug 13190. Variable export_remove_fields is not sent to the template, let's retrieve the syspref's value using the TT plugin. Test plan: Fill ExportRemoveFields with something (100a for instance) Go on a checkout list page At the bottom, the "do not export fields" input box should be pre-filled with the content of the syspref Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit c6e09ca3877ced4afb05ea27175c46aa134dc3b3) Signed-off-by: Katrin Fischer (cherry picked from commit 34eff6378614572735d768824695b104564ce76f) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 11:57:27 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 10:57:27 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-36-gbd8c864 Message-ID: This is an automated email from the git hooks/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 bd8c8640921be180a39365af577989b06a1e4cf9 (commit) via d664e362794dcc4911e0b7305ad405248810f649 (commit) via a3a886e7be212a7ddaf0c4df884e4274fe630713 (commit) via 517703acea18f9379f953d99cee1e821e500fe60 (commit) via 8b4f7a7499756b548cfb7e0cfc5bc816602b4296 (commit) via bd5995ee64b627c8decd3f668b3849013e5f9aa2 (commit) via 4127172f676d147f933ea3573d37d66ed827d5d9 (commit) via 40e69f86cb06a7247707d4f0b0375bd344a24e35 (commit) from 7968d5d59be0bc3f5bb8ad903c45bd2fc3aefac8 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bd8c8640921be180a39365af577989b06a1e4cf9 Author: Marcel de Rooy Date: Mon Jan 23 14:06:48 2017 +0100 Bug 17913: [3.22.x] Authority merge fix [PUSHED_17.05] Squashed into one patch for 3.22.x. commit d664e362794dcc4911e0b7305ad405248810f649 Author: Julian Maurice Date: Fri Jan 20 12:16:44 2017 +0100 Bug 17909: QA followup: remove unused var and move global var Signed-off-by: Julian Maurice Signed-off-by: Mason James (cherry picked from commit 1d28489f76a6890b38009e5f5b92ccd1d18051bc) Signed-off-by: Julian Maurice commit a3a886e7be212a7ddaf0c4df884e4274fe630713 Author: Marcel de Rooy Date: Fri Jan 20 11:29:30 2017 +0100 Bug 17909: [Follow-up] Quick fix for UNIMARC UNIMARC inserts field 100. This interferes the field count and order in the test. Note: This is a quick fix. Will polish it after bug 17913. Signed-off-by: Marcel de Rooy Signed-off-by: Julian Maurice Signed-off-by: Mason James (cherry picked from commit db708b9f37378656621e4d73e8a36c146730db5e) Signed-off-by: Julian Maurice commit 517703acea18f9379f953d99cee1e821e500fe60 Author: Josef Moravec Date: Mon Jan 16 13:03:21 2017 +0000 Bug 17909: Followup - fix typos Signed-off-by: Josef Moravec Signed-off-by: Marcel de Rooy EDIT: Adjusted three small typos that did not disturb the test in its current form, but do when we are fixing bugs on bug 17913. Signed-off-by: Josef Moravec Signed-off-by: Julian Maurice Signed-off-by: Mason James (cherry picked from commit f61451ff0ff5ca4bde8f5e1425caf37b501fb8ba) Signed-off-by: Julian Maurice commit 8b4f7a7499756b548cfb7e0cfc5bc816602b4296 Author: Marcel de Rooy Date: Mon Jan 16 12:15:56 2017 +0100 Bug 17909: Additional polishing No spectacular things: [1] Move the framework modifications to a sub. Use same style to create auth types and linked fields. [2] Change some new Object occurrences to Object->new. [3] Add tests for field count and field order in the first two subsets. [4] Few whitespace changes (sorry) and comment lines. Signed-off-by: Marcel de Rooy Signed-off-by: Josef Moravec Signed-off-by: Julian Maurice Signed-off-by: Mason James (cherry picked from commit cac98af1f40c753d094b4f1b69a638455c31d26f) Signed-off-by: Julian Maurice commit bd5995ee64b627c8decd3f668b3849013e5f9aa2 Author: Marcel de Rooy Date: Wed Jan 4 11:15:51 2017 +0100 Bug 17909: Add tests for merging with another authtype Originally aimed for bug 9988. Adjusted in line with other subtests. Will polish the three subtests a little more on a follow-up. Test plan: Run t/db_dependent/Authorities/Merge.t Signed-off-by: Marcel de Rooy Signed-off-by: Josef Moravec Signed-off-by: Julian Maurice Signed-off-by: Mason James (cherry picked from commit 1d8d9161fa0f917e7e974d0fe76ca400e7119658) Signed-off-by: Julian Maurice commit 4127172f676d147f933ea3573d37d66ed827d5d9 Author: mbeaulieu Date: Mon Aug 18 10:04:55 2014 -0400 Bug 17909: Adding tests from bug 11315 Based on original patch from Maxime Beaulieu on bug 11315. Amended by Marcel de Rooy on report 17909. EDIT: Original tests have been adjusted in view of: [1] Test on bug 11315 heavily leaned on DBD::Mock. Since we are using Test::DBIx::Class on such tests now, this would need attention. Moreover, the advantage of mocking the database in this case is at least arguable. [2] Matching the first (somewhat older) subtest of 11700. [3] Simplification and readability. Look e.g. at the use of $MARCto and $MARCfrom on 11315. This made me merge them in the db_dependent counterpart. Also note that this subtest adds another needed test case: the merge from auth1 to modified auth1, while 11700 tested auth1 to auth2. Test plan: Just run t/db_dependent/Authorities/Merge.t Signed-off-by: Marcel de Rooy Signed-off-by: Josef Moravec Signed-off-by: Julian Maurice Signed-off-by: Mason James (cherry picked from commit 7859ea37b2bc2c9ae36b2e2f2907cade573ccaae) Signed-off-by: Julian Maurice commit 40e69f86cb06a7247707d4f0b0375bd344a24e35 Author: Julian Maurice Date: Wed Feb 19 11:31:13 2014 +0100 Bug 17909: Add unit tests for C4::AuthoritiesMarc::merge Original patch from Julian Maurice on bug 11700. With sign offs by: Signed-off-by: Bernardo Gonzalez Kriegel Signed-off-by: Kyle M Hall Amended by Marcel de Rooy on report 17909. EDIT (January 2017): Removed some tests not related to merge. Put remaining tests in a subtest, made them working on current merge. Slightly revised the mocking. Note: I plan to move the zebra retrieval stuff outside merge in one of the next stages, and replace it by calling Koha::SearchEngine. This will reduce mocking complexity here. Test plan: Just run t/db_dependent/Authorities/Merge.t Signed-off-by: Marcel de Rooy Signed-off-by: Josef Moravec Signed-off-by: Julian Maurice Signed-off-by: Mason James (cherry picked from commit 1fb7d9a869987b0e8de6cd7316ee78741a69c65f) Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: C4/AuthoritiesMarc.pm | 101 ++++-- .../en/modules/admin/preferences/authorities.pref | 9 + t/db_dependent/Authorities/Merge.t | 321 ++++++++++++++++++++ 3 files changed, 405 insertions(+), 26 deletions(-) create mode 100755 t/db_dependent/Authorities/Merge.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 12:09:41 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 11:09:41 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.16-38-g7a9d353 Message-ID: This is an automated email from the git hooks/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 7a9d353760312b5710be5667f44cd1f037fb2ae4 (commit) via 11f9f2ecd43ff790121cb086b7d1a60496b18388 (commit) from bd8c8640921be180a39365af577989b06a1e4cf9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7a9d353760312b5710be5667f44cd1f037fb2ae4 Author: Julian Maurice Date: Mon Feb 20 12:01:52 2017 +0100 Update DB rev (3.22.16.001) commit 11f9f2ecd43ff790121cb086b7d1a60496b18388 Author: Fr?d?ric Demians Date: Mon Jan 3 16:32:21 2011 +0200 Bug 17913: Add AuthorityMergeMode preference Original patch from bug 5572, dating back to 2011! Amended by Marcel de Rooy January 2017. Renamed the pref. The fix on this report is based on this preference. Depending on the pref, subfields will be deleted or kept. Test plan: Run the dbrev. Signed-off-by: Marcel de Rooy Signed-off-by: Josef Moravec Signed-off-by: Julian Maurice ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/sysprefs.sql | 1 + installer/data/mysql/updatedatabase.pl | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 13:01:20 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 12:01:20 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.22.17 created. v3.22.17 Message-ID: This is an automated email from the git 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.17 has been created at 2164c5ed0cf1039c615efa9483242121b56b7844 (tag) tagging ccf341a5e66a3b5b25dd685d4c7ec47d9ff7807c (commit) replaces v3.22.16 tagged by Julian Maurice on Mon Feb 20 12:51:13 2017 +0100 - Log ----------------------------------------------------------------- Koha release 3.22.17 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJYqtgxAAoJELCH1RJUPDmpknAQALCXkOoNEjkNeP3ZY+yEy6Qc D8fJ1LNVrrALYODXQaly0qmsHZHjE0hbn/eM7oR/kLKrDs/FmMk8aqlWKc0rVkPw TpAomXGlxk9vBXMPOFSNdesXl44IRJPaZDFyr+PuZWJ5dJ5b6SgKM2yz8ywjOKSJ OKWKScY0VvWa7pn9w/X2kabaJH21vRPME4IWUcgcbbMuT+b/TYPMhbbcCGGrpVCi ZHxJAzG3bIN8WWD9i2pABpNVpaxuvOHCXv05jHyFD1mh+Zy9rTNEfy4hHAVmBQZf whPwHoX6RFegVfwm7v5Wlqi2I+wRkdsXg12LuiBeXcc5kbEA2z6DdotonGeobuD9 F79VR8xXwN7e8rvxNomdyRHmwxgdqZrf9WsOu7zgIarsIP+HCIPQJzyy45w+apwv 4CtpSoYpiankVfI6+IvkeAzzEfpOmwzYwSYVbCNPaaO0MCaIohyebNs0s6eYce3w +5E0Q7fcTMJFaG/HuudUIFOp98tsWfySjS4I8hse05820jCVIvVJXYRhrFLwC3+o cq+6UNEsJ9i95atcNuPwpdDPpmvYlvPUt4lyyWBvjvQWVQJ8kQ+vL/kLUWJGYxjB yXDPUrdmJvEIzTr1RqkjWbwdI6qJk2XRxeBV0pcm9HECttfGpW7VSW9TIfZOOYHr lrNkzaqtRwLhAIDXnFqJ =NaaF -----END PGP SIGNATURE----- Adrien Saurat (1): Bug 8306: Patrons statistics, fix for patron activity choice Blou (2): Bug 15030 - Certain values in serials' items are lost on next edit Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value Chris Nighswonger (1): Bug 18044: Label Batches not displaying David Cook (1): Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ Dobrica Pavlinusic (1): Bug 17775 - Add new user with LDAP not works under Plack Fr?d?ric Demians (1): Bug 17913: Add AuthorityMergeMode preference Jonathan Druart (5): Bug 8361: Do not allow checkouts if no rules are defined Bug 15030: Add tests Bug 18044: Add a test Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist Bug 18136: Fix ExportRemoveFields pre-fill behaviour Josef Moravec (1): Bug 17909: Followup - fix typos Julian Maurice (9): Add missing 'use' in C4/Items.pm Bug 17922: Use correct number of digits when replacing date placeholders Bug 17782: deletedborrowers.updated_on should be set to current timestamp Bug 17909: Add unit tests for C4::AuthoritiesMarc::merge Bug 17909: QA followup: remove unused var and move global var Update DB rev (3.22.16.001) Translation updates for 3.22.17 Update release notes for 3.22.17 Increment version for 3.22.17 Karen Jen (1): Bug 17823: Add label for MARC 583 - Action note Lari Taskula (1): Bug 16387: Fix default shortened loan period time Luke Honiss (1): Bug 11450: Hold Request Confirm Deletion Magnus Enger (1): Bug 4126 - Exit bulkmarcimport if -a and -b given Marcel de Rooy (5): Bug 17512: Improve handling dates in C4::Items Bug 17909: Add tests for merging with another authtype Bug 17909: Additional polishing Bug 17909: [Follow-up] Quick fix for UNIMARC Bug 17913: [3.22.x] Authority merge fix Mason James (2): Bug 18009 - IssueSlip.t test fails if launched between 00:00 and 00:59 Bug 18026 - URL to database columns link in system preferences is incorrect (3.22.x) Nick Clemens (2): Bug 8361 (QA Followup) Add warnings Bug 18047 - JavaScript error on item search form unless LOC defined Tomas Cohen Arazi (2): Bug 17871: (followup) Remove zebra::* from the packages templates Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Zoe Schoeler (1): Bug 17838 Availability limit broken until an item has been checked out. mbeaulieu (1): Bug 17909: Adding tests from bug 11315 radiuscz (2): Bug 17487: Links to "select/clear all" moved below the header tag Bug 17487: Styling moved from style attribute into staff-global.css ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 20 13:01:02 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 20 Feb 2017 12:01:02 +0000 Subject: [koha-commits] main Koha release repository branch 3.22.x updated. v3.22.17 Message-ID: This is an automated email from the git hooks/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 ccf341a5e66a3b5b25dd685d4c7ec47d9ff7807c (commit) via 1d80d1507ac56d90df6a0752330c7f3983d1cd72 (commit) via d389d9c4079185a57525ce5ae6fed989a248886b (commit) from 7a9d353760312b5710be5667f44cd1f037fb2ae4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ccf341a5e66a3b5b25dd685d4c7ec47d9ff7807c Author: Julian Maurice Date: Mon Feb 20 12:50:38 2017 +0100 Increment version for 3.22.17 commit 1d80d1507ac56d90df6a0752330c7f3983d1cd72 Author: Julian Maurice Date: Mon Feb 20 12:50:07 2017 +0100 Update release notes for 3.22.17 commit d389d9c4079185a57525ce5ae6fed989a248886b Author: Julian Maurice Date: Mon Feb 20 12:49:26 2017 +0100 Translation updates for 3.22.17 ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 6 + ...e_notes_3_22_14.md => release_notes_3_22_17.md} | 187 ++--- misc/translator/po/am-Ethi-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/ar-Arab-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/az-AZ-marc-MARC21.po | 289 ++++---- 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 | 626 ++++++++--------- misc/translator/po/be-BY-marc-MARC21.po | 289 ++++---- 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 | 628 ++++++++--------- misc/translator/po/bg-Cyrl-marc-MARC21.po | 289 ++++---- misc/translator/po/bg-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/bg-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/bg-Cyrl-opac-bootstrap.po | 2 +- misc/translator/po/bg-Cyrl-staff-help.po | 2 +- misc/translator/po/bg-Cyrl-staff-prog.po | 624 ++++++++--------- misc/translator/po/bn-IN-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/ca-ES-marc-MARC21.po | 289 ++++---- misc/translator/po/ca-ES-marc-NORMARC.po | 2 +- misc/translator/po/ca-ES-marc-UNIMARC.po | 2 +- misc/translator/po/ca-ES-opac-bootstrap.po | 2 +- misc/translator/po/ca-ES-staff-help.po | 2 +- misc/translator/po/ca-ES-staff-prog.po | 620 ++++++++--------- misc/translator/po/cs-CZ-marc-MARC21.po | 289 ++++---- 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 | 628 ++++++++--------- misc/translator/po/cy-GB-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/da-DK-marc-MARC21.po | 289 ++++---- 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 | 628 ++++++++--------- misc/translator/po/de-CH-marc-MARC21.po | 289 ++++---- 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 | 2 +- misc/translator/po/de-CH-staff-prog.po | 631 ++++++++--------- misc/translator/po/de-DE-marc-MARC21.po | 295 ++++---- 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 | 10 +- misc/translator/po/de-DE-pref.po | 5 +- misc/translator/po/de-DE-staff-help.po | 14 +- misc/translator/po/de-DE-staff-prog.po | 657 +++++++++--------- misc/translator/po/el-GR-marc-MARC21.po | 725 ++++++++++---------- 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 | 2 +- misc/translator/po/el-GR-staff-help.po | 23 +- misc/translator/po/el-GR-staff-prog.po | 637 ++++++++--------- misc/translator/po/en-GB-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/en-NZ-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/eo-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/es-ES-marc-MARC21.po | 297 ++++---- 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 | 13 +- misc/translator/po/es-ES-staff-help.po | 2 +- misc/translator/po/es-ES-staff-prog.po | 643 ++++++++--------- misc/translator/po/eu-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/fa-Arab-marc-MARC21.po | 289 ++++---- 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 | 626 ++++++++--------- misc/translator/po/fi-FI-marc-MARC21.po | 289 ++++---- misc/translator/po/fi-FI-marc-NORMARC.po | 2 +- misc/translator/po/fi-FI-marc-UNIMARC.po | 2 +- misc/translator/po/fi-FI-opac-bootstrap.po | 2 +- misc/translator/po/fi-FI-staff-help.po | 2 +- misc/translator/po/fi-FI-staff-prog.po | 629 ++++++++--------- misc/translator/po/fo-FO-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/fr-CA-marc-MARC21.po | 289 ++++---- 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 | 629 ++++++++--------- misc/translator/po/fr-FR-marc-MARC21.po | 289 ++++---- 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-staff-help.po | 2 +- misc/translator/po/fr-FR-staff-prog.po | 628 ++++++++--------- misc/translator/po/gl-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/he-Hebr-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/hi-marc-MARC21.po | 293 ++++---- misc/translator/po/hi-marc-NORMARC.po | 2 +- misc/translator/po/hi-marc-UNIMARC.po | 2 +- misc/translator/po/hi-opac-bootstrap.po | 2 +- misc/translator/po/hi-pref.po | 7 +- misc/translator/po/hi-staff-help.po | 2 +- misc/translator/po/hi-staff-prog.po | 648 ++++++++--------- misc/translator/po/hr-HR-marc-MARC21.po | 289 ++++---- 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 | 625 ++++++++--------- misc/translator/po/hu-HU-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/hy-Armn-marc-MARC21.po | 289 ++++---- 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 | 5 +- misc/translator/po/hy-Armn-staff-help.po | 2 +- misc/translator/po/hy-Armn-staff-prog.po | 644 ++++++++--------- misc/translator/po/ia-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/id-ID-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/iq-CA-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/is-IS-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/it-IT-marc-MARC21.po | 289 ++++---- 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-pref.po | 5 +- misc/translator/po/it-IT-staff-help.po | 2 +- misc/translator/po/it-IT-staff-prog.po | 633 ++++++++--------- misc/translator/po/iu-CA-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/ja-Jpan-JP-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/ka-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/km-KH-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/kn-Knda-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/ko-Kore-KP-marc-MARC21.po | 289 ++++---- 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-staff-help.po | 2 +- misc/translator/po/ko-Kore-KP-staff-prog.po | 623 ++++++++--------- misc/translator/po/ku-Arab-marc-MARC21.po | 289 ++++---- 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 | 626 ++++++++--------- misc/translator/po/lo-Laoo-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/mi-NZ-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/ml-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/mon-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/mr-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/ms-MY-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/my-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/nb-NO-marc-MARC21.po | 289 ++++---- 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 | 629 ++++++++--------- misc/translator/po/ne-NE-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/nl-BE-marc-MARC21.po | 289 ++++---- misc/translator/po/nl-BE-marc-NORMARC.po | 2 +- misc/translator/po/nl-BE-marc-UNIMARC.po | 2 +- misc/translator/po/nl-BE-opac-bootstrap.po | 2 +- misc/translator/po/nl-BE-pref.po | 5 +- misc/translator/po/nl-BE-staff-help.po | 2 +- misc/translator/po/nl-BE-staff-prog.po | 627 ++++++++--------- misc/translator/po/nl-NL-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/nn-NO-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/oc-marc-NORMARC.po | 2 +- misc/translator/po/pbr-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/pl-PL-marc-MARC21.po | 295 ++++---- misc/translator/po/pl-PL-marc-NORMARC.po | 2 +- 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 | 8 +- misc/translator/po/pl-PL-staff-help.po | 2 +- misc/translator/po/pl-PL-staff-prog.po | 633 ++++++++--------- misc/translator/po/prs-marc-MARC21.po | 289 ++++---- 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 | 623 ++++++++--------- misc/translator/po/pt-BR-marc-MARC21.po | 289 ++++---- 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 | 2 +- misc/translator/po/pt-BR-staff-prog.po | 631 ++++++++--------- misc/translator/po/pt-PT-marc-MARC21.po | 289 ++++---- 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 | 5 +- misc/translator/po/pt-PT-staff-help.po | 2 +- misc/translator/po/pt-PT-staff-prog.po | 633 ++++++++--------- misc/translator/po/ro-RO-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/ru-RU-marc-MARC21.po | 289 ++++---- 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 | 631 ++++++++--------- misc/translator/po/rw-RW-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/sd-PK-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/sk-SK-marc-MARC21.po | 289 ++++---- 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 | 629 ++++++++--------- misc/translator/po/sl-SI-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/sq-AL-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/sr-Cyrl-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/sv-SE-marc-MARC21.po | 289 ++++---- misc/translator/po/sv-SE-marc-NORMARC.po | 2 +- misc/translator/po/sv-SE-marc-UNIMARC.po | 2 +- misc/translator/po/sv-SE-opac-bootstrap.po | 2 +- misc/translator/po/sv-SE-staff-help.po | 2 +- misc/translator/po/sv-SE-staff-prog.po | 628 ++++++++--------- misc/translator/po/sw-KE-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/ta-LK-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/ta-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/tet-marc-MARC21.po | 289 ++++---- 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 | 640 ++++++++--------- misc/translator/po/th-TH-marc-MARC21.po | 289 ++++---- 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 | 627 ++++++++--------- misc/translator/po/tl-PH-marc-MARC21.po | 289 ++++---- 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 | 623 ++++++++--------- misc/translator/po/tr-TR-marc-MARC21.po | 293 ++++---- 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 | 2 +- misc/translator/po/tr-TR-pref.po | 5 +- misc/translator/po/tr-TR-staff-help.po | 2 +- misc/translator/po/tr-TR-staff-prog.po | 643 ++++++++--------- misc/translator/po/uk-UA-marc-MARC21.po | 289 ++++---- 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 | 628 ++++++++--------- misc/translator/po/ur-Arab-marc-MARC21.po | 289 ++++---- 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 | 620 ++++++++--------- misc/translator/po/vi-VN-marc-MARC21.po | 289 ++++---- 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 | 624 ++++++++--------- misc/translator/po/zh-Hans-CN-marc-MARC21.po | 289 ++++---- 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 | 623 ++++++++--------- misc/translator/po/zh-Hans-TW-marc-MARC21.po | 289 ++++---- 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 | 623 ++++++++--------- 487 files changed, 37372 insertions(+), 36324 deletions(-) copy misc/release_notes/{release_notes_3_22_14.md => release_notes_3_22_17.md} (50%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 21:00:35 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 20:00:35 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-495-g1ce61ac Message-ID: This is an automated email from the git hooks/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 1ce61ac6a372783b39a11386018e08d92ccd8f39 (commit) via c12aa9664ca71b38a0b570c71cbc0495ecfb9c0f (commit) from 830786aba7084698c081a3f7745fe0fe54643c18 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1ce61ac6a372783b39a11386018e08d92ccd8f39 Author: Mark Tompsett Date: Sat Feb 18 23:06:16 2017 -0500 Bug 18111: Swap framework_name and frameworkcode With the frameworkcode changed to an empty string, which really is closer to the physical reality, some javascript somewhere breaks. This means the spinner does not appear when you confirm that you wish to import it. TEST PLAN ---------- 1) apply first patch 2) export default framework, doesn't matter format 3) import default framework using that file. 4) answer yes or whatever it is. -- spinner does not appear. 5) apply this patch 6) import default framework use the same file. 7) answer yes or whatever it is. -- spinner does appear. 8) decide if you wish to find and fix the javascript conditions. if yes -- do so, and then obsolete this once you have. if not -- sign this off after running koha qa test tools Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit c12aa9664ca71b38a0b570c71cbc0495ecfb9c0f Author: Jonathan Druart Date: Tue Feb 14 16:21:45 2017 +0000 Bug 18111: Fix import of default framework Caused by bug 16035. Recreate the issue: Go to Home ? Administration ? MARC frameworks For the default framework: Actions > import It will not work Test plan: Confirm test plans from bug 16035 and bug 17389 still pass Confirm that the import for the default framework now works Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: admin/import_export_framework.pl | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 21:01:49 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 20:01:49 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-496-g57666e0 Message-ID: This is an automated email from the git hooks/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 57666e07ac60b32eed137c77e8ea35cbe9b628f3 (commit) from 1ce61ac6a372783b39a11386018e08d92ccd8f39 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 57666e07ac60b32eed137c77e8ea35cbe9b628f3 Author: Jonathan Druart Date: Mon Feb 20 10:49:11 2017 +0100 Bug 18026: Correct URL to database columns from .pref files Recently the DB schema website has been updated. The link to the columns' tables is now http://schema.koha-community.org/master/tables/table.html http://schema.koha-community.org/16_11/tables/table.html http://schema.koha-community.org/16_05/tables/table.html instead of http://schema.koha-community.org/tables/table.html To have a specific schema per Koha version. To avoid fixing this link every release this patch adds a __VERSION__ marker to replace with the $version if stable ($version % 2) or 'master' Test plan: On master, 16.11.x and 16.05.x Search for PatronSelfRegistrationBorrowerUnwantedField, BorrowerMandatoryField and UniqueItemFields Click on the link You should get the correct page This patch WILL NOT WORK on 3.22.x Signed-off-by: Mark Tompsett Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: Koha/Template/Plugin/Koha.pm | 1 + admin/preferences.pl | 9 +++++++++ .../prog/en/modules/admin/preferences/acquisitions.pref | 2 +- .../intranet-tmpl/prog/en/modules/admin/preferences/opac.pref | 6 +++--- .../prog/en/modules/admin/preferences/patrons.pref | 4 ++-- 5 files changed, 16 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 21:02:28 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 20:02:28 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-497-gf9a4f5e Message-ID: This is an automated email from the git hooks/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 f9a4f5edb84b826d9caf16b2221fed79fd7d421e (commit) from 57666e07ac60b32eed137c77e8ea35cbe9b628f3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f9a4f5edb84b826d9caf16b2221fed79fd7d421e Author: Luke Honiss Date: Tue Jan 17 02:27:55 2017 +0000 Bug 17865 'If a subscription has no history end date, it shows as expired today in OPAC' --TEST PLAN-- 1) View a subscription with no history end date 2) Search for an item with a subcription in OPAC 3) Under subscription tab click more details 4) The end date will be the current date 5) Apply patch and refresh 6) The end date will not be shown Signed-off-by: Baptiste Wojtkowski Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Serials.pm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 21:03:05 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 20:03:05 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-499-gde7349e Message-ID: This is an automated email from the git hooks/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 de7349e06af53996d3ae8244bda7f31655340e8a (commit) via 59482c68634fe392b23a39b75fcbae74bbb97c66 (commit) from f9a4f5edb84b826d9caf16b2221fed79fd7d421e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit de7349e06af53996d3ae8244bda7f31655340e8a Author: Caitlin Goodger Date: Thu Jan 19 00:54:24 2017 +0000 Bug 17852 Follow up.Multiple URLs (856) in list email are broken This is a follow-up to my previous patch. This fixes it on the OPAC and the previous one was from the intranet Test Plan 1: Add multiple urls to a biblographic record 2: Add the biblographic record to a list and then email it from the OPAC 3: See that the links are broken and have been merged into one. 4: Apply patch 5: Send the list again and see that the links work Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall commit 59482c68634fe392b23a39b75fcbae74bbb97c66 Author: Caitlin Goodger Date: Tue Jan 17 21:37:49 2017 +0000 Bug 17852; Multiple URLs (856) in list email are broken. Test Plan 1: Add multiple urls to a biblographic record 2: Add the biblographic record to a list and then email it. 3: See that the links are broken and have been merged into one. 4: Apply patch 5: Send the list again and see that the links work Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendshelf.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 21:03:53 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 20:03:53 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-500-gff425d9 Message-ID: This is an automated email from the git hooks/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 ff425d97371ad1bac1a7ef13494dc879a9b417f4 (commit) from de7349e06af53996d3ae8244bda7f31655340e8a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ff425d97371ad1bac1a7ef13494dc879a9b417f4 Author: Aleisha Amohia Date: Tue Feb 14 02:13:33 2017 +0000 Bug 18109: Adding font awesome icon to uncertain prices button To test: 1) Go to Acquisitions -> search for a vendor 2) View a basket with uncertain prices or add an order with uncertain prices to a basket 3) Confirm that font awesome icon is appropriate and button still works as expected Sponsored-by: Catalyst IT Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 21:04:21 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 20:04:21 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-501-g171ef72 Message-ID: This is an automated email from the git hooks/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 171ef729945ad04fefadc16399a5e08833a5ebef (commit) from ff425d97371ad1bac1a7ef13494dc879a9b417f4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 171ef729945ad04fefadc16399a5e08833a5ebef Author: Aleisha Amohia Date: Wed Feb 8 02:07:29 2017 +0000 Bug 18077: Batch item modification link is bold when batch item deletion is active in tools menu To test: 1) Go to Tools -> Batch item deletion 2) Notice the link for Batch item MODIFICATION is bold, not the deletion link 3) Apply patch and refresh page 4) Correct link should now be bold. 5) Go to batch item modification and confirm the correct link is bold Sponsored-by: Catalyst IT Followed test plan, works as expected. Signed-off-by: Marc V?ron Re-tested, works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 21:08:40 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 20:08:40 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-506-ge9d0337 Message-ID: This is an automated email from the git hooks/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 e9d0337f329ea01cd90c2c425f20a57737a76512 (commit) via e7aff8ea0d190bea71ab217806b04832f402833f (commit) via c7a2ef261e4d905c3c4d61f088e1d72681305db3 (commit) via ff3bc31352f25ea51ad0d68055794ab774047017 (commit) via 88aa2ebf9df1ae7780f3af83770c28b1889f86e3 (commit) from 171ef729945ad04fefadc16399a5e08833a5ebef (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e9d0337f329ea01cd90c2c425f20a57737a76512 Author: Kyle M Hall Date: Tue Feb 21 20:01:17 2017 +0000 Bug 16034 - DBRev 16.12.00.010 Signed-off-by: Kyle M Hall commit e7aff8ea0d190bea71ab217806b04832f402833f Author: Srdjan Date: Fri Jul 29 12:42:23 2016 +1200 Bug 16034 follow-up: added WebService::ILS to PerlDependencies Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit c7a2ef261e4d905c3c4d61f088e1d72681305db3 Author: Srdjan Date: Tue Dec 8 19:07:41 2015 +1300 bug_16034 Add overdrive info to the users page in the public interface Signed-off-by: Jesse Weaver Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit ff3bc31352f25ea51ad0d68055794ab774047017 Author: Chris Cormack Date: Tue Aug 18 15:55:51 2015 +1200 bug_16034 Adding a new syspref - OverDriveCirculation If set to true, Opac will integrate OverDrive patron services Signed-off-by: Jesse Weaver Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall commit 88aa2ebf9df1ae7780f3af83770c28b1889f86e3 Author: Srdjan Date: Tue Dec 8 19:06:27 2015 +1300 bug_16034 Koha::ExternalContent::OverDrive - a wrapper around WebService::ILS::Overdrive::Patron * Using the upstream module for all the heavy lifting * opac/external/overdrive/auth.pl - 3-legged authentication handler Signed-off-by: Jesse Weaver Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Installer/PerlDependencies.pm | 5 + Koha.pm | 2 +- Koha/ExternalContent.pm | 101 ++++++ Koha/ExternalContent/OverDrive.pm | 253 +++++++++++++ Koha/Schema/Result/Borrower.pm | 2 + installer/data/mysql/kohastructure.sql | 1 + installer/data/mysql/sysprefs.sql | 1 + installer/data/mysql/updatedatabase.pl | 15 + .../admin/preferences/enhanced_content.pref | 9 + .../bootstrap/en/includes/overdrive-checkout.inc | 19 + .../bootstrap/en/modules/opac-overdrive-search.tt | 17 +- .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 23 ++ koha-tmpl/opac-tmpl/bootstrap/js/overdrive.js | 377 ++++++++++++++++++++ opac/external/overdrive/auth.pl | 56 +++ opac/opac-overdrive-search.pl | 1 + opac/opac-user.pl | 6 + opac/svc/overdrive | 150 ++++++++ t/Koha_ExternalContent_OverDrive.t | 35 ++ 18 files changed, 1070 insertions(+), 3 deletions(-) create mode 100644 Koha/ExternalContent.pm create mode 100644 Koha/ExternalContent/OverDrive.pm create mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/includes/overdrive-checkout.inc create mode 100755 opac/external/overdrive/auth.pl create mode 100755 opac/svc/overdrive create mode 100755 t/Koha_ExternalContent_OverDrive.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 23:00:53 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 22:00:53 +0000 Subject: [koha-commits] main Koha release repository branch 16.11.x updated. v16.11.03-71-g829016f Message-ID: This is an automated email from the git hooks/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 829016f8b7e3bf0b10b26f63e0f02418f5352149 (commit) via d065551cff4bd50091e83fcd4eef05d09182236a (commit) via 4a1b1f1ad769e063f84cb05cac803397d2c7d30c (commit) via 35d4293c3e1183ae0b5923116f3ad92292c97b23 (commit) via 2377b6676fb49101cdffbdb88ecd6be77815e275 (commit) via 76b857475d4e536140b5d6d4cc6eb7e8a4a6c9a3 (commit) via 8970674d9b3430583ea4405ea6ee9c1a439d4c34 (commit) via 097533385ca58926b4dc0b97b9bd445bb4935bd2 (commit) via a96c6dfcccca77d306c193982c73c8110752cd95 (commit) via c4f578bf9769d92bbe9ec3cd10c6623692d53f87 (commit) from 083b20d34ac87e215e20948a0a7d4fe862a872d6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 829016f8b7e3bf0b10b26f63e0f02418f5352149 Author: Katrin Fischer Date: Tue Feb 21 22:50:20 2017 +0100 Add release notes for the 16.11.04 release commit d065551cff4bd50091e83fcd4eef05d09182236a Author: Katrin Fischer Date: Tue Feb 21 22:39:32 2017 +0100 Fix broken ar-Arab staff po file misc/translator/po/ar-Arab-staff-prog.po:8952: 'msgstr' is not a valid C format string, unlike 'msgid'. Reason: The character that terminates the directive number 18 is not a valid conversion specifier. msgfmt: found 1 fatal error 8098 translated messages. commit 4a1b1f1ad769e063f84cb05cac803397d2c7d30c Merge: 2377b66 35d4293 Author: Katrin Fischer Date: Tue Feb 21 22:30:20 2017 +0100 Translation updates for 16.11.04 release Merge remote-tracking branch 'transl/16.11.04-translate-20170221' into 16.11.x commit 35d4293c3e1183ae0b5923116f3ad92292c97b23 Author: root Date: Tue Feb 21 18:22:40 2017 -0300 Translation updates for Koha 16.11.04 commit 2377b6676fb49101cdffbdb88ecd6be77815e275 Author: Katrin Fischer Date: Tue Feb 21 22:20:21 2017 +0100 Increment version for 16.11.04 release commit 76b857475d4e536140b5d6d4cc6eb7e8a4a6c9a3 Author: Caitlin Goodger Date: Thu Jan 19 00:54:24 2017 +0000 Bug 17852 Follow up.Multiple URLs (856) in list email are broken This is a follow-up to my previous patch. This fixes it on the OPAC and the previous one was from the intranet Test Plan 1: Add multiple urls to a biblographic record 2: Add the biblographic record to a list and then email it from the OPAC 3: See that the links are broken and have been merged into one. 4: Apply patch 5: Send the list again and see that the links work Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit de7349e06af53996d3ae8244bda7f31655340e8a) Signed-off-by: Katrin Fischer commit 8970674d9b3430583ea4405ea6ee9c1a439d4c34 Author: Caitlin Goodger Date: Tue Jan 17 21:37:49 2017 +0000 Bug 17852; Multiple URLs (856) in list email are broken. Test Plan 1: Add multiple urls to a biblographic record 2: Add the biblographic record to a list and then email it. 3: See that the links are broken and have been merged into one. 4: Apply patch 5: Send the list again and see that the links work Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 59482c68634fe392b23a39b75fcbae74bbb97c66) Signed-off-by: Katrin Fischer commit 097533385ca58926b4dc0b97b9bd445bb4935bd2 Author: Luke Honiss Date: Tue Jan 17 02:27:55 2017 +0000 Bug 17865 'If a subscription has no history end date, it shows as expired today in OPAC' --TEST PLAN-- 1) View a subscription with no history end date 2) Search for an item with a subcription in OPAC 3) Under subscription tab click more details 4) The end date will be the current date 5) Apply patch and refresh 6) The end date will not be shown Signed-off-by: Baptiste Wojtkowski Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit f9a4f5edb84b826d9caf16b2221fed79fd7d421e) Signed-off-by: Katrin Fischer commit a96c6dfcccca77d306c193982c73c8110752cd95 Author: Mark Tompsett Date: Sat Feb 18 23:06:16 2017 -0500 Bug 18111: Swap framework_name and frameworkcode With the frameworkcode changed to an empty string, which really is closer to the physical reality, some javascript somewhere breaks. This means the spinner does not appear when you confirm that you wish to import it. TEST PLAN ---------- 1) apply first patch 2) export default framework, doesn't matter format 3) import default framework using that file. 4) answer yes or whatever it is. -- spinner does not appear. 5) apply this patch 6) import default framework use the same file. 7) answer yes or whatever it is. -- spinner does appear. 8) decide if you wish to find and fix the javascript conditions. if yes -- do so, and then obsolete this once you have. if not -- sign this off after running koha qa test tools Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit 1ce61ac6a372783b39a11386018e08d92ccd8f39) Signed-off-by: Katrin Fischer commit c4f578bf9769d92bbe9ec3cd10c6623692d53f87 Author: Jonathan Druart Date: Tue Feb 14 16:21:45 2017 +0000 Bug 18111: Fix import of default framework Caused by bug 16035. Recreate the issue: Go to Home ? Administration ? MARC frameworks For the default framework: Actions > import It will not work Test plan: Confirm test plans from bug 16035 and bug 17389 still pass Confirm that the import for the default framework now works Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit c12aa9664ca71b38a0b570c71cbc0495ecfb9c0f) Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: C4/Serials.pm | 8 +- Koha.pm | 2 +- admin/import_export_framework.pl | 19 +- installer/data/mysql/updatedatabase.pl | 6 + .../prog/en/modules/virtualshelves/sendshelf.tt | 2 +- .../bootstrap/en/modules/opac-sendshelf.tt | 2 +- ...s_16_11_02.html => release_notes_16_11_04.html} | 311 +- misc/release_notes/release_notes_16_11_04.md | 387 +++ misc/translator/po/am-Ethi-marc-MARC21.po | 289 +- misc/translator/po/am-Ethi-marc-NORMARC.po | 2 +- misc/translator/po/am-Ethi-marc-UNIMARC.po | 2 +- misc/translator/po/am-Ethi-opac-bootstrap.po | 2 +- misc/translator/po/am-Ethi-pref.po | 28 +- misc/translator/po/am-Ethi-staff-help.po | 2 +- misc/translator/po/am-Ethi-staff-prog.po | 2279 ++++++++------- misc/translator/po/ar-Arab-marc-MARC21.po | 293 +- 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-pref.po | 71 +- misc/translator/po/ar-Arab-staff-help.po | 10 +- misc/translator/po/ar-Arab-staff-prog.po | 2337 +++++++-------- misc/translator/po/as-IN-marc-MARC21.po | 289 +- misc/translator/po/as-IN-marc-NORMARC.po | 2 +- misc/translator/po/as-IN-marc-UNIMARC.po | 2 +- misc/translator/po/as-IN-opac-bootstrap.po | 2 +- misc/translator/po/as-IN-pref.po | 28 +- misc/translator/po/as-IN-staff-help.po | 2 +- misc/translator/po/as-IN-staff-prog.po | 2275 ++++++++------- misc/translator/po/az-AZ-marc-MARC21.po | 289 +- misc/translator/po/az-AZ-marc-NORMARC.po | 2 +- misc/translator/po/az-AZ-marc-UNIMARC.po | 2 +- misc/translator/po/az-AZ-opac-bootstrap.po | 2 +- misc/translator/po/az-AZ-pref.po | 32 +- misc/translator/po/az-AZ-staff-help.po | 2 +- misc/translator/po/az-AZ-staff-prog.po | 2281 ++++++++------- misc/translator/po/be-BY-marc-MARC21.po | 289 +- misc/translator/po/be-BY-marc-NORMARC.po | 2 +- misc/translator/po/be-BY-marc-UNIMARC.po | 2 +- misc/translator/po/be-BY-opac-bootstrap.po | 2 +- misc/translator/po/be-BY-pref.po | 34 +- misc/translator/po/be-BY-staff-help.po | 2 +- misc/translator/po/be-BY-staff-prog.po | 2283 ++++++++------- misc/translator/po/bg-Cyrl-marc-MARC21.po | 289 +- misc/translator/po/bg-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/bg-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/bg-Cyrl-opac-bootstrap.po | 2 +- misc/translator/po/bg-Cyrl-pref.po | 32 +- misc/translator/po/bg-Cyrl-staff-help.po | 2 +- misc/translator/po/bg-Cyrl-staff-prog.po | 2279 ++++++++------- misc/translator/po/bn-IN-marc-MARC21.po | 289 +- misc/translator/po/bn-IN-marc-NORMARC.po | 2 +- misc/translator/po/bn-IN-marc-UNIMARC.po | 2 +- misc/translator/po/bn-IN-opac-bootstrap.po | 2 +- misc/translator/po/bn-IN-pref.po | 32 +- misc/translator/po/bn-IN-staff-help.po | 2 +- misc/translator/po/bn-IN-staff-prog.po | 2279 ++++++++------- misc/translator/po/ca-ES-marc-MARC21.po | 289 +- misc/translator/po/ca-ES-marc-NORMARC.po | 2 +- misc/translator/po/ca-ES-marc-UNIMARC.po | 2 +- misc/translator/po/ca-ES-opac-bootstrap.po | 2 +- misc/translator/po/ca-ES-pref.po | 28 +- misc/translator/po/ca-ES-staff-help.po | 2 +- misc/translator/po/ca-ES-staff-prog.po | 2275 ++++++++------- misc/translator/po/cs-CZ-marc-MARC21.po | 299 +- misc/translator/po/cs-CZ-marc-NORMARC.po | 12 +- misc/translator/po/cs-CZ-marc-UNIMARC.po | 2 +- misc/translator/po/cs-CZ-opac-bootstrap.po | 2 +- misc/translator/po/cs-CZ-pref.po | 76 +- misc/translator/po/cs-CZ-staff-help.po | 53 +- misc/translator/po/cs-CZ-staff-prog.po | 2348 +++++++-------- misc/translator/po/cy-GB-marc-MARC21.po | 289 +- 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-pref.po | 28 +- misc/translator/po/cy-GB-staff-help.po | 2 +- misc/translator/po/cy-GB-staff-prog.po | 2275 ++++++++------- misc/translator/po/da-DK-marc-MARC21.po | 292 +- 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 | 22 +- misc/translator/po/da-DK-pref.po | 36 +- misc/translator/po/da-DK-staff-help.po | 2 +- misc/translator/po/da-DK-staff-prog.po | 2282 ++++++++------- misc/translator/po/de-CH-marc-MARC21.po | 293 +- 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-pref.po | 70 +- misc/translator/po/de-CH-staff-help.po | 9 +- misc/translator/po/de-CH-staff-prog.po | 2318 +++++++-------- misc/translator/po/de-DE-marc-MARC21.po | 295 +- 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 | 2 +- misc/translator/po/de-DE-pref.po | 72 +- misc/translator/po/de-DE-staff-help.po | 19 +- misc/translator/po/de-DE-staff-prog.po | 2332 +++++++-------- misc/translator/po/el-GR-marc-MARC21.po | 700 ++--- misc/translator/po/el-GR-marc-NORMARC.po | 2 +- misc/translator/po/el-GR-marc-UNIMARC.po | 44 +- misc/translator/po/el-GR-opac-bootstrap.po | 47 +- misc/translator/po/el-GR-pref.po | 76 +- misc/translator/po/el-GR-staff-help.po | 10 +- misc/translator/po/el-GR-staff-prog.po | 2379 +++++++-------- misc/translator/po/en-GB-marc-MARC21.po | 289 +- misc/translator/po/en-GB-marc-NORMARC.po | 2 +- misc/translator/po/en-GB-marc-UNIMARC.po | 2 +- misc/translator/po/en-GB-opac-bootstrap.po | 2 +- misc/translator/po/en-GB-pref.po | 32 +- misc/translator/po/en-GB-staff-help.po | 2 +- misc/translator/po/en-GB-staff-prog.po | 2279 ++++++++------- misc/translator/po/en-NZ-marc-MARC21.po | 289 +- misc/translator/po/en-NZ-marc-NORMARC.po | 2 +- misc/translator/po/en-NZ-marc-UNIMARC.po | 2 +- misc/translator/po/en-NZ-opac-bootstrap.po | 2 +- misc/translator/po/en-NZ-pref.po | 40 +- misc/translator/po/en-NZ-staff-help.po | 2 +- misc/translator/po/en-NZ-staff-prog.po | 2285 ++++++++------- misc/translator/po/eo-marc-MARC21.po | 289 +- misc/translator/po/eo-marc-NORMARC.po | 2 +- misc/translator/po/eo-marc-UNIMARC.po | 2 +- misc/translator/po/eo-opac-bootstrap.po | 63 +- misc/translator/po/eo-pref.po | 28 +- misc/translator/po/eo-staff-help.po | 2 +- misc/translator/po/eo-staff-prog.po | 2279 ++++++++------- misc/translator/po/es-ES-marc-MARC21.po | 297 +- 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 | 76 +- misc/translator/po/es-ES-staff-help.po | 42 +- misc/translator/po/es-ES-staff-prog.po | 2319 +++++++-------- misc/translator/po/eu-marc-MARC21.po | 289 +- misc/translator/po/eu-marc-NORMARC.po | 2 +- misc/translator/po/eu-marc-UNIMARC.po | 2 +- misc/translator/po/eu-opac-bootstrap.po | 2 +- misc/translator/po/eu-pref.po | 28 +- misc/translator/po/eu-staff-help.po | 2 +- misc/translator/po/eu-staff-prog.po | 2279 ++++++++------- misc/translator/po/fa-Arab-marc-MARC21.po | 289 +- misc/translator/po/fa-Arab-marc-NORMARC.po | 2 +- misc/translator/po/fa-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/fa-Arab-opac-bootstrap.po | 2 +- misc/translator/po/fa-Arab-pref.po | 36 +- misc/translator/po/fa-Arab-staff-help.po | 2 +- misc/translator/po/fa-Arab-staff-prog.po | 2281 ++++++++------- misc/translator/po/fi-FI-marc-MARC21.po | 295 +- misc/translator/po/fi-FI-marc-NORMARC.po | 2 +- misc/translator/po/fi-FI-marc-UNIMARC.po | 2 +- misc/translator/po/fi-FI-opac-bootstrap.po | 2 +- misc/translator/po/fi-FI-pref.po | 70 +- misc/translator/po/fi-FI-staff-help.po | 2 +- misc/translator/po/fi-FI-staff-prog.po | 2315 +++++++-------- misc/translator/po/fo-FO-marc-MARC21.po | 289 +- misc/translator/po/fo-FO-marc-NORMARC.po | 2 +- misc/translator/po/fo-FO-marc-UNIMARC.po | 2 +- misc/translator/po/fo-FO-opac-bootstrap.po | 2 +- misc/translator/po/fo-FO-pref.po | 28 +- misc/translator/po/fo-FO-staff-help.po | 2 +- misc/translator/po/fo-FO-staff-prog.po | 2275 ++++++++------- misc/translator/po/fr-CA-marc-MARC21.po | 297 +- misc/translator/po/fr-CA-marc-NORMARC.po | 2 +- misc/translator/po/fr-CA-marc-UNIMARC.po | 2 +- misc/translator/po/fr-CA-opac-bootstrap.po | 2 +- misc/translator/po/fr-CA-pref.po | 40 +- misc/translator/po/fr-CA-staff-help.po | 2 +- misc/translator/po/fr-CA-staff-prog.po | 2306 +++++++-------- misc/translator/po/fr-FR-marc-MARC21.po | 289 +- 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 | 40 +- misc/translator/po/fr-FR-staff-help.po | 2 +- misc/translator/po/fr-FR-staff-prog.po | 2293 ++++++++------- misc/translator/po/gl-marc-MARC21.po | 289 +- misc/translator/po/gl-marc-NORMARC.po | 2 +- misc/translator/po/gl-marc-UNIMARC.po | 2 +- misc/translator/po/gl-opac-bootstrap.po | 2 +- misc/translator/po/gl-pref.po | 32 +- misc/translator/po/gl-staff-help.po | 2 +- misc/translator/po/gl-staff-prog.po | 2275 ++++++++------- misc/translator/po/he-Hebr-marc-MARC21.po | 289 +- misc/translator/po/he-Hebr-marc-NORMARC.po | 2 +- misc/translator/po/he-Hebr-marc-UNIMARC.po | 2 +- misc/translator/po/he-Hebr-opac-bootstrap.po | 2 +- misc/translator/po/he-Hebr-pref.po | 28 +- misc/translator/po/he-Hebr-staff-help.po | 2 +- misc/translator/po/he-Hebr-staff-prog.po | 2275 ++++++++------- misc/translator/po/hi-marc-MARC21.po | 293 +- misc/translator/po/hi-marc-NORMARC.po | 2 +- misc/translator/po/hi-marc-UNIMARC.po | 10 +- misc/translator/po/hi-opac-bootstrap.po | 2 +- misc/translator/po/hi-pref.po | 68 +- misc/translator/po/hi-staff-help.po | 10 +- misc/translator/po/hi-staff-prog.po | 2328 +++++++-------- misc/translator/po/hr-HR-marc-MARC21.po | 289 +- misc/translator/po/hr-HR-marc-NORMARC.po | 2 +- misc/translator/po/hr-HR-marc-UNIMARC.po | 2 +- misc/translator/po/hr-HR-opac-bootstrap.po | 2 +- misc/translator/po/hr-HR-pref.po | 28 +- misc/translator/po/hr-HR-staff-help.po | 2 +- misc/translator/po/hr-HR-staff-prog.po | 2277 ++++++++------- misc/translator/po/hu-HU-marc-MARC21.po | 3039 ++++++++++---------- 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 | 1493 +++++----- misc/translator/po/hu-HU-pref.po | 32 +- misc/translator/po/hu-HU-staff-help.po | 2 +- misc/translator/po/hu-HU-staff-prog.po | 2275 ++++++++------- misc/translator/po/hy-Armn-marc-MARC21.po | 293 +- misc/translator/po/hy-Armn-marc-NORMARC.po | 2 +- misc/translator/po/hy-Armn-marc-UNIMARC.po | 42 +- misc/translator/po/hy-Armn-opac-bootstrap.po | 364 +-- misc/translator/po/hy-Armn-pref.po | 515 ++-- misc/translator/po/hy-Armn-staff-help.po | 2 +- misc/translator/po/hy-Armn-staff-prog.po | 2287 ++++++++------- misc/translator/po/ia-marc-MARC21.po | 289 +- 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-pref.po | 28 +- misc/translator/po/ia-staff-help.po | 2 +- misc/translator/po/ia-staff-prog.po | 2275 ++++++++------- misc/translator/po/id-ID-marc-MARC21.po | 289 +- misc/translator/po/id-ID-marc-NORMARC.po | 2 +- misc/translator/po/id-ID-marc-UNIMARC.po | 2 +- misc/translator/po/id-ID-opac-bootstrap.po | 2 +- misc/translator/po/id-ID-pref.po | 32 +- misc/translator/po/id-ID-staff-help.po | 2 +- misc/translator/po/id-ID-staff-prog.po | 2279 ++++++++------- misc/translator/po/iq-CA-marc-MARC21.po | 289 +- 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-pref.po | 28 +- misc/translator/po/iq-CA-staff-help.po | 2 +- misc/translator/po/iq-CA-staff-prog.po | 2275 ++++++++------- misc/translator/po/is-IS-marc-MARC21.po | 289 +- misc/translator/po/is-IS-marc-NORMARC.po | 2 +- misc/translator/po/is-IS-marc-UNIMARC.po | 2 +- misc/translator/po/is-IS-opac-bootstrap.po | 2 +- misc/translator/po/is-IS-pref.po | 32 +- misc/translator/po/is-IS-staff-help.po | 2 +- misc/translator/po/is-IS-staff-prog.po | 2275 ++++++++------- misc/translator/po/it-IT-marc-MARC21.po | 293 +- 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-pref.po | 58 +- misc/translator/po/it-IT-staff-help.po | 2 +- misc/translator/po/it-IT-staff-prog.po | 2319 +++++++-------- misc/translator/po/iu-CA-marc-MARC21.po | 289 +- 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-pref.po | 28 +- misc/translator/po/iu-CA-staff-help.po | 2 +- misc/translator/po/iu-CA-staff-prog.po | 2275 ++++++++------- misc/translator/po/ja-Jpan-JP-marc-MARC21.po | 289 +- misc/translator/po/ja-Jpan-JP-marc-NORMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-marc-UNIMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-opac-bootstrap.po | 2 +- misc/translator/po/ja-Jpan-JP-pref.po | 28 +- misc/translator/po/ja-Jpan-JP-staff-help.po | 2 +- misc/translator/po/ja-Jpan-JP-staff-prog.po | 2275 ++++++++------- misc/translator/po/ka-marc-MARC21.po | 289 +- misc/translator/po/ka-marc-NORMARC.po | 2 +- misc/translator/po/ka-marc-UNIMARC.po | 2 +- misc/translator/po/ka-opac-bootstrap.po | 2 +- misc/translator/po/ka-pref.po | 28 +- misc/translator/po/ka-staff-help.po | 2 +- misc/translator/po/ka-staff-prog.po | 2275 ++++++++------- misc/translator/po/km-KH-marc-MARC21.po | 289 +- misc/translator/po/km-KH-marc-NORMARC.po | 2 +- misc/translator/po/km-KH-marc-UNIMARC.po | 2 +- misc/translator/po/km-KH-opac-bootstrap.po | 2 +- misc/translator/po/km-KH-pref.po | 28 +- misc/translator/po/km-KH-staff-help.po | 2 +- misc/translator/po/km-KH-staff-prog.po | 2275 ++++++++------- misc/translator/po/kn-Knda-marc-MARC21.po | 289 +- misc/translator/po/kn-Knda-marc-NORMARC.po | 2 +- misc/translator/po/kn-Knda-marc-UNIMARC.po | 2 +- misc/translator/po/kn-Knda-opac-bootstrap.po | 2 +- misc/translator/po/kn-Knda-pref.po | 28 +- misc/translator/po/kn-Knda-staff-help.po | 2 +- misc/translator/po/kn-Knda-staff-prog.po | 2279 ++++++++------- misc/translator/po/ko-Kore-KP-marc-MARC21.po | 289 +- 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 | 36 +- misc/translator/po/ko-Kore-KP-staff-help.po | 2 +- misc/translator/po/ko-Kore-KP-staff-prog.po | 2279 ++++++++------- misc/translator/po/ku-Arab-marc-MARC21.po | 289 +- misc/translator/po/ku-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ku-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ku-Arab-opac-bootstrap.po | 2 +- misc/translator/po/ku-Arab-pref.po | 32 +- misc/translator/po/ku-Arab-staff-help.po | 2 +- misc/translator/po/ku-Arab-staff-prog.po | 2281 ++++++++------- misc/translator/po/lo-Laoo-marc-MARC21.po | 289 +- misc/translator/po/lo-Laoo-marc-NORMARC.po | 2 +- misc/translator/po/lo-Laoo-marc-UNIMARC.po | 2 +- misc/translator/po/lo-Laoo-opac-bootstrap.po | 2 +- misc/translator/po/lo-Laoo-pref.po | 32 +- misc/translator/po/lo-Laoo-staff-help.po | 2 +- misc/translator/po/lo-Laoo-staff-prog.po | 2279 ++++++++------- misc/translator/po/mi-NZ-marc-MARC21.po | 289 +- misc/translator/po/mi-NZ-marc-NORMARC.po | 2 +- misc/translator/po/mi-NZ-marc-UNIMARC.po | 2 +- misc/translator/po/mi-NZ-opac-bootstrap.po | 2 +- misc/translator/po/mi-NZ-pref.po | 28 +- misc/translator/po/mi-NZ-staff-help.po | 2 +- misc/translator/po/mi-NZ-staff-prog.po | 2275 ++++++++------- misc/translator/po/ml-marc-MARC21.po | 289 +- misc/translator/po/ml-marc-NORMARC.po | 2 +- misc/translator/po/ml-marc-UNIMARC.po | 2 +- misc/translator/po/ml-opac-bootstrap.po | 2 +- misc/translator/po/ml-pref.po | 28 +- misc/translator/po/ml-staff-help.po | 2 +- misc/translator/po/ml-staff-prog.po | 2275 ++++++++------- misc/translator/po/mon-marc-MARC21.po | 289 +- misc/translator/po/mon-marc-NORMARC.po | 2 +- misc/translator/po/mon-marc-UNIMARC.po | 2 +- misc/translator/po/mon-opac-bootstrap.po | 2 +- misc/translator/po/mon-pref.po | 32 +- misc/translator/po/mon-staff-help.po | 2 +- misc/translator/po/mon-staff-prog.po | 2279 ++++++++------- misc/translator/po/mr-marc-MARC21.po | 289 +- misc/translator/po/mr-marc-NORMARC.po | 2 +- misc/translator/po/mr-marc-UNIMARC.po | 2 +- misc/translator/po/mr-opac-bootstrap.po | 2 +- misc/translator/po/mr-pref.po | 32 +- misc/translator/po/mr-staff-help.po | 2 +- misc/translator/po/mr-staff-prog.po | 2279 ++++++++------- misc/translator/po/ms-MY-marc-MARC21.po | 289 +- misc/translator/po/ms-MY-marc-NORMARC.po | 2 +- misc/translator/po/ms-MY-marc-UNIMARC.po | 2 +- misc/translator/po/ms-MY-opac-bootstrap.po | 2 +- misc/translator/po/ms-MY-pref.po | 32 +- misc/translator/po/ms-MY-staff-help.po | 2 +- misc/translator/po/ms-MY-staff-prog.po | 2279 ++++++++------- misc/translator/po/my-marc-MARC21.po | 289 +- 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-pref.po | 28 +- misc/translator/po/my-staff-help.po | 2 +- misc/translator/po/my-staff-prog.po | 2275 ++++++++------- misc/translator/po/nb-NO-marc-MARC21.po | 289 +- 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-pref.po | 36 +- misc/translator/po/nb-NO-staff-help.po | 2 +- misc/translator/po/nb-NO-staff-prog.po | 2288 ++++++++------- misc/translator/po/ne-NE-marc-MARC21.po | 289 +- misc/translator/po/ne-NE-marc-NORMARC.po | 2 +- misc/translator/po/ne-NE-marc-UNIMARC.po | 2 +- misc/translator/po/ne-NE-opac-bootstrap.po | 2 +- misc/translator/po/ne-NE-pref.po | 28 +- misc/translator/po/ne-NE-staff-help.po | 2 +- misc/translator/po/ne-NE-staff-prog.po | 2279 ++++++++------- misc/translator/po/nl-BE-marc-MARC21.po | 289 +- misc/translator/po/nl-BE-marc-NORMARC.po | 2 +- misc/translator/po/nl-BE-marc-UNIMARC.po | 2 +- misc/translator/po/nl-BE-opac-bootstrap.po | 2 +- misc/translator/po/nl-BE-pref.po | 36 +- misc/translator/po/nl-BE-staff-help.po | 2 +- misc/translator/po/nl-BE-staff-prog.po | 2279 ++++++++------- misc/translator/po/nl-NL-marc-MARC21.po | 289 +- misc/translator/po/nl-NL-marc-NORMARC.po | 2 +- misc/translator/po/nl-NL-marc-UNIMARC.po | 2 +- misc/translator/po/nl-NL-opac-bootstrap.po | 2 +- misc/translator/po/nl-NL-pref.po | 32 +- misc/translator/po/nl-NL-staff-help.po | 2 +- misc/translator/po/nl-NL-staff-prog.po | 2279 ++++++++------- misc/translator/po/nn-NO-marc-MARC21.po | 289 +- misc/translator/po/nn-NO-marc-NORMARC.po | 2 +- misc/translator/po/nn-NO-marc-UNIMARC.po | 2 +- misc/translator/po/nn-NO-opac-bootstrap.po | 2 +- misc/translator/po/nn-NO-pref.po | 32 +- misc/translator/po/nn-NO-staff-help.po | 2 +- misc/translator/po/nn-NO-staff-prog.po | 2279 ++++++++------- misc/translator/po/oc-marc-MARC21.po | 289 +- misc/translator/po/oc-marc-NORMARC.po | 2 +- misc/translator/po/oc-marc-UNIMARC.po | 2 +- misc/translator/po/oc-opac-bootstrap.po | 2 +- misc/translator/po/oc-pref.po | 36 +- misc/translator/po/oc-staff-help.po | 2 +- misc/translator/po/oc-staff-prog.po | 2285 ++++++++------- misc/translator/po/pbr-marc-MARC21.po | 289 +- misc/translator/po/pbr-marc-NORMARC.po | 2 +- misc/translator/po/pbr-marc-UNIMARC.po | 2 +- misc/translator/po/pbr-opac-bootstrap.po | 2 +- misc/translator/po/pbr-pref.po | 32 +- misc/translator/po/pbr-staff-help.po | 2 +- misc/translator/po/pbr-staff-prog.po | 2275 ++++++++------- misc/translator/po/pl-PL-marc-MARC21.po | 295 +- misc/translator/po/pl-PL-marc-NORMARC.po | 2 +- 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 | 40 +- misc/translator/po/pl-PL-staff-help.po | 2 +- misc/translator/po/pl-PL-staff-prog.po | 2298 +++++++-------- misc/translator/po/prs-marc-MARC21.po | 289 +- misc/translator/po/prs-marc-NORMARC.po | 2 +- misc/translator/po/prs-marc-UNIMARC.po | 2 +- misc/translator/po/prs-opac-bootstrap.po | 2 +- misc/translator/po/prs-pref.po | 36 +- misc/translator/po/prs-staff-help.po | 2 +- misc/translator/po/prs-staff-prog.po | 2275 ++++++++------- misc/translator/po/pt-BR-marc-MARC21.po | 289 +- 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-pref.po | 36 +- misc/translator/po/pt-BR-staff-help.po | 2 +- misc/translator/po/pt-BR-staff-prog.po | 2290 ++++++++------- misc/translator/po/pt-PT-marc-MARC21.po | 289 +- 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 | 22 +- misc/translator/po/pt-PT-pref.po | 46 +- misc/translator/po/pt-PT-staff-help.po | 32 +- misc/translator/po/pt-PT-staff-prog.po | 2350 +++++++-------- misc/translator/po/ro-RO-marc-MARC21.po | 289 +- misc/translator/po/ro-RO-marc-NORMARC.po | 2 +- misc/translator/po/ro-RO-marc-UNIMARC.po | 2 +- misc/translator/po/ro-RO-opac-bootstrap.po | 2 +- misc/translator/po/ro-RO-pref.po | 32 +- misc/translator/po/ro-RO-staff-help.po | 2 +- misc/translator/po/ro-RO-staff-prog.po | 2275 ++++++++------- misc/translator/po/ru-RU-marc-MARC21.po | 289 +- misc/translator/po/ru-RU-marc-NORMARC.po | 2 +- misc/translator/po/ru-RU-marc-UNIMARC.po | 2 +- misc/translator/po/ru-RU-opac-bootstrap.po | 2 +- misc/translator/po/ru-RU-pref.po | 34 +- misc/translator/po/ru-RU-staff-help.po | 2 +- misc/translator/po/ru-RU-staff-prog.po | 2283 ++++++++------- misc/translator/po/rw-RW-marc-MARC21.po | 289 +- misc/translator/po/rw-RW-marc-NORMARC.po | 2 +- misc/translator/po/rw-RW-marc-UNIMARC.po | 2 +- misc/translator/po/rw-RW-opac-bootstrap.po | 2 +- misc/translator/po/rw-RW-pref.po | 28 +- misc/translator/po/rw-RW-staff-help.po | 2 +- misc/translator/po/rw-RW-staff-prog.po | 2275 ++++++++------- misc/translator/po/sd-PK-marc-MARC21.po | 289 +- misc/translator/po/sd-PK-marc-NORMARC.po | 2 +- misc/translator/po/sd-PK-marc-UNIMARC.po | 2 +- misc/translator/po/sd-PK-opac-bootstrap.po | 2 +- misc/translator/po/sd-PK-pref.po | 32 +- misc/translator/po/sd-PK-staff-help.po | 2 +- misc/translator/po/sd-PK-staff-prog.po | 2279 ++++++++------- misc/translator/po/sk-SK-marc-MARC21.po | 289 +- 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-pref.po | 40 +- misc/translator/po/sk-SK-staff-help.po | 2 +- misc/translator/po/sk-SK-staff-prog.po | 2304 +++++++-------- misc/translator/po/sl-SI-marc-MARC21.po | 289 +- misc/translator/po/sl-SI-marc-NORMARC.po | 2 +- misc/translator/po/sl-SI-marc-UNIMARC.po | 2 +- misc/translator/po/sl-SI-opac-bootstrap.po | 2 +- misc/translator/po/sl-SI-pref.po | 34 +- misc/translator/po/sl-SI-staff-help.po | 2 +- misc/translator/po/sl-SI-staff-prog.po | 2275 ++++++++------- misc/translator/po/sq-AL-marc-MARC21.po | 289 +- misc/translator/po/sq-AL-marc-NORMARC.po | 2 +- misc/translator/po/sq-AL-marc-UNIMARC.po | 2 +- misc/translator/po/sq-AL-opac-bootstrap.po | 2 +- misc/translator/po/sq-AL-pref.po | 32 +- misc/translator/po/sq-AL-staff-help.po | 2 +- misc/translator/po/sq-AL-staff-prog.po | 2279 ++++++++------- misc/translator/po/sr-Cyrl-marc-MARC21.po | 289 +- misc/translator/po/sr-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/sr-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/sr-Cyrl-opac-bootstrap.po | 2 +- misc/translator/po/sr-Cyrl-pref.po | 32 +- misc/translator/po/sr-Cyrl-staff-help.po | 2 +- misc/translator/po/sr-Cyrl-staff-prog.po | 2279 ++++++++------- misc/translator/po/sv-SE-marc-MARC21.po | 289 +- misc/translator/po/sv-SE-marc-NORMARC.po | 2 +- misc/translator/po/sv-SE-marc-UNIMARC.po | 2 +- misc/translator/po/sv-SE-opac-bootstrap.po | 2 +- misc/translator/po/sv-SE-pref.po | 40 +- misc/translator/po/sv-SE-staff-help.po | 2 +- misc/translator/po/sv-SE-staff-prog.po | 2292 ++++++++------- misc/translator/po/sw-KE-marc-MARC21.po | 289 +- misc/translator/po/sw-KE-marc-NORMARC.po | 2 +- misc/translator/po/sw-KE-marc-UNIMARC.po | 2 +- misc/translator/po/sw-KE-opac-bootstrap.po | 2 +- misc/translator/po/sw-KE-pref.po | 28 +- misc/translator/po/sw-KE-staff-help.po | 2 +- misc/translator/po/sw-KE-staff-prog.po | 2275 ++++++++------- misc/translator/po/ta-LK-marc-MARC21.po | 289 +- misc/translator/po/ta-LK-marc-NORMARC.po | 2 +- misc/translator/po/ta-LK-marc-UNIMARC.po | 2 +- misc/translator/po/ta-LK-opac-bootstrap.po | 2 +- misc/translator/po/ta-LK-pref.po | 32 +- misc/translator/po/ta-LK-staff-help.po | 2 +- misc/translator/po/ta-LK-staff-prog.po | 2275 ++++++++------- misc/translator/po/ta-marc-MARC21.po | 289 +- misc/translator/po/ta-marc-NORMARC.po | 2 +- misc/translator/po/ta-marc-UNIMARC.po | 2 +- misc/translator/po/ta-opac-bootstrap.po | 2 +- misc/translator/po/ta-pref.po | 28 +- misc/translator/po/ta-staff-help.po | 2 +- misc/translator/po/ta-staff-prog.po | 2275 ++++++++------- misc/translator/po/tet-marc-MARC21.po | 289 +- misc/translator/po/tet-marc-NORMARC.po | 2 +- misc/translator/po/tet-marc-UNIMARC.po | 2 +- misc/translator/po/tet-opac-bootstrap.po | 52 +- misc/translator/po/tet-pref.po | 32 +- misc/translator/po/tet-staff-help.po | 2 +- misc/translator/po/tet-staff-prog.po | 2375 +++++++-------- misc/translator/po/th-TH-marc-MARC21.po | 289 +- misc/translator/po/th-TH-marc-NORMARC.po | 2 +- misc/translator/po/th-TH-marc-UNIMARC.po | 2 +- misc/translator/po/th-TH-opac-bootstrap.po | 2 +- misc/translator/po/th-TH-pref.po | 32 +- misc/translator/po/th-TH-staff-help.po | 2 +- misc/translator/po/th-TH-staff-prog.po | 2279 ++++++++------- misc/translator/po/tl-PH-marc-MARC21.po | 289 +- misc/translator/po/tl-PH-marc-NORMARC.po | 2 +- misc/translator/po/tl-PH-marc-UNIMARC.po | 2 +- misc/translator/po/tl-PH-opac-bootstrap.po | 2 +- misc/translator/po/tl-PH-pref.po | 36 +- misc/translator/po/tl-PH-staff-help.po | 2 +- misc/translator/po/tl-PH-staff-prog.po | 2275 ++++++++------- misc/translator/po/tr-TR-marc-MARC21.po | 293 +- 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 | 2 +- misc/translator/po/tr-TR-pref.po | 69 +- misc/translator/po/tr-TR-staff-help.po | 9 +- misc/translator/po/tr-TR-staff-prog.po | 2316 +++++++-------- misc/translator/po/uk-UA-marc-MARC21.po | 289 +- 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 | 40 +- misc/translator/po/uk-UA-pref.po | 192 +- misc/translator/po/uk-UA-staff-help.po | 14 +- misc/translator/po/uk-UA-staff-prog.po | 2916 ++++++++++--------- misc/translator/po/ur-Arab-marc-MARC21.po | 289 +- misc/translator/po/ur-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ur-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ur-Arab-opac-bootstrap.po | 2 +- misc/translator/po/ur-Arab-pref.po | 32 +- misc/translator/po/ur-Arab-staff-help.po | 2 +- misc/translator/po/ur-Arab-staff-prog.po | 2275 ++++++++------- misc/translator/po/vi-VN-marc-MARC21.po | 289 +- misc/translator/po/vi-VN-marc-NORMARC.po | 2 +- misc/translator/po/vi-VN-marc-UNIMARC.po | 2 +- misc/translator/po/vi-VN-opac-bootstrap.po | 2 +- misc/translator/po/vi-VN-pref.po | 36 +- misc/translator/po/vi-VN-staff-help.po | 2 +- misc/translator/po/vi-VN-staff-prog.po | 2278 ++++++++------- misc/translator/po/zh-Hans-CN-marc-MARC21.po | 289 +- 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-pref.po | 36 +- misc/translator/po/zh-Hans-CN-staff-help.po | 2 +- misc/translator/po/zh-Hans-CN-staff-prog.po | 2281 ++++++++------- misc/translator/po/zh-Hans-TW-marc-MARC21.po | 293 +- 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-pref.po | 57 +- misc/translator/po/zh-Hans-TW-staff-help.po | 2 +- misc/translator/po/zh-Hans-TW-staff-prog.po | 2307 +++++++-------- 575 files changed, 113585 insertions(+), 106484 deletions(-) copy misc/release_notes/{release_notes_16_11_02.html => release_notes_16_11_04.html} (56%) create mode 100644 misc/release_notes/release_notes_16_11_04.md hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 21 23:09:08 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 21 Feb 2017 22:09:08 +0000 Subject: [koha-commits] main Koha release repository annotated tag v16.11.04 created. v16.11.04 Message-ID: This is an automated email from the git 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.04 has been created at 5fcca886f0a1d22882b53e3b4848ff6181f03dc9 (tag) tagging 829016f8b7e3bf0b10b26f63e0f02418f5352149 (commit) replaces v16.11.03 tagged by Katrin Fischer on Tue Feb 21 22:58:46 2017 +0100 - Log ----------------------------------------------------------------- Koha release 16.11.04 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJYrLgWAAoJEB+uyDM6ADoAXXoQAJqXSDMFObBBxRfUab2kQo7F zpMiSMzqa4iPlaycwFE89p/I6yHKib8od903ZN3wjSMSM+HktkiedDkB55V2TRf7 Yb6bvFp1F22U8tRW2NtO+ZOVSaTGHzk7o4rqtEgNnBcEEdE3dJp69NQvplbxghjk Wen8p8UmDjMyNpEk5ICq4Tr3sD4EfP3ml17eIX6Ql9J+FPa1rp9JaJhVWcFUR59Y aidyvd+hVDsAqYXKgh1+/z1B2CZTKGxZ8gt4ZZQCjGxb0BfDmmybg46gxbhgWNf7 ybBuSa1g0/i2KlYH6f/JAW/B+IaSs7PYc6X7npdmpEUNHWerQavrMrFtYAaX7mZ7 UMyNDzRFLWBCCcj2RO+Izpvi6zNTLXtvRULFYd3RMx0aXA+2dbtw3IHk69rA5BWn TVVlZpdP/CCw/JrOtBOayg2lESQTSNg8jSqjv3wnbvrI3TkwjDCjwwTi8pd0v787 AwvkFuTHBBm++Q5wewX3m7XTCyaS6IblwaBpYrQVim1YICacrr9uqC2RFDX+IQ7t mdELyz+AD/0/yhkQfcI7fSvH7novTR9y7cDkvt2U+oMAqpiCOm6FR2mgjPcJKzfk fLUr/+OVj2NA8y+t9WScCJL79YM/3mHvT316LJm40akIszhi+wMSctZdnq6ZMYWr tHreQUEkoL7BfLdYMzTF =6o0M -----END PGP SIGNATURE----- Adrien Saurat (1): Bug 8306: Patrons statistics, fix for patron activity choice Blou (2): Bug 15030 - Certain values in serials' items are lost on next edit Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value Caitlin Goodger (2): Bug 17852; Multiple URLs (856) in list email are broken. Bug 17852 Follow up.Multiple URLs (856) in list email are broken Chloe (1): Bug 15584 - Staff client list errors are incorrectly styled Chris Nighswonger (1): Bug 18044: Label Batches not displaying David Cook (1): Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ Dobrica Pavlinusic (1): Bug 17775 - Add new user with LDAP not works under Plack Emma (1): Bug 17134: Replace item types codes with category in facets (opac) Jonathan Druart (20): Bug 8361: Do not allow checkouts if no rules are defined Bug 17726: TestBuilder - Add default values Bug 7533: Add the template_cache_dir entry to koha-conf.xml Bug 7533: Add a warning to the about page if template_cache_dir is not set Bug 15030: Add tests Bug 18044: Add a test Bug 17782: Fix tests Bug 17731: Remove noxml option from rebuild_zebra.pl Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist Bug 18076: Replace holds_to_place_count with an input type=text Bug 17940: (follow-up 14695) Fix - Mark holds as waiting when transfer is done Bug 16984: Do not clone the item block for standing orders Bug 18089: Remove warnings from tests using DBIx::Class fixtures Bug 17780: Add a comment to explain the line Bug 17988: Add a comment to explain the line Bug 18025: Fix test Bug 18025: Simplify logic and avoid 1 call to ValidateBorrowernumber Bug 18136: Fix ExportRemoveFields pre-fill behaviour Bug 18045: Fix Reserves.t tests - caching issues Bug 18111: Fix import of default framework Josef Moravec (2): Bug 17913: [16.11.x] followup Bug 18119: Fix comment in cataloguing.js Julian Maurice (1): Bug 17922: Use correct number of digits when replacing date placeholders Karen Jen (1): Bug 17823: Add label for MARC 583 - Action note Katrin Fischer (5): Bug 17913: Database update - Add system preference AuthorityMergeMode Increment version for 16.11.04 release Translation updates for 16.11.04 release Fix broken ar-Arab staff po file Add release notes for the 16.11.04 release Kyle M Hall (2): Bug 18089 - Unit test Bug 18089 - All XSLT testing singleBranchMode = 0 fails to show even if install has only 1 branch Lari Taskula (1): Bug 16387: Fix default shortened loan period time Liz Rea (1): Bug 18025 - Expired password recovery links cause sql crash Luke Honiss (2): Bug 11450: Hold Request Confirm Deletion Bug 17865 'If a subscription has no history end date, it shows as expired today in OPAC' Magnus Enger (2): Bug 4126 - Exit bulkmarcimport if -a and -b given Bug 17461: Warn about plugins that can't be loaded Marc V?ron (1): Bug 18095: Batch item modification: Better message if no item is modified Marcel de Rooy (5): Bug 17726: [QA Follow-up] Add test descriptions Bug 17512: Improve handling dates in C4::Items Bug 17913: [16.11.x] Authority merge fix Bug 17950: Improve quick UNIMARC fix in Merge.t Bug 17950: Merge.t: Improve variable handling at top level Mark Tompsett (1): Bug 18111: Swap framework_name and frameworkcode Mason James (2): Bug 18009 - IssueSlip.t test fails if launched between 00:00 and 00:59 Bug 18026 - URL to database columns link in system preferences is incorrect (16.11.x) Mirko Tietgen (1): Bug 18015 - On shelf holds allowed > "If all unavailable" ignores notforloan Nick Clemens (4): Bug 8361 (QA Followup) Add warnings Bug 17782 - Patron updated_on field should be set to current timestamp when borrower is deleted Bug 17782 - (QA Followup) Bug 18047 - JavaScript error on item search form unless LOC defined Oleg Vasylenko (2): Bug 17988 - Select2 prevents correct tag expand/minimize functionality Bug 17780 - When choose an author in authority results new window shows a blank screen Tomas Cohen Arazi (3): Bug 17871: (followup) Remove zebra::* from the packages templates Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Bug 18068: ES - Fix location and (home|holding)branch facets Zoe Schoeler (1): Bug 17838 Availability limit broken until an item has been checked out. radiuscz (2): Bug 17487: Links to "select/clear all" moved below the header tag Bug 17487: Styling moved from style attribute into staff-global.css root (2): Bug 17913: [16.11.x] Add syspref to sysprefs.sql Translation updates for Koha 16.11.04 ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 22 22:48:17 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 22 Feb 2017 21:48:17 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.09-52-g089e20c Message-ID: This is an automated email from the git hooks/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 089e20c2be205daf2e3ee0c02d474d38ba367e48 (commit) via bf65b7a44d137a343d25049373119ef19c73cd4c (commit) via e914a29788a1a85399a135d3cfd19ef9ee6f5a28 (commit) via bcbd75fba2bc69b3aa26672db16d350a09d48c25 (commit) via 8b096e91f1c07ba0295ef3fdc700eefb7d3a9834 (commit) via 3b4e164903ec532ad616d7e9021719bbd00b292e (commit) via 07eefd02ba363c6072b6370e4360a91360e31ab2 (commit) via 4b2944a00c72d3d02a6102001eb39e56ac9e4883 (commit) via 9703b41636dd541c33394ebc9af7e14307a3b96c (commit) via b9d734cbfa4a9ff673a456ac85874806ee19a260 (commit) via 93b5758da8460aa343ce74849ae43c81893903b8 (commit) via 474fbf5f5622836f3a2275085a566b2f410090ab (commit) via ef92d9668c2fe8827ec46a80b2a0c2792eaeb7b7 (commit) via ae7de6f6844118f75ca0ac39bbdb1df488a90f3a (commit) via 1c3c5301818444d8f0210bb5864cd4974cb5bcac (commit) via bbd88a3b66c5119b8499beee05840912b6dfb190 (commit) via de1dab30d9aa55e5fa2e26d892a5ce16620b3f4a (commit) via 21d2f333dd0ff1616a48a1941403431f2b56c501 (commit) via 0b0e87a935b60e19d380ec383c7c6309f543247c (commit) via 208e72a16b8ee79f1da0f24fe0af4e070acf73af (commit) via ed6163d27e38ba0e627ae3ab26c90ad85ab154c8 (commit) via 5dc3abda9d5c3139176875714cf3c5e370aa00b6 (commit) via 6be4253e46a8e8f9c67e1cef5174c1827b3994aa (commit) via c0dab6268c9e5de68c645d3016cd439f49c81ec8 (commit) via 6578da5a481454bf38db5a273b6c466d8d91806d (commit) via 14b0f64e79e861e97426709a2a7aedd0feccb449 (commit) via 0ac1c9e32148a9bdca96ea62d4b5616ba4a2f974 (commit) via 53eef191ebd1848316c0969196e63dfd185cf419 (commit) via 6c1d46b8e847939e88d381aaccbe6b96634f7dd5 (commit) via a82baadf1a7a86a09838fea7f176d0380f675c2f (commit) via b676bed5309622ea78e199ef8ac8a8f121a7cba8 (commit) via 7c95ea4e3734861b77313bd0940eb51b69740abb (commit) via f17f8b0b69a58b9c09be0ac2ceee824d71cc2de2 (commit) via 1822828e66282774385201515489867224eef170 (commit) via 6de8a6e2a222aee483733259463fd8f389474292 (commit) via eb2524132b61f681f9e4d8fa06d295d634e1093e (commit) via f9da3f0a3633bef170826abfb638f3bde42ab2a5 (commit) via 6434d8ca70af41c7e2b624230f0661011b133281 (commit) via 8408817f43d6a45dbd091e65427f1f72c76f47ce (commit) via 6ab35b1a79ec8a984b83c59d78cefbcccfc2bd1f (commit) via 41d82f8e25c9a59569c114103186e187bd04c776 (commit) via 33997fddddba92915fe79c08681aa7a1e9443116 (commit) via 2a0eba4bb611992617428c124891ee04ef276a96 (commit) via 91994ffb700051fa2230a5cbe97b3ce1dd877262 (commit) via e021d93c311d96bc90dee390419f1f3c456608f7 (commit) via b1151b0f4f0065ab1ad6f2c06f091bc7ed7f7e1d (commit) via d222c3eee7a6a4e52ccb56fa1bf43e4c007f6265 (commit) via 3fc942a518f35bfe406dcae3757ce8c70cf4c3c6 (commit) from 49f87321d7702878498d7ef76109a47ffc4a6b1c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 089e20c2be205daf2e3ee0c02d474d38ba367e48 Author: Mason James Date: Thu Feb 23 10:37:19 2017 +1300 Increment version for 16.05.10 release commit bf65b7a44d137a343d25049373119ef19c73cd4c Author: Mason James Date: Thu Feb 23 04:46:59 2017 +1300 Translation updates for Koha 16.05.10 Signed-off-by: Mason James commit e914a29788a1a85399a135d3cfd19ef9ee6f5a28 Author: Caitlin Goodger Date: Thu Jan 19 00:54:24 2017 +0000 Bug 17852 Follow up.Multiple URLs (856) in list email are broken This is a follow-up to my previous patch. This fixes it on the OPAC and the previous one was from the intranet Test Plan 1: Add multiple urls to a biblographic record 2: Add the biblographic record to a list and then email it from the OPAC 3: See that the links are broken and have been merged into one. 4: Apply patch 5: Send the list again and see that the links work Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit bcbd75fba2bc69b3aa26672db16d350a09d48c25 Author: Caitlin Goodger Date: Tue Jan 17 21:37:49 2017 +0000 Bug 17852; Multiple URLs (856) in list email are broken. Test Plan 1: Add multiple urls to a biblographic record 2: Add the biblographic record to a list and then email it. 3: See that the links are broken and have been merged into one. 4: Apply patch 5: Send the list again and see that the links work Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 8b096e91f1c07ba0295ef3fdc700eefb7d3a9834 Author: Luke Honiss Date: Tue Jan 17 02:27:55 2017 +0000 Bug 17865 'If a subscription has no history end date, it shows as expired today in OPAC' --TEST PLAN-- 1) View a subscription with no history end date 2) Search for an item with a subcription in OPAC 3) Under subscription tab click more details 4) The end date will be the current date 5) Apply patch and refresh 6) The end date will not be shown Signed-off-by: Baptiste Wojtkowski Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 3b4e164903ec532ad616d7e9021719bbd00b292e Author: Mark Tompsett Date: Sat Feb 18 23:06:16 2017 -0500 Bug 18111: Swap framework_name and frameworkcode With the frameworkcode changed to an empty string, which really is closer to the physical reality, some javascript somewhere breaks. This means the spinner does not appear when you confirm that you wish to import it. TEST PLAN ---------- 1) apply first patch 2) export default framework, doesn't matter format 3) import default framework using that file. 4) answer yes or whatever it is. -- spinner does not appear. 5) apply this patch 6) import default framework use the same file. 7) answer yes or whatever it is. -- spinner does appear. 8) decide if you wish to find and fix the javascript conditions. if yes -- do so, and then obsolete this once you have. if not -- sign this off after running koha qa test tools Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Mason James commit 07eefd02ba363c6072b6370e4360a91360e31ab2 Author: Jonathan Druart Date: Tue Feb 14 16:21:45 2017 +0000 Bug 18111: Fix import of default framework Caused by bug 16035. Recreate the issue: Go to Home ? Administration ? MARC frameworks For the default framework: Actions > import It will not work Test plan: Confirm test plans from bug 16035 and bug 17389 still pass Confirm that the import for the default framework now works Signed-off-by: Josef Moravec Signed-off-by: Tomas Cohen Arazi Signed-off-by: Mason James commit 4b2944a00c72d3d02a6102001eb39e56ac9e4883 Author: Tomas Cohen Arazi Date: Mon Feb 6 16:22:51 2017 -0300 Bug 18068: ES - Fix location and (home|holding)branch facets This patch makes the 'Locations' facet work as expected (i.e. having the same behaviour it has for Zebra: picking the 952$c in MARC21 and 995e for UNIMARC). It also adds the code to handle holding and home library settings for facets and makes the facets show the library name instead of the branch code. The mappings are updated so the labels match what facets.inc expect to work properly. To test: - On master, do a search that returns biblios with items having homebranch set. => FAIL: Under the 'Locations' label on the facets you will notice branchcodes are shown. - Apply the patch - Restart memcached and plack (just in case, it was tricky) - Reset your mappings: http://localhost:8081/cgi-bin/koha/admin/searchengine/elasticsearch/mappings.pl?op=reset&i_know_what_i_am_doing=1 - Restart memcached and plack (again, not sure if needed) - Make sure this mappings are set: homebranch => HomeLibrary holdingbranch => HoldingLibrary (Note: it might not be set due to the place the yaml file is being picked) - Reindex your records: $ sudo koha-shell kohadev k$ cd kohaclone k$ perl misc/search_tools/rebuild_elastic_search.pl -d -v - Repeat the initial search => SUCCESS: 'Location' contains the right stuff, 'Home libraries' and 'Holding libraries' too. - Run k$ prove t/db_dependent/Koha_SearchEngine_Elasticsearch_Search.t => SUCCESS: Tests pass! - Sign off :-D Note: play with the 'DisplayLibraryFacets' syspref options. Signed-off-by: Nick Clemens Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 9703b41636dd541c33394ebc9af7e14307a3b96c Author: Jonathan Druart Date: Fri Feb 17 10:59:22 2017 +0100 Bug 18136: Fix ExportRemoveFields pre-fill behaviour Looks like it's caused by bug 13190. Variable export_remove_fields is not sent to the template, let's retrieve the syspref's value using the TT plugin. Test plan: Fill ExportRemoveFields with something (100a for instance) Go on a checkout list page At the bottom, the "do not export fields" input box should be pre-filled with the content of the syspref Signed-off-by: Marcel de Rooy Signed-off-by: Mason James commit b9d734cbfa4a9ff673a456ac85874806ee19a260 Author: Jonathan Druart Date: Wed Feb 15 17:14:11 2017 +0000 Bug 18025: Simplify logic and avoid 1 call to ValidateBorrowernumber Signed-off-by: Liz Rea This is fine with me. Signed-off-by: Jonathan Druart commit 93b5758da8460aa343ce74849ae43c81893903b8 Author: Jonathan Druart Date: Wed Feb 15 17:13:41 2017 +0000 Bug 18025: Fix test Signed-off-by: Liz Rea Seems to work fine Signed-off-by: Jonathan Druart commit 474fbf5f5622836f3a2275085a566b2f410090ab Author: Liz Rea Date: Tue Jan 31 21:59:01 2017 +0000 Bug 18025 - Expired password recovery links cause sql crash When a user gets an email, but doesn't act or visit it within two days, attempting to create a new one causes a collision. We should just delete the old one, assuming they still want to reset their password. To test: create yourself a borrower with a userid and password. Attempt a password recovery on the OPAC update the entry in the database for that user to have an expired token e.g. update borrower_password_recovery set valid_until = '2017-01-25 03:25:26' where borrowernumber = 12; Attempt another password recovery operation - should error apply the patch Try it again - no error, new token is generated and additional email with new link is sent. Issue reproduced - is resolved by patch Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit ef92d9668c2fe8827ec46a80b2a0c2792eaeb7b7 Author: Jonathan Druart Date: Thu Feb 2 10:28:21 2017 +0100 Bug 17988: Add a comment to explain the line Signed-off-by: Jonathan Druart commit ae7de6f6844118f75ca0ac39bbdb1df488a90f3a Author: Oleg Vasylenko Date: Wed Jan 25 12:01:05 2017 +0200 Bug 17988 - Select2 prevents correct tag expand/minimize functionality Overview: Select2 (Bug 13501) introduced divs and inputs that broke some assumptions about the expected HTML structure. Because of that, expanding fields to show all hidden subfields does not work properly. Steps to Reproduce: 1. Open some book in the editor or create new (cataloguing/addbiblio.pl) 2. Try to minimize or expand fields, that have among subfields the following: ? Thesaurus driven subfield ? subfield with Select2 ? Hidden subfield. Actual Results: ?? some fields become hidden, some not, and vice versa ?? in the console, you'll see ?Uncaught TypeError: Cannot read property 'match' of null? Expected Results: ?? all subfields should minimize/maximize completely Additional Information: This happens because Select2 adds some divs, that do not have ID property. The following patch adds check for the needed attribute existance. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 1c3c5301818444d8f0210bb5864cd4974cb5bcac Author: Jonathan Druart Date: Wed Feb 15 08:11:41 2017 +0000 Bug 17780: Add a comment to explain the line Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit bbd88a3b66c5119b8499beee05840912b6dfb190 Author: Oleg Vasylenko Date: Tue Jan 24 17:58:39 2017 +0200 Bug 17780 - When choose an author in authority results new window shows a blank screen Select2 (Bug 13501) introduced divs and inputs that broke some assumptions about the expected HTML structure. This patch checks if input has name attribute, because some inputs in Select2 have not. To test: Try to add info from the authorities to field that has subfield with Select2 (subfield with authorised values on Koha 16.11+) Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit de1dab30d9aa55e5fa2e26d892a5ce16620b3f4a Author: Marc V?ron Date: Fri Feb 10 16:07:13 2017 +0100 Bug 18095: Batch item modification: Better message if no item is modified If no item is modified, the result page of Batch item modification says: "item(s) modified (with fields modified)." The message should be: "No items modified" To reproduce: - Go to Tools -> Batch item modification - Put a barcode in and click Continue - Do not make any changes and/or deselect all item(s) - Click "Save" => Result message reads: "item(s) modified (with fields modified)." To test: - Apply patch - Repeat steps above - Verify that message makes sense. NOTE: Also tested positive case with actual field change. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 21d2f333dd0ff1616a48a1941403431f2b56c501 Author: Chloe Date: Thu Jan 21 03:20:58 2016 +0000 Bug 15584 - Staff client list errors are incorrectly styled To Test- 1. In the Staff Client, go to Lists (/cgi-bin/koha/virtualshelves/shelves.pl) and create a new list with the same name as an existing one. --note that it has some red in it like an error 2. apply patch 3. In the Staff Client, go to Lists (/cgi-bin/koha/virtualshelves/shelves.pl) and create a new list with the same name as an existing one. --note that now it should be just yellow with black writing as an alert Signed-off-by: Mirko Tietgen Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 0b0e87a935b60e19d380ec383c7c6309f543247c Author: Nick Clemens Date: Fri Feb 3 11:38:53 2017 +0000 Bug 18047 - JavaScript error on item search form unless LOC defined If LOC is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your LOC authorised values Go on the item search form => You will not get the JS error and the "Shelving location" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 208e72a16b8ee79f1da0f24fe0af4e070acf73af Author: Adrien Saurat Date: Thu Dec 13 10:13:19 2012 +0100 Bug 8306: Patrons statistics, fix for patron activity choice The "inactive" for "patron activity" choice is now effective. Signed-off-by: Nick Clemens Signed-off-by: Mason James commit ed6163d27e38ba0e627ae3ab26c90ad85ab154c8 Author: Jonathan Druart Date: Thu Feb 9 13:13:50 2017 +0100 Bug 18089: Remove warnings from tests using DBIx::Class fixtures Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 5dc3abda9d5c3139176875714cf3c5e370aa00b6 Author: Kyle M Hall Date: Thu Feb 9 11:48:40 2017 +0000 Bug 18089 - All XSLT testing singleBranchMode = 0 fails to show even if install has only 1 branch Due to the way it has been implemented, singleBranchMode is set to an empty string rather than 0 if there is only one branch. This causes any block that tests for singleBranchMOde to be 0 to never appear. Test Plan: 1) Apply this patch set 2) prove t/XSLT.t Signed-off-by: Jenny Schmidt Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 6be4253e46a8e8f9c67e1cef5174c1827b3994aa Author: Kyle M Hall Date: Thu Feb 9 11:48:08 2017 +0000 Bug 18089 - Unit test Signed-off-by: Jenny Schmidt Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit c0dab6268c9e5de68c645d3016cd439f49c81ec8 Author: Zoe Schoeler Date: Wed Jan 18 00:55:43 2017 +0000 Bug 17838 Availability limit broken until an item has been checked out. TEST PLAN 1. Make sure you have no items checked out. 2. Run sudo koha-rebuild-zebra -f -v kohadev. 3. Go to search the catalog and search. 4. Check items availability and then click on limit to currently available items. 5. This should return no results. 6. Apply patch and reload. 7. Results should show. Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Attribute 14: " Specifies whether un-indexed fields should be ignored. A zero value (default) throws a diagnostic when an un-indexed field is specified. A non-zero value makes it return 0 hits." From http://www.indexdata.com/zebra/doc/querymodel-zebra.html Signed-off-by: Mason James commit 6578da5a481454bf38db5a273b6c466d8d91806d Author: Tomas Cohen Arazi Date: Sat Dec 17 09:25:54 2016 -0300 Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Looking at the default framework's fields that are linked to authority records, there's a divergence with the Zebra index definitions. This yields to authority usage count be incorrect for users searching for authority records. MariaDB [koha_kohadev]> SELECT tagfield,tagsubfield,authtypecode FROM marc_subfield_structure WHERE authtypecode IS NOT NULL AND authtypecode<>'' AND frameworkcode='' GROUP BY tagfield,tagsubfield,authtypecode ; +----------+-------------+--------------+ | tagfield | tagsubfield | authtypecode | +----------+-------------+--------------+ | 100 | a | PERSO_NAME | | 110 | a | CORPO_NAME | | 111 | a | MEETI_NAME | | 130 | a | UNIF_TITLE | | 440 | a | UNIF_TITLE | | 600 | a | PERSO_NAME | | 610 | a | CORPO_NAME | | 611 | a | MEETI_NAME | | 630 | a | UNIF_TITLE | | 648 | a | CHRON_TERM | | 650 | a | TOPIC_TERM | | 651 | a | GEOGR_NAME | | 654 | a | TOPIC_TERM | | 655 | a | GENRE/FORM | | 656 | a | TOPIC_TERM | | 657 | a | TOPIC_TERM | | 658 | a | TOPIC_TERM | | 662 | a | GEOGR_NAME | | 690 | a | TOPIC_TERM | | 691 | a | GEOGR_NAME | | 696 | a | PERSO_NAME | | 697 | a | CORPO_NAME | | 698 | a | MEETI_NAME | | 699 | a | UNIF_TITLE | | 700 | a | PERSO_NAME | | 710 | a | CORPO_NAME | | 711 | a | MEETI_NAME | | 730 | a | UNIF_TITLE | | 796 | a | PERSO_NAME | | 797 | a | CORPO_NAME | | 798 | a | MEETI_NAME | | 799 | a | UNIF_TITLE | | 800 | a | PERSO_NAME | | 810 | a | CORPO_NAME | | 811 | a | MEETI_NAME | | 830 | a | UNIF_TITLE | | 896 | a | PERSO_NAME | | 897 | a | CORPO_NAME | | 898 | a | MEETI_NAME | | 899 | a | UNIF_TITLE | +----------+-------------+--------------+ This patch adds the missing ones to the authority number index as it is done for the rest of the fields. To test: - Verify that etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml contains intries pointing the $9 subfield of all the fields in the 'tagfield' column above, to the Koha-Auth-Number:w index. - Sign off :-D Signed-off-by: Hugo Agud Signed-off-by: Marcel de Rooy Signed-off-by: Mason James commit 14b0f64e79e861e97426709a2a7aedd0feccb449 Author: Marcel de Rooy Date: Thu Oct 27 15:07:29 2016 +0200 Bug 17512: Improve handling dates in C4::Items This is a follow-up on the internal server error on 0000-00-00 in the items column onloan. This patch deals with preventing to have such dates at all in the date fields of items. It is accomplished by: [1] Adding a (private) subroutine _mod_item_dates. It takes an item hash and replaces date values if needed. [2] AddItem and ModItem call _koha_new_item resp. koha_modify_item. In these routines a call to the new _mod_item_dates is inserted. [3] Although the routine is actually private, I have added some unit tests to Items.t. Test plan: [1] Add a new item. Fill a correct date in dateaccessioned and an invalid date in Price effective from (=replacementpricedate). [2] Verify that dateaccessioned is saved correctly and replacementpricedate is still null (does not contain 0000-00-00). [3] Edit the item again. Fill some text in dateaccessioned and put a correct date in replacementpricedate. Verify the results. [4] Run t/db_dependent/Items.t Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 0ac1c9e32148a9bdca96ea62d4b5616ba4a2f974 Author: Jonathan Druart Date: Thu Feb 2 10:28:21 2017 +0100 Bug 17988: Add a comment to explain the line Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 53eef191ebd1848316c0969196e63dfd185cf419 Author: Oleg Vasylenko Date: Wed Jan 25 12:01:05 2017 +0200 Bug 17988 - Select2 prevents correct tag expand/minimize functionality Overview: Select2 (Bug 13501) introduced divs and inputs that broke some assumptions about the expected HTML structure. Because of that, expanding fields to show all hidden subfields does not work properly. Steps to Reproduce: 1. Open some book in the editor or create new (cataloguing/addbiblio.pl) 2. Try to minimize or expand fields, that have among subfields the following: ? Thesaurus driven subfield ? subfield with Select2 ? Hidden subfield. Actual Results: ?? some fields become hidden, some not, and vice versa ?? in the console, you'll see ?Uncaught TypeError: Cannot read property 'match' of null? Expected Results: ?? all subfields should minimize/maximize completely Additional Information: This happens because Select2 adds some divs, that do not have ID property. The following patch adds check for the needed attribute existance. Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 6c1d46b8e847939e88d381aaccbe6b96634f7dd5 Author: Jonathan Druart Date: Tue Nov 22 09:35:07 2016 +0000 Bug 16984: Do not clone the item block for standing orders If AcqCreateItem is set to ordering and the basket is marked as "standing orders", when ordering a JS error is raised: additem.js:176 Uncaught TypeError: window[events[i]] is not a function The item block should not be displayed in that case. Test plan: - Set AcqCreateItem to "ordering" - Create a basket and tick the "Standing orders" checkbox - Add an order to this basket => Without this patch you get the JS error => With this patch applied you will not get it Signed-off-by: Claire Gravely Signed-off-by: Nick Clemens Signed-off-by: Mason James commit a82baadf1a7a86a09838fea7f176d0380f675c2f Author: Jonathan Druart Date: Sat Jan 21 08:48:20 2017 +0100 Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist If NOT_LOAN is not present, the item search form will raise a JS error: SyntaxError: expected expression, got '}' This patch fixes it by handling this specific case. Note that the "Status" column is still displayed. Test plan: Remove your NOT_LOAN authorised values Go on the item search form => You will not get the JS error and the "Status" bloc is no longer displayed. There is no need to display it if empty. Signed-off-by: Owen Leonard Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 27a4149625252e4c28dc97df998d82fd6f2652b8) Signed-off-by: Katrin Fischer commit b676bed5309622ea78e199ef8ac8a8f121a7cba8 Author: Luke Honiss Date: Thu Jan 19 02:55:31 2017 +0000 Bug 11450: Hold Request Confirm Deletion ==TEST PLAN== 1) Go to an item with a hold and click on the holds tab on the left 2) Click the red 'X' 3) The hold will be deleted immediately 4) Apply patch 5) Return to an item with a hold and click the 'X' 6) There will now be a confirmation dialog 7) Click cancel and the dialog will disappear and the hold will not be deleted 8) Click OK and the hold will be deleted Restored indentations - Mark Tompsett Signed-off-by: Mark Tompsett Signed-off-by: Christopher Brannon Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit 7c95ea4e3734861b77313bd0940eb51b69740abb Author: Julian Maurice Date: Wed Jan 18 11:29:57 2017 +0100 Bug 17922: Use correct number of digits when replacing date placeholders This patch also fixes a typo ("<<" should be "<>") Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 95e94766af653de4bc721af64981140cacecf567) Signed-off-by: Katrin Fischer commit f17f8b0b69a58b9c09be0ac2ceee824d71cc2de2 Author: Mirko Tietgen Date: Mon Jan 30 15:59:59 2017 +0100 Bug 18015 - On shelf holds allowed > "If all unavailable" ignores notforloan If in the circ rules matrix you set "On shelf holds allowed" to "If all unavailable", items with status "Not for loan" are considered available and break the functionality. Test plan: - Set "On shelf holds allowed" to "If all unavailable" for your patron and item category (or everyone and everything) - Have two items for a record. Check out one - Set 7 - Not for loan: "Not For Loan" for the second item - Try to place a hold. Does not work. - Apply the patch - Try to place a hold. Should work now. Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit 844cf7a748c2b4f567bec2e5088665a9edf94468) Signed-off-by: Katrin Fischer commit 1822828e66282774385201515489867224eef170 Author: Tomas Cohen Arazi Date: Tue Jan 24 08:34:44 2017 -0300 Bug 17871: (followup) Remove zebra::* from the packages templates Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall (cherry picked from commit 58e7a0a5d510de6a035329ea86a130996dda5849) Signed-off-by: Katrin Fischer commit 6de8a6e2a222aee483733259463fd8f389474292 Author: David Cook Date: Tue Jan 10 12:36:25 2017 +1100 Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ This patch restores access to zebra facets (or zebra::snippet) with YAZ 5.8.1 or higher. It was failing due to The entry in retrieval-info-bib-dom.xml which IndexData said it wasn't even needed to get that access. Edit: I amended the commit message (tcohen) Signed-off-by: Colin Campbell Signed-off-by: Tomas Cohen Arazi I tested on kohadevbox and found no regression or behaviour change. I will provide a followup for the packages. Signed-off-by: Kyle M Hall (cherry picked from commit 0eb5d8491ebbf44f213d0cbe05695521dafc6dd9) Signed-off-by: Katrin Fischer commit eb2524132b61f681f9e4d8fa06d295d634e1093e Author: Dobrica Pavlinusic Date: Mon Jan 30 12:42:09 2017 +0100 Bug 17775 - Add new user with LDAP not works under Plack This patch fixes internal server error: Undefined subroutine &C4::Auth_with_ldap::AddMember called at /srv/koha_ffzg/C4/Auth_with_ldap.pm line 213. It occurs only under plack, and it's strange since C4::Members does EXPORT AddMember and we are importing it into Auth_with_ldap.pm (and it does work under CGI). Signed-off-by: Liz Rea Signed-off-by: Jonathan Druart I did not test but trust author and signoffer. The change cannot hurt. Signed-off-by: Kyle M Hall (cherry picked from commit 4740438b41573d24c6e83d182e2ce1cf6fc54545) Signed-off-by: Katrin Fischer commit f9da3f0a3633bef170826abfb638f3bde42ab2a5 Author: Jonathan Druart Date: Thu Nov 12 12:28:38 2015 +0000 Bug 15030: Add tests This test will prevent regression on the lost of data when items.itemcallnumber is linked with a plugin. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit eee1f23bc49d233bca6c8a8004dd6e79e2425484) Signed-off-by: Katrin Fischer commit 6434d8ca70af41c7e2b624230f0661011b133281 Author: Blou Date: Wed Oct 21 14:35:18 2015 -0400 Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value This fixes the remaining fields from serials-edit.pl that were seeing their previously entered values be oblitarated with each new edit. The fields associated to a plugin (dateaccessioned and barcode) were always displaying with each new edit, losing the previous effort. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit 1017edad1c27d2624fb8ed6f8fb0018985b33295) Signed-off-by: Katrin Fischer commit 8408817f43d6a45dbd091e65427f1f72c76f47ce Author: Blou Date: Mon Oct 19 12:16:05 2015 -0400 Bug 15030 - Certain values in serials' items are lost on next edit When editing serials subscription, we can edit them but some values are not pulled from the DB correctly to be put in the edit box. If not noticed, the value will be overwritten on the next save. Test: - Create a subscription - Edit itemcallnumber (952o?) and make sure to have a different value than the default one. - Save. - Edit it again - The saved value is not there. This is true for itemcallnumber and a few other fields. This was caused by calls to ->field($subfield). This would always fail, of course. Signed-off-by: Nick Clemens Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall (cherry picked from commit 4cdcdb3cb5ebefedcb44766745078a949227f0a5) Signed-off-by: Katrin Fischer commit 6ab35b1a79ec8a984b83c59d78cefbcccfc2bd1f Author: Jonathan Druart Date: Wed Dec 28 13:51:17 2016 +0000 Bug 7533: Add a warning to the about page if template_cache_dir is not set We need to tell the administrators that it would be great for them to set this config entry. Test plan: - Do not set template_cache_dir and confirm that you see the warning - Set template_cache_dir and confirm that you do not see the warning Signed-off-by: Magnus Enger Both templates for koha-conf.xml are updated. After applying the patach a warning was correctly displayed. After adding template_cache_dir to koha-conf.xml and restarting memcached it went away. Signed-off-by: Nick Clemens commit 41d82f8e25c9a59569c114103186e187bd04c776 Author: Jonathan Druart Date: Wed Dec 28 13:49:59 2016 +0000 Bug 7533: Add the template_cache_dir entry to koha-conf.xml And comment it, as we don't know what are the sysop's preferences Signed-off-by: Magnus Enger Signed-off-by: Nick Clemens Signed-off-by: Mason James commit 33997fddddba92915fe79c08681aa7a1e9443116 Author: radiuscz Date: Mon Oct 24 00:57:03 2016 +0200 Bug 17487: Styling moved from style attribute into staff-global.css Test plan: 1) Apply patch 2) Display Z39.50 search dialogs: - cataloguing / new from Z39.50 - authorities / new from Z39.50 - acquisition / new from an external source 3) Select all / Clear all should be placed below "Search targets" header 4) [Optionally] Set some style in IntranetUserCSS for class z3950checks https://bugs.koha-community.org/show_bug.cgi?id=17487 Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit aaf6b6724f5c7c6e29433600d55b9f1e8836a77b) Signed-off-by: Katrin Fischer commit 2a0eba4bb611992617428c124891ee04ef276a96 Author: radiuscz Date: Sun Oct 23 02:51:53 2016 +0200 Bug 17487: Links to "select/clear all" moved below the header tag Test plan: 1) Apply patch 2) Display Z39.50 search dialogs: - cataloguing / new from Z39.50 - authorities / new from Z39.50 - acquisition / new from an external source 3) Select all / Clear all should be placed below "Search targets" header https://bugs.koha-community.org/show_bug.cgi?id=17487 Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit f05b2986da26717f70134b07020c509821aeb3f7) Signed-off-by: Katrin Fischer commit 91994ffb700051fa2230a5cbe97b3ce1dd877262 Author: Marcel de Rooy Date: Tue Dec 13 14:10:45 2016 +0100 Bug 17726: [QA Follow-up] Add test descriptions Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit ddf1d9bcdde4790b713eca8040f0c9fce8fdcf6a) Signed-off-by: Katrin Fischer commit e021d93c311d96bc90dee390419f1f3c456608f7 Author: Jonathan Druart Date: Mon Dec 12 22:38:40 2016 +0000 Bug 17726: TestBuilder - Add default values The items.more_subfields_xml is set to random data (generated by TestBuilder), and so GetMarcBiblio does not manage to embed items (if needed). The error is: :1: parser error : Start tag expected, '<' not found More precisely it explodes in C4::Items::_parse_unlinked_item_subfields_from_xml when MARC::Record->new_from_xml is called with an invalid xml This patch adds a default values mechanism to TestBuilder to avoid modifying all the existing calls. Test plan: Set SearchEngine to ElasticSearch prove t/db_dependent/Circulation.pl should return green with this patch Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall (cherry picked from commit 41358176e1d276e47d3034a37bd089b7e6c7e846) Signed-off-by: Katrin Fischer commit b1151b0f4f0065ab1ad6f2c06f091bc7ed7f7e1d Author: Nick Clemens Date: Fri Jan 13 18:06:34 2017 +0000 Bug 8361 (QA Followup) Add warnings - Added message to circulation.tt to warn if rule undefined for patron/itemtype combination To test: 1 - Remove all circ rules 2 - Add one rule 3 - Checkout to patron an itemtype that is outside of rule defined above 4 - Note explanation that no rule is defined Signed-off-by: Kyle M Hall (cherry picked from commit 63f7cbc777521c33f8ada3e1068be01b98da9050) Signed-off-by: Katrin Fischer commit d222c3eee7a6a4e52ccb56fa1bf43e4c007f6265 Author: Jonathan Druart Date: Tue Nov 22 11:23:23 2016 +0000 Bug 8361: Do not allow checkouts if no rules are defined We should require a circulation rule to allow checkouts and reject them if no rules are defined. Test plan: - Delete all issuing rules - Check an item out => Without this patch the checkout is allowed => With this patch applied it is rejected Signed-off-by: Mark Tompsett Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall (cherry picked from commit 11dfb2e0b2d32c313f556b623ee8522b4342af26) Signed-off-by: Katrin Fischer commit 3fc942a518f35bfe406dcae3757ce8c70cf4c3c6 Author: Karen Jen Date: Tue Jan 17 22:46:02 2017 +0000 Bug 17823: Add label for MARC 583 - Action note test plan Edit a record Edit field 583a to add an action note Save the record and confirm that the note does not show up in staff client or opac Apply patch and refresh page Action note should now show up in staff client and opac Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall (cherry picked from commit 16dcea233008c0560c5a9783a3e6dd60470b06b1) Signed-off-by: Katrin Fischer ----------------------------------------------------------------------- Summary of changes: C4/Auth_with_ldap.pm | 2 +- C4/Circulation.pm | 4 + C4/Items.pm | 43 +- C4/Reserves.pm | 2 +- C4/Serials.pm | 8 +- C4/XSLT.pm | 2 +- Koha.pm | 2 +- Koha/Patron/Password/Recovery.pm | 21 +- Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 12 +- Koha/SearchEngine/Elasticsearch/Search.pm | 6 + about.pl | 2 + admin/import_export_framework.pl | 19 +- admin/searchengine/elasticsearch/mappings.yaml | 27 +- cataloguing/addbiblio.pl | 6 +- cataloguing/additem.pl | 8 +- debian/templates/koha-conf-site.xml.in | 4 + debian/templates/marc21-retrieval-info-bib-dom.xml | 1 - .../templates/normarc-retrieval-info-bib-dom.xml | 1 - .../templates/unimarc-retrieval-info-bib-dom.xml | 1 - etc/koha-conf.xml | 4 + etc/zebradb/ccl.properties | 2 +- .../marc21/biblios/biblio-koha-indexdefs.xml | 42 + .../marc21/biblios/biblio-zebra-indexdefs.xsl | 126 +++ etc/zebradb/retrieval-info-bib-dom.xml | 2 - installer/data/mysql/updatedatabase.pl | 6 + koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 4 + .../prog/en/includes/checkouts-table.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 10 +- .../prog/en/modules/acqui/neworderempty.tt | 2 +- .../prog/en/modules/acqui/z3950_search.tt | 3 +- .../authorities/blinddetail-biblio-search.tt | 1 + .../prog/en/modules/catalogue/itemsearch.tt | 36 +- .../en/modules/cataloguing/z3950_auth_search.tt | 3 +- .../prog/en/modules/cataloguing/z3950_search.tt | 3 +- .../prog/en/modules/circ/circulation.tt | 6 +- .../prog/en/modules/reserve/request.tt | 7 +- .../prog/en/modules/tools/batchMod-edit.tt | 6 +- .../prog/en/modules/virtualshelves/sendshelf.tt | 2 +- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 21 + koha-tmpl/intranet-tmpl/prog/js/cataloging.js | 1 + .../bootstrap/en/modules/opac-sendshelf.tt | 2 +- .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 1 + misc/translator/po/am-Ethi-marc-MARC21.po | 2 +- misc/translator/po/am-Ethi-marc-NORMARC.po | 2 +- misc/translator/po/am-Ethi-marc-UNIMARC.po | 2 +- misc/translator/po/am-Ethi-opac-bootstrap.po | 2 +- misc/translator/po/am-Ethi-pref.po | 12 +- misc/translator/po/am-Ethi-staff-help.po | 15 +- misc/translator/po/am-Ethi-staff-prog.po | 261 ++--- 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-pref.po | 24 +- misc/translator/po/ar-Arab-staff-help.po | 15 +- misc/translator/po/ar-Arab-staff-prog.po | 263 ++--- misc/translator/po/as-IN-marc-MARC21.po | 2 +- misc/translator/po/as-IN-marc-NORMARC.po | 2 +- misc/translator/po/as-IN-marc-UNIMARC.po | 2 +- misc/translator/po/as-IN-opac-bootstrap.po | 2 +- misc/translator/po/as-IN-pref.po | 12 +- misc/translator/po/as-IN-staff-help.po | 15 +- misc/translator/po/as-IN-staff-prog.po | 258 ++--- misc/translator/po/az-AZ-marc-MARC21.po | 2 +- misc/translator/po/az-AZ-marc-NORMARC.po | 2 +- misc/translator/po/az-AZ-marc-UNIMARC.po | 2 +- misc/translator/po/az-AZ-opac-bootstrap.po | 2 +- misc/translator/po/az-AZ-pref.po | 16 +- misc/translator/po/az-AZ-staff-help.po | 15 +- misc/translator/po/az-AZ-staff-prog.po | 262 ++--- misc/translator/po/be-BY-marc-MARC21.po | 2 +- misc/translator/po/be-BY-marc-NORMARC.po | 2 +- misc/translator/po/be-BY-marc-UNIMARC.po | 2 +- misc/translator/po/be-BY-opac-bootstrap.po | 2 +- misc/translator/po/be-BY-pref.po | 18 +- misc/translator/po/be-BY-staff-help.po | 15 +- misc/translator/po/be-BY-staff-prog.po | 264 ++--- misc/translator/po/bg-Cyrl-marc-MARC21.po | 2 +- misc/translator/po/bg-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/bg-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/bg-Cyrl-opac-bootstrap.po | 2 +- misc/translator/po/bg-Cyrl-pref.po | 16 +- misc/translator/po/bg-Cyrl-staff-help.po | 15 +- misc/translator/po/bg-Cyrl-staff-prog.po | 261 ++--- misc/translator/po/bn-IN-marc-MARC21.po | 2 +- misc/translator/po/bn-IN-marc-NORMARC.po | 2 +- misc/translator/po/bn-IN-marc-UNIMARC.po | 2 +- misc/translator/po/bn-IN-opac-bootstrap.po | 2 +- misc/translator/po/bn-IN-pref.po | 16 +- misc/translator/po/bn-IN-staff-help.po | 15 +- misc/translator/po/bn-IN-staff-prog.po | 258 ++--- misc/translator/po/cs-CZ-marc-MARC21.po | 2 +- misc/translator/po/cs-CZ-marc-NORMARC.po | 2 +- misc/translator/po/cs-CZ-marc-UNIMARC.po | 2 +- misc/translator/po/cs-CZ-opac-bootstrap.po | 6 +- misc/translator/po/cs-CZ-pref.po | 55 +- misc/translator/po/cs-CZ-staff-help.po | 15 +- misc/translator/po/cs-CZ-staff-prog.po | 305 +++--- 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-pref.po | 12 +- misc/translator/po/cy-GB-staff-help.po | 15 +- misc/translator/po/cy-GB-staff-prog.po | 258 ++--- 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-pref.po | 20 +- misc/translator/po/da-DK-staff-help.po | 15 +- misc/translator/po/da-DK-staff-prog.po | 263 ++--- misc/translator/po/de-DE-marc-MARC21.po | 2 +- misc/translator/po/de-DE-marc-NORMARC.po | 2 +- misc/translator/po/de-DE-marc-UNIMARC.po | 2 +- misc/translator/po/de-DE-opac-bootstrap.po | 2 +- misc/translator/po/de-DE-pref.po | 52 +- misc/translator/po/de-DE-staff-help.po | 21 +- misc/translator/po/de-DE-staff-prog.po | 283 +++--- misc/translator/po/el-GR-marc-MARC21.po | 334 +++---- misc/translator/po/el-GR-marc-NORMARC.po | 12 +- misc/translator/po/el-GR-marc-UNIMARC.po | 108 +- misc/translator/po/el-GR-opac-bootstrap.po | 45 +- misc/translator/po/el-GR-pref.po | 248 ++--- misc/translator/po/el-GR-staff-help.po | 262 +++-- misc/translator/po/el-GR-staff-prog.po | 1050 ++++++++++---------- misc/translator/po/eo-marc-MARC21.po | 2 +- misc/translator/po/eo-marc-NORMARC.po | 2 +- misc/translator/po/eo-marc-UNIMARC.po | 2 +- misc/translator/po/eo-opac-bootstrap.po | 2 +- misc/translator/po/eo-pref.po | 12 +- misc/translator/po/eo-staff-help.po | 15 +- misc/translator/po/eo-staff-prog.po | 258 ++--- 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 | 55 +- misc/translator/po/es-ES-staff-help.po | 23 +- misc/translator/po/es-ES-staff-prog.po | 272 ++--- misc/translator/po/eu-marc-MARC21.po | 2 +- misc/translator/po/eu-marc-NORMARC.po | 2 +- misc/translator/po/eu-marc-UNIMARC.po | 2 +- misc/translator/po/eu-opac-bootstrap.po | 2 +- misc/translator/po/eu-pref.po | 12 +- misc/translator/po/eu-staff-help.po | 15 +- misc/translator/po/eu-staff-prog.po | 261 ++--- misc/translator/po/fa-Arab-marc-MARC21.po | 2 +- misc/translator/po/fa-Arab-marc-NORMARC.po | 2 +- misc/translator/po/fa-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/fa-Arab-opac-bootstrap.po | 2 +- misc/translator/po/fa-Arab-pref.po | 20 +- misc/translator/po/fa-Arab-staff-help.po | 15 +- misc/translator/po/fa-Arab-staff-prog.po | 262 ++--- misc/translator/po/fi-FI-marc-MARC21.po | 2 +- misc/translator/po/fi-FI-marc-NORMARC.po | 2 +- misc/translator/po/fi-FI-marc-UNIMARC.po | 2 +- misc/translator/po/fi-FI-opac-bootstrap.po | 2 +- misc/translator/po/fi-FI-pref.po | 24 +- misc/translator/po/fi-FI-staff-help.po | 15 +- misc/translator/po/fi-FI-staff-prog.po | 263 ++--- misc/translator/po/fo-FO-marc-MARC21.po | 2 +- misc/translator/po/fo-FO-marc-NORMARC.po | 2 +- misc/translator/po/fo-FO-marc-UNIMARC.po | 2 +- misc/translator/po/fo-FO-opac-bootstrap.po | 2 +- misc/translator/po/fo-FO-pref.po | 12 +- misc/translator/po/fo-FO-staff-help.po | 15 +- misc/translator/po/fo-FO-staff-prog.po | 258 ++--- 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 | 41 +- misc/translator/po/fr-FR-staff-help.po | 15 +- misc/translator/po/fr-FR-staff-prog.po | 267 ++--- misc/translator/po/gl-marc-MARC21.po | 2 +- misc/translator/po/gl-marc-NORMARC.po | 2 +- misc/translator/po/gl-marc-UNIMARC.po | 2 +- misc/translator/po/gl-opac-bootstrap.po | 2 +- misc/translator/po/gl-pref.po | 16 +- misc/translator/po/gl-staff-help.po | 15 +- misc/translator/po/gl-staff-prog.po | 258 ++--- misc/translator/po/he-Hebr-marc-MARC21.po | 2 +- misc/translator/po/he-Hebr-marc-NORMARC.po | 2 +- misc/translator/po/he-Hebr-marc-UNIMARC.po | 2 +- misc/translator/po/he-Hebr-opac-bootstrap.po | 2 +- misc/translator/po/he-Hebr-pref.po | 12 +- misc/translator/po/he-Hebr-staff-help.po | 15 +- misc/translator/po/he-Hebr-staff-prog.po | 258 ++--- misc/translator/po/hi-marc-MARC21.po | 2 +- misc/translator/po/hi-marc-NORMARC.po | 2 +- misc/translator/po/hi-marc-UNIMARC.po | 2 +- misc/translator/po/hi-opac-bootstrap.po | 2 +- misc/translator/po/hi-pref.po | 49 +- misc/translator/po/hi-staff-help.po | 19 +- misc/translator/po/hi-staff-prog.po | 284 +++--- misc/translator/po/hr-HR-marc-MARC21.po | 2 +- misc/translator/po/hr-HR-marc-NORMARC.po | 2 +- misc/translator/po/hr-HR-marc-UNIMARC.po | 2 +- misc/translator/po/hr-HR-opac-bootstrap.po | 2 +- misc/translator/po/hr-HR-pref.po | 12 +- misc/translator/po/hr-HR-staff-help.po | 15 +- misc/translator/po/hr-HR-staff-prog.po | 261 ++--- misc/translator/po/hu-HU-marc-MARC21.po | 2 +- misc/translator/po/hu-HU-marc-NORMARC.po | 2 +- misc/translator/po/hu-HU-marc-UNIMARC.po | 2 +- misc/translator/po/hu-HU-opac-bootstrap.po | 2 +- misc/translator/po/hu-HU-pref.po | 16 +- misc/translator/po/hu-HU-staff-help.po | 15 +- misc/translator/po/hu-HU-staff-prog.po | 258 ++--- 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 | 24 +- misc/translator/po/hy-Armn-staff-help.po | 15 +- misc/translator/po/hy-Armn-staff-prog.po | 263 ++--- 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-pref.po | 12 +- misc/translator/po/ia-staff-help.po | 15 +- misc/translator/po/ia-staff-prog.po | 258 ++--- misc/translator/po/id-ID-marc-MARC21.po | 2 +- misc/translator/po/id-ID-marc-NORMARC.po | 2 +- misc/translator/po/id-ID-marc-UNIMARC.po | 2 +- misc/translator/po/id-ID-opac-bootstrap.po | 2 +- misc/translator/po/id-ID-pref.po | 16 +- misc/translator/po/id-ID-staff-help.po | 15 +- misc/translator/po/id-ID-staff-prog.po | 261 ++--- 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-pref.po | 12 +- misc/translator/po/iq-CA-staff-help.po | 15 +- misc/translator/po/iq-CA-staff-prog.po | 258 ++--- misc/translator/po/is-IS-marc-MARC21.po | 2 +- misc/translator/po/is-IS-marc-NORMARC.po | 2 +- misc/translator/po/is-IS-marc-UNIMARC.po | 2 +- misc/translator/po/is-IS-opac-bootstrap.po | 2 +- misc/translator/po/is-IS-pref.po | 16 +- misc/translator/po/is-IS-staff-help.po | 15 +- misc/translator/po/is-IS-staff-prog.po | 258 ++--- 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-pref.po | 59 +- misc/translator/po/it-IT-staff-help.po | 22 +- misc/translator/po/it-IT-staff-prog.po | 272 ++--- 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-pref.po | 12 +- misc/translator/po/iu-CA-staff-help.po | 15 +- misc/translator/po/iu-CA-staff-prog.po | 258 ++--- misc/translator/po/ja-Jpan-JP-marc-MARC21.po | 2 +- misc/translator/po/ja-Jpan-JP-marc-NORMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-marc-UNIMARC.po | 2 +- misc/translator/po/ja-Jpan-JP-opac-bootstrap.po | 2 +- misc/translator/po/ja-Jpan-JP-pref.po | 12 +- misc/translator/po/ja-Jpan-JP-staff-help.po | 15 +- misc/translator/po/ja-Jpan-JP-staff-prog.po | 258 ++--- misc/translator/po/ka-marc-MARC21.po | 2 +- misc/translator/po/ka-marc-NORMARC.po | 2 +- misc/translator/po/ka-marc-UNIMARC.po | 2 +- misc/translator/po/ka-opac-bootstrap.po | 2 +- misc/translator/po/ka-pref.po | 12 +- misc/translator/po/ka-staff-help.po | 15 +- misc/translator/po/ka-staff-prog.po | 258 ++--- misc/translator/po/km-KH-marc-MARC21.po | 2 +- misc/translator/po/km-KH-marc-NORMARC.po | 2 +- misc/translator/po/km-KH-marc-UNIMARC.po | 2 +- misc/translator/po/km-KH-opac-bootstrap.po | 2 +- misc/translator/po/km-KH-pref.po | 12 +- misc/translator/po/km-KH-staff-help.po | 15 +- misc/translator/po/km-KH-staff-prog.po | 258 ++--- misc/translator/po/kn-Knda-marc-MARC21.po | 2 +- misc/translator/po/kn-Knda-marc-NORMARC.po | 2 +- misc/translator/po/kn-Knda-marc-UNIMARC.po | 2 +- misc/translator/po/kn-Knda-opac-bootstrap.po | 2 +- misc/translator/po/kn-Knda-pref.po | 12 +- misc/translator/po/kn-Knda-staff-help.po | 15 +- misc/translator/po/kn-Knda-staff-prog.po | 258 ++--- 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 | 20 +- misc/translator/po/ko-Kore-KP-staff-help.po | 15 +- misc/translator/po/ko-Kore-KP-staff-prog.po | 259 ++--- misc/translator/po/ku-Arab-marc-MARC21.po | 2 +- misc/translator/po/ku-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ku-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ku-Arab-opac-bootstrap.po | 2 +- misc/translator/po/ku-Arab-pref.po | 16 +- misc/translator/po/ku-Arab-staff-help.po | 15 +- misc/translator/po/ku-Arab-staff-prog.po | 262 ++--- misc/translator/po/lo-Laoo-marc-MARC21.po | 2 +- misc/translator/po/lo-Laoo-marc-NORMARC.po | 2 +- misc/translator/po/lo-Laoo-marc-UNIMARC.po | 2 +- misc/translator/po/lo-Laoo-opac-bootstrap.po | 2 +- misc/translator/po/lo-Laoo-pref.po | 16 +- misc/translator/po/lo-Laoo-staff-help.po | 15 +- misc/translator/po/lo-Laoo-staff-prog.po | 261 ++--- misc/translator/po/mi-NZ-marc-MARC21.po | 2 +- misc/translator/po/mi-NZ-marc-NORMARC.po | 2 +- misc/translator/po/mi-NZ-marc-UNIMARC.po | 2 +- misc/translator/po/mi-NZ-opac-bootstrap.po | 2 +- misc/translator/po/mi-NZ-pref.po | 12 +- misc/translator/po/mi-NZ-staff-help.po | 15 +- misc/translator/po/mi-NZ-staff-prog.po | 258 ++--- misc/translator/po/ml-marc-MARC21.po | 2 +- misc/translator/po/ml-marc-NORMARC.po | 2 +- misc/translator/po/ml-marc-UNIMARC.po | 2 +- misc/translator/po/ml-opac-bootstrap.po | 2 +- misc/translator/po/ml-pref.po | 12 +- misc/translator/po/ml-staff-help.po | 15 +- misc/translator/po/ml-staff-prog.po | 258 ++--- misc/translator/po/mon-marc-MARC21.po | 2 +- misc/translator/po/mon-marc-NORMARC.po | 2 +- misc/translator/po/mon-marc-UNIMARC.po | 2 +- misc/translator/po/mon-opac-bootstrap.po | 2 +- misc/translator/po/mon-pref.po | 16 +- misc/translator/po/mon-staff-help.po | 15 +- misc/translator/po/mon-staff-prog.po | 262 ++--- misc/translator/po/mr-marc-MARC21.po | 2 +- misc/translator/po/mr-marc-NORMARC.po | 2 +- misc/translator/po/mr-marc-UNIMARC.po | 2 +- misc/translator/po/mr-opac-bootstrap.po | 2 +- misc/translator/po/mr-pref.po | 16 +- misc/translator/po/mr-staff-help.po | 15 +- misc/translator/po/mr-staff-prog.po | 261 ++--- 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-pref.po | 16 +- misc/translator/po/ms-MY-staff-help.po | 15 +- misc/translator/po/ms-MY-staff-prog.po | 261 ++--- 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-pref.po | 12 +- misc/translator/po/my-staff-help.po | 15 +- misc/translator/po/my-staff-prog.po | 258 ++--- misc/translator/po/ne-NE-marc-MARC21.po | 2 +- misc/translator/po/ne-NE-marc-NORMARC.po | 2 +- misc/translator/po/ne-NE-marc-UNIMARC.po | 2 +- misc/translator/po/ne-NE-opac-bootstrap.po | 2 +- misc/translator/po/ne-NE-pref.po | 12 +- misc/translator/po/ne-NE-staff-help.po | 15 +- misc/translator/po/ne-NE-staff-prog.po | 258 ++--- misc/translator/po/oc-marc-MARC21.po | 2 +- misc/translator/po/oc-marc-NORMARC.po | 2 +- misc/translator/po/oc-marc-UNIMARC.po | 2 +- misc/translator/po/oc-opac-bootstrap.po | 2 +- misc/translator/po/oc-pref.po | 20 +- misc/translator/po/oc-staff-help.po | 15 +- misc/translator/po/oc-staff-prog.po | 263 ++--- misc/translator/po/pbr-marc-MARC21.po | 2 +- misc/translator/po/pbr-marc-NORMARC.po | 2 +- misc/translator/po/pbr-marc-UNIMARC.po | 2 +- misc/translator/po/pbr-opac-bootstrap.po | 2 +- misc/translator/po/pbr-pref.po | 16 +- misc/translator/po/pbr-staff-help.po | 15 +- misc/translator/po/pbr-staff-prog.po | 258 ++--- misc/translator/po/ro-RO-marc-MARC21.po | 2 +- misc/translator/po/ro-RO-marc-NORMARC.po | 2 +- misc/translator/po/ro-RO-marc-UNIMARC.po | 2 +- misc/translator/po/ro-RO-opac-bootstrap.po | 2 +- misc/translator/po/ro-RO-pref.po | 16 +- misc/translator/po/ro-RO-staff-help.po | 15 +- misc/translator/po/ro-RO-staff-prog.po | 258 ++--- misc/translator/po/ru-RU-marc-MARC21.po | 2 +- misc/translator/po/ru-RU-marc-NORMARC.po | 2 +- misc/translator/po/ru-RU-marc-UNIMARC.po | 2 +- misc/translator/po/ru-RU-opac-bootstrap.po | 2 +- misc/translator/po/ru-RU-pref.po | 18 +- misc/translator/po/ru-RU-staff-help.po | 15 +- misc/translator/po/ru-RU-staff-prog.po | 264 ++--- misc/translator/po/sd-PK-marc-MARC21.po | 2 +- misc/translator/po/sd-PK-marc-NORMARC.po | 2 +- misc/translator/po/sd-PK-marc-UNIMARC.po | 2 +- misc/translator/po/sd-PK-opac-bootstrap.po | 2 +- misc/translator/po/sd-PK-pref.po | 16 +- misc/translator/po/sd-PK-staff-help.po | 15 +- misc/translator/po/sd-PK-staff-prog.po | 261 ++--- 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-pref.po | 24 +- misc/translator/po/sk-SK-staff-help.po | 15 +- misc/translator/po/sk-SK-staff-prog.po | 263 ++--- misc/translator/po/sl-SI-marc-MARC21.po | 2 +- misc/translator/po/sl-SI-marc-NORMARC.po | 2 +- misc/translator/po/sl-SI-marc-UNIMARC.po | 2 +- misc/translator/po/sl-SI-opac-bootstrap.po | 2 +- misc/translator/po/sl-SI-pref.po | 18 +- misc/translator/po/sl-SI-staff-help.po | 15 +- misc/translator/po/sl-SI-staff-prog.po | 258 ++--- misc/translator/po/sq-AL-marc-MARC21.po | 2 +- misc/translator/po/sq-AL-marc-NORMARC.po | 2 +- misc/translator/po/sq-AL-marc-UNIMARC.po | 2 +- misc/translator/po/sq-AL-opac-bootstrap.po | 2 +- misc/translator/po/sq-AL-pref.po | 16 +- misc/translator/po/sq-AL-staff-help.po | 15 +- misc/translator/po/sq-AL-staff-prog.po | 261 ++--- misc/translator/po/sr-Cyrl-marc-MARC21.po | 2 +- misc/translator/po/sr-Cyrl-marc-NORMARC.po | 2 +- misc/translator/po/sr-Cyrl-marc-UNIMARC.po | 2 +- misc/translator/po/sr-Cyrl-opac-bootstrap.po | 2 +- misc/translator/po/sr-Cyrl-pref.po | 16 +- misc/translator/po/sr-Cyrl-staff-help.po | 15 +- misc/translator/po/sr-Cyrl-staff-prog.po | 261 ++--- misc/translator/po/sv-SE-marc-MARC21.po | 2 +- misc/translator/po/sv-SE-marc-NORMARC.po | 2 +- misc/translator/po/sv-SE-marc-UNIMARC.po | 2 +- misc/translator/po/sv-SE-opac-bootstrap.po | 2 +- misc/translator/po/sv-SE-pref.po | 24 +- misc/translator/po/sv-SE-staff-help.po | 15 +- misc/translator/po/sv-SE-staff-prog.po | 263 ++--- misc/translator/po/sw-KE-marc-MARC21.po | 2 +- misc/translator/po/sw-KE-marc-NORMARC.po | 2 +- misc/translator/po/sw-KE-marc-UNIMARC.po | 2 +- misc/translator/po/sw-KE-opac-bootstrap.po | 2 +- misc/translator/po/sw-KE-pref.po | 12 +- misc/translator/po/sw-KE-staff-help.po | 15 +- misc/translator/po/sw-KE-staff-prog.po | 258 ++--- misc/translator/po/ta-marc-MARC21.po | 2 +- misc/translator/po/ta-marc-NORMARC.po | 2 +- misc/translator/po/ta-marc-UNIMARC.po | 2 +- misc/translator/po/ta-opac-bootstrap.po | 2 +- misc/translator/po/ta-pref.po | 12 +- misc/translator/po/ta-staff-help.po | 15 +- misc/translator/po/ta-staff-prog.po | 258 ++--- misc/translator/po/tet-marc-MARC21.po | 2 +- misc/translator/po/tet-marc-NORMARC.po | 2 +- misc/translator/po/tet-marc-UNIMARC.po | 2 +- misc/translator/po/tet-opac-bootstrap.po | 2 +- misc/translator/po/tet-pref.po | 16 +- misc/translator/po/tet-staff-help.po | 15 +- misc/translator/po/tet-staff-prog.po | 259 ++--- misc/translator/po/th-TH-marc-MARC21.po | 2 +- misc/translator/po/th-TH-marc-NORMARC.po | 2 +- misc/translator/po/th-TH-marc-UNIMARC.po | 2 +- misc/translator/po/th-TH-opac-bootstrap.po | 2 +- misc/translator/po/th-TH-pref.po | 16 +- misc/translator/po/th-TH-staff-help.po | 15 +- misc/translator/po/th-TH-staff-prog.po | 261 ++--- misc/translator/po/tl-PH-marc-MARC21.po | 2 +- misc/translator/po/tl-PH-marc-NORMARC.po | 2 +- misc/translator/po/tl-PH-marc-UNIMARC.po | 2 +- misc/translator/po/tl-PH-opac-bootstrap.po | 2 +- misc/translator/po/tl-PH-pref.po | 20 +- misc/translator/po/tl-PH-staff-help.po | 15 +- misc/translator/po/tl-PH-staff-prog.po | 261 ++--- misc/translator/po/tr-TR-marc-MARC21.po | 8 +- misc/translator/po/tr-TR-marc-NORMARC.po | 2 +- misc/translator/po/tr-TR-marc-UNIMARC.po | 8 +- misc/translator/po/tr-TR-opac-bootstrap.po | 14 +- misc/translator/po/tr-TR-pref.po | 66 +- misc/translator/po/tr-TR-staff-help.po | 41 +- misc/translator/po/tr-TR-staff-prog.po | 372 +++---- 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-pref.po | 14 +- misc/translator/po/uk-UA-staff-help.po | 15 +- misc/translator/po/uk-UA-staff-prog.po | 264 ++--- misc/translator/po/ur-Arab-marc-MARC21.po | 2 +- misc/translator/po/ur-Arab-marc-NORMARC.po | 2 +- misc/translator/po/ur-Arab-marc-UNIMARC.po | 2 +- misc/translator/po/ur-Arab-opac-bootstrap.po | 2 +- misc/translator/po/ur-Arab-pref.po | 16 +- misc/translator/po/ur-Arab-staff-help.po | 15 +- misc/translator/po/ur-Arab-staff-prog.po | 258 ++--- misc/translator/po/vi-VN-marc-MARC21.po | 2 +- misc/translator/po/vi-VN-marc-NORMARC.po | 2 +- misc/translator/po/vi-VN-marc-UNIMARC.po | 2 +- misc/translator/po/vi-VN-opac-bootstrap.po | 2 +- misc/translator/po/vi-VN-pref.po | 20 +- misc/translator/po/vi-VN-staff-help.po | 15 +- misc/translator/po/vi-VN-staff-prog.po | 259 ++--- opac/opac-password-recovery.pl | 15 +- reports/borrowers_stats.pl | 2 +- t/XSLT.t | 28 +- t/db_dependent/Circulation/TooMany.t | 12 +- t/db_dependent/Items.t | 52 +- .../Koha_SearchEngine_Elasticsearch_Search.t | 26 +- t/db_dependent/Passwordrecovery.t | 43 +- t/db_dependent/Serials.t | 32 +- t/db_dependent/TestBuilder.t | 11 +- t/lib/TestBuilder.pm | 15 + virtualshelves/shelves.pl | 39 +- 501 files changed, 11568 insertions(+), 10628 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 23 22:37:02 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 23 Feb 2017 21:37:02 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.09-55-g90a4233 Message-ID: This is an automated email from the git hooks/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 90a423384ea804808a5f77e91256379f56c3961d (commit) via 0d0c8cf08a93efa8fc6b4404b496fb4d9d17ec47 (commit) via a9906d71aac7e7c2e4cc2291d4f4b554892ab49f (commit) from 089e20c2be205daf2e3ee0c02d474d38ba367e48 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 90a423384ea804808a5f77e91256379f56c3961d Author: Josef Moravec Date: Wed Feb 8 20:45:51 2017 +0000 Bug 17913: [16.11.x] followup Signed-off-by: Josef Moravec Signed-off-by: Mason James commit 0d0c8cf08a93efa8fc6b4404b496fb4d9d17ec47 Author: Marcel de Rooy Date: Mon Jan 23 14:06:48 2017 +0100 Bug 17913: [16.05.x] Authority merge fix [PUSHED_17.05] Squashed into one patch for 16.05.x Signed-off-by: Mason James commit a9906d71aac7e7c2e4cc2291d4f4b554892ab49f Author: Julian Maurice Date: Thu Feb 9 10:51:24 2017 +0100 Bug 17782: deletedborrowers.updated_on should be set to current timestamp Signed-off-by: Mason James ----------------------------------------------------------------------- Summary of changes: C4/AuthoritiesMarc.pm | 101 +++++++++++++----- C4/Members.pm | 2 + .../en/modules/admin/preferences/authorities.pref | 9 ++ t/db_dependent/Authorities/Merge.t | 107 +++++++++++++------- 4 files changed, 156 insertions(+), 63 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 23 22:48:47 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 23 Feb 2017 21:48:47 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.09-56-g7f93f71 Message-ID: This is an automated email from the git hooks/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 7f93f71771307c9c471f90e7defeafc4eeda2635 (commit) from 90a423384ea804808a5f77e91256379f56c3961d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7f93f71771307c9c471f90e7defeafc4eeda2635 Author: Mason James Date: Fri Feb 24 10:38:28 2017 +1300 Add release notes for the 16.05.10 release ----------------------------------------------------------------------- Summary of changes: ...otes_16_5_8.html => release_notes_16_5_10.html} | 270 ++++++++------- misc/release_notes/release_notes_16_5_10.md | 350 ++++++++++++++++++++ 2 files changed, 506 insertions(+), 114 deletions(-) copy misc/release_notes/{release_notes_16_5_8.html => release_notes_16_5_10.html} (58%) create mode 100644 misc/release_notes/release_notes_16_5_10.md hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 24 00:40:18 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 23 Feb 2017 23:40:18 +0000 Subject: [koha-commits] main Koha release repository annotated tag v16.05.10 created. v16.05.10 Message-ID: This is an automated email from the git 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.05.10 has been created at f08ca50bb62162134715fdd118d3f60565d6bde6 (tag) tagging 7f93f71771307c9c471f90e7defeafc4eeda2635 (commit) replaces v16.05.09 tagged by Mason James on Fri Feb 24 11:57:24 2017 +1300 - Log ----------------------------------------------------------------- Koha release 16.05.10 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJYr2jUAAoJEGPsprNybXB3amAIAKxnHnYoaQcG8Ss0nia/z+pz colMLmwfSVluhoXa5gkxGMzNGoFvznlsMPeFaHxa8sRKGqblrmOVOgd9ZpZpKfhF B0uqxbGX5zcCh3JR9I1UCz4H4F15eql4BqJh8zISDjDHXI1E7pDT0KUYj5o4p33F 5hWMwMoeu9evA/gnGinkQ3BEeKPOfgQ24DTOET5Yo3t4MxnOorLHoVTqnW979tMl EO6IEWfjWhenmD1umbKfAG30ek4u3iqexYdembXUfegZjLQIn3r0uBJX+fBsbHdr c8ISZSbiUtbSuRZtJIluI5lWVaJ96ycXQSDC2SbyZXAGG4VpVxjEXmz7Hocyipg= =MoNM -----END PGP SIGNATURE----- Adrien Saurat (1): Bug 8306: Patrons statistics, fix for patron activity choice Blou (2): Bug 15030 - Certain values in serials' items are lost on next edit Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value Caitlin Goodger (2): Bug 17852; Multiple URLs (856) in list email are broken. Bug 17852 Follow up.Multiple URLs (856) in list email are broken Chloe (1): Bug 15584 - Staff client list errors are incorrectly styled Chris Nighswonger (1): Bug 18044: Label Batches not displaying David Cook (1): Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ Dobrica Pavlinusic (1): Bug 17775 - Add new user with LDAP not works under Plack Jonathan Druart (16): Bug 18044: Add a test Bug 8361: Do not allow checkouts if no rules are defined Bug 17726: TestBuilder - Add default values Bug 7533: Add the template_cache_dir entry to koha-conf.xml Bug 7533: Add a warning to the about page if template_cache_dir is not set Bug 15030: Add tests Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist Bug 16984: Do not clone the item block for standing orders Bug 17988: Add a comment to explain the line Bug 18089: Remove warnings from tests using DBIx::Class fixtures Bug 17780: Add a comment to explain the line Bug 17988: Add a comment to explain the line Bug 18025: Fix test Bug 18025: Simplify logic and avoid 1 call to ValidateBorrowernumber Bug 18136: Fix ExportRemoveFields pre-fill behaviour Bug 18111: Fix import of default framework Josef Moravec (1): Bug 17913: [16.11.x] followup Julian Maurice (2): Bug 17922: Use correct number of digits when replacing date placeholders Bug 17782: deletedborrowers.updated_on should be set to current timestamp Karen Jen (1): Bug 17823: Add label for MARC 583 - Action note Kyle M Hall (2): Bug 18089 - Unit test Bug 18089 - All XSLT testing singleBranchMode = 0 fails to show even if install has only 1 branch Liz Rea (1): Bug 18025 - Expired password recovery links cause sql crash Luke Honiss (2): Bug 11450: Hold Request Confirm Deletion Bug 17865 'If a subscription has no history end date, it shows as expired today in OPAC' Marc V?ron (1): Bug 18095: Batch item modification: Better message if no item is modified Marcel de Rooy (3): Bug 17726: [QA Follow-up] Add test descriptions Bug 17512: Improve handling dates in C4::Items Bug 17913: [16.05.x] Authority merge fix Mark Tompsett (1): Bug 18111: Swap framework_name and frameworkcode Mason James (5): Fix notes typo Bug 18026 - URL to database columns link in system Translation updates for Koha 16.05.10 Increment version for 16.05.10 release Add release notes for the 16.05.10 release Mirko Tietgen (1): Bug 18015 - On shelf holds allowed > "If all unavailable" ignores notforloan Nick Clemens (2): Bug 8361 (QA Followup) Add warnings Bug 18047 - JavaScript error on item search form unless LOC defined Oleg Vasylenko (3): Bug 17988 - Select2 prevents correct tag expand/minimize functionality Bug 17780 - When choose an author in authority results new window shows a blank screen Bug 17988 - Select2 prevents correct tag expand/minimize functionality Tomas Cohen Arazi (3): Bug 17871: (followup) Remove zebra::* from the packages templates Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Bug 18068: ES - Fix location and (home|holding)branch facets Zoe Schoeler (1): Bug 17838 Availability limit broken until an item has been checked out. radiuscz (2): Bug 17487: Links to "select/clear all" moved below the header tag Bug 17487: Styling moved from style attribute into staff-global.css ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 25 00:21:09 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 24 Feb 2017 23:21:09 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.10-1-g265b0f9 Message-ID: This is an automated email from the git hooks/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 265b0f954ab542ad5f2e56cab622c5f164455ee0 (commit) from 7f93f71771307c9c471f90e7defeafc4eeda2635 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 265b0f954ab542ad5f2e56cab622c5f164455ee0 Author: Josef Moravec Date: Wed Feb 15 06:52:32 2017 +0000 Bug 18119: Fix comment in cataloguing.js Test plan: Go to cataloging, and try something which depends on javascript - collapse/uncollapse fields, open authority search window, ... -> without patch it is not working -> with patch it is working correctly Signed-off-by: Jonathan Druart Signed-off-by: Mason James ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/js/cataloging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 25 15:41:13 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 25 Feb 2017 14:41:13 +0000 Subject: [koha-commits] main Koha release repository annotated tag v16.05.10 deleted. v16.05.09-56-g7f93f71 Message-ID: This is an automated email from the git 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.05.10 has been deleted was f08ca50bb62162134715fdd118d3f60565d6bde6 - Log ----------------------------------------------------------------- 7f93f71771307c9c471f90e7defeafc4eeda2635 Add release notes for the 16.05.10 release ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 25 15:42:33 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 25 Feb 2017 14:42:33 +0000 Subject: [koha-commits] main Koha release repository annotated tag v16.05.10 created. v16.05.10 Message-ID: This is an automated email from the git 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.05.10 has been created at dac796d79ae799263597a5a7601044bec9f580a4 (tag) tagging 265b0f954ab542ad5f2e56cab622c5f164455ee0 (commit) replaces v16.05.09 tagged by Mason James on Sun Feb 26 03:34:57 2017 +1300 - Log ----------------------------------------------------------------- Koha release 16.05.10 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJYsZYRAAoJEGPsprNybXB3v5EH/jZV2+gc2YyvMt43j06U88rm ynXo2OHqsJA68srjv8Mzu/6PCPjLr+g2UtcEH/FynGb7XltisH9IKfC3qc8hH9oS jJVswhiuUb7SIT/JAw2CLsaIazb0K0IU7tiWB425yyZrodxh62ZXg65zY3n3CjLK xZai7mXrJq5pw/vP+BMO5g0lcfMiU/WykJQFrOMdBBmV5aznaXPZmB5I/bmfM1cl mNDt+L9vVIiDuYzSa18NU1q5wVWfownXYLWXfd6dHog8chxAS6alb1PtutdY7VYv ARB2ROXUyIwW62bjEvOZVl1qJUFlChMdjK8h6O0Ku1hyCzJnr1pYN8tcZGMXXko= =B7y6 -----END PGP SIGNATURE----- Adrien Saurat (1): Bug 8306: Patrons statistics, fix for patron activity choice Blou (2): Bug 15030 - Certain values in serials' items are lost on next edit Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value Caitlin Goodger (2): Bug 17852; Multiple URLs (856) in list email are broken. Bug 17852 Follow up.Multiple URLs (856) in list email are broken Chloe (1): Bug 15584 - Staff client list errors are incorrectly styled Chris Nighswonger (1): Bug 18044: Label Batches not displaying David Cook (1): Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ Dobrica Pavlinusic (1): Bug 17775 - Add new user with LDAP not works under Plack Jonathan Druart (16): Bug 18044: Add a test Bug 8361: Do not allow checkouts if no rules are defined Bug 17726: TestBuilder - Add default values Bug 7533: Add the template_cache_dir entry to koha-conf.xml Bug 7533: Add a warning to the about page if template_cache_dir is not set Bug 15030: Add tests Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist Bug 16984: Do not clone the item block for standing orders Bug 17988: Add a comment to explain the line Bug 18089: Remove warnings from tests using DBIx::Class fixtures Bug 17780: Add a comment to explain the line Bug 17988: Add a comment to explain the line Bug 18025: Fix test Bug 18025: Simplify logic and avoid 1 call to ValidateBorrowernumber Bug 18136: Fix ExportRemoveFields pre-fill behaviour Bug 18111: Fix import of default framework Josef Moravec (2): Bug 17913: [16.11.x] followup Bug 18119: Fix comment in cataloguing.js Julian Maurice (2): Bug 17922: Use correct number of digits when replacing date placeholders Bug 17782: deletedborrowers.updated_on should be set to current timestamp Karen Jen (1): Bug 17823: Add label for MARC 583 - Action note Kyle M Hall (2): Bug 18089 - Unit test Bug 18089 - All XSLT testing singleBranchMode = 0 fails to show even if install has only 1 branch Liz Rea (1): Bug 18025 - Expired password recovery links cause sql crash Luke Honiss (2): Bug 11450: Hold Request Confirm Deletion Bug 17865 'If a subscription has no history end date, it shows as expired today in OPAC' Marc V?ron (1): Bug 18095: Batch item modification: Better message if no item is modified Marcel de Rooy (3): Bug 17726: [QA Follow-up] Add test descriptions Bug 17512: Improve handling dates in C4::Items Bug 17913: [16.05.x] Authority merge fix Mark Tompsett (1): Bug 18111: Swap framework_name and frameworkcode Mason James (5): Fix notes typo Bug 18026 - URL to database columns link in system Translation updates for Koha 16.05.10 Increment version for 16.05.10 release Add release notes for the 16.05.10 release Mirko Tietgen (1): Bug 18015 - On shelf holds allowed > "If all unavailable" ignores notforloan Nick Clemens (2): Bug 8361 (QA Followup) Add warnings Bug 18047 - JavaScript error on item search form unless LOC defined Oleg Vasylenko (3): Bug 17988 - Select2 prevents correct tag expand/minimize functionality Bug 17780 - When choose an author in authority results new window shows a blank screen Bug 17988 - Select2 prevents correct tag expand/minimize functionality Tomas Cohen Arazi (3): Bug 17871: (followup) Remove zebra::* from the packages templates Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Bug 18068: ES - Fix location and (home|holding)branch facets Zoe Schoeler (1): Bug 17838 Availability limit broken until an item has been checked out. radiuscz (2): Bug 17487: Links to "select/clear all" moved below the header tag Bug 17487: Styling moved from style attribute into staff-global.css ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sun Feb 26 17:46:49 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sun, 26 Feb 2017 16:46:49 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-508-g9a172ac Message-ID: This is an automated email from the git hooks/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 9a172ac2ef9f7f3eaa99d4ebeb1f48e4ab7d0a0e (commit) via 4f1eefdbb8bf4df07b03fc451c1c18ebe989c8b7 (commit) from e9d0337f329ea01cd90c2c425f20a57737a76512 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 9a172ac2ef9f7f3eaa99d4ebeb1f48e4ab7d0a0e Author: Tomas Cohen Arazi Date: Fri Feb 24 09:22:26 2017 -0300 Bug 16034: (followup) Fix DB update and schema files Signed-off-by: Tomas Cohen Arazi Signed-off-by: Kyle M Hall commit 4f1eefdbb8bf4df07b03fc451c1c18ebe989c8b7 Author: Kyle M Hall Date: Fri May 23 11:54:26 2014 -0400 Bug 12461 - Add patron clubs feature This features would add the ability to create clubs which patrons may be enrolled in. It would be particularly useful for tracking summer reading programs, book clubs and other such clubs. Test Plan: 1) Apply this patch 2) Run updatedatabase.pl 3) Ensure your staff user has the new 'Patron clubs' permissions 4) Under the tools menu, click the "Patron clubs" link 5) Create a new club template * Here you can add fields that can be filled out at the time a new club is created based on the template, or a new enrollment is created for a given club based on the template. 6) Create a new club based on that template 7) Attempt to enroll a patron in that club 8) Create a club with email required set 9) Attempt to enroll a patron without an email address in that club 10) Create a club that is enrollable from the OPAC 11) Attempt to enroll a patron in that club 12) Attempt to cancel a club enrollment from the OPAC 13) Attempt to cancel a club enrollment from the staff interface Followed test plan, works as expected. Signed-off-by: Marc V?ron ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 5 +- C4/Members.pm | 16 +- Koha/Club.pm | 92 +++++++ Koha/Club/Enrollment.pm | 78 ++++++ Koha/Club/Enrollment/Field.pm | 56 +++++ Koha/Club/Enrollment/Fields.pm | 60 +++++ Koha/Club/Enrollments.pm | 60 +++++ Koha/Club/Field.pm | 66 +++++ Koha/Club/Fields.pm | 60 +++++ Koha/Club/Template.pm | 75 ++++++ Koha/Club/Template/EnrollmentField.pm | 54 +++++ Koha/Club/Template/EnrollmentFields.pm | 60 +++++ Koha/Club/Template/Field.pm | 54 +++++ Koha/Club/Template/Fields.pm | 60 +++++ Koha/Club/Templates.pm | 60 +++++ Koha/Clubs.pm | 92 +++++++ Koha/Patron.pm | 38 +++ Koha/Schema/Result/AuthorisedValue.pm | 4 +- Koha/Schema/Result/Borrower.pm | 24 +- Koha/Schema/Result/Branch.pm | 49 +++- Koha/Schema/Result/Club.pm | 197 +++++++++++++++ Koha/Schema/Result/ClubEnrollment.pm | 201 ++++++++++++++++ Koha/Schema/Result/ClubEnrollmentField.pm | 112 +++++++++ Koha/Schema/Result/ClubField.pm | 112 +++++++++ Koha/Schema/Result/ClubTemplate.pm | 195 +++++++++++++++ Koha/Schema/Result/ClubTemplateEnrollmentField.pm | 119 +++++++++ Koha/Schema/Result/ClubTemplateField.pm | 119 +++++++++ Koha/Schema/Result/Deletedborrower.pm | 11 +- Koha/Template/Plugin/AuthorisedValues.pm | 4 +- Koha/Template/Plugin/Borrowers.pm | 1 - clubs/clubs-add-modify.pl | 107 +++++++++ clubs/clubs.pl | 60 +++++ clubs/patron-clubs-tab.pl | 55 +++++ clubs/patron-enroll.pl | 50 ++++ clubs/templates-add-modify.pl | 152 ++++++++++++ installer/data/mysql/atomicupdate/bug_12461.sql | 131 ++++++++++ installer/data/mysql/kohastructure.sql | 129 +++++++++- installer/data/mysql/updatedatabase.pl | 4 + installer/data/mysql/userflags.sql | 3 +- installer/data/mysql/userpermissions.sql | 5 +- .../intranet-tmpl/prog/en/includes/permissions.inc | 4 + .../intranet-tmpl/prog/en/includes/tools-menu.inc | 3 + .../prog/en/modules/circ/circulation.tt | 23 ++ .../prog/en/modules/clubs/clubs-add-modify.tt | 115 +++++++++ .../intranet-tmpl/prog/en/modules/clubs/clubs.tt | 252 ++++++++++++++++++++ .../prog/en/modules/clubs/patron-clubs-tab.tt | 102 ++++++++ .../prog/en/modules/clubs/patron-enroll.tt | 66 +++++ .../prog/en/modules/clubs/templates-add-modify.tt | 216 +++++++++++++++++ .../prog/en/modules/members/moremember.tt | 22 ++ .../prog/en/modules/tools/tools-home.tt | 5 + .../bootstrap/en/modules/clubs/clubs-tab.tt | 102 ++++++++ .../opac-tmpl/bootstrap/en/modules/clubs/enroll.tt | 66 +++++ .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 24 +- members/moremember.pl | 2 + opac/clubs/clubs-tab.pl | 52 ++++ opac/clubs/enroll.pl | 49 ++++ opac/svc/club/cancel_enrollment | 47 ++++ opac/svc/club/enroll | 77 ++++++ svc/club/cancel_enrollment | 46 ++++ svc/club/delete | 48 ++++ svc/club/enroll | 74 ++++++ svc/club/template/delete | 49 ++++ t/db_dependent/Clubs.t | 221 +++++++++++++++++ 63 files changed, 4465 insertions(+), 30 deletions(-) create mode 100644 Koha/Club.pm create mode 100644 Koha/Club/Enrollment.pm create mode 100644 Koha/Club/Enrollment/Field.pm create mode 100644 Koha/Club/Enrollment/Fields.pm create mode 100644 Koha/Club/Enrollments.pm create mode 100644 Koha/Club/Field.pm create mode 100644 Koha/Club/Fields.pm create mode 100644 Koha/Club/Template.pm create mode 100644 Koha/Club/Template/EnrollmentField.pm create mode 100644 Koha/Club/Template/EnrollmentFields.pm create mode 100644 Koha/Club/Template/Field.pm create mode 100644 Koha/Club/Template/Fields.pm create mode 100644 Koha/Club/Templates.pm create mode 100644 Koha/Clubs.pm create mode 100644 Koha/Schema/Result/Club.pm create mode 100644 Koha/Schema/Result/ClubEnrollment.pm create mode 100644 Koha/Schema/Result/ClubEnrollmentField.pm create mode 100644 Koha/Schema/Result/ClubField.pm create mode 100644 Koha/Schema/Result/ClubTemplate.pm create mode 100644 Koha/Schema/Result/ClubTemplateEnrollmentField.pm create mode 100644 Koha/Schema/Result/ClubTemplateField.pm create mode 100755 clubs/clubs-add-modify.pl create mode 100755 clubs/clubs.pl create mode 100755 clubs/patron-clubs-tab.pl create mode 100755 clubs/patron-enroll.pl create mode 100755 clubs/templates-add-modify.pl create mode 100644 installer/data/mysql/atomicupdate/bug_12461.sql create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs-add-modify.tt create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-enroll.tt create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/templates-add-modify.tt create mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt create mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/enroll.tt create mode 100755 opac/clubs/clubs-tab.pl create mode 100755 opac/clubs/enroll.pl create mode 100755 opac/svc/club/cancel_enrollment create mode 100755 opac/svc/club/enroll create mode 100755 svc/club/cancel_enrollment create mode 100755 svc/club/delete create mode 100755 svc/club/enroll create mode 100755 svc/club/template/delete create mode 100755 t/db_dependent/Clubs.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 27 02:49:16 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 27 Feb 2017 01:49:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-509-g8255344 Message-ID: This is an automated email from the git hooks/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 8255344215e79a5274b05033cae4bcad8d441391 (commit) from 9a172ac2ef9f7f3eaa99d4ebeb1f48e4ab7d0a0e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8255344215e79a5274b05033cae4bcad8d441391 Author: Kyle M Hall Date: Sun Feb 26 20:41:27 2017 -0500 Revert "Bug 12461 - Add patron clubs feature" This reverts commit 4f1eefdbb8bf4df07b03fc451c1c18ebe989c8b7. Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 5 +- C4/Members.pm | 16 +- Koha/Club.pm | 92 ------- Koha/Club/Enrollment.pm | 78 ------ Koha/Club/Enrollment/Field.pm | 56 ----- Koha/Club/Enrollment/Fields.pm | 60 ----- Koha/Club/Enrollments.pm | 60 ----- Koha/Club/Field.pm | 66 ----- Koha/Club/Fields.pm | 60 ----- Koha/Club/Template.pm | 75 ------ Koha/Club/Template/EnrollmentField.pm | 54 ----- Koha/Club/Template/EnrollmentFields.pm | 60 ----- Koha/Club/Template/Field.pm | 54 ----- Koha/Club/Template/Fields.pm | 60 ----- Koha/Club/Templates.pm | 60 ----- Koha/Clubs.pm | 92 ------- Koha/Patron.pm | 38 --- Koha/Schema/Result/AuthorisedValue.pm | 4 +- Koha/Schema/Result/Borrower.pm | 15 -- Koha/Schema/Result/Branch.pm | 49 +--- Koha/Schema/Result/Club.pm | 197 --------------- Koha/Schema/Result/ClubEnrollment.pm | 201 ---------------- Koha/Schema/Result/ClubEnrollmentField.pm | 112 --------- Koha/Schema/Result/ClubField.pm | 112 --------- Koha/Schema/Result/ClubTemplate.pm | 195 --------------- Koha/Schema/Result/ClubTemplateEnrollmentField.pm | 119 --------- Koha/Schema/Result/ClubTemplateField.pm | 119 --------- Koha/Template/Plugin/AuthorisedValues.pm | 4 +- Koha/Template/Plugin/Borrowers.pm | 1 + clubs/clubs-add-modify.pl | 107 --------- clubs/clubs.pl | 60 ----- clubs/patron-clubs-tab.pl | 55 ----- clubs/patron-enroll.pl | 50 ---- clubs/templates-add-modify.pl | 152 ------------ installer/data/mysql/atomicupdate/bug_12461.sql | 131 ---------- installer/data/mysql/kohastructure.sql | 126 ---------- installer/data/mysql/userflags.sql | 3 +- installer/data/mysql/userpermissions.sql | 5 +- .../intranet-tmpl/prog/en/includes/permissions.inc | 4 - .../intranet-tmpl/prog/en/includes/tools-menu.inc | 3 - .../prog/en/modules/circ/circulation.tt | 23 -- .../prog/en/modules/clubs/clubs-add-modify.tt | 115 --------- .../intranet-tmpl/prog/en/modules/clubs/clubs.tt | 252 -------------------- .../prog/en/modules/clubs/patron-clubs-tab.tt | 102 -------- .../prog/en/modules/clubs/patron-enroll.tt | 66 ----- .../prog/en/modules/clubs/templates-add-modify.tt | 216 ----------------- .../prog/en/modules/members/moremember.tt | 22 -- .../prog/en/modules/tools/tools-home.tt | 5 - .../bootstrap/en/modules/clubs/clubs-tab.tt | 102 -------- .../opac-tmpl/bootstrap/en/modules/clubs/enroll.tt | 66 ----- .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 24 +- members/moremember.pl | 2 - opac/clubs/clubs-tab.pl | 52 ---- opac/clubs/enroll.pl | 49 ---- opac/svc/club/cancel_enrollment | 47 ---- opac/svc/club/enroll | 77 ------ svc/club/cancel_enrollment | 46 ---- svc/club/delete | 48 ---- svc/club/enroll | 74 ------ svc/club/template/delete | 49 ---- t/db_dependent/Clubs.t | 221 ----------------- 61 files changed, 25 insertions(+), 4443 deletions(-) delete mode 100644 Koha/Club.pm delete mode 100644 Koha/Club/Enrollment.pm delete mode 100644 Koha/Club/Enrollment/Field.pm delete mode 100644 Koha/Club/Enrollment/Fields.pm delete mode 100644 Koha/Club/Enrollments.pm delete mode 100644 Koha/Club/Field.pm delete mode 100644 Koha/Club/Fields.pm delete mode 100644 Koha/Club/Template.pm delete mode 100644 Koha/Club/Template/EnrollmentField.pm delete mode 100644 Koha/Club/Template/EnrollmentFields.pm delete mode 100644 Koha/Club/Template/Field.pm delete mode 100644 Koha/Club/Template/Fields.pm delete mode 100644 Koha/Club/Templates.pm delete mode 100644 Koha/Clubs.pm delete mode 100644 Koha/Schema/Result/Club.pm delete mode 100644 Koha/Schema/Result/ClubEnrollment.pm delete mode 100644 Koha/Schema/Result/ClubEnrollmentField.pm delete mode 100644 Koha/Schema/Result/ClubField.pm delete mode 100644 Koha/Schema/Result/ClubTemplate.pm delete mode 100644 Koha/Schema/Result/ClubTemplateEnrollmentField.pm delete mode 100644 Koha/Schema/Result/ClubTemplateField.pm delete mode 100755 clubs/clubs-add-modify.pl delete mode 100755 clubs/clubs.pl delete mode 100755 clubs/patron-clubs-tab.pl delete mode 100755 clubs/patron-enroll.pl delete mode 100755 clubs/templates-add-modify.pl delete mode 100644 installer/data/mysql/atomicupdate/bug_12461.sql delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs-add-modify.tt delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-enroll.tt delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/clubs/templates-add-modify.tt delete mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt delete mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/enroll.tt delete mode 100755 opac/clubs/clubs-tab.pl delete mode 100755 opac/clubs/enroll.pl delete mode 100755 opac/svc/club/cancel_enrollment delete mode 100755 opac/svc/club/enroll delete mode 100755 svc/club/cancel_enrollment delete mode 100755 svc/club/delete delete mode 100755 svc/club/enroll delete mode 100755 svc/club/template/delete delete mode 100755 t/db_dependent/Clubs.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 27 12:10:46 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 27 Feb 2017 11:10:46 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v16.11.00-510-g11bae48 Message-ID: This is an automated email from the git hooks/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 11bae489bc85a9463712c9caafd2caf7b63155d9 (commit) from 8255344215e79a5274b05033cae4bcad8d441391 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 11bae489bc85a9463712c9caafd2caf7b63155d9 Author: Jonathan Druart Date: Wed Nov 23 14:47:10 2016 +0000 Bug 17216: Fix SQL statement to setting marc_subfield_structure.authorised_value to NULL We want to update it if it's empty, not equal to ';' nopaste vim mode is to blame Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 27 23:53:34 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 27 Feb 2017 22:53:34 +0000 Subject: [koha-commits] main Koha release repository annotated tag v16.05.10 deleted. v16.05.09-57-g265b0f9 Message-ID: This is an automated email from the git 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.05.10 has been deleted was dac796d79ae799263597a5a7601044bec9f580a4 - Log ----------------------------------------------------------------- 265b0f954ab542ad5f2e56cab622c5f164455ee0 Bug 18119: Fix comment in cataloguing.js ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 27 23:53:56 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 27 Feb 2017 22:53:56 +0000 Subject: [koha-commits] main Koha release repository branch 16.05.x updated. v16.05.09-59-g5dcae13 Message-ID: This is an automated email from the git hooks/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 5dcae133c18285d15fd5311c3b81d3dca280b127 (commit) via c9027ba73443167bfb1ed198319f6838abbe6fea (commit) from 265b0f954ab542ad5f2e56cab622c5f164455ee0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5dcae133c18285d15fd5311c3b81d3dca280b127 Author: Mirko Tietgen Date: Tue Jan 31 09:09:48 2017 +0100 Bug 18018 - WWW:CSRF is missing in PerlDependencies.pm WWW:CSRF is missing in PerlDependencies.pm and so libwww-csrf-perl is missing in PerlDependencies.pm missing in debian/control. This patch adds both. NOTE: Tested on top of 17111. Checked ./koha_perl_deps.pl -m -u before and after. Control file eyeballs well. git diff origin/master -- debian/control does not differ in this change. :) Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Mason James commit c9027ba73443167bfb1ed198319f6838abbe6fea Author: Mirko Tietgen Date: Tue Jan 31 07:44:56 2017 +0100 Bug 17111: Update control file for 16.05 https://bugs.koha-community.org/show_bug.cgi?id=17111 NOTE: Correctly adds/removes dependencies in debian/control Signed-off-by: Mark Tompsett Signed-off-by: Mirko Tietgen Signed-off-by: Mason James ----------------------------------------------------------------------- Summary of changes: C4/Installer/PerlDependencies.pm | 5 +++++ debian/control | 14 +++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 27 23:55:31 2017 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 27 Feb 2017 22:55:31 +0000 Subject: [koha-commits] main Koha release repository annotated tag v16.05.10 created. v16.05.10 Message-ID: This is an automated email from the git 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.05.10 has been created at 9b12c30e91742aca191f29f39c01b44d5795cd8a (tag) tagging 5dcae133c18285d15fd5311c3b81d3dca280b127 (commit) replaces v16.05.09 tagged by Mason James on Tue Feb 28 11:47:21 2017 +1300 - Log ----------------------------------------------------------------- Koha release 16.05.10 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJYtKx5AAoJEGPsprNybXB3qS8H/22K+qPr1S0GNHq0jcrk6ExV AeSWaGs3SjlZsgrPC6cPUr0R7RJfC/hQFuA0l4rg7LaMwDrefqI9Ru0vxErphahA TVTPgwRAKaKNLtyiLvBNo+nvPc/aVOJw8n8XHZ+8SxbRCv9ibygVG09txPFtSCW9 r1YBiqR0DTleMRQtwCoG0d7Ag0y6J5a/Y+DoLzRAY6L1P6gVcH4kNM+nfuiTCXdD m256KESLNjZHD6IwiwXWXGRW67lmh5r6zK0Fbdl5X2MsRKns5VQI5Nz6G46nUQAK ii86/BZcrpLrWAZwcY7P9Z+KuJceOEYTSTcpgHIp5SqhgoQXlB84AsRQltgTVJI= =WAHo -----END PGP SIGNATURE----- Adrien Saurat (1): Bug 8306: Patrons statistics, fix for patron activity choice Blou (2): Bug 15030 - Certain values in serials' items are lost on next edit Bug 15030 - Fixes the serials fields associated with a plugin, to not overwrite the previously saved value Caitlin Goodger (2): Bug 17852; Multiple URLs (856) in list email are broken. Bug 17852 Follow up.Multiple URLs (856) in list email are broken Chloe (1): Bug 15584 - Staff client list errors are incorrectly styled Chris Nighswonger (1): Bug 18044: Label Batches not displaying David Cook (1): Bug 17871: Remove zebra::snippet to allow access to facets in YAZ 5.8.1+ Dobrica Pavlinusic (1): Bug 17775 - Add new user with LDAP not works under Plack Jonathan Druart (16): Bug 18044: Add a test Bug 8361: Do not allow checkouts if no rules are defined Bug 17726: TestBuilder - Add default values Bug 7533: Add the template_cache_dir entry to koha-conf.xml Bug 7533: Add a warning to the about page if template_cache_dir is not set Bug 15030: Add tests Bug 16115: Remove JS error on item search if NOT_LOAN values do not exist Bug 16984: Do not clone the item block for standing orders Bug 17988: Add a comment to explain the line Bug 18089: Remove warnings from tests using DBIx::Class fixtures Bug 17780: Add a comment to explain the line Bug 17988: Add a comment to explain the line Bug 18025: Fix test Bug 18025: Simplify logic and avoid 1 call to ValidateBorrowernumber Bug 18136: Fix ExportRemoveFields pre-fill behaviour Bug 18111: Fix import of default framework Josef Moravec (2): Bug 17913: [16.11.x] followup Bug 18119: Fix comment in cataloguing.js Julian Maurice (2): Bug 17922: Use correct number of digits when replacing date placeholders Bug 17782: deletedborrowers.updated_on should be set to current timestamp Karen Jen (1): Bug 17823: Add label for MARC 583 - Action note Kyle M Hall (2): Bug 18089 - Unit test Bug 18089 - All XSLT testing singleBranchMode = 0 fails to show even if install has only 1 branch Liz Rea (1): Bug 18025 - Expired password recovery links cause sql crash Luke Honiss (2): Bug 11450: Hold Request Confirm Deletion Bug 17865 'If a subscription has no history end date, it shows as expired today in OPAC' Marc V?ron (1): Bug 18095: Batch item modification: Better message if no item is modified Marcel de Rooy (3): Bug 17726: [QA Follow-up] Add test descriptions Bug 17512: Improve handling dates in C4::Items Bug 17913: [16.05.x] Authority merge fix Mark Tompsett (1): Bug 18111: Swap framework_name and frameworkcode Mason James (5): Fix notes typo Bug 18026 - URL to database columns link in system Translation updates for Koha 16.05.10 Increment version for 16.05.10 release Add release notes for the 16.05.10 release Mirko Tietgen (3): Bug 18015 - On shelf holds allowed > "If all unavailable" ignores notforloan Bug 17111: Update control file for 16.05 Bug 18018 - WWW:CSRF is missing in PerlDependencies.pm Nick Clemens (2): Bug 8361 (QA Followup) Add warnings Bug 18047 - JavaScript error on item search form unless LOC defined Oleg Vasylenko (3): Bug 17988 - Select2 prevents correct tag expand/minimize functionality Bug 17780 - When choose an author in authority results new window shows a blank screen Bug 17988 - Select2 prevents correct tag expand/minimize functionality Tomas Cohen Arazi (3): Bug 17871: (followup) Remove zebra::* from the packages templates Bug 17788: (MARC21) Add $9 fields to Koha-Auth-Number:w index Bug 18068: ES - Fix location and (home|holding)branch facets Zoe Schoeler (1): Bug 17838 Availability limit broken until an item has been checked out. radiuscz (2): Bug 17487: Links to "select/clear all" moved below the header tag Bug 17487: Styling moved from style attribute into staff-global.css ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository