From gitmaster at git.koha-community.org Mon Sep 2 14:57:07 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 02 Sep 2019 12:57:07 +0000 Subject: [koha-commits] main Koha release repository branch 19.05.x updated. v19.05.03-8-g6a0775c Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 19.05.x has been updated via 6a0775cef50598d3d33912fe41749fec09dc4631 (commit) via 994c93fab71ae1f6640cf12c6cecafc58ffa105d (commit) via eec9d8becfb109add527a421738c087d2ed8f880 (commit) from 3f837f9885ab96a7993bd69446bb04820122ef23 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6a0775cef50598d3d33912fe41749fec09dc4631 Author: Nick Clemens Date: Thu Aug 1 11:44:39 2019 +0000 Bug 23408: Move relatives-issues-table to an include TO test: 1 - Find and adult patron 2 - Add a child account 3 - Check out some things to the child 4 - View the adults account, click 'Relatives checkouts' 5 - Observe table is oddly formatted 6 - View on both the 'Check out' and 'Details' tabs 7 - Apply patch 8 - Tables are displayed correctly Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize (cherry picked from commit 0548bfcd67ab8e0445ff7f0f52d3c7c10b98ed1b) Signed-off-by: Fridolin Somers commit 994c93fab71ae1f6640cf12c6cecafc58ffa105d Author: Nick Clemens Date: Mon Jul 15 17:46:36 2019 +0000 Bug 23319: Implement blocking errors for neworderbiblio and basket.pl To test: 1 - Hit neworderbiblio with a query and no vendor http://localhost:8081/cgi-bin/koha/acqui/neworderbiblio.pl?q=cat Or, add to basket from existing record with a search Refresh the page (url has no parameters) 2 - Get an internal server error 3 - Add bookseller http://localhost:8081/cgi-bin/koha/acqui/neworderbiblio.pl?q=cat&booksellerid=1 4 - Click 'Order' on a result 5 - Internal server error 6 - Apply patch 7 - Repeat 1-4, you get 'Vendor not found' or 'Basket not found' Signed-off-by: Maryse Simard Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize (cherry picked from commit 2782a039aa7883107c74ab6e446aa51b9f555683) Signed-off-by: Fridolin Somers commit eec9d8becfb109add527a421738c087d2ed8f880 Author: Alex Arnaud Date: Wed Aug 7 10:57:01 2019 +0200 Bug 23436: add a label for duplicate backend Reproduce issue: - Enable "EnableAdvancedCatalogingEditor" preference - Go to cataloguing and click on advanced editor - Click on the down arrow in "Save to catalog" menu - You should see an undefined named save backend Test patch: - Enable "EnableAdvancedCatalogingEditor" preference - Go to cataloguing and click on advanced editor to save preference to the cookie - Click on the down arrow in "Save to catalog" menu - You should see a "Duplicate" named backend Test Bug 16232 for no regression: - Search for a biblio in catalog - Click in "Edit record" - Advanced editor should appear. SUCCESS => browser url ends with #duplicate/{original biblionumber} => Title above toolbar is "Editing duplicate record of #{original biblionumber}" - Save SUCCESS => browser url ends with #catalog/{new biblionumber} => Title above toolbar is "Editing catalog record #{new biblionumber}" More test: - Search for a biblio in catalog - Click on "Edit record" - Advanced editor should appear - Click on the down arrow in "Save to catalog" menu and click on Duplicate, - Record should be saved as a new one (same behavior) Signed-off-by: cori Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize (cherry picked from commit a8ddf55667f60a3cdc23ef0b6272921bc975bc73) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: acqui/neworderbiblio.pl | 2 ++ acqui/neworderempty.pl | 3 +++ .../prog/en/includes/blocking_errors.inc | 2 ++ .../prog/en/includes/cateditor-ui.inc | 1 + .../prog/en/includes/relatives-issues-table.inc | 25 ++++++++++++++++++++ .../prog/en/modules/acqui/neworderbiblio.tt | 2 ++ .../prog/en/modules/acqui/neworderempty.tt | 2 ++ .../prog/en/modules/circ/circulation.tt | 24 +------------------ .../prog/en/modules/members/moremember.tt | 23 +----------------- 9 files changed, 39 insertions(+), 45 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/relatives-issues-table.inc hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Sep 2 16:23:59 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 02 Sep 2019 14:23:59 +0000 Subject: [koha-commits] main Koha release repository branch 19.05.x updated. v19.05.03-13-g98635c1 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 19.05.x has been updated via 98635c1a61514cd50052f1668ace75406876d0f4 (commit) via 68f1d4487381198af84c803b79e451b89cece937 (commit) via 66b48b7990b5911b7472c219bbfd05d360e0ed22 (commit) via a636742d742eee3e9832e8479130e721d333a111 (commit) via 225f0d2e0ff1717be57d7e478e6e0dd1cd530837 (commit) from 6a0775cef50598d3d33912fe41749fec09dc4631 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 98635c1a61514cd50052f1668ace75406876d0f4 Author: Emmi Date: Wed Jul 10 09:25:43 2019 +0300 Bug 22272: Calendar: When entering date ranges grey out dates in the past from the start date In "Calendar" tool it's possible to pick dates before start date as end date. This patch sets end date calendars "minDate" as picked start day to grey out past dates. Also reindents datepicker code for better readability. Test plan: - Apply this patch - Set start date from first calendar - Set end date from second calendar => Dates before start date are greyed out Signed-off-by: Nadine Pierre Signed-off-by: Lucas Gass Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize (cherry picked from commit 06e28c3ac5b708ce01ea1265fa993c1f85e98645) Signed-off-by: Fridolin Somers commit 68f1d4487381198af84c803b79e451b89cece937 Author: Owen Leonard Date: Mon Jul 29 12:57:21 2019 +0000 Bug 23385: (follow-up) Update link This follow-up adds a dummy href attribute to the link for showing and hiding the default values form so that it behaves more like a link. I removed "click to" from the link text and added Font Awesome icons common to "show/hide" links. Signed-off-by: George Williams Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize (cherry picked from commit 0a66d33d8c5d778e3a0961cb5953e2432d9ccb65) Signed-off-by: Fridolin Somers commit 66b48b7990b5911b7472c219bbfd05d360e0ed22 Author: Nick Clemens Date: Fri Jul 26 14:48:51 2019 +0000 Bug 23385: Hide 'Default values' fields by default To test: 1 - Go to Tools->Import patrons 2 - Choose a file 3 - Scroll a long way to submit 4 - Apply patch 5 - Choose a file 6 - Can submit easily 7 - Click to expand and enter default fields 8 - Confirm can still submit and that values entered are used Signed-off-by: Maryse Simard Signed-off-by: George Williams Signed-off-by: Martin Renvoize (cherry picked from commit 9258d385baa94a00f671dea6315c7738a8f38026) Signed-off-by: Fridolin Somers commit a636742d742eee3e9832e8479130e721d333a111 Author: Fridolin Somers Date: Mon Sep 2 14:43:44 2019 +0200 Bug 23438: Compiled CSS Signed-off-by: Fridolin Somers commit 225f0d2e0ff1717be57d7e478e6e0dd1cd530837 Author: Fridolin Somers Date: Wed Aug 7 15:33:52 2019 +0200 Bug 23438: Use Font Awesome icons in intranet search results browser In intranet after a search you see a results browser top left of biblio record details. Actually this uses text for links next and previous with a character for the arrows. I propose to use Font Awesome icons arrows. In fact the translated text is often too large for those buttons. For example "Previous" is "Préédant" in french and it causes the next and previous buttons to display on two lines. Using icons is more compact and easy to use. This patch also adds the list icon to back to results link and changes for a minimal text "Results". 1) Go to intranet 2) Perform a search with a few results 3) Click on first record 4) Check browser displays well 5) Click on next icon, check you go to next search result 6) Click on revious icon, check you go to previous search result 7) Click on "Results", you come back to search results 8) Clik on "Last" and click on last record 9) Check browser displays well Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize (cherry picked from commit 2fade168c81bc05d24164780cbddc100302dd71f) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/js/browser.js | 10 ++-- .../intranet-tmpl/prog/css/src/staff-global.scss | 1 - koha-tmpl/intranet-tmpl/prog/css/staff-global.css | 2 +- .../prog/en/includes/browser-strings.inc | 2 +- .../prog/en/modules/tools/holidays.tt | 61 ++++++++++---------- .../prog/en/modules/tools/import_borrowers.tt | 13 ++++- 6 files changed, 49 insertions(+), 40 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Sep 2 17:00:06 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 02 Sep 2019 15:00:06 +0000 Subject: [koha-commits] main Koha release repository branch 19.05.x updated. v19.05.03-19-gf14d94e Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 19.05.x has been updated via f14d94e565c81f8afa25fea7e1a032f33c93ad82 (commit) via 611bea77ec1c125dbfce5c4b40681fcc6fab9520 (commit) via aaa522c685bf40664561bb928d2c88f630f256d1 (commit) via bf3bed483a99de893b276ef11fafe05c4b0bcec3 (commit) via 2c598a55d4f4c498622747748880b1981afca417 (commit) via 84bd45be7f323cf6bc05a437dbb8cbad27be02b9 (commit) from 98635c1a61514cd50052f1668ace75406876d0f4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f14d94e565c81f8afa25fea7e1a032f33c93ad82 Author: Martin Renvoize Date: Thu Aug 15 09:16:02 2019 +0100 Bug 23309: DBRev 19.05.03.002 Signed-off-by: Martin Renvoize (cherry picked from commit 347dc9589aa75edb1c64c21e5d057373dfd3ed84) Signed-off-by: Fridolin Somers commit 611bea77ec1c125dbfce5c4b40681fcc6fab9520 Author: Jonathan Druart Date: Wed Aug 7 20:16:00 2019 -0500 Bug 23309: Use Koha::MarcSubfieldStructures to create to subfields It will fix the insert of new subfields with SQL strict modes DBD::mysql::st execute failed: Incorrect integer value: '' for column 'hidden' at row 1 [for Statement " Test plan: - Turn the config strict_sql_modes ON - Add a new subfield to a field Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize (cherry picked from commit 144e753da65cafa3c4291eec701222784ec0893f) Signed-off-by: Fridolin Somers commit aaa522c685bf40664561bb928d2c88f630f256d1 Author: Jonathan Druart Date: Wed Aug 7 20:08:22 2019 -0500 Bug 23309: Update DB Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize (cherry picked from commit 0a0a8d874d9a46b0c53b9ce4691e36f5dc04e68e) Signed-off-by: Fridolin Somers commit bf3bed483a99de893b276ef11fafe05c4b0bcec3 Author: Marcel de Rooy Date: Fri Aug 9 10:17:41 2019 +0000 Bug 16219: (QA follow-up) Tiny regex change The parameter <<>> does not work. There should be text inside. The construction .*? does not look good completely. Replacing it by the stricter [^>]+ So, no greater than's and at least one. Signed-off-by: Marcel de Rooy Signed-off-by: Martin Renvoize (cherry picked from commit e66ccaa3a7743378f906612562889a9476bf6802) Signed-off-by: Fridolin Somers commit 2c598a55d4f4c498622747748880b1981afca417 Author: Nick Clemens Date: Fri Jul 19 19:42:37 2019 +0000 Bug 16219: (follow-up) Nicer message if params missing and note that they are not combined Signed-off-by: Marcel de Rooy Signed-off-by: Martin Renvoize (cherry picked from commit 52587b4319d5d22436733f296021648d846f6359) Signed-off-by: Fridolin Somers commit 84bd45be7f323cf6bc05a437dbb8cbad27be02b9 Author: Nick Clemens Date: Wed Sep 5 11:15:01 2018 +0000 Bug 16219: Add 'params' parameter to runreport.pl To test: 1 - Apply patch 2 - Write a report that takes no variables 3 - Run this using runreport.pl perl misc/cronjobs/runreport.pl 1 4 - Confirm results as expected 5 - Write a report that takes one or more variables 6 - Run using runreport.pl, but pass no params 7 - You should get a SQL error 8 - Now run passing the correct number of params perl misc/cronjobs/runreport.pl --param first --param=2nd 2 9 - Verify results as expected 10 - call runreport with no parameters perl misc/cronjobs/runreport.pl 11 - Verify documentation is correct and helpful Signed-off-by: Claire Gravely Signed-off-by: Marcel de Rooy Signed-off-by: Martin Renvoize (cherry picked from commit 72197a9574d8b27651a390b9f177a537e1bf994c) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: Koha.pm | 2 +- Koha/Schema/Result/MarcSubfieldStructure.pm | 9 ++--- admin/marc_subfields_structure.pl | 51 ++++++++++++--------------- installer/data/mysql/kohastructure.sql | 2 +- installer/data/mysql/updatedatabase.pl | 11 ++++++ misc/cronjobs/runreport.pl | 16 ++++++++- 6 files changed, 55 insertions(+), 36 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Sep 2 17:29:46 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 02 Sep 2019 15:29:46 +0000 Subject: [koha-commits] main Koha release repository branch 19.05.x updated. v19.05.03-22-gb4858ca Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 19.05.x has been updated via b4858cac96aa0dfad0450cbe72e6b60cbe583779 (commit) via 40d857c6ec50be0e64f6367b21c8245011241e45 (commit) via 164893acfe89fbf1156ad8a93bee28771ba370d8 (commit) from f14d94e565c81f8afa25fea7e1a032f33c93ad82 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b4858cac96aa0dfad0450cbe72e6b60cbe583779 Author: Fridolin Somers Date: Thu May 2 14:20:45 2019 +0200 Bug 22830: correct for loop in value_builder/unimarc_field_4XX.pl value_builder In value_builder/unimarc_field_4XX.pl value_builder gets search results and runs a for loog with $i index. This loop is limiter with number of results par page, it should also be limited by number of results if lower that number of results par page. Same in cataloguing/value_builder/marc21_linking_section.pl. Test plan : 1) configure framework to use value builder 2) use value builder 3) perform a search with number of results lower than number of results per page 4) check number of records diplayed is OK 5) perform a search with number of results upper than number of results per page and check number of results is OK 6) you see number of results par page records and pagination link Signed-off-by: Owen Leonard Signed-off-by: Marcel de Rooy Signed-off-by: Martin Renvoize (cherry picked from commit 669864f4b0cb16fc9a8566bffdeb42d7875fd8aa) Signed-off-by: Fridolin Somers commit 40d857c6ec50be0e64f6367b21c8245011241e45 Author: Katrin Fischer Date: Fri Aug 9 16:02:54 2019 +0000 Bug 23446: Fix display issue in serials navigation The serial navigation shows a little stangely on the serial subscription detail page and other pages that show information about a specific subscription with one of the menu items having a different display height than the other items. To test: - Go to the serials module - Add or search for an existing subscription - Go to the subscription detail page - Verify the display issue in the navigation on the left - Apply patch - Check again from different pages in the serials module - Verify display is improved Signed-off-by: Owen Leonard Signed-off-by: Marcel de Rooy Signed-off-by: Martin Renvoize (cherry picked from commit d5152dfcdf9ba63fd04d0dc15f34c851e5c85836) Signed-off-by: Fridolin Somers commit 164893acfe89fbf1156ad8a93bee28771ba370d8 Author: Jonathan Druart Date: Sun Aug 4 12:48:07 2019 -0500 Bug 23242: Fix insert of Z3950 servers with strict SQL modes If strict SQL modes are set, the insertion of a new Z3950 server can fail. DBIx::Class::Storage::DBI::_dbh_execute(): Incorrect integer value: '' for column 'checked' at row 1 at /home/vagrant/kohaclone/admin/z3950servers.pl line 82 Using Koha::Z3950Servers fixes the issue (handled from Koha::Object->store) Test plan: - Turn the strict SQL modes on (config strict_sql_modes) - Create a new Z3950 server filling only the mandatory fields. => Without this patch you will get the failure, with this patch applied the server will be inserted sucessfully - Delete it => No regression should be found - Search for servers => No regression should be found (the search is a start-with, LIKE "$pattern%") Signed-off-by: Katrin Fischer Signed-off-by: Marcel de Rooy Signed-off-by: Martin Renvoize (cherry picked from commit a9c730244768ea355004e821d5be35dc2e617840) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: admin/z3950servers.pl | 18 +++++++++--------- cataloguing/value_builder/marc21_linking_section.pl | 2 +- cataloguing/value_builder/unimarc_field_4XX.pl | 2 +- .../intranet-tmpl/prog/en/includes/serials-menu.inc | 6 ++---- 4 files changed, 13 insertions(+), 15 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Sep 3 17:33:56 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 03 Sep 2019 15:33:56 +0000 Subject: [koha-commits] main Koha release repository branch 18.11.x updated. v18.11.08-87-g05b8f0b Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 18.11.x has been updated via 05b8f0bfb68f52ed1192c11fe8fc59a43122509a (commit) from 848aff4a5afdec0ff0937c29ce1ce4bff710812a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 05b8f0bfb68f52ed1192c11fe8fc59a43122509a Author: Lucas Gass Date: Wed Aug 28 02:26:38 2019 +0000 Update release notes for 18.11.09 release Signed-off-by: Lucas Gass (cherry picked from commit 21038567538e56c14527d26fad0ad5d09b2e19b1) ----------------------------------------------------------------------- Summary of changes: ...s_18_11_06.html => release_notes_18_11_09.html} | 364 +++++++++-------- misc/release_notes/release_notes_18_11_09.md | 413 ++++++++++++++++++++ 2 files changed, 592 insertions(+), 185 deletions(-) copy misc/release_notes/{release_notes_18_11_06.html => release_notes_18_11_09.html} (52%) create mode 100644 misc/release_notes/release_notes_18_11_09.md hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Sep 3 17:40:53 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 03 Sep 2019 15:40:53 +0000 Subject: [koha-commits] main Koha release repository annotated tag v18.11.09 deleted. v18.11.08-87-g2103856 Message-ID: This is an automated email from the git 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, v18.11.09 has been deleted was ed3dbfd38ea6ab72d772ec18a6dbb0a2b5afdf4c - Log ----------------------------------------------------------------- 21038567538e56c14527d26fad0ad5d09b2e19b1 Update release notes for 18.11.09 release ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Sep 3 17:44:44 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 03 Sep 2019 15:44:44 +0000 Subject: [koha-commits] main Koha release repository annotated tag v18.11.09 created. v18.11.09 Message-ID: This is an automated email from the git 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, v18.11.09 has been created at 9d5ec66e4e682a15c53a9c8d460b4eafaeb0ed03 (tag) tagging 05b8f0bfb68f52ed1192c11fe8fc59a43122509a (commit) replaces v18.11.08 tagged by Lucas Gass on Tue Sep 3 09:20:58 2019 -0600 - Log ----------------------------------------------------------------- Koha release 18.11.09 -----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEiuLrhIFCDD7BMEVj+cc4/xIeRdoFAl1uhNoACgkQ+cc4/xIe RdpEKQgApdDn/2flaGIUIHa/6iAHW4v/g1/LeRI5CKPC1KlcsPiAZe6Y3maVv6I2 Qcmo49Inja1pOAgetU7qsO2Tdlur7q+bDZN70zlLjJhX1OtIrFO6OUs3Kjniai5T yvky7la3IZI7pWCnjilfiQ9DFGXuUNJTm9Ph+Ov/X8gfPaXVWgdT57Nf53uNUojc xQcqFbCKug//7mDYJtBtyRaGZcbGRF6dCo/yMJ0a2SI8nAp/YMhjlLj2N6DwtxDm A4ffz/zA2pbFwcgjM/fU3FoGfshG7pAJP8lY5iAtFNjFqMQx0/odHexZ2rlERzIY lXj10F8lZycF/4mZgCVmM9LBZVanNg== =fwbi -----END PGP SIGNATURE----- Andrew Isherwood (2): Bug 23308: Change html to filter to $raw Bug 23229: Only load ILL table JS when needed Arthur Suzuki (1): Bug 23199: Koha::Patron->store must check 'uppercasesurname' syspref Fridolin Somers (4): Bug 21534: Always compute wildcards Bug 18707: Background jobs post disabled inputs Bug 23132: Fix encoding issues in facets with show more link Bug 22617: Fix checkout notes typo in manage_checkout_notes permission usage Jonathan Druart (8): Bug 23211: Prevent SIP/Transaction.t to fail randomly Bug 23083: Add tests Bug 23083: Fix course reserve item editing if one of the value is set to UNCHANGED Bug 21027: Fix checkout statistics if 1+ of the fields is not defined Bug 21316: Handle control fields in the ACQ frameworks Bug 23218: Fix shift in patron's attributes in batch patron modification Bug 23428: (bug 23151 follow-up) Fix self registration with a verification email Bug 22142: Do not revert data if 'unchanged' was set Josef Moravec (1): Bug 23363: (QA follow-up) Fix indentation Julian Maurice (1): Bug 23156: [18.11] Add pagination to checkouts in ILS-DI GetPatronInfo service Katrin Fischer (2): Bug 23098: Reword success message of KOC upload process Bug 22021: Improve item status display when placing holds in staff Koha translators (1): Translation updates for Koha 18.11.09 Kyle M Hall (3): Bug 23103: Cannot checkin items lost by deleted patrons with fines attached Bug 23103: (QA follow-up) Return undef implicitly Bug 23229: (QA follow-up) Fix indentation Liz Rea (2): Bug 23431: Don't nullify DOB if it's hidden by sysprefs Bug 23363: Fix Internal Server Error when clicking on shipment cost invoice link Lucas Gass (5): Bug 23115: Compiled CSS Bug 23151: (RM follow-up) Delete atomicupdate file Bug 22710: [18.11.x] Return to the last advanced search link not filtering correctly in 18.11.x Increment version for 18.11.09 release Update release notes for 18.11.09 release Marcel de Rooy (2): Bug 23266: Add to cart fires twice on shelf page Bug 23177: [18.11.x] (QA follow-up) Move three subs from the middle to the top in Circulation.t Mark Tompsett (6): Bug 22128: Removed outdated comment Bug 23230: (follow-up) Fix broken tests Bug 23199: Added tests for Koha::Patron Bug 23199: (follow-up) Fix tab/space issues Bug 21000: Force case sensitivity on Getopt::Long Bug 11642: change / to and in related tools menu Martin Renvoize (8): Bug 22566: Fix some more issues Bug 22566: Accept 'all' in the branch params Bug 22566: Rename 'report_email' to 'report_by_branch' Bug 22566: Clarify intent of reports and add warnings Bug 22566: Add 'branch' key to GetPreparedLetter Bug 22128: Add Rudolf Byker to contributors Bug 23280: Silence warning Bug 23192: (RM follow-up) Add missing filters to waiting_holds.inc Nick Clemens (19): Bug 22566: Fix some problems Bug 22566: (QA follow-up) Fix pod complaint Bug 23220: Prevent form submission before redirect Bug 23045: TextMarc errors on blank lines Bug 23045: Return record along with errors Bug 23255: Correct HomeOrHoldingBranch descriptions Bug 23077: Unit tests Bug 23077: Don't fill cardnumber with empty string Bug 23077: Fix import of cardnumber 0 Bug 19012: Note additional columns that are required during patron import Bug 23194: Allow HTML in item public notes to be processed on OPAC details Bug 23194: Fix other occurences Bug 23192: Correct tab input on waiting_holds.inc Bug 12537: Don't retrieve XISBN results for the same biblionumber Bug 23179: Add 'edit subfields' button to framework management Bug 11642: Add confirmation and tooltips to batch deletion tool Bug 23218: (QA follow-up) Remove dummy value Bug 23322: Correct case for boolean in ES search Bug 22142: Highlight the issue Owen Leonard (19): Bug 22935: Improve style of Bootstrap pagination Bug 22949: Markup error in OPAC course reserves template Bug 23183: Reindent cataloging.js Bug 22951: Markup error in OPAC holds template Bug 22951: (follow-up) Fix indentation Bug 22957: Remove type attribute from script tags: Staff client includes 1/2 Bug 23227: Remove type attribute from script tags: Reports Bug 23221: Reindent tools/manage-marc-import.tt Bug 23221: (follow-up) Add comments on markup structure Bug 23143: [18.11] Filter paid transactions not working Bug 11642: (follow-up) Improve Batch patron deletion and anonymization GUI to make consequences clearer Bug 23145: Confirming transfer during checkin clears the table of previously checked-in items Bug 23304: Reindent cataloguing/z3950_search.tt Bug 23304: (follow-up) Add markup structure comments Bug 23278: Reopen last panel upon "Save and continue" in notices Bug 23078: Use Koha.Preference in OPAC global header include Bug 23078: (follow-up) Update self checkout help page Bug 23455: Patron card printing from Patron lists is broken Bug 23405: Circulation autocomplete for patron lookup broken if cardnumber is empty Rudolf Byker (1): Bug 22128: Use DROP USER IF EXISTS instead of GRANT USAGE before DROP USAGE Tomas Cohen Arazi (2): Bug 23230: Unit tests Bug 23230: Make _version_compare OO context aware ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Sep 3 22:17:22 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 03 Sep 2019 20:17:22 +0000 Subject: [koha-commits] main Koha release repository branch 18.11.x updated. v18.11.09-3-gbb9dd99 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 18.11.x has been updated via bb9dd99b278974bf7ca07cd00070cce5266942d6 (commit) via bc698818938fc2ed98c86fa224b47aa90ac1e055 (commit) via 22585ec127f090975d7a0e2b15f426e73a6bc32e (commit) from 05b8f0bfb68f52ed1192c11fe8fc59a43122509a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bb9dd99b278974bf7ca07cd00070cce5266942d6 Author: Lucas Gass Date: Sat Aug 31 03:47:42 2019 +0000 Bug 22524: DBRev 18.11.09.001 Signed-off-by: Lucas Gass commit bc698818938fc2ed98c86fa224b47aa90ac1e055 Author: Ere Maijala Date: Mon Apr 29 11:03:22 2019 +0300 Bug 22524: Fix date/time-last-modified search with Elasticsearch Avoid using slash in the field name since it would need to be escaped. Fix conversion of dtlm and any existing mapping. Signed-off-by: Liz Rea Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize (cherry picked from commit 5d27fb71cbd91fdf196b6568a590f2eef54d7cd1) Signed-off-by: Fridolin Somers (cherry picked from commit ab0de52ab286dfd2e8585432907d5bf2c36df944) Signed-off-by: Lucas Gass commit 22585ec127f090975d7a0e2b15f426e73a6bc32e Author: Ere Maijala Date: Tue Apr 16 16:26:40 2019 +0300 Bug 22524: Fix publication date and year search with Elasticsearch Also fixes the mappings.yaml to use correct field name (left over issue from bug 19575), so reset mappings and reindex before testing. Test plan: 1. Reset mappings and reindex biblios. 2. Check that tests in t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t pass. 3. Try that all of the following year range type work in publication date search and year limit in advanced search: yyyy yyyy-yyyy -yyyy yyyy- Signed-off-by: Liz Rea Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize (cherry picked from commit 2293e6597c69d55ce5916b7a31029f13d65d4fea) Signed-off-by: Fridolin Somers (cherry picked from commit d21a1fb964d26192977bb0ba5145906b8a1a31cb) Signed-off-by: Lucas Gass ----------------------------------------------------------------------- Summary of changes: Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 14 ++++++-- admin/searchengine/elasticsearch/mappings.yaml | 4 +-- installer/data/mysql/updatedatabase.pl | 10 ++++++ .../Koha/SearchEngine/Elasticsearch/QueryBuilder.t | 38 +++++++++++++++++++- 4 files changed, 60 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Sep 3 23:19:17 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 03 Sep 2019 21:19:17 +0000 Subject: [koha-commits] main Koha release repository branch 18.11.x updated. v18.11.09-4-g07f49aa Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 18.11.x has been updated via 07f49aa3d3483e2a20d23b5f533ae21569682997 (commit) from bb9dd99b278974bf7ca07cd00070cce5266942d6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 07f49aa3d3483e2a20d23b5f533ae21569682997 Author: Liz Rea Date: Thu Apr 25 15:34:36 2019 +0000 Bug 21716: Escape publisher in item search To prevent endless processing errors. To test: * create a biblio with a publisher with a backslash - i.e. 260$b with graham\lineham * do an item search that will include that title in the results * wait forever, because it won't work. * apply this patch * repeat steps, notice that you a. get results b. your result is listed with it's correct publisher * rejoice Signed-off-by: Hayley Mapley Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize (cherry picked from commit fbeb22802f41f8daf99498303146d1916c851507) Signed-off-by: Fridolin Somers (cherry picked from commit ee9032d625d118f4ccdae881a49f393d8217ef86) Signed-off-by: Lucas Gass ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/catalogue/itemsearch_item.json.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Sep 3 23:40:28 2019 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 03 Sep 2019 21:40:28 +0000 Subject: [koha-commits] main Koha release repository branch 18.11.x updated. v18.11.09-5-g5c0cdac Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, 18.11.x has been updated via 5c0cdacea07ca2e74d24bad7f58405f6ca26e1a1 (commit) from 07f49aa3d3483e2a20d23b5f533ae21569682997 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5c0cdacea07ca2e74d24bad7f58405f6ca26e1a1 Author: Owen Leonard Date: Thu Jun 27 13:24:36 2019 +0000 Bug 23226: Remove type attribute from script tags: Cataloging This patch removes the "type" attribute from