From gitmaster at git.koha-community.org Tue Feb 4 18:17:03 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 04 Feb 2014 17:17:03 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-390-g6aa0218 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 6aa021896827e846e58f88a8c5387df122688c53 (commit) from 33bdec2c3df1afe927a5765f45a38ee6731ccdc8 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6aa021896827e846e58f88a8c5387df122688c53 Author: Tomas Cohen Arazi Date: Fri Jan 31 16:52:15 2014 -0300 Bug 11655: koha-translate --list no longer shows 'en' 'en' is not a translation and it doesn't make any sense to return it as part of the installed translations or the available ones. It becomes relevant to remove it as users upgrading their installed translations end up grepping the output to remove 'en' like in: for lang in $(koha-translate --list | grep -v -x -e 'en') ; do koha-translate --update $lang done instead of simply issuing the koha-translate --list command. To test: - Run ./koha-translate --list ./koha-translate --list --available => It shouldn't return 'en' in the result list. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: debian/scripts/koha-translate | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 4 18:19:30 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 04 Feb 2014 17:19:30 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-391-g684143a Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 684143a529cb556236f46d1d2a8ef05908c0b2f9 (commit) from 6aa021896827e846e58f88a8c5387df122688c53 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 684143a529cb556236f46d1d2a8ef05908c0b2f9 Author: Mathieu Saby Date: Wed Nov 13 19:56:10 2013 +0100 Bug 11246: remove reference to fields 780 and 785 in UNIMARC XSLT files for Bootstrap OPAC Another fix, 10465, removed fields 780 and 785 from a unimarc xslt file. This cleanup is needed for bootstrap too To test : in a UNIMARC Koha, with Bootstrap theme OPAC 1. Be sure that OPACXSLTDetailsDisplay , OPACXSLTResultsDisplay sysprefs are set to "default" 2. Apply the patch 3. Search some records in OPAC : the list view and the detail view should be exacty the same as before you apply the patch. Signed-off-by: Mark Tompsett Signed-off-by: Katrin Fischer Changes are consistent with changes done earlier on the prog theme. Checked that the detail pages and results still display correctly for UNIMARC. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../bootstrap/en/xslt/UNIMARCslim2OPACDetail.xsl | 100 +------------------- 1 file changed, 1 insertion(+), 99 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 4 18:28:44 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 04 Feb 2014 17:28:44 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-394-gb945557 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via b94555719f0b3f7750bccd4db810dd9121ecacbf (commit) via dec3f8ec70df17ed8f67a5bf706544989c429905 (commit) via 776825651a204756ddbec2a8ef1b8819038408f9 (commit) from 684143a529cb556236f46d1d2a8ef05908c0b2f9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b94555719f0b3f7750bccd4db810dd9121ecacbf Author: Jonathan Druart Date: Mon Jan 27 10:14:35 2014 +0100 Bug 10851: (follow-up) FIX bad c/p (variable name) In catalogue.detail.tt, a wrong variable loop was used. Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer Patches pass QA script and tests. Additional tests done: - Receiving issues, setting and unsetting new status - Display on serial summary page - Display on subscription detail page, issues tab - Display on OPAC and staff detail pages, subscription tab OPAC: ok Staff: ok - Claiming issues, filtering and status display Signed-off-by: Galen Charlton commit dec3f8ec70df17ed8f67a5bf706544989c429905 Author: Jonathan Druart Date: Tue Jan 21 09:28:24 2014 +0100 Bug 10851: (follow-up) fix issues reported by QA script This patch fixes following warnings: FAIL C4/Serials.pm FAIL valid Useless use of a constant (43) in void context Useless use of a constant (41) in void context Useless use of a constant (44) in void context Useless use of a constant (42) in void context Useless use of a constant (4) in void context Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton commit 776825651a204756ddbec2a8ef1b8819038408f9 Author: Jonathan Druart Date: Tue Aug 20 11:14:09 2013 +0200 Bug 10851: add additional "missing" statuses for serials issues 4 new statuses to represent variations on "missing" is added by this patch: "never received", "sold out", "damaged", and "lost. These status have the same behavior than the simple Missing status. Test plan: - Find a serial to claim. - Modify the status of this serial with one of these new statuses. - Try to find it with the "serials to claim" search. - Verify that the status is displayed on the serial module pages and on the OPAC. Signed-off-by: Nicolas Bravais Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Serials.pm | 19 ++++++---- .../prog/en/modules/catalogue/detail.tt | 4 ++ .../prog/en/modules/serials/claims.tt | 8 ++++ .../prog/en/modules/serials/serial-issues-full.tt | 4 ++ .../prog/en/modules/serials/serials-collection.tt | 4 ++ .../prog/en/modules/serials/serials-edit.tt | 40 ++++++++++++++++++++ .../prog/en/modules/serials/serials-recieve.tt | 20 ++++++++++ .../prog/en/modules/serials/subscription-detail.tt | 4 ++ koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt | 27 +++++++------ .../prog/en/modules/opac-full-serial-issues.tt | 4 ++ 10 files changed, 113 insertions(+), 21 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 4 18:42:00 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 04 Feb 2014 17:42:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-395-ge3c203a Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via e3c203aebb939af63aefc81f77474adc0234ca4c (commit) from b94555719f0b3f7750bccd4db810dd9121ecacbf (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e3c203aebb939af63aefc81f77474adc0234ca4c Author: Fr?d?ric Demians Date: Sat Feb 1 09:49:38 2014 +0100 Bug 11663: fix display of holding tab in Bootstap OPAC when opacbookbag syspref is disabled Bootstap theme opac holding tab is improperly displayed when opacbookbag syspref is disabled, and virtualshelf is enabled. This is due to the fact that in this situation basket.js is loaded (for virtual shelves), but some JS variables are not defined in template since opacbookbag is disabled. To reproduce this bug: - Choose bootstrap OPAC theme - Enable virtualsheves syspref - Disable opacbookbag syspref - Open a biblio record in OPAC detail page - You will observe that items holding tabs are not displayed as tabs but as a bulleted list Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Passes QA script and all tests. Confirmed display problem exists without the patch and is solved by it. Ideally we would avoid having the cart messages in the template when the feature is deactivated, but this is ok for now. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 4 18:57:43 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 04 Feb 2014 17:57:43 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-396-g7f6f3b9 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 7f6f3b924e5bc9343bb475a1add714923a025913 (commit) from e3c203aebb939af63aefc81f77474adc0234ca4c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7f6f3b924e5bc9343bb475a1add714923a025913 Author: ?ByWater Date: Thu Jan 16 15:00:40 2014 -0500 Bug 11572: ensure that running Z39.50 search from staff search results detects ISBN In Koha 3.8, if a standard catalog search was performed and the user clicked the Z39.50 search button, the search string would automatically be placed in the isbn field for the Z39.50 search form. Changes to the code have since broken this functionality. Test Plan: 1) From mainpage.pl, use "Search the catalog" to search for the string "9781570672835" 2) Click the Z39.50 Search button 3) Note the string is placed in the title field 4) Apply this patch 5) Repeat steps 1-2 6) Note the string is placed in the isbn field Signed-off-by: Mark Tompsett Signed-off-by: Katrin Fischer Tested old and new ISBN with and without hyphens. Also tested some other keyword searches. Signed-off-by: Galen Charlton Note that the behavior will be a bit odd if you do a 'replace via Z39.50' from a bib record whose title happens to be an ISBN, but this scenario seems unlikely enough to ignore. ----------------------------------------------------------------------- Summary of changes: C4/Search.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 4 19:18:47 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 04 Feb 2014 18:18:47 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-397-gf3d5887 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via f3d5887870bad581e312b40bd474b38b5788122d (commit) from 7f6f3b924e5bc9343bb475a1add714923a025913 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f3d5887870bad581e312b40bd474b38b5788122d Author: Owen Leonard Date: Wed Jan 29 12:17:09 2014 -0500 Bug 11636 - make it possible to remove patrons from patron list during add process If your patrons have card numbers with leading zeroes this causes problems removing patron entries during the process of adding patrons to an existing list. This patch refactors the relevant JavaScript to correct the problem and to remove inline "onclick" from generated HTML. This patch also includes a fix for Bug 11632 - Untranslatable string "Remove" in patron lists. To test: 1. If necessary, create or modify a patron to have a card number with leading zeroes. 2. Go to Tools -> Patron lists. 3. Click "Add patrons" on an existing list. 4. Perform a patron search and choose one of the results. 5. Click the "remove" link next to the patron name which was just added. Nothing will happen. 6. Apply the patch and test again. The "remove" link should now work. To test the fix for Bug 11632, after applying the patch run "translate update [language code]" and confirm that the "Remove" string is listed in the updated po file for patron_lists/list.tt. Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer Passes all tests and QA script, works as described. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 4 19:25:15 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 04 Feb 2014 18:25:15 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-399-g547ebae Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 547ebaece0bcd24857cecd6c95d8a5c1c41ce222 (commit) via 3424f0d84a1622c502aeb376450cad5b74f0cea1 (commit) from f3d5887870bad581e312b40bd474b38b5788122d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 547ebaece0bcd24857cecd6c95d8a5c1c41ce222 Author: Galen Charlton Date: Tue Feb 4 18:44:07 2014 +0000 Bug 11619: (follow-up) fix QueryParser.t The previous patch did not account for the change in the number of indexes, and thus caused one of the tests to fail. To test: [1] Verify that prove -v t/QueryParser.t passes. Signed-off-by: Galen Charlton commit 3424f0d84a1622c502aeb376450cad5b74f0cea1 Author: Marcel de Rooy Date: Mon Jan 27 13:50:01 2014 +0100 Bug 11619: remove duplicate key in QueryParser config Corrects a double entry for language in yaml file. Language should have been language-original. Test plan: Check that you have language-original in your zebra install. Specifically, this index should cover MARC21 041$h. Enable QueryParser and search for a record with this index. Note that this patch does not enable searching on this index without QueryParser. This is true for many more indexes in record.abs that are not included in the getIndexes routine. Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer Works as described - make sure you are testing with a current indexing configuration. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: etc/searchengine/queryparser.yaml | 4 ++-- t/QueryParser.t | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:12:54 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:12:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-404-g94e349f Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 94e349ff6ce4a1abb313102decc12429d02dfb4b (commit) via 03d4ed2468bb9ab97b1f7b7d9e29507dc815a8b3 (commit) via 939079de756fdda1ca8f62c48efe0e2e3034ae32 (commit) via 7baf02c263a627b1454577b3141a0af4b8f963d1 (commit) via d1b6e0646fd6a70f6724189554e80aaa68aec64b (commit) from 547ebaece0bcd24857cecd6c95d8a5c1c41ce222 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 94e349ff6ce4a1abb313102decc12429d02dfb4b Author: Galen Charlton Date: Tue Feb 4 23:03:08 2014 +0000 Bug 11666: remove SQL as an option for MARC framework exports and imports The SQL option for MARC framework imports was subject to a bug whereby somebody could use it to gain access to arbitrary information in the database by uploading an SQL file containing unexpected statements. As it is difficult to securely sanitize SQL, this patch removes the option to use SQL as an import or export format. To test: [1] Verify that SQL no longer appears as an import or export option for the MARC frameworks. [2] Verify that exports and imports in CSV, Excel XML, and ODS formats still work. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Works as advertised. The UI doesn't offer exporting/importing in the SQL format. Crafting the URL to export SQL fallbacks to a spreadsheet format (ODS). Signed-off-by: Katrin Fischer Works as described, passes all tests and QA script. Signed-off-by: Galen Charlton commit 03d4ed2468bb9ab97b1f7b7d9e29507dc815a8b3 Author: Galen Charlton Date: Tue Feb 4 15:54:33 2014 +0000 Bug 11666: add permission check for MARC framework import/export This patch makes the MARC framework import/export script require that the staff user be logged in with appropriate permissions for managing the MARC frameworks. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer I can confirm the bug and the solution. After applying the patch downloading the file without logging in first is no longer possible. Also passes tests and QA script. Signed-off-by: Galen Charlton commit 939079de756fdda1ca8f62c48efe0e2e3034ae32 Author: Galen Charlton Date: Sat Feb 1 02:11:38 2014 +0000 Bug 11662: remove disused member-picupload.pl This script is no longer used, and in addition has problematic handling of its parameters that could lead to writing to arbitrary files on the server. To test: [1] Verify that member-picupload.pl is no longer referred to in the codebase after applying this patch. [2] Verify that there are no regressions in patron photo management. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Found no regressions in removing this script. Signed-off-by: Galen Charlton commit 7baf02c263a627b1454577b3141a0af4b8f963d1 Author: Chris Cormack Date: Sat Feb 1 15:06:58 2014 +1300 Bug 11661: sanitize file names supplied to edithelp.pl This patch corrects an issue whereby edithelp.pl could be used to create or modify arbitrary files on the server with the permissions of the Apache user. Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit d1b6e0646fd6a70f6724189554e80aaa68aec64b Author: Chris Cormack Date: Sat Feb 1 14:18:23 2014 +1300 Bug 11660: remove disused tools/pdfViewer.pl tools/pdfViewer.pl can be used to read artibrary files on the system. It is actually an unused file, so leaving it around serves no purpose and is dangerous. Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer No regressions found. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/ImportExportFramework.pm | 219 +------------------- admin/import_export_framework.pl | 26 ++- edithelp.pl | 4 +- .../prog/en/modules/admin/biblio_framework.tt | 16 +- members/member-picupload.pl | 77 ------- tools/pdfViewer.pl | 42 ---- 6 files changed, 42 insertions(+), 342 deletions(-) delete mode 100755 members/member-picupload.pl delete mode 100755 tools/pdfViewer.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:13:41 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:13:41 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.02-30-g7b68bfd Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 7b68bfd53c58d0c1142914cc7f519362ef64fcc8 (commit) via a608f06bc7e6353ffb57699aebb62d511b732438 (commit) via 340d7bdcdda1e1a1723be7043f6c9e99d67c4844 (commit) via 8a1ac664ba2483fa226c8ecf9ac0a3b741f23538 (commit) via c4a2cb9a9d597a294c8447aea7a68a71f9aa4cb3 (commit) via 3bd50e3547773b73bd7e1d8bc44b37df3e149b39 (commit) via 37b762db25a998a5105a262759a085c995581728 (commit) from f69e836569ee122ca42d6bf77ebac9dd656f55e5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7b68bfd53c58d0c1142914cc7f519362ef64fcc8 Author: Fridolin Somers Date: Thu Feb 6 20:21:19 2014 +0100 Increment version for 3.14.3 release Signed-off-by: Fridolin Somers commit a608f06bc7e6353ffb57699aebb62d511b732438 Author: Fridolyn SOMERS Date: Thu Feb 6 20:19:43 2014 +0100 Update release notes for 3.14.03 release Signed-off-by: Fridolin Somers commit 340d7bdcdda1e1a1723be7043f6c9e99d67c4844 Author: Galen Charlton Date: Tue Feb 4 23:03:08 2014 +0000 Bug 11666: remove SQL as an option for MARC framework exports and imports The SQL option for MARC framework imports was subject to a bug whereby somebody could use it to gain access to arbitrary information in the database by uploading an SQL file containing unexpected statements. As it is difficult to securely sanitize SQL, this patch removes the option to use SQL as an import or export format. To test: [1] Verify that SQL no longer appears as an import or export option for the MARC frameworks. [2] Verify that exports and imports in CSV, Excel XML, and ODS formats still work. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Works as advertised. The UI doesn't offer exporting/importing in the SQL format. Crafting the URL to export SQL fallbacks to a spreadsheet format (ODS). Signed-off-by: Katrin Fischer Works as described, passes all tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 94e349ff6ce4a1abb313102decc12429d02dfb4b) Signed-off-by: Fridolin Somers commit 8a1ac664ba2483fa226c8ecf9ac0a3b741f23538 Author: Galen Charlton Date: Tue Feb 4 15:54:33 2014 +0000 Bug 11666: add permission check for MARC framework import/export This patch makes the MARC framework import/export script require that the staff user be logged in with appropriate permissions for managing the MARC frameworks. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer I can confirm the bug and the solution. After applying the patch downloading the file without logging in first is no longer possible. Also passes tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 03d4ed2468bb9ab97b1f7b7d9e29507dc815a8b3) Signed-off-by: Fridolin Somers commit c4a2cb9a9d597a294c8447aea7a68a71f9aa4cb3 Author: Galen Charlton Date: Sat Feb 1 02:11:38 2014 +0000 Bug 11662: remove disused member-picupload.pl This script is no longer used, and in addition has problematic handling of its parameters that could lead to writing to arbitrary files on the server. To test: [1] Verify that member-picupload.pl is no longer referred to in the codebase after applying this patch. [2] Verify that there are no regressions in patron photo management. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Found no regressions in removing this script. Signed-off-by: Galen Charlton (cherry picked from commit 939079de756fdda1ca8f62c48efe0e2e3034ae32) Signed-off-by: Fridolin Somers commit 3bd50e3547773b73bd7e1d8bc44b37df3e149b39 Author: Chris Cormack Date: Sat Feb 1 15:06:58 2014 +1300 Bug 11661: sanitize file names supplied to edithelp.pl This patch corrects an issue whereby edithelp.pl could be used to create or modify arbitrary files on the server with the permissions of the Apache user. Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 7baf02c263a627b1454577b3141a0af4b8f963d1) Signed-off-by: Fridolin Somers commit 37b762db25a998a5105a262759a085c995581728 Author: Chris Cormack Date: Sat Feb 1 14:18:23 2014 +1300 Bug 11660: remove disused tools/pdfViewer.pl tools/pdfViewer.pl can be used to read artibrary files on the system. It is actually an unused file, so leaving it around serves no purpose and is dangerous. Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer No regressions found. Signed-off-by: Galen Charlton (cherry picked from commit d1b6e0646fd6a70f6724189554e80aaa68aec64b) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: C4/ImportExportFramework.pm | 219 +------------- admin/import_export_framework.pl | 26 +- edithelp.pl | 4 +- installer/data/mysql/updatedatabase.pl | 6 + .../prog/en/modules/admin/biblio_framework.tt | 16 +- kohaversion.pl | 2 +- members/member-picupload.pl | 77 ----- misc/release_notes/release_notes_3_14_3.txt | 311 ++++++++++++++++++++ tools/pdfViewer.pl | 42 --- 9 files changed, 360 insertions(+), 343 deletions(-) delete mode 100755 members/member-picupload.pl create mode 100644 misc/release_notes/release_notes_3_14_3.txt delete mode 100755 tools/pdfViewer.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:13:54 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:13:54 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.14.03 created. v3.14.03 Message-ID: This is an automated email from the git 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.14.03 has been created at 02af429eac9de5c8e6c4a673084695b31c377be1 (tag) tagging 7b68bfd53c58d0c1142914cc7f519362ef64fcc8 (commit) replaces v3.14.02 tagged by Fridolin Somers on Thu Feb 6 20:22:04 2014 +0100 - Log ----------------------------------------------------------------- Koha release 3.14.03 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (GNU/Linux) iQEcBAABAgAGBQJS8+DcAAoJECvJNkKAZAZuIZMH/1osuDNLZh541bhtl+LteEA5 CdXpLd6Jlw8DMTrFqB9wLTQUulY9vMbfavkAv+P+cE+vZ5z6H/Wl2LJi1zt/Qw0l 2++icbfSZT30m2XG/W3wx2kCmilW61YnQaufDHXu97xEJKEy9c6FnmQ6pbkxTrtA VKwhACOO4W3K/+DZvYIOBswnpvUOoueSFXNckaMitJ2nTsUK+06uRdEw2kU9aDDo 7AkpJ9fpSFdi1rJ5vo5YKHynxVhrFcnLOZwqaPt+0G4pKJO9ilkns2TNb9Mnlo1P Jn9ucQiGpcoj6s0do5VBpOlHFyhVYCqBytfR2g7iWWGp9G8/XuNQuvb1gllBQaI= =7B4u -----END PGP SIGNATURE----- Chris Cormack (2): Bug 11660: remove disused tools/pdfViewer.pl Bug 11661: sanitize file names supplied to edithelp.pl Fridolin Somers (2): Bug 11249: DBRev 3.14.02.001 Increment version for 3.14.3 release Fridolyn SOMERS (3): Bug 11249: Add Db indexes on borrowers names Bug 7518: certain searches with quotation marks don't work Update release notes for 3.14.03 release Fr?d?ric Demians (1): Bug 11277: fix errors with search facet links in Bootstrap theme Gaetan Boisson (1): Bug 11417: make sure remove_unused_authorities.pl accepts --test Galen Charlton (8): Bug 7518: regression test double-quote in search operand Bug 11179: (follow-up) add comment to item-status.inc Bug 11445: regression test for duplicate hold notifications Bug 11445: avoid sending duplicate hold waiting notifications Bug 11402: (follow-up) add one more unit test Bug 11662: remove disused member-picupload.pl Bug 11666: add permission check for MARC framework import/export Bug 11666: remove SQL as an option for MARC framework exports and imports Jonathan Druart (3): Bug 11279: (follow-up) remove unnecessary check on number of quotes Bug 11075: 'select all' for export no longer clears renew checkboxes Bug 11131: display authority summary correctly when searching by all authority types Katrin Fischer (3): Bug 11279: regression test for picking random quote Bug 11279: Improve how a new quote of the day is selected Bug 11228: Improve hint on patron notification when adding/editing subscriptions Kyle M Hall (1): Bug 11179: make OPAC course details page display status of checked out items correctly Magnus Enger (1): Bug 11188 - Make gather_print_notices.pl die on failed open() Marcel de Rooy (1): Bug 11398: A typo occurred with occured Nicole C. Engard (1): Bug 11403: Add missing help file to new Renew page Owen Leonard (1): Bug 11179: (follow-up) apply fix to Boostrap theme Tomas Cohen Arazi (2): Bug 8921: make koha-common*.deb depend on cron-daemon Bug 11402: make Labels::_guide_box return undef if undefned data is passed ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:14:44 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:14:44 +0000 Subject: [koha-commits] main Koha release repository branch 3.12.x updated. v3.12.09-7-ga0a2767 Message-ID: This is an automated email from the git hooks/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.12.x has been updated via a0a276723c8686d4606855943b07dc36dc0e2790 (commit) via 623fd09ba692561cc1417a0797e16a81dc0f0e92 (commit) via 41e17032d6bc70ceea08c73eb2d8350cb99aa57f (commit) via 412b761e27267b55e07d93ce3ec436cbddaf02d8 (commit) via 4d75ded81b64e23979c44c3ea6611f240745f93e (commit) via 677e9299da6e808bd4c76dc036da9e39c4277edd (commit) via 0b4854ca08e6d298c68f7e891fad1b682cba7b3e (commit) from 9dd804defc30df878b16966fedad4935ba8118ec (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a0a276723c8686d4606855943b07dc36dc0e2790 Author: Tomas Cohen Arazi Date: Thu Feb 6 11:46:23 2014 -0300 Increment version for 3.12.10 release Signed-off-by: Tomas Cohen Arazi commit 623fd09ba692561cc1417a0797e16a81dc0f0e92 Author: Tomas Cohen Arazi Date: Thu Feb 6 11:44:59 2014 -0300 Update release notes for 3.12.10 release Signed-off-by: Tomas Cohen Arazi commit 41e17032d6bc70ceea08c73eb2d8350cb99aa57f Author: Galen Charlton Date: Tue Feb 4 23:03:08 2014 +0000 Bug 11666: remove SQL as an option for MARC framework exports and imports The SQL option for MARC framework imports was subject to a bug whereby somebody could use it to gain access to arbitrary information in the database by uploading an SQL file containing unexpected statements. As it is difficult to securely sanitize SQL, this patch removes the option to use SQL as an import or export format. To test: [1] Verify that SQL no longer appears as an import or export option for the MARC frameworks. [2] Verify that exports and imports in CSV, Excel XML, and ODS formats still work. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Works as advertised. The UI doesn't offer exporting/importing in the SQL format. Crafting the URL to export SQL fallbacks to a spreadsheet format (ODS). Signed-off-by: Katrin Fischer Works as described, passes all tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 94e349ff6ce4a1abb313102decc12429d02dfb4b) Signed-off-by: Tomas Cohen Arazi There were conflicts on the template. The modified strings wont get translated but in as it is an administrative feature that not everyone uses on a daily basis I think it wont hurt. And will get fixed in a couple of weeks anyway. commit 412b761e27267b55e07d93ce3ec436cbddaf02d8 Author: Galen Charlton Date: Tue Feb 4 15:54:33 2014 +0000 Bug 11666: add permission check for MARC framework import/export This patch makes the MARC framework import/export script require that the staff user be logged in with appropriate permissions for managing the MARC frameworks. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer I can confirm the bug and the solution. After applying the patch downloading the file without logging in first is no longer possible. Also passes tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 03d4ed2468bb9ab97b1f7b7d9e29507dc815a8b3) Signed-off-by: Tomas Cohen Arazi commit 4d75ded81b64e23979c44c3ea6611f240745f93e Author: Galen Charlton Date: Sat Feb 1 02:11:38 2014 +0000 Bug 11662: remove disused member-picupload.pl This script is no longer used, and in addition has problematic handling of its parameters that could lead to writing to arbitrary files on the server. To test: [1] Verify that member-picupload.pl is no longer referred to in the codebase after applying this patch. [2] Verify that there are no regressions in patron photo management. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Found no regressions in removing this script. Signed-off-by: Galen Charlton (cherry picked from commit 939079de756fdda1ca8f62c48efe0e2e3034ae32) Signed-off-by: Tomas Cohen Arazi commit 677e9299da6e808bd4c76dc036da9e39c4277edd Author: Chris Cormack Date: Sat Feb 1 15:06:58 2014 +1300 Bug 11661: sanitize file names supplied to edithelp.pl This patch corrects an issue whereby edithelp.pl could be used to create or modify arbitrary files on the server with the permissions of the Apache user. Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 7baf02c263a627b1454577b3141a0af4b8f963d1) Signed-off-by: Tomas Cohen Arazi commit 0b4854ca08e6d298c68f7e891fad1b682cba7b3e Author: Chris Cormack Date: Sat Feb 1 14:18:23 2014 +1300 Bug 11660: remove disused tools/pdfViewer.pl tools/pdfViewer.pl can be used to read artibrary files on the system. It is actually an unused file, so leaving it around serves no purpose and is dangerous. Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer No regressions found. Signed-off-by: Galen Charlton (cherry picked from commit d1b6e0646fd6a70f6724189554e80aaa68aec64b) Signed-off-by: Tomas Cohen Arazi ----------------------------------------------------------------------- Summary of changes: C4/ImportExportFramework.pm | 219 +------------------- admin/import_export_framework.pl | 26 ++- edithelp.pl | 4 +- installer/data/mysql/updatedatabase.pl | 6 + .../prog/en/modules/admin/biblio_framework.tt | 24 +-- kohaversion.pl | 2 +- members/member-picupload.pl | 77 ------- ..._notes_3_12_9.txt => release_notes_3_12_10.txt} | 162 +++++---------- tools/pdfViewer.pl | 42 ---- 9 files changed, 102 insertions(+), 460 deletions(-) delete mode 100755 members/member-picupload.pl copy misc/release_notes/{release_notes_3_12_9.txt => release_notes_3_12_10.txt} (58%) delete mode 100755 tools/pdfViewer.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:14:53 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:14:53 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.12.10 created. v3.12.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, v3.12.10 has been created at f6a72c124799adb18cccdba16e1f3a26b6e2445e (tag) tagging a0a276723c8686d4606855943b07dc36dc0e2790 (commit) replaces v3.12.09 tagged by Tomas Cohen Arazi on Thu Feb 6 11:46:49 2014 -0300 - Log ----------------------------------------------------------------- Koha release 3.12.10 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (GNU/Linux) iQIcBAABAgAGBQJS86BZAAoJEAonLqGy88FfteUP/3u045zqK0OOKReKU0ho8hqo lCcf/EScHvUzUWHFRm+d63n/sTFv4H2N7E6XcrSHNg81nWC5ddc+S4mXM/nUIr6Z xLoVHElmNGC+xdu9gkaHAM9BHqBj6+bbKeIxCBjAk1M/+WWNmhJwUheHx/CLc5/s 0xI/wbiyxZgalAfQHjhbKINmjKVIipxEdAScyFLN16yELDbm73L8p/yjcgG5zUgJ pp2UlIYh6NZq1EkVsMqup0C+INb/N03KGvcG0jvS9jVz2urk2Pu1oDpXfMA5fWcW ZfNDD+IllcIIlxWgAF3nokrKomtCQRumCTdJzLvS4OYXHUqZcJcwManb7aMgPj/G DBdA7WWDQ1VDaocSv5bZ3HKqLRikLOHejVxU9Ob4Fg7VTdoAvze4H4OAhdhupNyw whBScdFDwkMh2EK57mgKdy5K2bvBnzUqfreeIOPsn4k6FgGSyrzgkADgjF/mb0+e JFXNusrdfV1h637anw5bFxf4uUJFyoQISnIXjGERLwyhKlNCk+f6EHPJKq/537lq BGF4ID3ghQ0GQN154dS3GxLj5NNRG5iMw0pGBsAiy20NUI8dpp7ZdxXnpSZe+Zqr lQuYGrKv45a4HpnrK+hT3mlHMAC7tJ3b59bvpaBQV6Qf7NFvHii/uEJMcgoBcHKc PBpGTGrZykHcvxzYqOkM =1eeg -----END PGP SIGNATURE----- Chris Cormack (2): Bug 11660: remove disused tools/pdfViewer.pl Bug 11661: sanitize file names supplied to edithelp.pl Galen Charlton (3): Bug 11662: remove disused member-picupload.pl Bug 11666: add permission check for MARC framework import/export Bug 11666: remove SQL as an option for MARC framework exports and imports Tomas Cohen Arazi (2): Update release notes for 3.12.10 release Increment version for 3.12.10 release ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:16:06 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:16:06 +0000 Subject: [koha-commits] main Koha release repository branch 3.10.x updated. v3.10.12-17-g90a611a Message-ID: This is an automated email from the git hooks/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.10.x has been updated via 90a611aa7d0f2db3422c721e722939235953fc03 (commit) via 3eadfee02ac502c0eb53a27bfac961764930d186 (commit) via 2133e9b0c21f4979c446103a22c4d74b57ac737d (commit) via b2f0f7c8fa994bde68e88b7f72b053a8ab8d9ae5 (commit) via 28a30b6bd864f6f7440b81f8946aec9bae1bcabf (commit) via 2dcde0864641941b60c87a07177da78fb313214f (commit) via 9344473e93b41f243d19d7a3593a427114242d39 (commit) via adf4597ec35353b9908236420a8a3c3a5f6a8f06 (commit) from 485f871438d6fd70cd566e26766564275ad54134 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 90a611aa7d0f2db3422c721e722939235953fc03 Author: Bernardo Gonzalez Kriegel Date: Thu Feb 6 13:54:27 2014 -0300 Database update for 3.10.13 release commit 3eadfee02ac502c0eb53a27bfac961764930d186 Author: Bernardo Gonzalez Kriegel Date: Thu Feb 6 13:51:50 2014 -0300 Release notes for 3.10.13 release Signed-off-by: Bernardo Gonzalez Kriegel commit 2133e9b0c21f4979c446103a22c4d74b57ac737d Author: Galen Charlton Date: Tue Feb 4 23:03:08 2014 +0000 Bug 11666: remove SQL as an option for MARC framework exports and imports The SQL option for MARC framework imports was subject to a bug whereby somebody could use it to gain access to arbitrary information in the database by uploading an SQL file containing unexpected statements. As it is difficult to securely sanitize SQL, this patch removes the option to use SQL as an import or export format. To test: [1] Verify that SQL no longer appears as an import or export option for the MARC frameworks. [2] Verify that exports and imports in CSV, Excel XML, and ODS formats still work. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Works as advertised. The UI doesn't offer exporting/importing in the SQL format. Crafting the URL to export SQL fallbacks to a spreadsheet format (ODS). Signed-off-by: Katrin Fischer Works as described, passes all tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 94e349ff6ce4a1abb313102decc12429d02dfb4b) Signed-off-by: Tomas Cohen Arazi There were conflicts on the template. The modified strings wont get translated but in as it is an administrative feature that not everyone uses on a daily basis I think it wont hurt. And will get fixed in a couple of weeks anyway. (cherry picked from commit 41e17032d6bc70ceea08c73eb2d8350cb99aa57f) Signed-off-by: Bernardo Gonzalez Kriegel (cherry picked from commit 41e17032d6bc70ceea08c73eb2d8350cb99aa57f) commit b2f0f7c8fa994bde68e88b7f72b053a8ab8d9ae5 Author: Galen Charlton Date: Tue Feb 4 15:54:33 2014 +0000 Bug 11666: add permission check for MARC framework import/export This patch makes the MARC framework import/export script require that the staff user be logged in with appropriate permissions for managing the MARC frameworks. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer I can confirm the bug and the solution. After applying the patch downloading the file without logging in first is no longer possible. Also passes tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 03d4ed2468bb9ab97b1f7b7d9e29507dc815a8b3) Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 412b761e27267b55e07d93ce3ec436cbddaf02d8) Signed-off-by: Bernardo Gonzalez Kriegel (cherry picked from commit 412b761e27267b55e07d93ce3ec436cbddaf02d8) commit 28a30b6bd864f6f7440b81f8946aec9bae1bcabf Author: Galen Charlton Date: Sat Feb 1 02:11:38 2014 +0000 Bug 11662: remove disused member-picupload.pl This script is no longer used, and in addition has problematic handling of its parameters that could lead to writing to arbitrary files on the server. To test: [1] Verify that member-picupload.pl is no longer referred to in the codebase after applying this patch. [2] Verify that there are no regressions in patron photo management. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Found no regressions in removing this script. Signed-off-by: Galen Charlton (cherry picked from commit 939079de756fdda1ca8f62c48efe0e2e3034ae32) Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 4d75ded81b64e23979c44c3ea6611f240745f93e) Signed-off-by: Bernardo Gonzalez Kriegel (cherry picked from commit 4d75ded81b64e23979c44c3ea6611f240745f93e) commit 2dcde0864641941b60c87a07177da78fb313214f Author: Chris Cormack Date: Sat Feb 1 15:06:58 2014 +1300 Bug 11661: sanitize file names supplied to edithelp.pl This patch corrects an issue whereby edithelp.pl could be used to create or modify arbitrary files on the server with the permissions of the Apache user. Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 7baf02c263a627b1454577b3141a0af4b8f963d1) Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 677e9299da6e808bd4c76dc036da9e39c4277edd) Signed-off-by: Bernardo Gonzalez Kriegel (cherry picked from commit 677e9299da6e808bd4c76dc036da9e39c4277edd) commit 9344473e93b41f243d19d7a3593a427114242d39 Author: Chris Cormack Date: Sat Feb 1 14:18:23 2014 +1300 Bug 11660: remove disused tools/pdfViewer.pl tools/pdfViewer.pl can be used to read artibrary files on the system. It is actually an unused file, so leaving it around serves no purpose and is dangerous. Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer No regressions found. Signed-off-by: Galen Charlton (cherry picked from commit d1b6e0646fd6a70f6724189554e80aaa68aec64b) Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 0b4854ca08e6d298c68f7e891fad1b682cba7b3e) Signed-off-by: Bernardo Gonzalez Kriegel (cherry picked from commit 0b4854ca08e6d298c68f7e891fad1b682cba7b3e) commit adf4597ec35353b9908236420a8a3c3a5f6a8f06 Author: Bernardo Gonzalez Kriegel Date: Thu Feb 6 13:01:51 2014 -0300 Bug 7478: (followup) Branches template plugin not available in 3.10.x RM followup This patch reverts the use of the Branches plugin for 3.10.x as it is not available. The behaviour reverts to the previous one, but retains translatability. Signed-off-by: Bernardo Gonzalez Kriegel ----------------------------------------------------------------------- Summary of changes: C4/ImportExportFramework.pm | 219 +------------------- admin/import_export_framework.pl | 26 ++- edithelp.pl | 4 +- installer/data/mysql/updatedatabase.pl | 6 + .../prog/en/modules/admin/biblio_framework.tt | 24 +-- .../prog/en/modules/reports/catalogue_out.tt | 3 +- kohaversion.pl | 2 +- members/member-picupload.pl | 77 ------- ...notes_3_10_12.txt => release_notes_3_10_13.txt} | 182 +++++++--------- tools/pdfViewer.pl | 42 ---- 10 files changed, 129 insertions(+), 456 deletions(-) delete mode 100755 members/member-picupload.pl copy misc/release_notes/{release_notes_3_10_12.txt => release_notes_3_10_13.txt} (55%) delete mode 100755 tools/pdfViewer.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:16:17 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:16:17 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.10.13 created. v3.10.13 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The annotated tag, v3.10.13 has been created at 4a92cfc8ecb2625b3c8cb109f98f118fe7428d87 (tag) tagging 90a611aa7d0f2db3422c721e722939235953fc03 (commit) replaces v3.10.12 tagged by Bernardo Gonzalez Kriegel on Thu Feb 6 13:58:44 2014 -0300 - Log ----------------------------------------------------------------- Koha release 3.10.13 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJS879EAAoJEN+HQNGACsDaD7kQALMBJL0pOdmJ/96resUoj80I fJTN4HuBIHPsBjsVdxWg9JGHTOSLZMn0VXvqNR3A0KS0T8gvOFMUuit/CHnEE5uV ungBJAf9+a2rdfCOuDNdwzDlttjQ6/saoZX4LNBM+7xA0repPucXwFsI0sq4NbcR AbdC5wkA04Fwctzcvrm6XoElgbb0jW8YzTrd9BiLE1YijTzZRPbqD2WmgIc5aKKK nTX4wp6qhyOdGfqcPyjCXwcqsiLKjk9hc3BXLxOY++H1NZjUOVALWKrDneos8UG2 Qf+FLaVZHKMZoi6VjJPqmfeC2GN2K4BjTE3JZaSZCIT0RA8yhVsPl3Jj/j9une/A A6opdyr6GUkUJIhkyfOYmBRh0io/oF3R1Qu1tBr5MI57jy2fOJWMETXqoTDZv+HJ vRE+xhILHcY0GCBX1G1ZNZSwHybQDHJPxmv578D8umpElLIPhGHSA4TgYdgyY+yW KLpi7IvztE/8b+QF0II5QX2oHrNZOsTPl7QZrvFK0v562o9Vua/vHnGPSBL2M8a4 rm+/vgmATA0PYqBDhxjOoIhN8X0OIevEGOJnZMMgwRTdwqHUZGBPbErdLG7jKgc3 CrN9bZjqpdPQLvrgZuh6gzrZboa0BmF8Zr5+/QQ9wUYIsZcP0fgj4cTcS4YuLYlR sLfeWIIf3IqAMVwH7GRZ =307J -----END PGP SIGNATURE----- Bernardo Gonzalez Kriegel (3): Bug 7478: (followup) Branches template plugin not available in 3.10.x Release notes for 3.10.13 release Database update for 3.10.13 release Chris Cormack (2): Bug 11660: remove disused tools/pdfViewer.pl Bug 11661: sanitize file names supplied to edithelp.pl Fridolyn SOMERS (2): Bug 10564 - use OPACURLOpenInNewWindow in UNIMARCslim2OPACResults.xsl Bug 10718: fix items with no checkouts report Galen Charlton (3): Bug 11662: remove disused member-picupload.pl Bug 11666: add permission check for MARC framework import/export Bug 11666: remove SQL as an option for MARC framework exports and imports Janusz Kaczmarek (1): Bug 10331 - Little errors in unimarc_field_4XX.pl (punctuation) Kyle M Hall (4): Bug 10027: include fine details when printing a fine Bug 10027: (follow-up) tidy members/printinvoice.pl Bug 10027: (follow-up) improve display of fine details on printed invoice Bug 9531: Make SIP2 message terminator configurable via SIPconfig.xml Owen Leonard (2): Bug 7478: fix template translation problem in catalogue_out.tt Bug 10619 - fix errors in sco.css for the CCSR OPAC templates ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:17:29 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:17:29 +0000 Subject: [koha-commits] main Koha release repository branch 3.8.x updated. v3.08.22-7-g042b6f1 Message-ID: This is an automated email from the git hooks/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.8.x has been updated via 042b6f170bac364b41435c759de376f0f8b93b45 (commit) via e0d439c60d85d8107d070d3e1b97f8e3b8f54470 (commit) via 50d8aa80fb62afc822a9093bbb2638a687e2487b (commit) via c757c2c9c1fe38c8e72f9fdb4f0104c2856f9fde (commit) via c87b6dc048645827904c40c730e9709963414029 (commit) via 3517a9399588c4b7be6abebfeeb58facab06405f (commit) via 0057c98f2584d431c7549fd139efbbe388343224 (commit) from f421f4e8de1efa28aeaecdfd0cbddb5978b7d450 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 042b6f170bac364b41435c759de376f0f8b93b45 Author: Galen Charlton Date: Fri Feb 7 01:17:02 2014 +0000 bump version for Koha 3.8.23 Signed-off-by: Galen Charlton commit e0d439c60d85d8107d070d3e1b97f8e3b8f54470 Author: Galen Charlton Date: Fri Feb 7 01:16:30 2014 +0000 release notes for Koha 3.8.23 Signed-off-by: Galen Charlton commit 50d8aa80fb62afc822a9093bbb2638a687e2487b Author: Galen Charlton Date: Tue Feb 4 23:03:08 2014 +0000 Bug 11666: remove SQL as an option for MARC framework exports and imports The SQL option for MARC framework imports was subject to a bug whereby somebody could use it to gain access to arbitrary information in the database by uploading an SQL file containing unexpected statements. As it is difficult to securely sanitize SQL, this patch removes the option to use SQL as an import or export format. To test: [1] Verify that SQL no longer appears as an import or export option for the MARC frameworks. [2] Verify that exports and imports in CSV, Excel XML, and ODS formats still work. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Works as advertised. The UI doesn't offer exporting/importing in the SQL format. Crafting the URL to export SQL fallbacks to a spreadsheet format (ODS). Signed-off-by: Katrin Fischer Works as described, passes all tests and QA script. Signed-off-by: Galen Charlton Conflicts: koha-tmpl/intranet-tmpl/prog/en/modules/admin/biblio_framework.tt commit c757c2c9c1fe38c8e72f9fdb4f0104c2856f9fde Author: Galen Charlton Date: Tue Feb 4 15:54:33 2014 +0000 Bug 11666: add permission check for MARC framework import/export This patch makes the MARC framework import/export script require that the staff user be logged in with appropriate permissions for managing the MARC frameworks. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer I can confirm the bug and the solution. After applying the patch downloading the file without logging in first is no longer possible. Also passes tests and QA script. Signed-off-by: Galen Charlton commit c87b6dc048645827904c40c730e9709963414029 Author: Galen Charlton Date: Sat Feb 1 02:11:38 2014 +0000 Bug 11662: remove disused member-picupload.pl This script is no longer used, and in addition has problematic handling of its parameters that could lead to writing to arbitrary files on the server. To test: [1] Verify that member-picupload.pl is no longer referred to in the codebase after applying this patch. [2] Verify that there are no regressions in patron photo management. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Found no regressions in removing this script. Signed-off-by: Galen Charlton commit 3517a9399588c4b7be6abebfeeb58facab06405f Author: Chris Cormack Date: Sat Feb 1 15:06:58 2014 +1300 Bug 11661: sanitize file names supplied to edithelp.pl This patch corrects an issue whereby edithelp.pl could be used to create or modify arbitrary files on the server with the permissions of the Apache user. Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 0057c98f2584d431c7549fd139efbbe388343224 Author: Chris Cormack Date: Sat Feb 1 14:18:23 2014 +1300 Bug 11660: remove disused tools/pdfViewer.pl tools/pdfViewer.pl can be used to read artibrary files on the system. It is actually an unused file, so leaving it around serves no purpose and is dangerous. Signed-off-by: Galen Charlton Signed-off-by: Katrin Fischer No regressions found. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/ImportExportFramework.pm | 219 +------------------- admin/import_export_framework.pl | 26 ++- edithelp.pl | 4 +- installer/data/mysql/updatedatabase.pl | 6 + .../prog/en/modules/admin/biblio_framework.tt | 24 +-- kohaversion.pl | 2 +- members/member-picupload.pl | 77 ------- ...e_notes_3_8_22.txt => release_notes_3_8_23.txt} | 100 +++++---- tools/pdfViewer.pl | 42 ---- 9 files changed, 108 insertions(+), 392 deletions(-) delete mode 100755 members/member-picupload.pl copy misc/release_notes/{release_notes_3_8_22.txt => release_notes_3_8_23.txt} (60%) delete mode 100755 tools/pdfViewer.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 02:17:43 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 01:17:43 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.08.23 created. v3.08.23 Message-ID: This is an automated email from the git 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.08.23 has been created at 1afa72b3596f64825dbcae8032d7ccad8217b575 (tag) tagging 042b6f170bac364b41435c759de376f0f8b93b45 (commit) replaces v3.08.22 tagged by Galen Charlton on Fri Feb 7 01:17:41 2014 +0000 - Log ----------------------------------------------------------------- Koha release 3.8.23 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEABECAAYFAlL0NDUACgkQ+ECRQ8R3E0P6tACfcKWphNce2IEeXYKka6sPrNnR p7MAnj7LitYPv0obxt8htEhXjqbBklLr =LIu9 -----END PGP SIGNATURE----- Chris Cormack (2): Bug 11660: remove disused tools/pdfViewer.pl Bug 11661: sanitize file names supplied to edithelp.pl Galen Charlton (5): Bug 11662: remove disused member-picupload.pl Bug 11666: add permission check for MARC framework import/export Bug 11666: remove SQL as an option for MARC framework exports and imports release notes for Koha 3.8.23 bump version for Koha 3.8.23 ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 08:45:21 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 07:45:21 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-1-g171e2b4 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 171e2b47460c7afa489b16eb885a9862eef9d43a (commit) from 7b68bfd53c58d0c1142914cc7f519362ef64fcc8 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 171e2b47460c7afa489b16eb885a9862eef9d43a Author: Tomas Cohen Arazi Date: Wed Jan 15 21:06:04 2014 -0300 Bug 9579: fix truncation of facets containing multi-byte characters We seem to be relying on whatever Zoom::Results->render return, and Perl doesn't explicitly consider it UNICODE data. That's why CORE::substr (and probably CORE::length too) cut the bytes wrong. This patch just decodes the UTF-8 data that render() returns and then Perl behaves, heh. It uses Encode::decode_utf8 which is already a dependency for the current stable Koha releases. REVISED TEST PLAN ----------------- 1) Import the attached sample records. 2) Rebuild your indexes 3) In OPAC search for ????????? : ???? ? ??? -- There will be ugly diamonds with question marks in the facets 4) apply the patch 5) Search again. -- The names will be properly truncated. NOTE: This test assumes FacetLabelTruncationLength = 20. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Mark Tompsett Signed-off-by: Katrin Fischer Passes all tests and QA script. Works as described, tested with several German, English and the Arabic test record. Arabic strings now display correctly and no regression was found. Signed-off-by: Galen Charlton I've reviewed it and approve its inclusion in 3.14.x and earlier. I will use the patches for bug 11096, once they pass QA, for the master branch. Signed-off-by: Galen Charlton Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: C4/Search.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 15:31:38 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 14:31:38 +0000 Subject: [koha-commits] main Koha release repository branch 3.12.x updated. v3.12.10-8-gcc4a2a6 Message-ID: This is an automated email from the git hooks/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.12.x has been updated via cc4a2a641ed9d662afbf188b418cc62f41b4cdc3 (commit) via 149274689deca86d0d102fe2f681c0c470cd5c86 (commit) via a60cd8a6b7dc42759ef9b6ea7deb54790fab2605 (commit) via 5739cd798d5a76cb1f69b772ac5a0efde0ec532e (commit) via 66ae2ee57d0daa168fe3ff4d33585241b890c873 (commit) via 66b185db7a16e3883a45361aa1075b95a7404de9 (commit) via a120f4cf09d7226febcae3320aa3de8bf8e44552 (commit) via 9cd6cc2b94e24daeb2c140f5da43fcc28c01b99a (commit) from a0a276723c8686d4606855943b07dc36dc0e2790 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit cc4a2a641ed9d662afbf188b418cc62f41b4cdc3 Author: Tomas Cohen Arazi Date: Fri Feb 7 11:50:48 2014 -0300 DBRev 3.12.10.001 Signed-off-by: Tomas Cohen Arazi commit 149274689deca86d0d102fe2f681c0c470cd5c86 Author: Katrin Fischer Date: Mon Dec 23 19:49:14 2013 +0100 Bug 8018: (follow-up) fixing some wrong capitalization Fixes capitalization in 2 places: - Delete a subfield - Yes/No options - Edit a subfield - Edit subfield Signed-off-by: Galen Charlton (cherry picked from commit 3b9d8074b85b7d06c555491a75a48ac751560ec2) Signed-off-by: Fridolin SOMERS (cherry picked from commit bbc101bb1cb6705ea518b5f4fbd786393c643c22) Signed-off-by: Tomas Cohen Arazi commit a60cd8a6b7dc42759ef9b6ea7deb54790fab2605 Author: Tomas Cohen Arazi Date: Thu Dec 12 12:24:11 2013 -0300 Bug 8018: (followup) make the default more explicit This patch: - Makes the new subfield tab show maxlength=9999 as default (instead of empty-then-zero). - Updates the help to make exlpicit that 0 or empty defaults to 9999. - Assumes all the subfields created with maxlength=0 inadvertedly are meant to mean "no limit" and hence update the database to reflect that. To test (this patch and Pablo's): - Edit a MARC framework, edit some field's subfields. - Use the 'New' tab to create a new subfield (choose an unused letter). - See in "More constrains" that the "Max length" field is empty. Leave it as-is. - Save the changes (the new subfield). - Edit the field again, verify that "Max length" is 0. - Try tu use the framework and the the field/subfield just created > FAIL - Apply the patches, upgrade - Try to use the framework/field/subfield > SUCCESS (0 was converted to 9999) - Repeat from the begining, "Max length" should show 9999 on the new subfield tab. - Leave it empty, it is saved as 9999. Edit: small typo Sponsored-by: Universidad Nacionald de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Passes QA script and tests in t and xt. Tested: - deleting an existing subfield - adding a new subfield with new default 9999 - editing the new subfield, changing value to 8888 - deleting new subfield - adding new subfield, using 8888 as length Signed-off-by: Galen Charlton (cherry picked from commit b5eab7c20bb8c2d07966bf1f68eaf0a7f953222e) Signed-off-by: Fridolin SOMERS Signed-off-by: Tomas Cohen Arazi Conflicts: installer/data/mysql/updatedatabase.pl (cherry picked from commit 828d9b9f20fa4f01b6fb6bd4d9ff20d674f3ceac) commit 5739cd798d5a76cb1f69b772ac5a0efde0ec532e Author: Pablo Bianchi Date: Wed Dec 11 15:54:54 2013 -0300 Bug 8018: MARC framework max subfield length should default to 9999 The default value for the marc_subfield_structure.maxlenght is 9999 in the DB. Currently the template passes an empty value which is casted to 0 by the CGI. This simple patch validates the input and converts to the default (9999) if not defined or 0. Another approach could be changing the 9999 default and/or treating 0 as 'no-limit'. Signed-off-by: Tomas Cohen Arazi Works by defaulting 0 or "" to 9999. Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton (cherry picked from commit 1ebbf40ecc07b9474e81e20ec1598659ab027d7a) Signed-off-by: Fridolin SOMERS (cherry picked from commit a3f0eb97697213a267de0f8191e2acbc4197f6ab) Signed-off-by: Tomas Cohen Arazi commit 66ae2ee57d0daa168fe3ff4d33585241b890c873 Author: Kyle M Hall Date: Wed Dec 18 14:44:53 2013 -0500 Bug 11419: display Z39.50 search errors more completely When a z39.50 server isn't able to be searched successfully, the yellow error box came up empty. This patch fixes the problem. Test Plan: 1) Go to Administration/z39.50 servers 2) Create a fake z39.50 server with a made up address 3) Go to cataloging, search only that server 4) Note the empty yellow alert box 5) Apply this patch 6) Re-run the search, not the alert box has a message in it now Signed-off-by: Nora Blake Signed-off-by: Katrin Fischer Passes all tests and QA script. Works according to test plan. When one of the selected servers gives result no dialog box is shown before and after applying the patch. Signed-off-by: Galen Charlton (cherry picked from commit 0fc114eee3f649abea88a62502211c595c2867b8) Signed-off-by: Fridolin SOMERS (cherry picked from commit 0c4e9a01544d898db10e704aea15633d689311be) Signed-off-by: Tomas Cohen Arazi commit 66b185db7a16e3883a45361aa1075b95a7404de9 Author: Matthias Meusburger Date: Wed Dec 18 11:20:05 2013 +0100 Bug 11412: fix potential bulkmarcimport crash when searching for duplicates in authorities bulkmarcimport.pl can crash when searching for duplicates if the 005 field from the incoming or local record is not defined. This patch fixes it. Signed-off-by: Chris Cormack Test plan 1/ Create a record with no 005 field 2/ Try to import it checking for duplicates, notice it crashes 3/ Try with a record with a 005 field, but the one in Koha missing one, still crashes 4/ Apply patch 5/ No more crash Signed-off-by: Katrin Fischer Passes all tests and QA script. Patch fixes the problem described for importing authorities with the bulkmarcimport.pl when trying to match with existing records. Signed-off-by: Galen Charlton (cherry picked from commit 28d97e322805a42680527232b151754b4778aed8) Signed-off-by: Fridolin SOMERS (cherry picked from commit 16df6d75044a6b1d64bb0ab4f0bded4b4699d5d6) Signed-off-by: Tomas Cohen Arazi commit a120f4cf09d7226febcae3320aa3de8bf8e44552 Author: Jonathan Druart Date: Tue Dec 24 14:35:36 2013 +0100 Bug 10453: fix unintended password reset when updating child to adult ModMember supposes the password given in parameter is the password string, so if it receives the encrypted password, it will encrypt it again! By simply deleting the password key from the hash, ModMember leaves the password unchanged. Test plan: 1/ Create or choose a child patron 2/ Update it to an adult category using the "Update child to adult patron" link 3/ Try to log in at the OPAC with this patron: It is not possible, the password has changed 4/ Apply the patch and try again previous steps Signed-off-by: Mark Tompsett Signed-off-by: Katrin Fischer Confirmed the problem and tested the patch fixes it. Passes all tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 3c5b4712717d082b66376915c47b6b5880695d31) Signed-off-by: Fridolin SOMERS (cherry picked from commit 810168643d02ebb69c2d56a5fa17b811b06d68a8) Signed-off-by: Tomas Cohen Arazi commit 9cd6cc2b94e24daeb2c140f5da43fcc28c01b99a Author: Jacek Ablewicz Date: Sat Dec 14 12:07:11 2013 +0100 Bug 9948: fix creation/updating of items when partially receiving an order Problem summary: when doing partial receives for the given order - 1) if AcqCreateItem is set to 'ordering', various item data (price, dateaccessioned, replacementprice, replacementpricedate) are getting erroneously updated on the wrong (yet to be received == not the ones being currently received) item records 2) if AcqCreateItem is set to 'receiving', newly received item records are being created without the aforementioned fields set to the proper values This (trivial) patch should deal with both cases, hopefully without breaking enything else. To test: - apply the patch, - create some orders with 2+ quantity - test partial & non-partial receives for those orders - ensure the received item records are getting modified (for AcqCreateItem set to 'ordering') and/or created (for AcqCreateItem set to 'receiving') correctly for both partial and non-partial receives - receiving orders with quantity = 1 / receiving orders in non-partial mode should be still working fine for 1) & 2) scenarios (i.e., AcqCreateItem set to 'ordering' / AcqCreateItem set to 'receiving') Signed-off-by: Nicole C. Engard Works as I'd expect now! Awesome patch. Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer Passes all tests and QA script. Also: t/db_dependent/Acquisition/ t/db_dependent/Acquisition.t Created 2 orders with 3 items each for both settings of AcqCreateItem (on receive, on order) with the patches applied. No regressions found. Closed baskets and received shipments for each, with AcqCreateItem set according to how the order was created. First recreated the problem without the patches, reloaded database and confirmed that the patch fixes it. No problems found. Signed-off-by: Galen Charlton (cherry picked from commit 95e2754af6a2dbd5f042a1c3504488f5de8c8d23) Signed-off-by: Fridolin SOMERS (cherry picked from commit 7f57015aa99c9a99cf5d0715f9c55222941c1c27) Signed-off-by: Tomas Cohen Arazi ----------------------------------------------------------------------- Summary of changes: C4/Breeding.pm | 2 +- acqui/finishreceive.pl | 4 ++-- admin/marc_subfields_structure.pl | 3 ++- installer/data/mysql/updatedatabase.pl | 7 +++++++ .../prog/en/modules/admin/marc_subfields_structure.tt | 6 +++--- .../prog/en/modules/help/admin/marc_subfields_structure.tt | 2 +- kohaversion.pl | 2 +- members/update-child.pl | 1 + misc/migration_tools/bulkmarcimport.pl | 4 +++- 9 files changed, 21 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 16:32:17 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 15:32:17 +0000 Subject: [koha-commits] main Koha release repository branch 3.12.x updated. v3.12.10-21-ge3a0cbc Message-ID: This is an automated email from the git hooks/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.12.x has been updated via e3a0cbc1ace403bbf9ebf5c5e7a8fa735e7fdf38 (commit) via 8e08bcae90140f733552fc57acd5c5fba5d72080 (commit) via aad3a40dfa7c31bbe2d13bd4d7ed49822c30c9c4 (commit) via f09115dea10ee0472c0eb6373689efe8cf31ffc4 (commit) via afec6faccc58978158ebe31ac85a96ac7c1308a0 (commit) via e1b1dceabb52e72c6b899e625f7e9308aba8f15b (commit) via 6b09a1c19558d58fd3d1d323f89416455fda5706 (commit) via b088664b1f6a2811ea52f4e2eb825786d4c0e2d8 (commit) via 59d3dcb508a4f3be750e79797254f43bf5e1fae9 (commit) via bff00739703bd38951b171078f0413d3413705fe (commit) via cc71930a84761177279554dc467e23bf9d736f62 (commit) via 87079a0aa149b67b064bfdbb8eb603fa60a260fb (commit) via e3bf3e4521fa09a0d5dddcbb083282ec9c8e04b8 (commit) from cc4a2a641ed9d662afbf188b418cc62f41b4cdc3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e3a0cbc1ace403bbf9ebf5c5e7a8fa735e7fdf38 Author: Tomas Cohen Arazi Date: Tue Jan 14 11:35:31 2014 -0300 Bug 11540: (follow-up) add a couple of tests more This patch makes sure all scenarios are covered for SetUTF8Flag. Signed-off-by: Emma Heath Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton (cherry picked from commit 0db732980aec0e7f7257b559419781adfab538ed) Signed-off-by: Tomas Cohen Arazi commit 8e08bcae90140f733552fc57acd5c5fba5d72080 Author: Emma Heath Date: Tue Jan 14 14:18:47 2014 +1300 Bug 11540: increase test coverage of Charset.pm To test 1. run prove t/Charset.t 2. apply patch 3. run prove t/Charset.t notice more tests are run Signed-off-by: Tom Houlker Signed-off-by: Tomas Cohen Arazi Signed-off-by: Katrin Fischer Tests pass! Signed-off-by: Galen Charlton (cherry picked from commit 6a6df3f5d755aa462f727fa21464883b31d51462) Signed-off-by: Tomas Cohen Arazi commit aad3a40dfa7c31bbe2d13bd4d7ed49822c30c9c4 Author: Tomas Cohen Arazi Date: Wed Jan 15 21:06:04 2014 -0300 Bug 9579: fix truncation of facets containing multi-byte characters We seem to be relying on whatever Zoom::Results->render return, and Perl doesn't explicitly consider it UNICODE data. That's why CORE::substr (and probably CORE::length too) cut the bytes wrong. This patch just decodes the UTF-8 data that render() returns and then Perl behaves, heh. It uses Encode::decode_utf8 which is already a dependency for the current stable Koha releases. REVISED TEST PLAN ----------------- 1) Import the attached sample records. 2) Rebuild your indexes 3) In OPAC search for ????????? : ???? ? ??? -- There will be ugly diamonds with question marks in the facets 4) apply the patch 5) Search again. -- The names will be properly truncated. NOTE: This test assumes FacetLabelTruncationLength = 20. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Mark Tompsett Signed-off-by: Katrin Fischer Passes all tests and QA script. Works as described, tested with several German, English and the Arabic test record. Arabic strings now display correctly and no regression was found. Signed-off-by: Galen Charlton I've reviewed it and approve its inclusion in 3.14.x and earlier. I will use the patches for bug 11096, once they pass QA, for the master branch. Signed-off-by: Galen Charlton Signed-off-by: Fridolin Somers (cherry picked from commit 171e2b47460c7afa489b16eb885a9862eef9d43a) Signed-off-by: Tomas Cohen Arazi commit f09115dea10ee0472c0eb6373689efe8cf31ffc4 Author: Marcel de Rooy Date: Mon Dec 16 12:01:21 2013 +0100 Bug 11398: A typo occurred with occured This patch cures occured and makes occurred occur. Note that I found them while testing bug 11170. In a follow-up of 11170, I corrected this typo in parcels.tt. This patch touches update22to30.pl and modborrowers.tt Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Fixes a typo in 2 files. Signed-off-by: Galen Charlton (cherry picked from commit 9921228f2a12de47d8e1fc85e936562c20a7abe4) Signed-off-by: Fridolin Somers (cherry picked from commit f69e836569ee122ca42d6bf77ebac9dd656f55e5) Signed-off-by: Tomas Cohen Arazi commit afec6faccc58978158ebe31ac85a96ac7c1308a0 Author: Galen Charlton Date: Mon Dec 30 16:22:05 2013 +0000 Bug 11402: (follow-up) add one more unit test This test exercise the case where defined parameters are passed to the _guide_box() routine. Signed-off-by: Galen Charlton (cherry picked from commit 7d01e61cdf96f06d3f823eaaa435e2850bacf7e4) Signed-off-by: Fridolin Somers (cherry picked from commit ef6eeba806fcea5e9cab652f425546de90147285) Signed-off-by: Tomas Cohen Arazi commit e1b1dceabb52e72c6b899e625f7e9308aba8f15b Author: Tomas Cohen Arazi Date: Mon Dec 16 11:55:56 2013 -0300 Bug 11402: make Labels::_guide_box return undef if undefned data is passed That's it. A guide box cannot be created if invalid data is passed. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Passes all tests and QA script, includes new unit tests. Signed-off-by: Galen Charlton (cherry picked from commit 4720cbc4145223f1ffd653efdefd1a4f724d3144) Signed-off-by: Fridolin Somers (cherry picked from commit c129755ce41fcc3712c987149d5cbc4dec696cf6) Signed-off-by: Tomas Cohen Arazi commit 6b09a1c19558d58fd3d1d323f89416455fda5706 Author: Magnus Enger Date: Sat Nov 23 22:57:03 2013 +0100 Bug 11188 - Make gather_print_notices.pl die on failed open() Problem: If you tell gather_print_notices.pl to write output to a location you do not have write access to, it will silently fail to write the data, but still mark unsent messages as sent. Solution: This patch adds two lines of defense: 1. Check that the location given for the output is writable 2. use "open() or die" instead of just "open()" when writing the output The first measure should catch most of the potential errors, but I guess a directory can be writable, but the open() still can fail because the disk is full or something similar. To test: - Make sure you have some unsent messages in the message_queue table, that do not have an email adress - Apply the patch - Run the script, pointing at a location you do not have access to write to. Check that the script exits with an appropriate error message, and that the unsent messages are still unsent. Do this both with and without the -s option. - To fake passing the first line of defence, comment out line 62 and put this in instead: if ( !$output_directory || !-d $output_directory ) { - Run the script again as above, check you get an appropriate error and that the message queue is not touched - Reset line 62 to how it was - Run the script against a directory you do have access to write to and check that output is produced as expected and that messages are marked as sent - Sign off Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Passes all tests and QA script. Works as described. Signed-off-by: Galen Charlton (cherry picked from commit e8a24c35f64cb461a80f768b505bbf16c49dfeff) Signed-off-by: Fridolin Somers (cherry picked from commit ac5a13eaa34b2377d39b362ed0326f200b5365e5) Signed-off-by: Tomas Cohen Arazi commit b088664b1f6a2811ea52f4e2eb825786d4c0e2d8 Author: Gaetan Boisson Date: Wed Dec 18 15:19:50 2013 +0100 Bug 11417: make sure remove_unused_authorities.pl accepts --test This patches adds support for the --test option, as well as a short message telling the user the script is running in test mode. Test plan : - Launch the script with -h to see the help - Launch the script with --test and --aut with an authtypecode that is used in your instance - Make sure it does the same thing as launching it with -t - Launch the script for real and make sure it still works as expected, deleting unused authorities. Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 6657860010ef27792251596590c1471ad5d08ad8) Signed-off-by: Fridolin Somers (cherry picked from commit f6ab47d2e2039fde60670e7541f030d44dbc6bae) Signed-off-by: Tomas Cohen Arazi commit 59d3dcb508a4f3be750e79797254f43bf5e1fae9 Author: Jonathan Druart Date: Thu Dec 19 11:05:54 2013 +0100 Bug 11279: (follow-up) remove unnecessary check on number of quotes It is not necessary to process the case where the number of quotes is just one, as int(rand(1)) will always produce 0, which is a valid offset. Signed-off-by: Galen Charlton (cherry picked from commit 8ee6e4290e2d1ca4fea53363b7ca3275cb0e6f58) (cherry picked from commit bff4fac7b78fe8573527c8733f8364af351d23a9) Signed-off-by: Tomas Cohen Arazi commit bff00739703bd38951b171078f0413d3413705fe Author: Katrin Fischer Date: Thu Dec 12 00:54:08 2013 +0100 Bug 11279: Improve how a new quote of the day is selected If there is a gap in the id sequence for the quotes table, it is possible that no new quote will be selected. This will happen particularly when a lot of the older quotes with low ids have been deleted. This patch improves the selection of a new quote. To test: - Load sample quotes - Delete the first half of the quotes. Note: With 34 quotes, delete the quotes with ids from 1-17 - Activate the QuoteOfTheDay system preference - Check if a quote is displayed in OPAC - Reload the page a few times, no quote should be displayed Note: make sure you don't have a quote with the current date in your quotes table before running those tests - Run 'perl t/db_dependent/Koha.t' Note: requires sample quotes! - Apply patch - Reload the OPAC start page - Verify a quote was now picked - Run 'perl t/db/dependent/Koha.t' again - all tests should still pass Signed-off-by: Galen Charlton Patch modified to use "LIMIT 1 OFFSET ?" rather than "LIMIT ?, 1"; the latter construction does not work in PostgreSQL. Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 5a3db23362eb076a2f6d5a87f87b29f4a436a14f) Signed-off-by: Fridolin Somers (cherry picked from commit ae55277499f06ae0d3e2973349d1f34cf7f60ec8) Signed-off-by: Tomas Cohen Arazi commit cc71930a84761177279554dc467e23bf9d736f62 Author: Katrin Fischer Date: Thu Dec 12 20:50:52 2013 +0100 Bug 11279: regression test for picking random quote This patch adds new tests based on the db_dependent tests in t/db_dependent/Koha.t for GetDailyQuote(). Tests run on an empty database and don't require Test::Deep. Tests will fail before applying the patch for 11297, but will pass after applying the patch. Signed-off-by: Galen Charlton Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit f874eec0793f83c3c0f1461fecb878ca57ed701b) Signed-off-by: Fridolin Somers (cherry picked from commit 252051df7378d1d23e726a8757efb4e6af22d1fa) Signed-off-by: Tomas Cohen Arazi commit 87079a0aa149b67b064bfdbb8eb603fa60a260fb Author: Fridolyn SOMERS Date: Thu Mar 7 16:02:55 2013 +0100 Bug 7518: certain searches with quotation marks don't work Under certain circumstance, a search term without quotation marks returns the expected results while the same search with a double quote embedded in it would fail. Koha should ignore the quotation marks and return results anyway. This appears when QueryWeightFields syspref is activated (and QueryAutoTruncate is off), as field weighting builds a complex CCL query using double quotes around search words. This patch simply replaces double quotes in search words by a space. Test plan : - Set QueryAutoTruncate off (you may also need to set QueryFuzzy to off) - Set QueryWeightFields off - Perform a serch on two words where you have results, like : centre "ville => you get results - Set QueryWeightFields on - Perform same serch => you get the same results Signed-off-by: Leila Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit 868855df4b674b495966c022392068c2fdd3a35f) Signed-off-by: Fridolin Somers (cherry picked from commit f1bb46172bdc90db00a08c2c78e169952fd22feb) Signed-off-by: Tomas Cohen Arazi commit e3bf3e4521fa09a0d5dddcbb083282ec9c8e04b8 Author: Galen Charlton Date: Tue Dec 17 16:32:09 2013 +0000 Bug 7518: regression test double-quote in search operand Under certain circumstances, namely where QueryParser is off, QueryWeightFields is on, and QueryFuzzy and QueryAutoTruncate are off, a search with a double-quote embedded in it can fail: for example web application would return results where web "application does not. This patch adds an automated regression test. To test: [1] Apply this patch and run prove -v t/db_dependent/Search.t; two tests should fail. [2] After applying the main patch that fixes the bug, the prove -v t/db_dependent/Search.t should succeed. Signed-off-by: Galen Charlton (cherry picked from commit 437f06624759c464d667107d9f73ec05283f6892) Signed-off-by: Fridolin Somers (cherry picked from commit 895f989dcaad44830bc85d855d71b654170dbb1d) Signed-off-by: Tomas Cohen Arazi Fixed some conflicts, the tests are they same overall. ----------------------------------------------------------------------- Summary of changes: C4/Koha.pm | 23 +++--- C4/Labels/Label.pm | 2 + C4/Search.pm | 6 +- installer/data/mysql/update22to30.pl | 2 +- .../prog/en/modules/tools/modborrowers.tt | 2 +- misc/cronjobs/gather_print_notices.pl | 15 ++-- misc/migration_tools/remove_unused_authorities.pl | 15 ++-- t/Charset.t | 44 ++++++++++- t/Labels.t | 26 ++++++- t/db_dependent/Koha/GetDailyQuote.t | 77 ++++++++++++++++++++ t/db_dependent/Search.t | 20 ++++- 11 files changed, 198 insertions(+), 34 deletions(-) create mode 100644 t/db_dependent/Koha/GetDailyQuote.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 16:39:08 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 15:39:08 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-406-gb2d08f8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via b2d08f8359c187f92e1df46ad29b83852fb03079 (commit) via dcdd0888a49d679d44fe7f90d83416f746d79c91 (commit) from 94e349ff6ce4a1abb313102decc12429d02dfb4b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b2d08f8359c187f92e1df46ad29b83852fb03079 Author: Jonathan Druart Date: Wed Feb 5 10:39:26 2014 +0100 Bug 11687: remove disused script statecollection.pl It can be removed. Test plan: git grep statecollection returns no occurrence. Signed-off-by: Holger Meissner Signed-off-by: Marcel de Rooy Signed-off-by: Galen Charlton commit dcdd0888a49d679d44fe7f90d83416f746d79c91 Author: Bernardo Gonzalez Kriegel Date: Mon Oct 21 13:25:03 2013 -0300 Bug 11094 - Bootstrap theme: fix typo "loaction" This patch fixes a typo on opac-user.tt To test you must have existing holds on your account. Log into the OPAC and view the holds tab on the "your summary" page (opac-user.pl). Resize the browser window until the table switches from a regular table layout to a vertical column. Only when the view is narrow enough does the affected label appear: Pick up location: [library name] Signed-off-by: Owen Leonard Signed-off-by: Marcel de Rooy Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 2 +- serials/statecollection.pl | 97 -------------------- 2 files changed, 1 insertion(+), 98 deletions(-) delete mode 100755 serials/statecollection.pl hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 7 17:47:17 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 07 Feb 2014 16:47:17 +0000 Subject: [koha-commits] main Koha release repository branch 3.12.x updated. v3.12.10-22-g384c7c4 Message-ID: This is an automated email from the git hooks/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.12.x has been updated via 384c7c47d414a5735abc1b785f657aef32d8a004 (commit) from e3a0cbc1ace403bbf9ebf5c5e7a8fa735e7fdf38 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 384c7c47d414a5735abc1b785f657aef32d8a004 Author: Galen Charlton Date: Thu Jan 30 15:48:48 2014 +0000 Bug 11439: (follow-up) adjust for change in list returned by OCLC XISBN The set of related ISBNs for the first Harry Potter book returned by OCLC's XISBN service has changed recently, so this patch adjusts the test to match. Signed-off-by: Galen Charlton (cherry picked from commit 6e21422d00f02c88384ce361dab86ccc44e92e49) Signed-off-by: Tomas Cohen Arazi ----------------------------------------------------------------------- Summary of changes: t/db_dependent/XISBN.t | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 09:17:54 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 08:17:54 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-2-gdd3473c Message-ID: This is an automated email from the git hooks/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.14.x has been updated via dd3473c6c184ed53bb21db030483dc64b7b2c967 (commit) from 171e2b47460c7afa489b16eb885a9862eef9d43a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit dd3473c6c184ed53bb21db030483dc64b7b2c967 Author: Galen Charlton Date: Thu Jan 30 15:48:48 2014 +0000 Bug 11439: (follow-up) adjust for change in list returned by OCLC XISBN The set of related ISBNs for the first Harry Potter book returned by OCLC's XISBN service has changed recently, so this patch adjusts the test to match. Signed-off-by: Galen Charlton (cherry picked from commit 6e21422d00f02c88384ce361dab86ccc44e92e49) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: t/db_dependent/XISBN.t | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 09:35:09 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 08:35:09 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-3-g7261b1c Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 7261b1c0ad27a17c5b81e66e9bdb2a60d59bab77 (commit) from dd3473c6c184ed53bb21db030483dc64b7b2c967 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7261b1c0ad27a17c5b81e66e9bdb2a60d59bab77 Author: Fridolin Somers Date: Sat Feb 8 09:52:07 2014 +0100 Bug 11384: (follow-up) test if table exists in update database Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 09:46:14 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 08:46:14 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-5-g98e47d3 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 98e47d3a3c659b1e271db7fe2bb7a0169a8fd1f0 (commit) via 072d33a0d0c869aab8a3a96ae134dd1ebfbab740 (commit) from 7261b1c0ad27a17c5b81e66e9bdb2a60d59bab77 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 98e47d3a3c659b1e271db7fe2bb7a0169a8fd1f0 Author: Galen Charlton Date: Mon Jan 13 20:54:37 2014 +0000 Bug 11509: (follow-up) fix a couple typos Signed-off-by: Galen Charlton (cherry picked from commit b7b1db5c81eb67e51851efc5bc2d1fb2a0cb7d04) Signed-off-by: Fridolin Somers commit 072d33a0d0c869aab8a3a96ae134dd1ebfbab740 Author: Tomas Cohen Arazi Date: Thu Jan 9 10:56:56 2014 -0300 Bug 11509: improve usage information printed by koha-create This patch makes koha-create print better and more descriptive usage information. Also adds the --help and -h switches. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Removed trailing " from: $scriptname [db usage mode] [options] instancename" Signed-off-by: Galen Charlton (cherry picked from commit 0d28ab498885a44ee2c20c411ae16b904c12663a) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: debian/docs/koha-create.xml | 10 +++++++ debian/scripts/koha-create | 67 ++++++++++++++++++++++++++++++++----------- 2 files changed, 61 insertions(+), 16 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 09:48:18 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 08:48:18 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-6-g0fb4373 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 0fb4373e31af2671f9917505aed3a7eff3d05dc2 (commit) from 98e47d3a3c659b1e271db7fe2bb7a0169a8fd1f0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0fb4373e31af2671f9917505aed3a7eff3d05dc2 Author: Tomas Cohen Arazi Date: Thu Jan 9 12:37:20 2014 -0300 Bug 11510: koha-translate usage message fixes The koha-translate's usage message has a couple of inconsistencies: '--all' should be '--available' and '--help' is missing from the usage examples. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Works as described, tested using instructions on http://wiki.koha-community.org/wiki/Testing_man_pages Signed-off-by: Galen Charlton (cherry picked from commit 83ab4edc5a79c6e2ca0f4d394387d20c9aee7453) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: debian/docs/koha-translate.xml | 7 +++++++ debian/scripts/koha-translate | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 09:52:55 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 08:52:55 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-7-g3f19528 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 3f19528b9a28a8b3b91d40b3b36bfbfef3b8dc25 (commit) from 0fb4373e31af2671f9917505aed3a7eff3d05dc2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3f19528b9a28a8b3b91d40b3b36bfbfef3b8dc25 Author: Tomas Cohen Arazi Date: Mon Jan 6 10:52:38 2014 -0300 Bug 10896: Add a --verbose option to koha-translate The -v and --verbose option switches add the --verbose switch to the misc/translator/translate script call in the packages' 'koha-translate' command. The docs are updated accordingly. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Magnus Enger Works as expected with and without -v. Man page looks good. Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton (cherry picked from commit cfc3ce6772b908bb73a38a3bb778b8f25bb4ac9e) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: debian/docs/koha-translate.xml | 10 +++++++++- debian/scripts/koha-translate | 16 +++++++++++++--- 2 files changed, 22 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 10:02:11 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 09:02:11 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-9-g932ad64 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 932ad64f3503d43f696d0b3e534aaf3a48082b5a (commit) via c4f6a2777d7f068d3c072352832c48461689431c (commit) from 3f19528b9a28a8b3b91d40b3b36bfbfef3b8dc25 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 932ad64f3503d43f696d0b3e534aaf3a48082b5a Author: Jonathan Druart Date: Wed Nov 6 14:54:36 2013 +0100 Bug 11208: If no smsalertnumber is defined, the message is marked as failed For DUE message (and PREDUE, etc.) there are no check before sending the message to the message_queue table. This check avoids to try to send again and again the same message. Now it is marked as "failed". Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Without the patch a sms notice will remain as 'pending' forever. With the patch applied, the status is set to 'failed'. Passes all tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 87564a834b885188ee0e6fde800775b403d2e1c0) Signed-off-by: Fridolin Somers commit c4f6a2777d7f068d3c072352832c48461689431c Author: Galen Charlton Date: Mon Dec 30 16:45:45 2013 +0000 Bug 11208: regression test for failing SMS messages This patch adds a regression test for verifying that queued SMS messages meant for patrons who have no SMS alert number set are marked as failed after the first attempt to send them. To test: [1] Run prove -v t/db_dependent/Letters.t. The fourth test should. [2] Apply the main patch and run t/db_dependent/Letters.t again. This time, all tests should pass. Signed-off-by: Galen Charlton (cherry picked from commit b753678c3dff4e0fd2fde008b3c43f0796fcfb05) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: C4/Letters.pm | 7 ++++- t/db_dependent/Letters.t | 71 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 t/db_dependent/Letters.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 10:05:29 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 09:05:29 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-11-g931e137 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 931e137a0b9304b4678798a957465b055fd67217 (commit) via 215e74e10550177457633d8a32d951ec95f1e0a1 (commit) from 932ad64f3503d43f696d0b3e534aaf3a48082b5a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 931e137a0b9304b4678798a957465b055fd67217 Author: Fridolin Somers Date: Sat Feb 8 10:25:57 2014 +0100 Revert "Bug 11208: regression test for failing SMS messages" This reverts commit c4f6a2777d7f068d3c072352832c48461689431c. Bug 11208 depends on Bug 9016 which is for 3.16 commit 215e74e10550177457633d8a32d951ec95f1e0a1 Author: Fridolin Somers Date: Sat Feb 8 10:25:15 2014 +0100 Revert "Bug 11208: If no smsalertnumber is defined, the message is marked as failed" This reverts commit 932ad64f3503d43f696d0b3e534aaf3a48082b5a. Bug 11208 depends on Bug 9016 which is for 3.16 ----------------------------------------------------------------------- Summary of changes: C4/Letters.pm | 7 +---- t/db_dependent/Letters.t | 71 ---------------------------------------------- 2 files changed, 1 insertion(+), 77 deletions(-) delete mode 100644 t/db_dependent/Letters.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 8 10:12:36 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 08 Feb 2014 09:12:36 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-13-g3011541 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 30115418a4a3369e8f294638255ed2d3de958ec5 (commit) via 97547347b581db6176b791ffe49dcd2a5fa9341f (commit) from 931e137a0b9304b4678798a957465b055fd67217 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 30115418a4a3369e8f294638255ed2d3de958ec5 Author: Chris Cormack Date: Sat Dec 28 09:07:13 2013 +1300 Bug 11192: (follow-up) fix a little typo Test plan the same as the original patch Signed-off-by: Katrin Fischer Tested according to test plan. Searches tested were: fic=e fiction=e Signed-off-by: Galen Charlton (cherry picked from commit 211acdd30b000af33f1bb70b33356b8ac945f451) Signed-off-by: Fridolin Somers commit 97547347b581db6176b791ffe49dcd2a5fa9341f Author: Mathieu Saby Date: Sun Nov 3 19:04:44 2013 +0100 Bug 11192: Fix lf and ff07-02 definition in ccl.properties ff7-02 1=87020 (position 2 of field 007 in MARC21) should be ff7-02 1=8702 lf 1=8833 lf fiction fic fiction should be lf 1=8833 fiction lf fic lf To test : 1. apply the patch 2. copy the modified ccl.properties into your active Zebra config directory 3. reindex zebra (rebuild_zebra.pl -b -x -r -v) 4. make some searches using the fixed indexes Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton (cherry picked from commit a032b0a5cd73c9a67bab130c183751309fa95c6e) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: etc/zebradb/ccl.properties | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 10 15:57:44 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 10 Feb 2014 14:57:44 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-407-g5aabe57 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 5aabe570f4a8ffd117fa7270c9bb7321dfaff513 (commit) from b2d08f8359c187f92e1df46ad29b83852fb03079 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5aabe570f4a8ffd117fa7270c9bb7321dfaff513 Author: Owen Leonard Date: Wed Feb 5 12:16:10 2014 -0500 Bug 11692: fix display of additional bib information in OPAC "most popular" pag The template for the OPAC's "most popular" page includes several variables which are not passed by the script, including biblioitems.size. This patch adds the right columns to the query and standardizes the output somewhat based on non-XSLT opac-detail. To test, apply the patch and view the "most popular" page in both prog and bootstrap. You should see correct publisher, copyright, pages, and size information. Signed-off-by: Nicole C. Engard Tested in all three themes and works lovely Signed-off-by: Katrin Fischer Improves the bibliographic display on the 'Most popular' page in the OPAC. Passes all tests and QA script. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-topissues.tt | 10 +++++++--- koha-tmpl/opac-tmpl/prog/en/modules/opac-topissues.tt | 10 +++++++--- opac/opac-topissues.pl | 8 ++++---- 3 files changed, 18 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 10 16:00:00 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 10 Feb 2014 15:00:00 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-408-g692c4f0 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 692c4f03b5adebec754c1a8db16e2db97c63f554 (commit) from 5aabe570f4a8ffd117fa7270c9bb7321dfaff513 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 692c4f03b5adebec754c1a8db16e2db97c63f554 Author: Tomas Cohen Arazi Date: Mon Feb 10 11:55:06 2014 -0300 Bug 11509: (trivial rmaint followup) wrong parameter count While adding the --help and -h switches I forgot to change to arguments count validation so that one can actually use those parameters (i.e. koha-create should accept being invoked with only one parameter). This patch just changes the minimum parateres required from 2 to 1. To reproduce: - Run 'koha-create --help' from master => Usage information is printed BUT ALSO an "Error: wrong parameters" message - Apply the patch and - Run 'koha-create --help' => Usage informatio it printed and no error message. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: debian/scripts/koha-create | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 10 16:03:50 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 10 Feb 2014 15:03:50 +0000 Subject: [koha-commits] main Koha release repository branch 3.12.x updated. v3.12.10-24-g6d29191 Message-ID: This is an automated email from the git hooks/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.12.x has been updated via 6d29191151e7295b6b2f548e52672bfb36a06f6f (commit) via edc657b7b047d1908020f22cd4d77acc3e65c9f0 (commit) from 384c7c47d414a5735abc1b785f657aef32d8a004 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6d29191151e7295b6b2f548e52672bfb36a06f6f Author: Tomas Cohen Arazi Date: Mon Jan 6 10:52:38 2014 -0300 Bug 10896: Add a --verbose option to koha-translate The -v and --verbose option switches add the --verbose switch to the misc/translator/translate script call in the packages' 'koha-translate' command. The docs are updated accordingly. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Magnus Enger Works as expected with and without -v. Man page looks good. Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton (cherry picked from commit cfc3ce6772b908bb73a38a3bb778b8f25bb4ac9e) Signed-off-by: Fridolin Somers (cherry picked from commit 3f19528b9a28a8b3b91d40b3b36bfbfef3b8dc25) Signed-off-by: Tomas Cohen Arazi commit edc657b7b047d1908020f22cd4d77acc3e65c9f0 Author: Tomas Cohen Arazi Date: Thu Jan 9 12:37:20 2014 -0300 Bug 11510: koha-translate usage message fixes The koha-translate's usage message has a couple of inconsistencies: '--all' should be '--available' and '--help' is missing from the usage examples. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Works as described, tested using instructions on http://wiki.koha-community.org/wiki/Testing_man_pages Signed-off-by: Galen Charlton (cherry picked from commit 83ab4edc5a79c6e2ca0f4d394387d20c9aee7453) Signed-off-by: Fridolin Somers (cherry picked from commit 0fb4373e31af2671f9917505aed3a7eff3d05dc2) Signed-off-by: Tomas Cohen Arazi ----------------------------------------------------------------------- Summary of changes: debian/docs/koha-translate.xml | 17 ++++++++++++++++- debian/scripts/koha-translate | 20 +++++++++++++++----- 2 files changed, 31 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 10 16:36:11 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 10 Feb 2014 15:36:11 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-409-g2f379f3 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 2f379f3fa78ea12c3955addfa733fb8d8cdb0c2b (commit) from 692c4f03b5adebec754c1a8db16e2db97c63f554 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2f379f3fa78ea12c3955addfa733fb8d8cdb0c2b Author: Owen Leonard Date: Fri Feb 7 16:02:06 2014 -0500 Bug 11721 - Use new DataTables include in suggestions template This patch modifies the template for the suggestions page to use the new DataTables include. This simplifies the inclusion of assets and updates to the latest DataTables version. Sorting is now configured to exclude articles when sorting the title column. To test, apply the patch and view the suggestions page (Acquisitions -> Suggestions). Sorting of suggestions should work correctly. Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Passes all tests and QA script. Note: the columsn fund and status are not sortable/searchable before and after applying the patch. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Mon Feb 10 16:38:35 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Mon, 10 Feb 2014 15:38:35 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-410-g9ac83cd Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 9ac83cdaafb267e1a76aa957b86b7e7b8955d819 (commit) from 2f379f3fa78ea12c3955addfa733fb8d8cdb0c2b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 9ac83cdaafb267e1a76aa957b86b7e7b8955d819 Author: Owen Leonard Date: Mon Feb 3 12:03:14 2014 -0500 Bug 11670 - Remove sorting from patron lists action columns The list of patron lists has sortable columns for the add, edit, and delete buttons. These columns should not be sortable. This patch removes sorting. This patch also adds the "btn-mini" class to the in-table buttons to make the table more compact. To test you must have existing patron lists. Apply the patch and navigate to Tools -> Patron lists. The columns containing the add, edit, and delete buttons should not be sortable. Other columns should sort correctly. --------------------------------------------------------------------- Created to patron lists and confirmed the collums 'add patrons', 'edit' and 'delete' are no longer sortable. Column 'Name' and 'Patrons in list' are still sortable. The size of buttons are smaller. I also agree this is an improvement. Signed-off-by: Petter Goksoyr Asen Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/patron_lists/lists.tt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 13 03:38:45 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 13 Feb 2014 02:38:45 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-411-gaace5d4 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via aace5d436dbab1f13e2e1c06d0b4ed5f1ec13ced (commit) from 9ac83cdaafb267e1a76aa957b86b7e7b8955d819 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit aace5d436dbab1f13e2e1c06d0b4ed5f1ec13ced Author: Tomas Cohen Arazi Date: Thu Feb 6 17:30:24 2014 -0300 Bug 11704: Make */svc/report print the correct headers To test: 1 - Go through the first comments instructions to reproduce and verify the bug is present (OPAC and STAFF) 2 - Apply the patch 3 - Repeat step 1 and notice * characters are not broken anymore * the header is correct 4 - Sign off Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: opac/svc/report | 5 ++++- svc/report | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 13 03:42:45 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 13 Feb 2014 02:42:45 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-412-g0070a7f Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 0070a7f6afb30b6f7ae8bc0eb073a4c39e0f783a (commit) from aace5d436dbab1f13e2e1c06d0b4ed5f1ec13ced (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0070a7f6afb30b6f7ae8bc0eb073a4c39e0f783a Author: Janusz Kaczmarek Date: Fri Jan 31 16:12:10 2014 +0100 Bug 11652: ensure that merging authority records corrects biblios When merging authority records in librarian interface biblio records linked to deleted authority are not being corrected (i.e. have still old heading and orpaned link in $9). Test plan: 1. Have two authorities in the catalogue, linked to biblio records. 2. Merge them with the new merge facility (cf. Bug 5202). 3. Have a look a the biblio record(s) previously linked to the removed authority. It should still have the old heading AND orpaned authority link in $9. 4. Apply the patch. 5. Refresh the test records (or use another set). 6. Repeat 1-3. Headings should be refreshed and the correct authid link should be in $9 now. Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Passes all tests and QA script. Note: new record count on the authority record will show after reindexing. Signed-off-by: Jared Camins-Esakov Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: authorities/merge.pl | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 13 03:56:44 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 13 Feb 2014 02:56:44 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-414-ge0d7d99 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via e0d7d998c2025fdb8ed1caf4303f754e05164c97 (commit) via 326ccb57ce8c537630b117bc92bd49ca4947c52b (commit) from 0070a7f6afb30b6f7ae8bc0eb073a4c39e0f783a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e0d7d998c2025fdb8ed1caf4303f754e05164c97 Author: Jonathan Druart Date: Tue Feb 11 10:28:23 2014 +0100 Bug 11737: (follow-up) remove extra fnReloadAjax.js the file dataTables.fnReloadAjax.js exists in the interface and themelang directories. It is only used in quotes.tt. So the unused one can be removed. test plan: git grep fnReloadAjax.js should return only 1 ref (quotes.tt) Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 326ccb57ce8c537630b117bc92bd49ca4947c52b Author: Owen Leonard Date: Mon Feb 10 14:30:26 2014 -0500 Bug 11737 - Use new DataTables include in quotes management template Bug 10649 introduced a new include file for adding DataTables-related JavaScript assets. This patch adds use of this include file to the quotes management page. To test you should have a multiple quotes in your database. Apply the patch and view the quotes manager page (tools/quotes.pl). Confirm that table sorting works correctly. Signed-off-by: merlissia Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../lib/jquery/plugins/dataTables.fnReloadAjax.js | 50 -------------------- .../intranet-tmpl/prog/en/modules/tools/quotes.tt | 8 ++-- 2 files changed, 3 insertions(+), 55 deletions(-) delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/dataTables.fnReloadAjax.js hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 13 03:59:09 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 13 Feb 2014 02:59:09 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-415-g26696e3 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 26696e3b299ff9ca96d7a834a172f6534ef952d5 (commit) from e0d7d998c2025fdb8ed1caf4303f754e05164c97 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 26696e3b299ff9ca96d7a834a172f6534ef952d5 Author: Owen Leonard Date: Mon Feb 10 15:07:52 2014 -0500 Bug 11739 - Use new DataTables include in notices template Bug 10649 introduced a new include file for adding DataTables-related JavaScript assets. This patch adds use of this include file to the Notices & Slips page. To test, view the Notices & Slips page (tools/letter.pl). Confirm that the table of notices is sorted correctly. Signed-off-by: merlissia Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 13 16:40:44 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 13 Feb 2014 15:40:44 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-416-gef65eee Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via ef65eee25e2946adf20650d61781363f735058b6 (commit) from 26696e3b299ff9ca96d7a834a172f6534ef952d5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ef65eee25e2946adf20650d61781363f735058b6 Author: Owen Leonard Date: Mon Feb 10 12:59:07 2014 -0500 Bug 11735 - Use new DataTables include in calendar template Bug 10649 introduced a new include file for adding DataTables-related JavaScript assets. This patch adds use of this include file to the calendar template and corrects some table sorting configuration errors. To test you should have multiple calendar entries in various categories of holiday: Unique holidays, repeating yearly holidays, repeating weekly holidays, and exceptions. Sorting of date columns should work regardless of your dateformat system preference. Signed-off-by: merlissia Signed-off-by: Jonathan Druart Note: Day of week is not correctly sorted: Sundays, Mondays, Thursdays. But it is not a regression. It is caused by the ugly way to display weekdays (document.write). Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Sat Feb 15 02:17:17 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Sat, 15 Feb 2014 01:17:17 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-417-gb67dac8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via b67dac81cceaab356486001292cff40977682fff (commit) from ef65eee25e2946adf20650d61781363f735058b6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b67dac81cceaab356486001292cff40977682fff Author: Galen Charlton Date: Fri Feb 14 00:24:56 2014 +0000 Bug 11757: remove dependency on POE The last use of the POE family of Perl modules went away with the removal of zebraqueue_daemon.pl per bug 9001. Consequently, this patch removes POE as a dependency. To test: [1] Verify that "git grep POE" and "git grep libpoe" report nothing. [2] Verify that koha_perl_deps.pl -a does not report POE as a dependency. [3] (extra credit) verify that Debian packages can be built that do not list libpoe-perl as a dependency. This patch also updates some distro-specific installation instructions and scripts, but makes no representations about whether those instructions currently work. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Installer/PerlDependencies.pm | 5 ----- INSTALL.fedora7 | 1 - INSTALL.opensuse | 1 - debian/control | 2 -- install_misc/debian.packages | 1 - install_misc/ubuntu.10.04.packages | 1 - install_misc/ubuntu.12.04.packages | 1 - install_misc/ubuntu.packages | 1 - 8 files changed, 13 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 08:26:45 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 07:26:45 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-18-g114c67f Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 114c67fed49023b3a354951bfea2809f9d6c8360 (commit) via ace1fe900ca42ef570ffc4d76481b0cb3435d7e8 (commit) via f2e9ab23b47288768db712ebf8ecce04d9e3f595 (commit) via 30eef2db432bc5f12ff100e9a5c7137b19b0ad2f (commit) via f088b1236eb3a3e7eb6299a193d74161d7090e26 (commit) from 30115418a4a3369e8f294638255ed2d3de958ec5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 114c67fed49023b3a354951bfea2809f9d6c8360 Author: Galen Charlton Date: Mon Jan 6 16:16:22 2014 +0000 Bug 11336: (follow-up) fix typo in previous follow-up This patch corrects a typo that broken ModReserveFill(). This patch also adds a unit test that (via two levels of indirection) exercises ModReserveFill(). Signed-off-by: Galen Charlton (cherry picked from commit 7af64ff7bd26eaa0d8cdb688f0db1526e438f087) Signed-off-by: Fridolin Somers commit ace1fe900ca42ef570ffc4d76481b0cb3435d7e8 Author: Galen Charlton Date: Sat Jan 4 23:25:25 2014 +0000 Bug 11336: (follow-up) improve POD for _FixPriority() This patch improves the POD for C4::Reserves::_FixPriority() to (hopefully) describe its function thoroughly. It also adjusts the call of _FixPriority() by CancelReserve() to omit passing reserve_id, since by that point no row in the reserves table for that request still exists. Signed-off-by: Galen Charlton (cherry picked from commit 543e1dc6731d4a26b777223920bfe4037e7546dd) Signed-off-by: Fridolin Somers commit f2e9ab23b47288768db712ebf8ecce04d9e3f595 Author: Galen Charlton Date: Sat Jan 4 22:45:29 2014 +0000 Bug 11336: (follow-up) correct change to POD for GetReserve() Signed-off-by: Galen Charlton (cherry picked from commit 80fc94f86aab31e8b241cf713e6b10572a364693) Signed-off-by: Fridolin Somers commit 30eef2db432bc5f12ff100e9a5c7137b19b0ad2f Author: Katrin Fischer Date: Sun Dec 29 13:57:33 2013 +0100 Bug 11336: (follow-up) fixing capitalization in templates Fixes capitalization on the holds and check in page. Changes are easy to spot using: git diff HEAD^ --color-words=. Signed-off-by: Galen Charlton (cherry picked from commit 5cfa865aad2caabd76e361fcbbe8f6429941bad4) Signed-off-by: Fridolin Somers commit f088b1236eb3a3e7eb6299a193d74161d7090e26 Author: Jonathan Druart Date: Fri Dec 13 17:42:55 2013 +0100 Bug 11336: update hold queue priorities correctly when deleting holds In various places, deleting a hold request did not trigger recalculating the priority of the other holds on the bib: To reproduce the bug: - select or create 2 users U1 and U2 - select or create an holdable item - place on hold for both U1 and U2. U1 has priority 1 and U2 has priority 2. - delete the hold for U1 - go on circ/circulation.pl?borrowernumber=XXXX for U2 (or in the DB directly) and verify the priority has not been set to 1 The issue is repeatable (at least) on these 2 pages: * circ/circulation.pl?borrowernumber=XXXX (tab 'Holds', select "yes" in the dropdown list and submit the form) * reserve/request.pl?biblionumber=XXXX (click on the red cross) Signed-off-by: Christopher Brannon Signed-off-by: Katrin Fischer Reran my tests: Preparations: - Create holds for different patrons on a record: * 1st - title level hold * 2nd - item level hold * 3rd - title level hold * 4th - title level hold - AllowOnShelfHolds = On/Allow (items were not checked out) Tests: Deleted holds from various pages, confirming bugs first, then testing with applied patches. Reloading database after each test. 1) Cancel holds from OPAC patron account /cgi-bin/koha/opac-user.pl#opac-user-holds - Cancel 4th - ok, before and after applying the patch - Cancel 2nd - ok, after applying the patch 2) Cancel hold from holds tab on staff detail page /cgi-bin/koha/reserve/request.pl?biblionumber=7 a) Setting priority to 'del', submitting with 'Update holds' - Cancel first (1st) - ok, before and after - Cancel hold in the middle (was 3rd) - ok, before and after - Cancel last (was 4th) -ok, before and after b) Using red X - Repeating tests from a) - before the patch is applied holds get totally 'out of order' - after applying the patch, it works correctly Additional tests done on this page: - Change priority using up, down, to top, to bottom icons - Change priority with 'toggle to lowest' 3) Cancel hold from the patron's account a) Check out tab - Delete? Yes, 'Cancel marked holds' /cgi-bin/koha/circ/circulation.pl?borrowernumber=X - Cancel first (1st) - ok, after applying the patch - Cancel hold in the middle (was 3rd) - ok, after applying the patch - Cancel last (was 4th) - ok, after applying the patch b) Details tab - Delete? yes, 'Cancel marked holds' /cgi-bin/koha/members/moremember.pl?borrowernumber=X - Cancel first (1st) - ok, after applying the patch - Cancel hold in the middle (was 3rd) - ok, after applying the patch - Cancel last (was 4th) - ok, after applying the patch Without the patch, holds priorities get out of order. Additional tests done: - Check in one item to trigger first hold - Check in one item to trigger second hold - Check out first item Priorities are kept while the item is waiting, when it's checked out, priorities of remaining holds get reset correctly. Conclusion: Big improvement, no regressions found. Passes all tests in t, xt and QA script. Also: t/db_dependent/Holds.t t/db_dependent/HoldsQueue.t t/db_dependent/Reserves.t Signed-off-by: Galen Charlton (cherry picked from commit 78037c5573f70939077dd00f296c735b198e6124) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: C4/Reserves.pm | 106 +++++++++++--------- .../intranet-tmpl/prog/en/modules/circ/returns.tt | 2 +- .../prog/en/modules/reserve/request.tt | 28 +++--- t/db_dependent/Circulation.t | 23 ++++- t/db_dependent/Holds.t | 70 ++++++++++++- 5 files changed, 163 insertions(+), 66 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 08:29:27 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 07:29:27 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-19-g3f08786 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 3f087869dc1b5d615d64d0d07b0229c61a2387c7 (commit) from 114c67fed49023b3a354951bfea2809f9d6c8360 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3f087869dc1b5d615d64d0d07b0229c61a2387c7 Author: Galen Charlton Date: Thu Jan 2 18:02:17 2014 +0000 Bug 11470: fix occassional spurious test failure in Circulation_transfers.t This patch makes Circulation_transfers.t no longer be sensitive to the exact time it runs, avoiding spurious test failures due to datesent being a second off between the creation of the test transfer and the comparison. To test: [1] To simulate the failure, add a "sleep(2);" after the "#Test GetTransfers" comment and run prove -v t/db_dependent/Circulation_transfers.t [2] Remove the sleep and apply the patch. [3] Verify that prove -v t/db_dependent/Circulation_transfers.t passes. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Works as described. Signed-off-by: Galen Charlton (cherry picked from commit 7c518bd250cd2283a055d4547085cd6db6488cf7) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Circulation_transfers.t | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 08:40:12 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 07:40:12 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-20-g335b305 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 335b3059d0d537e2d74250eeb096f8ee71d25c87 (commit) from 3f087869dc1b5d615d64d0d07b0229c61a2387c7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 335b3059d0d537e2d74250eeb096f8ee71d25c87 Author: Mark Tompsett Date: Wed Nov 27 13:16:56 2013 -0500 Bug 11316 - plugin icon missing tooltip in addbiblio.pl By adding: title=\"Tag editor\" into the HTML generated in addbiblio, a tooltip displaying 'Tag editor' appears when the mouse is hovered over the plugin icon. Test Plan: 1) Log into Staff client 2) Click the 'Search the catalog' tab 3) Type something which will generate results 4) Click the title of a result 5) Click the 'Edit' button 6) Scroll down and click the 'Edit Record' 7) Look through the various tabs and notice that all the plugin icons have no tooltip. 8) Apply the patch 9) Refresh the page 10) All the plugin icons should have the tooltip text of 'Tag editor'. Signed-off-by: Christopher Brannon Signed-off-by: Katrin Fischer Adds a title attribute. Works as described. Signed-off-by: Galen Charlton (cherry picked from commit e45edca42a44d094eabbd3347cc83b43cd2166f4) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: cataloguing/addbiblio.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 08:47:50 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 07:47:50 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-21-gcc86857 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via cc86857dd642e9c5a53012f005dd59899bc2cb0d (commit) from 335b3059d0d537e2d74250eeb096f8ee71d25c87 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit cc86857dd642e9c5a53012f005dd59899bc2cb0d Author: Kyle M Hall Date: Thu Dec 5 09:13:35 2013 -0500 Bug 11342: fix error in OPAC self registration form if BorrowersTitles is empty If BorrowersTitles is empty, it causes the library pulldown on the self registration page to be empty, and to have the "Saluation" field have the option "branches". This patch also fixes a minor string capitalization issue. Test Plan: 1) Enable OPAC self registration 2) Set the system preference BorrowersTitles to be empty 3) View the self registration page 4) Note the lack of branches in the home library pulldown 5) Apply this patch 6) Note the branches now display in the pulldown Signed-off-by: Christopher Brannon Signed-off-by: Katrin Fischer Tested in bootstrap and prog OPAC, with BorrowersTitle configured and emptied. Passes all tests and QA script. Note: The titles pull down has 2 empty entries in master with and without the patch. Signed-off-by: Galen Charlton (cherry picked from commit 9a5f737dcbb1c695130a3acafd46a63a44f2e4cf) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 4 ++-- koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt | 4 ++-- opac/opac-memberentry.pl | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 08:51:22 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 07:51:22 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-22-g633937d Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 633937d09f1aecf60590cb0ba02b23b33d7ca61d (commit) from cc86857dd642e9c5a53012f005dd59899bc2cb0d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 633937d09f1aecf60590cb0ba02b23b33d7ca61d Author: Fridolyn SOMERS Date: Fri Jun 7 14:55:18 2013 +0200 Bug 10429: improve display of library and library filter on serials claim page In serial claims page, the library code is displayed in table instead of library name and library filter does not work. This patch adds the display of library name by using libraries template plugin. It changes the Javascript library filter to make it work. Also sets "all" filter in template (like status filter) to allow translation and sets "all" as selected by default. The staff user's library was selected by default, but the table was not filtered with it. Test plan : - Go to serials claim of a vendor with serials of multiple libraries => You see branch filter with "(All)" and table shows library's names - Check that library filter does its work Signed-off-by: David Cook Works as described. Signed-off-by: Katrin Fischer Table now shows the branch name instead of the branchcode. First option was named (All), matching the status pull down. When opening the claims page, (All) is preselected and the result list matches with the selection. Before the patch the library was preselected, but the result list did show late issues from all branches. This patch is an improvement, but there is still more work to do. - Filters are not cumulative, but when another filter is selected the first filter is not reset. - It's not possible to combine 2 or more filters. Signed-off-by: Galen Charlton (cherry picked from commit 42eb8b2286e8af9894ec41d3f193416ffe81815b) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/serials/claims.tt | 34 +++++++++++--------- serials/claims.pl | 1 - 2 files changed, 19 insertions(+), 16 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:13:17 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:13:17 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-25-gc63a66d Message-ID: This is an automated email from the git hooks/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.14.x has been updated via c63a66d4f31808b84a4af50447a946a1517c03cb (commit) via 33409aea4c8fe7beb558ae24d50e5b35bc87aa8a (commit) via eca2e263255382c1e3fe5857b2c4bbcaecec0238 (commit) from 633937d09f1aecf60590cb0ba02b23b33d7ca61d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c63a66d4f31808b84a4af50447a946a1517c03cb Author: Galen Charlton Date: Mon Jan 6 16:27:17 2014 +0000 Bug 6886: (follow-up) remove redundant test for singleBranchMode This patch removes an unnecessary check of the singleBranchMode preference that occurred in an clause where we already know that singleBranchMode != 1. Signed-off-by: Galen Charlton (cherry picked from commit 9d2cd6771e616b46eda936ccdf76823e6f520617) Signed-off-by: Fridolin Somers commit 33409aea4c8fe7beb558ae24d50e5b35bc87aa8a Author: Kyle M Hall Date: Wed Dec 4 12:24:38 2013 -0500 Bug 6886: (follow-up) replace needless with Signed-off-by: Katrin Fischer Passes all tests and QA script. Switching SingleBranchMode: Tested with MARC21 and UNIMARC: - "Don't allow" - branch is not shown in result list - "Allow" - branch is shown for available items in result list Changes are consistent over all 3 MARC flavours. Signed-off-by: Galen Charlton (cherry picked from commit 5b855c76d07d41eff2873f6e2ba9dc3a43f98d11) Signed-off-by: Fridolin Somers commit eca2e263255382c1e3fe5857b2c4bbcaecec0238 Author: Kyle M Hall Date: Fri Jan 4 13:40:33 2013 -0500 Bug 6886: ensure that singleBranchMode does not display library name for reference copies Test plan: Enable singleBranchMode and OPACXSLTResultsDisplay. Perform a search in the OPAC which returns results containing not-for-loan items. Before the patch these items will show their library in search results loan items. After the patch there will be not be a library listed, matching other items in results. Signed-off-by jmbroust Signed-off-by: Katrin Fischer Comments on second patch. Signed-off-by: Galen Charlton (cherry picked from commit a8428e141eb533ac5fafe80d38931a36d927a329) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: .../opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl | 14 ++++++++------ .../opac-tmpl/prog/en/xslt/NORMARCslim2OPACResults.xsl | 5 +++-- .../opac-tmpl/prog/en/xslt/UNIMARCslim2OPACResults.xsl | 4 +++- 3 files changed, 14 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:19:40 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:19:40 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-30-ga92da4c Message-ID: This is an automated email from the git hooks/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.14.x has been updated via a92da4c82fec4e66453e41caf9885bb5d245dfab (commit) via 6552616f5a0488155db70735cda66852db6ddda3 (commit) via ed8282a50a010946a6327fe2a0d480dce3340b92 (commit) via 4ab0acc67c2eadf256958b2f3584007a062d2efb (commit) via 5c8674a45907bc07a90875f17ccac24bf3bc2895 (commit) from c63a66d4f31808b84a4af50447a946a1517c03cb (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a92da4c82fec4e66453e41caf9885bb5d245dfab Author: Galen Charlton Date: Wed Jan 8 01:10:32 2014 +0000 Bug 11260: (follow-up) repair German sample_z3950_servers.sql Without this patch, the sample Z39.50 servers for de-DE would fail to load. Signed-off-by: Galen Charlton (cherry picked from commit 3c81c7b6f3edc109d47e7b83bcd51a85ae469aad) Signed-off-by: Fridolin Somers commit 6552616f5a0488155db70735cda66852db6ddda3 Author: Galen Charlton Date: Wed Jan 8 01:01:37 2014 +0000 Bug 11260: (follow-up) remove inadvertant change to English sample_z3950_servers.sql Part of the patch for bug 11260 had the effect of undoing commit 5aae737, thereby adding back two undesirable things: - use of backticks in the SQL - setting z3950servers.id explicitly Signed-off-by: Galen Charlton (cherry picked from commit a39b728364efaae688d508c7b253a0ab9c9c8d2e) Signed-off-by: Fridolin Somers commit ed8282a50a010946a6327fe2a0d480dce3340b92 Author: Katrin Fischer Date: Sun Nov 17 22:58:52 2013 +0100 Bug 11260: Follow up - normalizing frequencies in English sample file a bit After some discussion in IRC I am throwing in some changes for the English sample frequencies: - Change Vol to Vol. - Change No to No. We had both forms in the file, now it should be consistent. To test: - Run English web installer installing all sample files, especially frequencies - Check installed frequencies - Check available options creating a subscription Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit 66bf3abf78a7537201fd54be7b58fbab4c716b40) Signed-off-by: Fridolin Somers commit 4ab0acc67c2eadf256958b2f3584007a062d2efb Author: Katrin Fischer Date: Sun Nov 17 22:56:45 2013 +0100 Bug 11260: Update German web installer - frequencies and numberpatterns Translates the new files for frequencies and numberpatterns To test: - Run the German web installer with all sample files - Check all files import without errors, especially frequencies and numbering patterns - Check frequencies in serials - Check numbering patterns in serials - Create a subscription, check possible choices Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit fff04e59e785ce26f52da94730818c541476f7bb) Signed-off-by: Fridolin Somers commit 5c8674a45907bc07a90875f17ccac24bf3bc2895 Author: Katrin Fischer Date: Sun Nov 17 21:05:45 2013 +0100 Bug 11260: Update German web installer for 3.14 Mandatory: - adds auth_values.sql and .txt with YES_NO referenced in patron_attributes.sql - updates sample notices with redone slip templates (ISSUESLIP, ISSUEQSLIP, RESERVSLIP, TRANSFERSLIP) - adds German translations to subtag_registry.sql and copies updated file from en to de-DE - adds translation for new course_reserves permission to userflags.sql - adds translations for new permissions in userpermissions.sql - Fixes typo IndependantBranches in English userpermissions.sql Optional: - adds csv_profiles.sql and translation of the serial claims profile - adds z39.50 servers for authorities to sample_z3950_servers.sql To test: - Run web installer in English - check all sample files, make sure they all install without SQL errors - check language list on advanced search displays correctly still - check area/language list on tools > news displays correctly still - check permissions for correct spelling of IndependentBranches - Run web installer in German - repeat checks from above - also check: authorised values, especially existence of YES_NO - all permissions are translated now - slip notices are all there and look right - new z39.50 servers for authorities are available - csv profile for serial claims is available and works as expected ... and anything else you can think of. Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit bbe64974b02d78fc916f76408a995ac1bf7f6228) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: .../mysql/{en => de-DE}/mandatory/auth_values.sql | 4 +- .../data/mysql/de-DE/mandatory/auth_values.txt | 1 + .../mysql/de-DE/mandatory/sample_frequencies.sql | 26 ++--- .../mysql/de-DE/mandatory/sample_frequencies.txt | 2 +- .../data/mysql/de-DE/mandatory/sample_notices.sql | 100 ++++++++++---------- .../de-DE/mandatory/sample_numberpatterns.sql | 24 ++--- .../de-DE/mandatory/sample_numberpatterns.txt | 2 +- .../data/mysql/de-DE/mandatory/subtag_registry.sql | 40 +++++++- installer/data/mysql/de-DE/mandatory/userflags.sql | 2 +- .../data/mysql/de-DE/mandatory/userpermissions.sql | 16 ++-- .../data/mysql/de-DE/optional/csv_profiles.sql | 2 + .../data/mysql/de-DE/optional/csv_profiles.txt | 3 + .../mysql/de-DE/optional/sample_z3950_servers.sql | 12 ++- .../mysql/en/mandatory/sample_numberpatterns.sql | 6 +- .../data/mysql/en/mandatory/subtag_registry.sql | 40 +++++++- .../data/mysql/en/mandatory/userpermissions.sql | 2 +- 16 files changed, 182 insertions(+), 100 deletions(-) copy installer/data/mysql/{en => de-DE}/mandatory/auth_values.sql (60%) create mode 100644 installer/data/mysql/de-DE/mandatory/auth_values.txt create mode 100644 installer/data/mysql/de-DE/optional/csv_profiles.sql create mode 100644 installer/data/mysql/de-DE/optional/csv_profiles.txt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:23:45 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:23:45 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-32-g57090a0 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 57090a0cfe925b2292c115a2c3e96beb4fd4f1c1 (commit) via 8a1f39ef8ee1e4b6ef4f2439bc69d2db35fb3b98 (commit) from a92da4c82fec4e66453e41caf9885bb5d245dfab (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 57090a0cfe925b2292c115a2c3e96beb4fd4f1c1 Author: Galen Charlton Date: Wed Jan 8 15:14:43 2014 +0000 Bug 11483: (follow-up) fix typos Signed-off-by: Galen Charlton (cherry picked from commit 00279b84802346db13f5df52c779f0c924b4b29c) Signed-off-by: Fridolin Somers commit 8a1f39ef8ee1e4b6ef4f2439bc69d2db35fb3b98 Author: Nicole C. Engard Date: Mon Jan 6 12:15:36 2014 -0600 Bug 11483: Add missing serial help files The help files for the Serial Numbering Patterns and Frequencies pages were missing. This patch adds them. To test: * Visit the two new serial pages * Click Help * Confirm text and links are right Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 1b160802bc17ad42309e40215d9303fca2fc07b0) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: .../en/modules/help/serials/subscription-frequencies.tt | 11 +++++++++++ .../modules/help/serials/subscription-numberpatterns.tt | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-frequencies.tt create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/serials/subscription-numberpatterns.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:25:23 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:25:23 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-33-g67f1d5b Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 67f1d5bb712ace988cad50f2ec2436b9b1ca9d4d (commit) from 57090a0cfe925b2292c115a2c3e96beb4fd4f1c1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 67f1d5bb712ace988cad50f2ec2436b9b1ca9d4d Author: Chris Cormack Date: Thu Jan 2 17:15:56 2014 +1300 Bug 11457: avoid spurious test failure in t/db_dependent/Bookseller.t This patch clears the subscription table so tests pass correctly if there happens to have been a subscription with an end date before 2013-08-01. To test 1/ Add a subscription in the serials module, with an end date before 2013-08-01 2/ run prove -v t/db_dependent/Bookseller.t Notice tests 22 and 23 fail 3/ Apply patch 4/ run test again 5/ Notice tests succeed Signed-off-by: Katrin Fischer Tests now clean the subscription table before running the tests, so that the will always pass. Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit 8209bf10269c36c1bb8d4b2da23fe356ab7a3568) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Bookseller.t | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:28:13 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:28:13 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-34-g5df97df Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 5df97dfc864975caf5e741f1884b2a4d86e61910 (commit) from 67f1d5bb712ace988cad50f2ec2436b9b1ca9d4d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5df97dfc864975caf5e741f1884b2a4d86e61910 Author: Chris Cormack Date: Fri Dec 27 19:06:34 2013 +1300 Bug 7965: Silence warns in staff log Silence warns in C4::Bookseller::GetBooksellersWithLateOrders() to test 1/ run prove t/db_dependent/Bookseller.t Notice lots of Use of uninitialized value $delay in numeric lt (<) at /var/lib/jenkins/jobs/Koha_master/workspace/C4/Bookseller.pm line 134 type lines 2/ apply patch 3/ run prove t/db_dependent/Bookseller.t Notice warns are gone Signed-off-by: Katrin Fischer Tiny change, positive consequences. Passes QA script and all tests. Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton (cherry picked from commit febd0312f8623c9861bd70dd61aa3fd47afb1b51) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: C4/Bookseller.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 18 09:36:01 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:36:01 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-36-g16e8985 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 16e8985a9abe94a27ff0873edb84c6838900b4a5 (commit) via f52cfca42504c01ffcf1e10db06bd408edb3e5a9 (commit) from 5df97dfc864975caf5e741f1884b2a4d86e61910 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 16e8985a9abe94a27ff0873edb84c6838900b4a5 Author: Tomas Cohen Arazi Date: Wed Jan 8 12:21:42 2014 -0300 Bug 11499: UT: Make zebra_setup.pl correctly set indexing mode By adding the relevant environment variables to the script the generated koha-conf.xml file for the unit tests is correct now. Test plan: - Verify that tests pass now: $ prove -v t/db_dependent/Search.t 2> /dev/null | grep 11499 Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Galen Charlton Signed-off-by: Kyle M Hall Passes unit test, koha-qa.pl Signed-off-by: Galen Charlton (cherry picked from commit 5666ed77a34d48aa10e1ad2b1f06d99c0553644f) Signed-off-by: Fridolin Somers commit f52cfca42504c01ffcf1e10db06bd408edb3e5a9 Author: Tomas Cohen Arazi Date: Wed Jan 8 12:17:26 2014 -0300 Bug 11499: (regression tests) indexing modes not properly set on generated koha-conf.xml t/db_dependent/Search.t creates its own temporary koha-conf.xml and related files, and it fails to properly set indexing modes for bibliographic and authority records. This patch adds regression tests for that. To test: $ prove -v t/db_dependent/Search.t 2> /dev/null | grep 11499 The test should fail unless the main page is applied. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Galen Charlton Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit 7b1d49f84b17ef779fac8ab6874bf2d34037aaba) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: t/db_dependent/Search.t | 7 ++++++- t/db_dependent/zebra_config.pl | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:40:59 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:40:59 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-37-g4454376 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 445437658d9f0281d6af9c424ff55859bcd1313b (commit) from 16e8985a9abe94a27ff0873edb84c6838900b4a5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 445437658d9f0281d6af9c424ff55859bcd1313b Author: Robin Sheat Date: Tue Nov 19 16:19:12 2013 +1300 Bug 10646 - warn if mod_rewrite is not enabled Koha requires mod_rewrite. If it's not enabled in Apache, then koha-create will now abort with a helpful error message. Also adds a warning when not run as root to avoid confusing errors. Test plan: * apply the patch * a2dismod rewrite * run koha-create without sudo, note the error about being root * run koha-create with sudo, note the error about rewrite * a2enmod rewrute * repeat test above, note that it works Signed-off-by: Tomas Cohen Arazi Works as expected. Signed-off-by: Galen Charlton (cherry picked from commit e4387c1de9738cf19eb4d78b620b92a03fe1b131) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: debian/scripts/koha-create | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:46:13 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:46:13 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-38-g04f1f23 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 04f1f23bcd0e631ff98f6b7a3a27de0f47dee252 (commit) from 445437658d9f0281d6af9c424ff55859bcd1313b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 04f1f23bcd0e631ff98f6b7a3a27de0f47dee252 Author: Jonathan Druart Date: Tue Jan 7 15:14:01 2014 +0100 Bug 11475: fix return link after editing/deleting items in batch Bug introduced by bug 9044. Test plan: 1- First we search for records with multiple items (books or serials, does not matter) 2- We open this record we found with multiple items for editing 3- We chose "Edit items in batch" option from the "Edit" menu 4- We make corrections on the fields under the "Edit item" (For example we change the collection code as "fiction") 5- We save this using "Save button" at the bottom, after we are done. 6- Just after we save, there will be a button named "Done" available just under the page, and when we click on "Done" we encounter the Error screen. Before the patch, the "Done" link points to /cgi-bin/koha/tools/CATALOGUING. After applying the patch, the "Done" link points to the biblio detail page. Signed-off-by: Nicole C. Engard All tests pass Signed-off-by: Kyle M Hall Passes koha-qa.pl, works as advertised Signed-off-by: Galen Charlton (cherry picked from commit 15953702bce6dcba94d351655fb42c29edd5789d) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt | 9 +++++++-- .../intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt | 7 ++++++- 2 files changed, 13 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 09:56:14 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 08:56:14 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-43-g74fe7c3 Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 74fe7c3eaacf8fb42e1be8b9fd1accc9bb750c08 (commit) via 9c779efdcd7c440bebb727024073b6a02ea3197e (commit) via a3157af700b3b46bdfd566fc87d54e7b917d1e49 (commit) via 86d9559cb14b56f817ce98776b4f94ca98996f5c (commit) via 6e5201e924fc74a6828064c54863a986f8ac825d (commit) from 04f1f23bcd0e631ff98f6b7a3a27de0f47dee252 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 74fe7c3eaacf8fb42e1be8b9fd1accc9bb750c08 Author: Galen Charlton Date: Fri Jan 10 16:55:37 2014 +0000 Bug 10952: (follow-up) remove mention of KohaOpacRecentSearches cookie Now that this cookie no longer exists, remove mention of it from a test case. Signed-off-by: Galen Charlton (cherry picked from commit da853bf74eefbd935734177722aaa763ce71d170) Signed-off-by: Fridolin Somers commit 9c779efdcd7c440bebb727024073b6a02ea3197e Author: Galen Charlton Date: Fri Jan 10 16:49:01 2014 +0000 Bug 10952: (follow-up) clear seach history from session after saving it to DB This patch makes sure that the search history from an anonymous session is cleared from the session after a user logs in (and the session history is saved to that user's record in the database). This fixes a problem where the search history from the session got repeatedly added to the database each time the user did something while logged into the OPAC. Signed-off-by: Galen Charlton (cherry picked from commit 914515202df0612c1cdb64bf408120a1364316a0) Signed-off-by: Fridolin Somers commit a3157af700b3b46bdfd566fc87d54e7b917d1e49 Author: Julian Maurice Date: Mon Jan 6 10:00:41 2014 +0100 Bug 10952: (follow-up) Always flush session after deletion This is recommended in CGI::Session documentation. Signed-off-by: Charlene Criton Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit 939d68ea7b0fb7c0649531b324ad4938a5360c0e) Signed-off-by: Fridolin Somers commit 86d9559cb14b56f817ce98776b4f94ca98996f5c Author: Julian Maurice Date: Wed Dec 18 10:58:36 2013 +0100 Bug 10952: (follow-up) comments fixes and unit tests - Remove unit tests for ParseSearchHistoryCookie, which doesn't exist anymore - Add unit tests for ParseSearchHistorySession and SetSearchHistorySession - Remove/Modify comments about search history cookie Signed-off-by: Chris Cormack Tests fixed and moved, and comments tidied up Signed-off-by: Charlene Criton Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit bbf7cd6876e94865492e3fd19e59c31b6b95b588) Signed-off-by: Fridolin Somers commit 6e5201e924fc74a6828064c54863a986f8ac825d Author: Julian Maurice Date: Thu Sep 26 11:22:26 2013 +0200 Bug 10952: Store anonymous search history in session Storing search history into cookie can cause problems, due to the size limitation of 4KB. The solution here is to store search history into the CGI::Session object, so there is no size limitation (but anonymous search history still remember up to 15 requests max.) Test plan: - Go to OPAC in anonymous mode. - Check that the "Search history" link is *not* shown in the top right corner of the page - Make some searches on /cgi-bin/koha/opac-search.pl - The "Search history" link should appear. Click. - Your search history should be displayed. - Try to log in with invalid username/password - Go back to search history, it's still there - Now log in with valid username/password - Your anonymous search history should be saved into your own search history. Signed-off-by: Chris Cormack Restoring original sign offs and comments below Signed-off-by: Bernardo Gonzalez Kriegel Work as described. No koha-qa errors Well, search history saving is similar before and after patch. i.e. anonmymous search is saved when user logs in, but cookie KohaOpacRecentSearches is empty. Shows current an previous session searches Signed-off-by: Katrin Fischer All tests and QA script pass, works as described. Signed-off-by: Charlene Criton Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit d07df7d51250bb5a40bb556aab48afb18a67a396) Signed-off-by: Fridolin Somers ----------------------------------------------------------------------- Summary of changes: C4/Auth.pm | 69 ++++++++++++++------ .../prog/en/modules/opac-search-history.tt | 2 +- opac/opac-search-history.pl | 22 +++---- opac/opac-search.pl | 18 ++--- t/db_dependent/Auth.t | 4 +- t/db_dependent/Auth_ParseSearchHistoryCookie.t | 43 ------------ t/db_dependent/Auth_SearchHistorySession.t | 52 +++++++++++++++ 7 files changed, 117 insertions(+), 93 deletions(-) delete mode 100644 t/db_dependent/Auth_ParseSearchHistoryCookie.t create mode 100644 t/db_dependent/Auth_SearchHistorySession.t hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:15:33 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:15:33 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-418-gcd02934 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via cd02934c6baf9d237b17f8348c83bf7e248d5551 (commit) from b67dac81cceaab356486001292cff40977682fff (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit cd02934c6baf9d237b17f8348c83bf7e248d5551 Author: Galen Charlton Date: Mon Jan 6 16:54:19 2014 +0000 Bug 11310: update the XSLT for the Bootstrap theme When the Bootstrap theme was started, the XSLT directory was copied over from the prog theme. However, it was not kept up to date with respect to changes to prog's XSLT. This patch rectifies the problem by copying over the current state of prog/en/xslt to bootstrap/en/xslt. As a consequence, the following bugs or enhancements should now be reflected in the Bootstrap theme: * 6886 * 10905 * 10465 * 10564 * 10793 * 10218 * 6594 * 9820 * 10745 * 6553 * 10218 * 10284 To test: [1] Apply the patch and ensure that OPACXSLTDetailsDisplay and OPACXSLTResultsDisplay are set to 'default' and that OPAC theme is set to 'bootstrap'. [2] Ensure that OPAC results and bib details look OK. [3] To be really thorough, run through the test plans for the other bugs referenced by this patch. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 106 +++++++++++++------- .../bootstrap/en/xslt/MARC21slim2OPACResults.xsl | 53 ++++------ .../bootstrap/en/xslt/NORMARCslim2OPACDetail.xsl | 2 +- .../bootstrap/en/xslt/NORMARCslim2OPACResults.xsl | 7 +- .../bootstrap/en/xslt/UNIMARCslim2OPACDetail.xsl | 43 +++++--- .../bootstrap/en/xslt/UNIMARCslim2OPACResults.xsl | 13 ++- .../bootstrap/en/xslt/UNIMARCslimUtils.xsl | 18 ++-- 7 files changed, 145 insertions(+), 97 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:19:41 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:19:41 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-419-g42b71b8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 42b71b87cc21ff69072116c7e42b02ad1f85932b (commit) from cd02934c6baf9d237b17f8348c83bf7e248d5551 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 42b71b87cc21ff69072116c7e42b02ad1f85932b Author: Owen Leonard Date: Wed Feb 12 09:49:57 2014 -0500 Bug 11748 - Remove unused jquery.uitablefilter.js plugin This patch removes a jQuery plugin which was added for use with the old tablesorter plugin. Since the tablesorter plugin has been removed and replaced with DataTables this plugin can also be removed. To test, apply the patch and search for instances of the plugin: grep -r -l "jquery.uitablefilter.js" * There should be no results. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../en/lib/jquery/plugins/jquery.uitablefilter.js | 90 -------------------- 1 file changed, 90 deletions(-) delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.uitablefilter.js hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:23:23 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:23:23 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-420-g1b08f92 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 1b08f924513daadaff1258659e17d5caf0a53ea4 (commit) from 42b71b87cc21ff69072116c7e42b02ad1f85932b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1b08f924513daadaff1258659e17d5caf0a53ea4 Author: Sophie Meynieux Date: Tue Jan 28 17:16:18 2014 +0100 Bug 11628: add missing staffaccess permission to French userflags.sql file Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart This permission exists in other installer files (for all other languages). Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/fr-FR/1-Obligatoire/userflags.sql | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:30:31 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:30:31 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-422-g1aeb1d7 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 1aeb1d7e0b4c027b0277f5f5878a3b047abd4b82 (commit) via 3c7edd1cbef811de89d6ee0b54cd690dd36d6ff4 (commit) from 1b08f924513daadaff1258659e17d5caf0a53ea4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1aeb1d7e0b4c027b0277f5f5878a3b047abd4b82 Author: Owen Leonard Date: Fri Feb 14 12:52:34 2014 -0500 Bug 11765 - Remove unused function isDate from templates Several administration templates declare but do not use the JavaScript function isDate(). This patch removes the declarations. To test, apply the patch and search for instances of "isDate" in Koha templates, includes, and JavaScript files. There should be no results. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart I'm not sure this function has ever been used. This patch removes the toUC in tools/letter.tt too. Signed-off-by: Galen Charlton commit 3c7edd1cbef811de89d6ee0b54cd690dd36d6ff4 Author: Owen Leonard Date: Fri Feb 14 12:22:19 2014 -0500 Bug 11764 - Move repeatedly redefined function toUC() into staff-global.js toUC() is repeatedly declared on many administration templates. This function, used to transform user input to uppercase, can be added to staff-global.js to prevent repetition. To test, confirm that transformation to uppercase is working on the following Administration pages when text is entered in a form field and focus is moved to the next field: - Authority types -> New: Test the "Authority type" field. - MARC bibliographic framework -> New framework: Test the "Framework code" field. - Patron types and categories -> New category: Test the "Category code" field. - Currencies and exchange rates -> New currency: Test the "Currency" field. - Item types -> New item type: Test the "Item type" field. - Z39.50 client targets -> New Z39.50 server: Test the "Z39.50 server" field. The following pages do not call the toUC function despite the fact that they included it: auth_tag_structure.tt printers.tt roadtype.tt stopwords.tt systempreferences.tt Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart tools/letter.tt declares this js function and don't use it. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js | 6 ++++++ .../prog/en/modules/admin/auth_tag_structure.tt | 13 ------------- .../intranet-tmpl/prog/en/modules/admin/authtypes.tt | 6 ------ .../prog/en/modules/admin/biblio_framework.tt | 4 ---- .../intranet-tmpl/prog/en/modules/admin/categorie.tt | 13 ------------- .../intranet-tmpl/prog/en/modules/admin/currency.tt | 5 ----- .../intranet-tmpl/prog/en/modules/admin/itemtypes.tt | 13 ------------- .../intranet-tmpl/prog/en/modules/admin/printers.tt | 13 ------------- .../intranet-tmpl/prog/en/modules/admin/roadtype.tt | 13 ------------- .../intranet-tmpl/prog/en/modules/admin/stopwords.tt | 5 ----- .../prog/en/modules/admin/systempreferences.tt | 13 ------------- .../prog/en/modules/admin/z3950servers.tt | 13 ------------- .../intranet-tmpl/prog/en/modules/tools/letter.tt | 17 ++--------------- 13 files changed, 8 insertions(+), 126 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:40:04 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:40:04 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-424-g4b4839e Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 4b4839e752d88c1ccba5f8c9a1296302747c0c6b (commit) via 9e01b7c1d6c32dfd9ae0af4e708ca598303fbcf1 (commit) from 1aeb1d7e0b4c027b0277f5f5878a3b047abd4b82 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4b4839e752d88c1ccba5f8c9a1296302747c0c6b Author: Galen Charlton Date: Tue Feb 18 20:59:56 2014 +0000 Bug 11772: (follow-up) make warning about no active currency a link to currency setup page This patch standardizes the name of the currency and exchange rates administration page (although I note that the breadcrumbs on that page are inconsistent) and makes it a link. Signed-off-by: Galen Charlton commit 9e01b7c1d6c32dfd9ae0af4e708ca598303fbcf1 Author: Marc V?ron Date: Sat Feb 15 16:19:04 2014 +0100 Bug 11772: Show warning on About page:System information if no active currency is defined This patch displays a warning on the About page when no active currency is defined. Test plan: 1) Make sure that no currency is defined as active (Home ? Administration ? Currencies & Exchange rates ? Currencies) 2) Go to Home ? About Koha > System information Result: No warning issued. 3) Apply patch and reload About page Result: Warning issued. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: about.pl | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:44:18 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:44:18 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-425-g1db56c8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 1db56c834b297eb7fd968691f66ef3517771cba5 (commit) from 4b4839e752d88c1ccba5f8c9a1296302747c0c6b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1db56c834b297eb7fd968691f66ef3517771cba5 Author: Marc V?ron Date: Sat Feb 15 17:07:55 2014 +0100 Bug 11773: fix crash in sco-main.pl if no active currency is set If no currency is defined as active and a patron with debts tries to check out in welf checkout moduel, sco-main.pl crashes with: Software error: Can't use an undefined value as a HASH reference at /usr/share/kohaclone/opac/sco/sco-main.pl line 190. This patch tests for active currency and simply does not display a currency symbol if appropriate. Test plan: 1) Make sure you have a patron with debts and no currency defined as active. (Home ? Administration ? Currencies & Exchange rates ? Currencies ) 2) Go to Self checkout module and try to checkout an item to this patron Result: Crash with error message "Can't use an undefined value as a HASH..." 3) Apply patch 4) Reload and try to checkout again Expected result: Message "You owe the library..." without currency symbol 5) Define a currency as active and try to checkout again Expected result: Message "You owe..." with currency symbol Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: opac/sco/sco-main.pl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:49:07 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:49:07 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-426-g432fce6 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 432fce68eab71059ce797cbd6ee26a340009a208 (commit) from 1db56c834b297eb7fd968691f66ef3517771cba5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 432fce68eab71059ce797cbd6ee26a340009a208 Author: Owen Leonard Date: Wed Feb 12 12:19:02 2014 -0500 Bug 11753 - Replace jQuery qTip plugin with Bootstrap tooltip on patron search form The qTip plugin is out of date and incompatible with recent versions of jQuery. This patch replaces use of qTip on the patron search form with a Bootstrap tooltip implementation. To test, apply the patch and view /cgi-bin/koha/members/members-home.pl - Expand the patron search form by clicking the [+] - Change 'search fields' from 'Standard' to 'Date of birth' - A tooltip should appear giving details about the date format required - Change the 'search fields' to something else. The tooltip should not appear. Revision: Removed inclusion of qTip plugin from global header include. The other instance of qTip usage occurs on a page which loads the plugin separately. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/doc-head-close.inc | 1 - .../intranet-tmpl/prog/en/includes/patron-search.inc | 18 ++++++------------ 2 files changed, 6 insertions(+), 13 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 21:59:11 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 20:59:11 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-427-g76daec8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 76daec8bff3edeea65b6e5e59602e7c3aa2521f3 (commit) from 432fce68eab71059ce797cbd6ee26a340009a208 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 76daec8bff3edeea65b6e5e59602e7c3aa2521f3 Author: Owen Leonard Date: Mon Jan 27 09:21:15 2014 -0500 Bug 11618: ensure jQuery timepicker is picked up by the i18n toolchain We handle internationalization of the jQuery datepicker by adding language configuration strings to calendar.inc which can be processed by the translation script. This patch adds a similar configuration file for the timepicker. This patch also upgrades the timepicker plugin to the latest version, minified, and places it outside the prog template directory for global use. The path in templates has been updated accordingly. CSS has been added to more completely hide the controls for seconds, milliseconds, and microseconds. To test, apply the patch and clear your cache so that the browser loads the new version of the jQuery plugin. Confirm that date and time selection still function correctly on the circulation page, the patron detail page, and the offline circulation page (circ/offline.pl). Test at least one datepicker instance which does not use the timepicker. Run translate update on a po file and confirm that the timepicker strings are now present. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Works as expected, no regression found. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../plugins/jquery-ui-timepicker-addon.min.js | 5 + .../intranet-tmpl/prog/en/css/staff-global.css | 5 + .../intranet-tmpl/prog/en/includes/timepicker.inc | 26 + .../jquery/plugins/jquery-ui-timepicker-addon.js | 1530 -------------------- .../prog/en/modules/circ/circulation.tt | 3 +- .../prog/en/modules/circ/offline-mf.tt | 2 +- .../intranet-tmpl/prog/en/modules/circ/offline.tt | 4 +- .../prog/en/modules/members/moremember.tt | 3 +- 8 files changed, 44 insertions(+), 1534 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/timepicker.inc delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery-ui-timepicker-addon.js hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 22:06:51 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 21:06:51 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-428-gd3c565f Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via d3c565f12c5c9136588a17e6497d860f6c5e95ed (commit) from 76daec8bff3edeea65b6e5e59602e7c3aa2521f3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d3c565f12c5c9136588a17e6497d860f6c5e95ed Author: Owen Leonard Date: Tue Feb 11 13:02:03 2014 -0500 Bug 11743 - Remove unused DataTables plugin from OPAC theme directories The Bootstrap and CCSR theme directories contain older copies of the DataTables plugin which is no longer in use. This patch removes them both. To test, apply the patch and confirm that DataTables still work on the following pages in both the Bootstrap and CCSR OPAC themes: - The Cart. Add items to the Cart, open it and confirm that the table is sorted correctly. - The detail page: View the detail page for a title (opac-detail.pl) with multiple items and confirm that the table of items is sorted correctly. - A subscription's "full history" page: Navigate to the detail page of a subscription in your catalog which has received multiple issues. From the subscriptions tab click the "More details" link, then the "Full history" link. Confirm that the table of issues is sorted correctly. - Search history: Enable the EnableOpacSearchHistory system preference. Perform a few searches so that your current session will record them. View the search history page and confirm that the tables of current and past searches are sorted correctly. - Suggestions (enable 'suggestion' system pref if necessary) - Tags (enable TagsEnabled if necessary) - Most popular (enable OpacTopissue if necessary) - User summary (opac-user.pl): Checkouts, overdues, and holds tables should all sort correctly. - Self checkout: Enable WebBasedSelfCheck if necessary. Check out as a patron who has multiple existing checkouts. Confirm that the table is sorted correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Existing uses of datatables.min.js don't point to the theme directory. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../lib/jquery/plugins/jquery.dataTables.min.js | 153 -------------------- .../en/lib/jquery/plugins/jquery.dataTables.min.js | 153 -------------------- 2 files changed, 306 deletions(-) delete mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/jquery/plugins/jquery.dataTables.min.js delete mode 100644 koha-tmpl/opac-tmpl/ccsr/en/lib/jquery/plugins/jquery.dataTables.min.js hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 22:25:13 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 21:25:13 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-431-ge27ea08 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via e27ea08887a0332692c37b05b15021b14b1bef78 (commit) via 201af593f885ecb11c76d02baa6e27ef5e744e30 (commit) via 2fac9a76450835337b015956a6f3150586aa5a17 (commit) from d3c565f12c5c9136588a17e6497d860f6c5e95ed (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e27ea08887a0332692c37b05b15021b14b1bef78 Author: Marcel de Rooy Date: Tue Feb 18 16:26:07 2014 +0100 Bug 10789: Follow-up: restored second SQL parameter in GetLastOrderReceivedFromSubscriptionid Signed-off-by: Marcel de Rooy Signed-off-by: Galen Charlton commit 201af593f885ecb11c76d02baa6e27ef5e744e30 Author: Marcel de Rooy Date: Tue Feb 18 16:04:46 2014 +0100 Bug 10789: Follow-up: Fix typo "infermation" Signed-off-by: Marcel de Rooy Signed-off-by: Galen Charlton commit 2fac9a76450835337b015956a6f3150586aa5a17 Author: Colin Campbell Date: Sun Dec 8 22:26:18 2013 +0000 Bug 10789: Remove unnecessary calls to $sth->finish in C4::Acquisitions C4::Acquisitions contained a number of unnecessary calls to $sth->finish. Removed these and the associated variables introduced to cache query results between fetch and the return Where finish was the end of the routine I have added an explicit return to document that no data is returned. A number of places made query calls and fetched a single row. Such a case could require an explicit finish. These assume that they are looking up with a unique key. To remove assumptions and isolate the code from future changes I've switched these to fetching all and returning the first row. I have commented these cases. For fuller explanation see perldoc DBI What I tested: Edit existing basket, chnged name Modify order line, change vendor price Create new basket and add order Delet this order Delte this basket New Basket, new order, user added, user removed Add contract to vendor, change details, delete contract Search order biblio Create basket group, add basket to group, remove basket from group Delete basket group Receive order Everything behaved as I expected Signed-off-by: Marc Veron Signed-off-by: Marcel de Rooy Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Acquisition.pm | 139 ++++++++++++++++++++++------------------------------- 1 file changed, 58 insertions(+), 81 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 18 22:32:13 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 21:32:13 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-432-gb9d2a83 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via b9d2a832db6d2a75d6466a349b769e8285d1f0c8 (commit) from e27ea08887a0332692c37b05b15021b14b1bef78 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b9d2a832db6d2a75d6466a349b769e8285d1f0c8 Author: St?phane Delaune Date: Mon Feb 10 10:52:59 2014 +0100 Bug 11730: ensure that C4::Charset loads C4::Context C4::Charset::SetMarcUnicodeFlag() fetches system preference values, so since it invokes routines in C4::Context, it should load the module. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Charset.pm | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 00:18:57 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 23:18:57 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-433-g2d0347c Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 2d0347c787108657e047c00873e227c8bb043bfc (commit) from b9d2a832db6d2a75d6466a349b769e8285d1f0c8 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2d0347c787108657e047c00873e227c8bb043bfc Author: Owen Leonard Date: Fri Feb 7 10:30:19 2014 -0500 Bug 11709: revisions to Bootstrap OPAC lists interface This patch makes some revisions to the lists template: - Removed the old prog theme breadcrumbs from the List edit screen. - Added New/Edit/Delete controls to the list view in cases where the list is empty. - Corrected some breadcrumb logic. To test, apply the patch and edit an existing list. You should see a heading "Editing [list name]". If necessary create a list with zero items on it. View the list. You should see New/Edit/Delete links above the message about the list being empty. Patch behaves as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt | 30 ++++++++++++++++++-- 1 file changed, 27 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 00:28:14 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 23:28:14 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-434-g7514dc8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 7514dc897cc49683915112229667ec1f654873ae (commit) from 2d0347c787108657e047c00873e227c8bb043bfc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7514dc897cc49683915112229667ec1f654873ae Author: Owen Leonard Date: Fri Feb 14 08:48:46 2014 -0500 Bug 11756: improve default sorting on hold ratios report The DataTables plugin doesn't by default take multiple columns into account when sorting. The hold ratios report presents a situation where it makes sense to sort by default based on two columns: hold count and title, since there are likely to be many titles with the same hold count. This patch adds sorting by default on holds (descending) and title (ascending). It also modifies the configuration of the title sort to exclude articles when sorting. To test, view the hold ratios report. If necessary use the filter form to reduce the minimum hold ratio and generate more results. Confirm that the correct columns can be sorted. Note that by default one can manually trigger sorting on two columns by shift-clicking the second column header. Signed-off-by: Chris Cormack Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/circ/reserveratios.tt | 12 ++++++++++++ 1 file changed, 12 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 00:32:02 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 23:32:02 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-437-g113ce78 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 113ce7808a69373117e7697ad16d06169fe97279 (commit) via 8a6f51e0ef9badf786345cbab51c80873ef872fc (commit) via 0f9ec8f589e0afee79923570b71078d8c94b8986 (commit) from 7514dc897cc49683915112229667ec1f654873ae (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 113ce7808a69373117e7697ad16d06169fe97279 Author: Fridolin Somers Date: Fri Jan 31 14:47:09 2014 +0100 Bug 11649 - Always use words "copy number" - opac prog In most cases, the value of items.copynumber is displayed using the words "Copy number". But in some cases, it is just "Copy". It would be better to always use "Copy number" because in translation the word "Copy" means the action of coping. This patch manages templates of opac prog theme. To test, display an item containing a value in items.copynumber. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 8a6f51e0ef9badf786345cbab51c80873ef872fc Author: Fridolin Somers Date: Fri Jan 31 14:46:20 2014 +0100 Bug 11649 - Always use words "copy number" - opac bootstrap In most cases, the value of items.copynumber is displayed using the ords "Copy number". But in some cases, it is just "Copy". It would be better to always use "Copy number" because in translation the word "Copy" means the action of coping. This patch manages templates of opac bootstrap theme. To test, display an item containing a value in items.copynumber. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 0f9ec8f589e0afee79923570b71078d8c94b8986 Author: Fridolin Somers Date: Fri Jan 31 14:44:26 2014 +0100 Bug 11649 - Always use words "copy number" - intranet In most cases, the value of items.copynumber is displayed using the words "Copy number". But in some cases, it is just "Copy". It would be better to always use "Copy number" because in translation the word "Copy" means the action of coping. This patch manages templates of intranet. To test, display an item containing a value in items.copynumber. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 4 ++-- koha-tmpl/opac-tmpl/ccsr/en/css/mobile.css | 2 +- koha-tmpl/opac-tmpl/prog/en/modules/opac-course-details.tt | 2 +- koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt | 2 +- koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt | 4 ++-- 11 files changed, 13 insertions(+), 13 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 00:43:19 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 18 Feb 2014 23:43:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-438-gd90b4b6 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via d90b4b6a08aa946fd40d1c1a45d1cc4ad64c30e5 (commit) from 113ce7808a69373117e7697ad16d06169fe97279 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d90b4b6a08aa946fd40d1c1a45d1cc4ad64c30e5 Author: Owen Leonard Date: Fri Feb 14 16:24:10 2014 -0500 Bug 11771 - Use validation plugin when creating new MARC framework tag The page for adding a new tag to a MARC framework includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. The patch also moves some tag markup creation out of the script and into the template where it belongs. To test, apply the patch and go to Administration -> MARC bibliographic framework -> MARC structure -> New tag. Try submitting the form without entering a tag number. This should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing tag should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Great improvement! Before this patch, I got a JS alert but the form was submitted anyway. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: admin/marctagstructure.pl | 12 ++----- .../prog/en/modules/admin/marctagstructure.tt | 37 +++++++++----------- 2 files changed, 19 insertions(+), 30 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 17:54:06 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 19 Feb 2014 16:54:06 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-448-ga97f21a Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via a97f21ad3ba53ecd30089c7f802ab9b3ad430806 (commit) via ed6e2b57a1d47f413aa4f5f691e82b849daa8468 (commit) via 37a0e888199f1a1f8eefd38ad6ada786403fe034 (commit) via 065a3a5efa9b90723460a607ac85591c17945b00 (commit) via 858083c8e907bde4efa6842cd45ff91bf1f6e24f (commit) via 9d5fadb9831f03ab80489f9f18467a1796fc9447 (commit) via 7d05394ff2b27f7e08e41b908b445a33414edc0e (commit) via 5ee8268a8df6ac193aa0500f4b801a3d359c1838 (commit) via ac9d872fefc867d4f068d425bcfcb929435809bd (commit) via 6fd26558894869c0e80666007cab3b9edb090008 (commit) from d90b4b6a08aa946fd40d1c1a45d1cc4ad64c30e5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a97f21ad3ba53ecd30089c7f802ab9b3ad430806 Author: Galen Charlton Date: Wed Feb 19 17:09:34 2014 +0000 Bug 11777: add regression test This patch adds a regression test for ensuring that the authorisedby field is returned by SearchOrders(). To test: [1] Upon applying the main patch, verify that prove -v t/db_dependent/Acquisition.t passes. Signed-off-by: Galen Charlton commit ed6e2b57a1d47f413aa4f5f691e82b849daa8468 Author: Amit Gupta Date: Tue Feb 18 14:57:44 2014 +0530 Bug 11777: ensure "created by" is displayed by the order receiving page This fixes a regression introduced by the patches for bug 10723. To Test: 1) Create budget and fund under budget administration. 2) Create Vendor in acquisitons module. 3) Create basket under vendor. 4) Create order and choose budget while creating order. 5) Click on Receive shipment button. 6) Click on receive link on the right hand side you will be able to see a staff user name in the "created by" field. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 37a0e888199f1a1f8eefd38ad6ada786403fe034 Author: Kyle M Hall Date: Tue Feb 18 09:47:32 2014 -0500 Bug 11783: ensure CD field in SIP patron information response is populated If a patron has a record-level hold that is unavailable, any patron information request will send back an empty CD field when this field should have an item barcode in it [RM note: this actually isn't universally true -- the SIP2 standard is silent as to what is supposed to go in the CD field. Some SIP2 devices do indeed want an item barcode, but others are known to just want a display of the title and author of the request in question. Providing an option is the topic of a new enhancement request, however.] This is due to a minor error in ILS::Patron::_get_outstanding_holds where GetItemnumbersForBiblio is assumed to return an array but in reality returns an arrayref. Test Plan: 1) Create a record level hold for a patron and record 2) Using SIP2, make a patron information request 3) Note the empty CD fields 4) Apply this patch, restart SIP server 5) Repeat step 2 6) Note the CD field now has a barcode Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart I did not test this patch but the following code shows me it is correct: use C4::Items; use Data::Dumper; my $biblionumber = 5035; my $itemnumber = (GetItemnumbersForBiblio($biblionumber))[0]; say Dumper $itemnumber; $itemnumber = (GetItemnumbersForBiblio($biblionumber))->[0]; say Dumper $itemnumber; displays: $VAR1 = [ '23168', '23169', '23170', '23171', '23172' ]; $VAR1 = '23168'; Signed-off-by: Galen Charlton commit 065a3a5efa9b90723460a607ac85591c17945b00 Author: Galen Charlton Date: Wed Feb 19 16:40:06 2014 +0000 Bug 11779: (follow-up) improve GetLoggedInBranchcode() and add test cases This patch adjusts the new GetLoggedInBranchcode() template function so that it returns the empty string rather than undef if there is no active user environment. That way, there won't be lots of undefined value warnings if/when this function gets used in the OPAC. This patch also adds test cases. To test: [1] Verify that there are no regressions in the main test plan for this bug. [2] Verify that prove -v t/db_dependent/Koha_template_plugin_Branches.t passes. Signed-off-by: Galen Charlton commit 858083c8e907bde4efa6842cd45ff91bf1f6e24f Author: Kyle M Hall Date: Tue Feb 18 07:43:44 2014 -0500 Bug 11779: fix unexpected change in logged-in library when changing overdue notice triggers Steps to reproduce: 1) Log into staff intranet 2) Set logged in branch 3) Browse to tools/overdue notice triggers 4) Select a branch from the pulldown that is not your logged in branch 5) use the "Check out" bar at the top of the page to search for a patron to check out to 6) Once you have landed here, click the "check out" tab link again, or the Edit button ( any action really ) 7) Note your logged in branch has now changed to the once selected when editing the notice/status triggers This is due to the way the patron search passes the branchcode to be used via the form. This form assumes the branchcode variable is always the currently logged in branch, which may not and is not always the case. Test Plan: 1) Apply this patch 2) Repeat the steps to reproduce above 3) Note your logged in branch does not change Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Funny bug :) This patch fixes the described issue and should not introduce regression. Signed-off-by: Galen Charlton commit 9d5fadb9831f03ab80489f9f18467a1796fc9447 Author: Marc V?ron Date: Tue Feb 18 01:18:23 2014 +0100 Bug 11784 - fix displaying patron images in self checkout I suppose this bug was introduced with Bug 10636 (patronimage should have borrowernumber as PK, not cardnumber) To test: - Have a Patron with image. Configure everything to show image in SCO. - Go to SCO and log in patron - Image does not show up (broken link) - Apply patch - Test with prog, ccsr and bootstrap themes - Image should display Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 7d05394ff2b27f7e08e41b908b445a33414edc0e Author: Owen Leonard Date: Mon Feb 10 15:29:06 2014 -0500 Bug 11740 - Use new DataTables include in quotes upload template Bug 10649 introduced a new include file for adding DataTables-related JavaScript assets. This patch adds use of this include file to the quotes upload page. To test you need a CSV file of quotes to upload ( "source","text" ). Go to Tools -> Quote editor and click the "Import quotes" button. Upload the CSV file and confirm that the table which previews the import results loads correctly. Sorting is not enabled, but pagination and searching should work. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart No regression found. Signed-off-by: Galen Charlton commit 5ee8268a8df6ac193aa0500f4b801a3d359c1838 Author: Owen Leonard Date: Fri Feb 14 14:29:47 2014 -0500 Bug 11767 - Use validation plugin when creating new authority framework tag The page for adding a new tag to an authority framework includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. The patch also moves some tag markup out of the script and into the template where it belongs. To test, apply the patch and go to Administration -> Authority types -> MARC structure -> New tag. Try submitting the form without entering a tag number. This should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing tag should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit ac9d872fefc867d4f068d425bcfcb929435809bd Author: Owen Leonard Date: Fri Feb 14 13:11:04 2014 -0500 Bug 11766 - Use validation plugin when creating new authority type The new authority type entry form uses custom form validation JavaScript. This patch removes it in favor of using HTML5 validation attributes and Koha's built-in validation plugin. To test, go to Administration -> Authority types and click "New authority type." Try submitting the form without entering any data. You should see a warning about required fields. Upon entering text in those fields the warning should disappear. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 6fd26558894869c0e80666007cab3b9edb090008 Author: Owen Leonard Date: Wed Feb 12 10:12:58 2014 -0500 Bug 11749 - Remove unused jQuery plugin jquery.hoverIntent.minified.js from the staff client The jQuery plugin jquery.hoverIntent.minified.js is used only in the OPAC, not the staff client. This patch removes it from the staff client. To test, apply the patch and search for instances of "hoverIntent." Only references in OPAC templates should be returned. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Acquisition.pm | 1 + C4/SIP/ILS/Patron.pm | 2 +- Koha/Template/Plugin/Branches.pm | 9 +++ admin/auth_tag_structure.pl | 6 +- .../prog/en/includes/patron-search-box.inc | 6 +- .../jquery/plugins/jquery.hoverIntent.minified.js | 9 --- .../prog/en/modules/admin/auth_tag_structure.tt | 61 ++++++-------------- .../prog/en/modules/admin/authtypes.tt | 43 +++----------- .../prog/en/modules/tools/quotes-upload.tt | 7 +-- .../opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 2 +- .../opac-tmpl/prog/en/modules/sco/sco-main.tt | 2 +- t/db_dependent/Acquisition.t | 3 +- t/db_dependent/Koha_template_plugin_Branches.t | 13 ++++- 13 files changed, 58 insertions(+), 106 deletions(-) delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.hoverIntent.minified.js hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 20:45:07 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 19 Feb 2014 19:45:07 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-450-g7efc105 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 7efc10542be6d836c52cf598174e28f84a9d6470 (commit) via ba689152e431217c8dd02d6ce0b8d14ae8d9f5da (commit) from a97f21ad3ba53ecd30089c7f802ab9b3ad430806 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7efc10542be6d836c52cf598174e28f84a9d6470 Author: Galen Charlton Date: Wed Feb 19 20:04:22 2014 +0000 Bug 11644: (follow-up) add FIXME Arithmetic with monetary amounts is a *hard* problem -- or if not hard, at least super-fiddly, particularly since in theory a Koha database could have to deal with dozens of currencies if used by a large research library. This patch adds a FIXME implicitly commenting on the poor state of affairs of available monetary calculation modules on CPAN. Signed-off-by: Galen Charlton commit ba689152e431217c8dd02d6ce0b8d14ae8d9f5da Author: Kyle M Hall Date: Thu Jan 30 12:39:19 2014 -0500 Bug 11644: fix occasional failure to update fund amount due to floating-point math When attempting to update a fund, if the amount unalloccated for the fund is equal to the total, you can be prevented from saving. This is due to imprecise floating point number comparison in check_parent_total.pl Test Plan: 1) Create a fund where the amount unallocated is equal to the amount unallocated for the budget period 2) Edit the fund, attempt to change the name of the fund 3) Note you recieve an error and cannot save 4) Apply this patch 5) Repeat step 2 6) Note you can now update the fund Signed-off-by: Sean McGarvey Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: admin/check_parent_total.pl | 8 ++++++++ 1 file changed, 8 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 21:27:29 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 19 Feb 2014 20:27:29 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-454-gaaff735 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via aaff735269bc2df1df030727ee85a12e7a28db11 (commit) via f62e45dc92d0209e17c798a39f3425e9a2332586 (commit) via b0f39cee0de80568d78903b1926fa6eeefb6f16e (commit) via 10e1cbeb1421a6351ac0df4d0c76a8ae79d4dd9d (commit) from 7efc10542be6d836c52cf598174e28f84a9d6470 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit aaff735269bc2df1df030727ee85a12e7a28db11 Author: Galen Charlton Date: Wed Feb 19 20:35:08 2014 +0000 Bug 10544: (follow-up) update MARC21 DOM index definitions This patch updates the MARC21 DOM index definitions to index the 952$i as 'Number-local-acquisition' rather than 'stocknumber'. To test (for a MARC21/DOM setup): [1] Copy the MARC21 biblio-zebra-indexdefs.xsl over to the active Zebra configuration directory. [2] Reindex the bib records. [3] Verify that 'stocknumber', 'inv', and 'number-local-acquisition' searches work. Signed-off-by: Galen Charlton commit f62e45dc92d0209e17c798a39f3425e9a2332586 Author: Fridolyn SOMERS Date: Wed Jul 24 12:39:59 2013 +0200 Bug 10544 - add Number-local-acquisition in QueryParser config This patch adds the Number-local-acquisition into QueryParser configuration file. Like in ccl.properties, "Number-local-acquisition" is the main index name and "stocknumber" and "inv" are aliases. Test plan : Enable QueryParser : - Enable UseQueryParser syspref - Edit your koha-conf.xml - Add to "config" node : [your path]/etc/searchengine/queryparser.yaml, adapt [your patch] to your install configuration folder - If needed copy from sources "etc/searchengine/queryparser.yaml" into your install configuration folder Test search : - Add Number-local-acquisition on an existing subfield in records.abs. For example on item barcode field - Reindex Zebra database - Choose a value of this field that will match some results. For example : "0*" will match all barcodes beginning with zero - In intranet, enter this URL : /cgi-bin/koha/catalogue/search.pl?idx=stocknumber&q=0*&sort_by=relevance => You get some results - In intranet, enter this URL : /cgi-bin/koha/catalogue/search.pl?idx=inv&q=0*&sort_by=relevance => You get the same results - In intranet, enter this URL : /cgi-bin/koha/catalogue/search.pl?idx=number-local-acquisition&q=0*&sort_by=relevance => You get the same results Signed-off-by: Marcel de Rooy Comments on case sensitivity of index names in QueryParser, see Bugzilla. Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton commit b0f39cee0de80568d78903b1926fa6eeefb6f16e Author: Fridolyn SOMERS Date: Wed Jul 24 12:37:00 2013 +0200 Bug 10544: add Number-local-acquisition in known indexes Adding Number-local-acquisition in C4::Search known indexes allows to search without using "ccl=" prefix. Also corrects in ccl.properties : inv must be an alias of Number-local-acquisition. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton commit 10e1cbeb1421a6351ac0df4d0c76a8ae79d4dd9d Author: Fridolyn SOMERS Date: Fri Jul 5 16:35:45 2013 +0200 Bug 10544: ensure that stocknumber searches work for MARC21 Bug 6256 replaced in bib1.att stocknumber by Number-local-acquisition for number 1062. In this case, Number-local-acquisition must be used in record.abs and stocknumber can be an alias of it in ccl.properties. Test plan (for MARC21/GRS1): - drop zebra database (rebuild_zebra.pl -r ...) - reindex - test in simple search : ccl=Number-local-acquisition,alwaysmatches='' => you get all records with a stocknumber - test in simple search : ccl=stocknumber,alwaysmatches='' => you get the same results Signed-off-by: Chris Cormack Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Search.pm | 1 + etc/searchengine/queryparser.yaml | 7 ++++--- etc/zebradb/ccl.properties | 5 +++-- etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml | 4 ++-- etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl | 2 +- etc/zebradb/marc_defs/marc21/biblios/record.abs | 2 +- 6 files changed, 12 insertions(+), 9 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 21:48:55 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 19 Feb 2014 20:48:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-457-gc9dd8b8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via c9dd8b8bc3d07d1f4fc132759758f337e3d23196 (commit) via 0e92d21d0ed8683e2905812377e7f4dcf2a0a882 (commit) via b6118db2f595cec027dc9c809dcfb639ec4a320b (commit) from aaff735269bc2df1df030727ee85a12e7a28db11 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c9dd8b8bc3d07d1f4fc132759758f337e3d23196 Author: Galen Charlton Date: Wed Feb 19 21:00:32 2014 +0000 Bug 11202: (follow-up) update number of expected tests for t/QueryParser.t Signed-off-by: Galen Charlton commit 0e92d21d0ed8683e2905812377e7f4dcf2a0a882 Author: Jonathan Druart Date: Mon Feb 3 13:17:17 2014 +0100 Bug 11202: FIX UT for QueryParser.t Test plan: prove t/QueryParser.t Signed-off-by: Galen Charlton commit b6118db2f595cec027dc9c809dcfb639ec4a320b Author: Mathieu Saby Date: Tue Nov 5 12:33:04 2013 +0100 Bug 11202: Improve UNIMARC biblio indexing This patch makes the following changes to UNIMARC biblio indexing : A. Changes to UNIMARC conf files 1. add comments to biblio-koha-indexdefs.xml 2. make biblio-koha-indexdefs.xml more compact by grouping some declarations Ex : 200$f and 200$g => one declaration for 200$fg 3. suppress unneeded declarations (indexing of some 4XX fields and 6XX fields not in unimarc format) 4. unindex some (sub)fields unneeded by most users (318, 207,230,210a, 215, 4XXd) 5. change the way 308 field is indexed (no visible changes) 6. replace Title-host with Host-item -- see bug 11119 7. index 208 in Material-Type -- see bug 11119 8. index 100 pos 8-9 and 9-12 in pubdate:y and pubdate:n 9. index 100 pos 8-9 in pubdate:s instead of 210$d 10. Index all subfields of note 334 and 327 in note index 11. Index 304 and 327 in title index as well as note index 327 can contain a list of titles included in a work 304 can contain the title of the original work in case of a translation 12. Index 314 in author index as well as note index 314 can contain authors not mentionned in 200$f/g (the 4th, 5th etc. author) 13. Index 328 note in Dissertation-information as well as note 14. Index 328$t in Title B. Changes to ccl.properties : 1. add a new index Dissertation-information (1056) 2. fix EAN, pubdate and acqdate (they were not linked with bib1 attributes) C. Changes to Search.pm 1. add Dissertation-information and suppress Title-host and UPC D. Changes to QP config file queryparser.yaml 1. add Dissertation-information 2 fix EAN, pubdate and acqdate Test plan : If you cannot test in GRS1, test only in DOM, as GRS will be deprecated. 1. Apply the patch in a UNIMARC Koha running with DOM and ICU 2. copy src/etc/searchengine/queryparser.yaml into the main config directory of QP 3. copy src/etc/zebradb/ccl.properties into the main config directory of Zebra 4. copy src/etc/zebradb/marc_defs/unimarc/biblio/* into the main config directory of Zebra 5. reindex biblios (rebuild_zebra.pl -r -b -x -v) 6. test note index : make some searches on 334$b or 327$b 7. test author index : make some searches on 314 field 8. test title index : make some searches on 304 and 327 field, make a search on 328$t subfield 9. test dissertation-information index : make some searches on 328 field 10. In a record, put in the dates of 100 fields the values "1000" (1st date) and "1001" (2d date) ; try to search a book written in year 1000, you should find the record ; idem for year 1001 11. make some searches and sort by date. It should work better as before, especially if you have values like "c2009" or "impr. 2010" in 210 field 12. Regression test : make some searches on several indexes, like EAN, etc. It should work as before Test 10-12 with and without Queryparser activated. Be careful: with Queryparser activated, the index names (title, dissertation-information...) must be entered in lowercase only. Of course, to test search and sort by dates, you need to have full records, with dates in 100 field as well as 210 field. Signed-off-by: Paola Rossi Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Search.pm | 3 +- etc/searchengine/queryparser.yaml | 15 +- etc/zebradb/ccl.properties | 22 +- .../unimarc/biblios/biblio-koha-indexdefs.xml | 878 +++++++------------- .../unimarc/biblios/biblio-zebra-indexdefs.xsl | 753 ++--------------- etc/zebradb/marc_defs/unimarc/biblios/record.abs | 130 ++- t/QueryParser.t | 10 +- 7 files changed, 480 insertions(+), 1331 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 21:59:55 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 19 Feb 2014 20:59:55 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-458-g5188702 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 518870223669e8d4e3893401d18da0610ac1f6c7 (commit) from c9dd8b8bc3d07d1f4fc132759758f337e3d23196 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 518870223669e8d4e3893401d18da0610ac1f6c7 Author: Marcel de Rooy Date: Mon Feb 10 13:28:16 2014 +0100 Bug 11732: Eliminate warning on undefined branchcode When you run the Reserves test, you have the warnings: Use of uninitialized value $branchcode in hash element at /usr/share/koha/testclone/C4/Letters.pm line 138. Use of uninitialized value $branchcode in hash element at /usr/share/koha/testclone/C4/Letters.pm line 148. This patch removes that warning. Test plan: Run the Reserves.t again. Revised Test Plan ----------------- Run the following on the command line prompt before and after applying the patch: perl -e "use C4::Letters; *C4::Context::userenv= sub { return {} }; my \$blah=C4::Letters::getletter('circulation','DUE', 'BRA');" Before the patch there will be errors (as above), after there will not. Signed-off-by: Mark Tompsett Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart IndependentBranches must be on. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Letters.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 19 22:18:56 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 19 Feb 2014 21:18:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-459-g48298fe Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 48298fe4942ba37f59aa42d7155552c5b61974cf (commit) from 518870223669e8d4e3893401d18da0610ac1f6c7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 48298fe4942ba37f59aa42d7155552c5b61974cf Author: Owen Leonard Date: Thu Jan 30 14:17:10 2014 -0500 Bug 11411 - Bootstrap theme (enhancement) for (right to left) This patch improves Koha's layout when a right-to-left language is being displayed by correcting a float set by the right-to-left version of Bootstrap CSS. The patch modifies the right-to-left Less file and includes a now-minified version of the compiled CSS. To test, install a right-to-left language like ar-Arab. Apply the patch and view the OPAC under the Bootstrap theme. When logged in, the log out link is now aligned to the left. Signed-off-by: Holger Mei?ner Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../opac-tmpl/bootstrap/css/right-to-left.css | 421 +------------------- .../opac-tmpl/bootstrap/less/right-to-left.less | 6 + 2 files changed, 7 insertions(+), 420 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 20 16:36:13 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 20 Feb 2014 15:36:13 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-461-g11faf9f Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 11faf9fde8da48c58e853d5538a8e3bbd2ae41c5 (commit) via 08d15a6fd1b51435b92f1056f6735c8317636068 (commit) from 48298fe4942ba37f59aa42d7155552c5b61974cf (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 11faf9fde8da48c58e853d5538a8e3bbd2ae41c5 Author: Colin Campbell Date: Mon Jan 6 12:06:29 2014 +0000 Bug 11479: Remove experimental given/when keywords Replace constructs using given and when by if/else feature now generates compilation warnings in 5.18 and is liable to change behaviour. This patch: * replaces the construct with if/else * reformats the if branching using perltidy to remove the now redundant indent To test: [1] Verify that prove -v t/db_dependent/MarcModificationTemplates.t passes. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 08d15a6fd1b51435b92f1056f6735c8317636068 Author: Colin Campbell Date: Mon Jan 6 11:53:29 2014 +0000 Bug 11478: Replace experimental given/when keywords The keywords given and when are flagged experimental in perl 5.18 and subject to change. This patch replaces the construct by an if/elsif To test: [1] Verify that prove -v t/SimpleMARC.t passes. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/MarcModificationTemplates.pm | 90 ++++++++++++++++++++++----------------- Koha/SimpleMARC.pm | 20 ++++----- 2 files changed, 59 insertions(+), 51 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 20 17:33:38 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 20 Feb 2014 16:33:38 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-463-g6a323ce Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 6a323ce4ce914e757d5c1c999237ad2c0efc15e9 (commit) via daa98e73f8baf178f2b0f32b4988d2414519ea4b (commit) from 11faf9fde8da48c58e853d5538a8e3bbd2ae41c5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6a323ce4ce914e757d5c1c999237ad2c0efc15e9 Author: Owen Leonard Date: Wed Feb 19 15:06:36 2014 -0500 Bug 10714 [Follow-up] Redirect to list contents view upon cancel after initiating edit from list contents view (staff) This follow-up corrects the "cancel" action on list edit actions based on whether the edit was initiated from the list of lists or the list contents view. To test, view the list of lists and click the edit link next to one of them. Click the cancel link. You should return to the list of lists you were just viewing. View the contents of a list. Choose "Edit list" from the edit menu. Click the cancel link on the edit screen. You should return to the list contents view from which you initiated the edit action. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit daa98e73f8baf178f2b0f32b4988d2414519ea4b Author: Owen Leonard Date: Mon Aug 12 15:30:16 2013 -0400 Bug 10714: Redirect to list contents view upon save after initiating edit from list contents view (staff) In the staff client, if you initiate a list edit from the list contents view you should be redirected to that same view after saving your changes. The OPAC already works this way. To test, view the contents of an existing list. Click the "Edit list" item under the "Edit" menu. Click save on the list edit form and you should be redirected back to the contents view of that list. Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../prog/en/includes/virtualshelves-toolbar.inc | 2 +- .../intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 20 17:45:54 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 20 Feb 2014 16:45:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-470-gd95ad08 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via d95ad086a35a7927bb7bc02453a1a1341387dc6a (commit) via 5dc093b30e8d949f39a67bf2ac40f219f6167d0a (commit) via 1d9b86aabccf1bc916b6b27e568ad984caf081f6 (commit) via 19bf1e9a40ab5a8f3c86fb07dd6429bfc44f703b (commit) via 4e9b5110d90c3ac60c61f710ff5892b9720e643e (commit) via 03675fd55320f3a9bc3d4c7475bc3b9696920bd9 (commit) via 7faff33c8b9bd670cf7813f4cefb7aee38709ebb (commit) from 6a323ce4ce914e757d5c1c999237ad2c0efc15e9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d95ad086a35a7927bb7bc02453a1a1341387dc6a Author: Owen Leonard Date: Wed Feb 19 11:36:30 2014 -0500 Bug 11791 - Use validation plugin when creating new city The page for adding a new city includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. To test, apply the patch and go to Administration -> Cities -> New city. Try submitting the form without entering a city or zip code. This should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing city should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Note: This patch changes the behavior. Before the patch, only 1 out of city and zip was required. Now both are. Since the 2 inputs were marked as required, I think they should be. Signed-off-by: Galen Charlton commit 5dc093b30e8d949f39a67bf2ac40f219f6167d0a Author: Owen Leonard Date: Wed Feb 19 11:59:33 2014 -0500 Bug 11792 - Use validation plugin when creating new currency The page for adding a new currency includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. To test, apply the patch and go to Administration -> Currencies & Exchange rates -> New currency. Try submitting the form without entering a currency, rate, and/or symbol. This should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing currency should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 1d9b86aabccf1bc916b6b27e568ad984caf081f6 Author: Owen Leonard Date: Wed Feb 19 12:29:34 2014 -0500 Bug 11793 - Use validation plugin when creating new item type The page for adding a new item type includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. To test, apply the patch and go to Administration -> Item types -> New item type. Try submitting the form with the following error conditions: - Missing item type - Missing description - A non-number in the "rental charge" field These errors should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing item type should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 19bf1e9a40ab5a8f3c86fb07dd6429bfc44f703b Author: Owen Leonard Date: Wed Feb 19 13:05:19 2014 -0500 Bug 11795 - Use validation plugin when creating new Z39.50 server The page for adding a new Z39.50 server includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. To test, apply the patch and go to Administration -> Z39.50 client targets -> New Z39.50 server. Try submitting the form with any of the following error conditions: - Missing Z39.50 server name - Missing hostname - Missing port - Non-numeric port - Missing database - Non-numeric rank - Non-numeric timeout These errors should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing Z39.50 server should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Amended patch: replace tabs with spaces Signed-off-by: Galen Charlton commit 4e9b5110d90c3ac60c61f710ff5892b9720e643e Author: Owen Leonard Date: Tue Feb 18 15:26:30 2014 -0500 Bug 11788 - Use validation plugin when creating new course The page for adding a new course includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. To test, apply the patch and go to Course reserves -> New course. Try submitting the form without entering a department, course number, and/or course name. This should trigger validation warnings. Submission of the form with valid data should work correctly. Editing an existing course should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 03675fd55320f3a9bc3d4c7475bc3b9696920bd9 Author: Owen Leonard Date: Tue Feb 18 14:52:26 2014 -0500 Bug 11787 - Use validation plugin when adding new vendor The vendor entry form uses some custom JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. Also corrected: Minor validation issue. To test, apply the patch and go to Acquisitions -> New vendor. Try submitting the form without entering a vendor name. This should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing vendor should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 7faff33c8b9bd670cf7813f4cefb7aee38709ebb Author: Owen Leonard Date: Tue Feb 18 12:13:39 2014 -0500 Bug 11785 - Use validation plugin when uploading local cover images When uploading local cover images the form should not be submitted if no file has been selected. The existing form validation script doesn't work. This patch adds HTML5 validation attributes and use of Koha's built-in form validation plugin. To test, apply the patch and go to Tools -> Upload local cover image. Try to submit the form without selecting a file to upload. You should be prevented from doing so. Choose a file and confirm that the upload completes correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/acqui/supplier.tt | 21 ++---- .../intranet-tmpl/prog/en/modules/admin/cities.tt | 19 ++--- .../prog/en/modules/admin/currency.tt | 37 +++------- .../prog/en/modules/admin/itemtypes.tt | 60 +++------------- .../prog/en/modules/admin/z3950servers.tt | 74 +++++++------------- .../prog/en/modules/course_reserves/course.tt | 45 +++--------- .../prog/en/modules/tools/upload-images.tt | 21 +++--- 7 files changed, 74 insertions(+), 203 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 20 19:41:19 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 20 Feb 2014 18:41:19 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-471-ge7286e0 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via e7286e05137276f0a916f06d60a13c22c93294b2 (commit) from d95ad086a35a7927bb7bc02453a1a1341387dc6a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e7286e05137276f0a916f06d60a13c22c93294b2 Author: Kyle M Hall Date: Wed Feb 19 15:26:24 2014 -0500 Bug 11796: fix display of search result facets if facet happens to have exactly six entries If a search gives results with 6 facets, one of those facets won't be displayed. This is due to a bug in the code that only considers great than 6 facets in one area, and less than 6 in another. Test Plan: 1) Perform a search that should give results for 6 different libraries 2) Note you only see 5 libraries in the facets with no option to expand 3) Apply this patch 4) Repeat step 1 5) Note you now have the option to expand the facets list Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart This patch should provide a regression test but I really don't know how to write it. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Search.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 20 19:48:45 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 20 Feb 2014 18:48:45 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-473-g3f6ecd4 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 3f6ecd4f593cac79b3fbe973d6f90091d0bd4789 (commit) via 68a7f7f4456078b1b9dc6fd1ba16f11ba45267fc (commit) from e7286e05137276f0a916f06d60a13c22c93294b2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3f6ecd4f593cac79b3fbe973d6f90091d0bd4789 Author: Galen Charlton Date: Thu Feb 20 19:09:11 2014 +0000 Bug 11611: DBRev 3.15.00.017 Signed-off-by: Galen Charlton commit 68a7f7f4456078b1b9dc6fd1ba16f11ba45267fc Author: Mathieu Saby Date: Sun Jan 26 19:55:46 2014 +0100 Bug 11611: Rephrase description and examples of 5 MARC related sysprefs This patch rephrases the description or examples of 5 sysprefs: 1/ MARCAuthorityControlField008: "MARC" -> "MARC21" 2/ itemcallnumber: "Examples" -> "Examples (for MARC21 records)" 3/ DefaultLanguageField008: "Range 35-37" -> "Range 35-37 of MARC21 records" 4/ MARCOrgCode: "new MARC records" -> "new MARC21 records" 5/ UNIMARCAuthorityField100 description: "Do NOT include the date (position 00-05)." -> "position 08-35. Do NOT include the date (position 00-07)." It also adds description in SQL systempreferences table for UNIMARCAuthorityField100, MARCAuthorityControlField008 and MARCOrgCode. Test plan: - Apply and run updatedatabase.pl - Check the changes are taken into account in syspref administration page - Check the changes are taken into account in systempreferences table (for UNIMARCAuthorityField100, MARCAuthorityControlField008 and MARCOrgCode) Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/sysprefs.sql | 8 ++++---- installer/data/mysql/updatedatabase.pl | 21 ++++++++++++++++++++ .../en/modules/admin/preferences/authorities.pref | 4 ++-- .../en/modules/admin/preferences/cataloguing.pref | 6 +++--- kohaversion.pl | 2 +- 5 files changed, 31 insertions(+), 10 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 20 20:10:25 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 20 Feb 2014 19:10:25 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-474-g65ae7a9 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 65ae7a950de83b7bc9e741d0cc31a79d4797c579 (commit) from 3f6ecd4f593cac79b3fbe973d6f90091d0bd4789 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 65ae7a950de83b7bc9e741d0cc31a79d4797c579 Author: Ketan Kulkarni Date: Thu Nov 21 14:37:58 2013 +0530 Bug 11087: Make the Pay Fines tab the default tab Since paying fines is the most likely action when clicking on the Fines tab, the pay fines tab should be the default rather than the account summary. http://bugs.koha-community.org/show_bug.cgi?id=11087 Signed-off-by: Holger Mei?ner Signed-off-by: Katrin Fischer Verified by accessing the fines pages from the various patron account pages. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 20 20:14:06 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 20 Feb 2014 19:14:06 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-475-g40ba176 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 40ba1763afc40cd47b23892a3248fd877dc8edce (commit) from 65ae7a950de83b7bc9e741d0cc31a79d4797c579 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 40ba1763afc40cd47b23892a3248fd877dc8edce Author: Nicole C. Engard Date: Fri Jan 24 09:47:53 2014 -0600 Bug 11272 - add second submit button to inventory form The inventory tool allows for 2 ways of processing files. The first is to upload a file. The second is to generate the shelf list. Most libraries think they have to fill in all fields because the submit button is at the bottom of the second option. They do not. This patch adds a second submit button under the first method to make this clearer. To test: * Generate a file of barcodes for inventorying * Before applying the patch use the file upload method to mark as seen * Apply the patch * Use the file upload method to mark as seen using the new submit * Repeat the above for the shelf list method * Confirm that inventory still works as expected with 2 buttons Signed-off-by: Owen Leonard Signed-off-by: Marcel de Rooy Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 6 ++++++ 1 file changed, 6 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 16:50:43 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 15:50:43 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-478-g2be50eb Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 2be50eba0fe16a7243722f3edac56447c2b6fa75 (commit) via 67653c8d5f2702ae6e9a110a22a15d68b199c938 (commit) via a691ebc3f1b9a4b9075fc3f1b798a145fbd01244 (commit) from 40ba1763afc40cd47b23892a3248fd877dc8edce (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2be50eba0fe16a7243722f3edac56447c2b6fa75 Author: Galen Charlton Date: Fri Feb 21 16:08:01 2014 +0000 Bug 7372: (follow-up) remove last traces of roadtype table and admin pages This patch removes the DBIC schema class for the 'roadtype' table and staff interface templates that are no longer reachable with the removal of the road type administration page. It also removes the creation of the table during installation. Signed-off-by: Galen Charlton commit 67653c8d5f2702ae6e9a110a22a15d68b199c938 Author: Galen Charlton Date: Fri Feb 21 16:02:33 2014 +0000 Bug 7372: DBRev 3.15.00.018 Signed-off-by: Galen Charlton commit a691ebc3f1b9a4b9075fc3f1b798a145fbd01244 Author: Jonathan Druart Date: Wed Oct 23 14:27:45 2013 +0200 Bug 7372: Move road types from the roadtype table to the ROADTYPE AV Currently road types are stored in a specific table in DB. Moreover, an admin page is present in order to manage them. This patch proposes to remove this table and this page in favour of a new authorised value category 'ROADTYPE'. This patch: - adds a new AV category 'ROADTYPE' (created from the roadtype table content). - remove the roadtype table. - remove the .pl and .tt file admin/roadtype - remove the 2 routines C4::Members::GetRoadTypes and C4::Members::GetRoadTypeDetails Test plan: 1/ Execute the updatedatabase entry and verify existing roadtypes are now stored in the AV 'ROADTYPE'. 2/ Verify you can add/update a streettype for patrons. 3/ Verify on following pages the streettype is displayed in patron information (top left): circ/circulation.pl members/memberentry.pl members/moremember.pl members/routing-lists.pl Signed-off-by: Sophie Meynieux Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Members.pm | 67 ---------- Koha/Schema/Result/Roadtype.pm | 66 ---------- admin/roadtype.pl | 129 ------------------- circ/circulation.pl | 2 +- installer/data/mysql/kohastructure.sql | 11 -- installer/data/mysql/updatedatabase.pl | 31 +++++ .../intranet-tmpl/prog/en/includes/admin-menu.inc | 1 - .../prog/en/includes/roadtype-admin-search.inc | 31 ----- .../prog/en/modules/admin/admin-home.tt | 3 - .../prog/en/modules/admin/roadtype.tt | 134 -------------------- .../prog/en/modules/help/admin/roadtype.tt | 15 --- .../prog/en/modules/members/memberentrygen.tt | 14 +- .../prog/en/modules/members/moremember.tt | 4 +- kohaversion.pl | 2 +- members/memberentry.pl | 15 +-- members/moremember.pl | 4 +- members/routing-lists.pl | 4 +- 17 files changed, 51 insertions(+), 482 deletions(-) delete mode 100644 Koha/Schema/Result/Roadtype.pm delete mode 100755 admin/roadtype.pl delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/roadtype-admin-search.inc delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/admin/roadtype.tt delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/roadtype.tt hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 17:59:29 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 16:59:29 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-479-g988dc3b Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 988dc3b64af00d34f535b811f4093782ac7925a1 (commit) from 2be50eba0fe16a7243722f3edac56447c2b6fa75 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 988dc3b64af00d34f535b811f4093782ac7925a1 Author: Jonathan Druart Date: Wed Jan 15 16:24:00 2014 +0100 Bug 11562: re-sort sysprefs.sql The QA tools does not manage to catch error sorting on the sysprefs.sql file if it is already badly sorted. This patch tidies up the sysprefs file. TEST PLAN --------- [1] Verify that loading sysprefs.sql into an empty Koha database (or one whose system preferences table is is empty) works. Signed-off-by: Mark Tompsett Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton RM note: I must point out that there ZERO functionality associated with the order that system preferences occur in that SQL script; they are sorted solely in an attempt to reduce the likelihood of merge conflicts during the development process. Consequently, I dislike language that suggests it is an "error" if sysprefs.sql happens to not be perfectly sorted; it is at most an inconvenience. ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/sysprefs.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 18:22:20 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 17:22:20 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-481-g1d276d5 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 1d276d58099fa60666bccc13c7b9d839946946c1 (commit) via 0b989fe0b2097d747da1fd6d04aa8aecc5652d06 (commit) from 988dc3b64af00d34f535b811f4093782ac7925a1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1d276d58099fa60666bccc13c7b9d839946946c1 Author: Galen Charlton Date: Fri Feb 21 17:38:42 2014 +0000 Bug 10580: (follow-up) tweak wording about looking for zebrasrv & zebraidx Signed-off-by: Galen Charlton commit 0b989fe0b2097d747da1fd6d04aa8aecc5652d06 Author: Tomas Cohen Arazi Date: Fri Jan 24 10:40:03 2014 -0300 Bug 10580: adjust Makefile.PL to reflect that Zebra no longer optional in Koha setup Running Makefile.PL asks the user whether to install the Zebra configuration files and different texts relate to the user having chosen to use Zebra. This patch removes references to choosing to use Zebra and removes the related variables from the code. To test: - Apply the patch - Go through the different install modes - Verify that nothing nothing is broken Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: Makefile.PL | 235 ++++++++++++++++++++++++----------------------------- rewrite-config.PL | 1 - 2 files changed, 108 insertions(+), 128 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 19:02:56 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 18:02:56 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-482-g5e0d450 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 5e0d450875f24d1f9ef6620b033b5179633589da (commit) from 1d276d58099fa60666bccc13c7b9d839946946c1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5e0d450875f24d1f9ef6620b033b5179633589da Author: Marcel de Rooy Date: Thu Feb 20 12:54:32 2014 +0100 Bug 11799: Housekeeping: Remove _biblionumber_sth from VirtualShelves.pm This routine is no longer used. Test plan: Do a grep on the name. (Bonus points:) Verify if you can perform some actions on lists. No more occurences of _biblionumber_sth found Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/VirtualShelves.pm | 11 ----------- 1 file changed, 11 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 19:07:54 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 18:07:54 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-483-g36eac12 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 36eac129f7fdab89ffd77ba5f3bd3add688deedc (commit) from 5e0d450875f24d1f9ef6620b033b5179633589da (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 36eac129f7fdab89ffd77ba5f3bd3add688deedc Author: Owen Leonard Date: Wed Feb 19 15:53:13 2014 -0500 Bug 9677 - Style button on notices and slips page with Bootstrap The toolbar button on the Notices & Slips page isn't styled with Bootstrap as other toolbar buttons are. This patch corrects this. The patch also removes some obsolete CSS. To test go to Tools -> Notices and Slips. The toolbar button should look correct and work correctly. Patch works as expected. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart "yui-menu-button" is not contained in tt files. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css | 6 ------ koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 19:23:16 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 18:23:16 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-487-g827c7e8 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 827c7e8ece70ef3ff919d863489bab93010dd7a3 (commit) via e0e56963fba78f3ac0e0dbedcc4fb8f601168414 (commit) via 11fbcafa8f47e50021db7d044aba65eef1e15989 (commit) via 31b732b8300d8e9fe953cac3ab50f367f3fbe376 (commit) from 36eac129f7fdab89ffd77ba5f3bd3add688deedc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 827c7e8ece70ef3ff919d863489bab93010dd7a3 Author: Galen Charlton Date: Fri Feb 21 18:44:01 2014 +0000 Bug 11256: (follow-up) tweak description of the OpacMaxItemsToDisplay syspref Signed-off-by: Galen Charlton commit e0e56963fba78f3ac0e0dbedcc4fb8f601168414 Author: Galen Charlton Date: Fri Feb 21 18:36:06 2014 +0000 Bug 11256: DBRev 3.15.00.019 Signed-off-by: Galen Charlton commit 11fbcafa8f47e50021db7d044aba65eef1e15989 Author: Jonathan Druart Date: Tue Feb 18 14:27:14 2014 +0100 Bug 11256: Opac: Set a number of items to display on a biblio detail page - bootstrap This patch adds the changes for the bootstrap theme. See test plan in the previous patch. Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall commit 31b732b8300d8e9fe953cac3ab50f367f3fbe376 Author: Jonathan Druart Date: Fri Nov 15 12:02:53 2013 +0100 Bug 11256: Opac: Set a number of items to display on a biblio detail page. Currently, the number of items to display is hardcoded (50). But the perl script loads all items before to check if the number of items is oversized. This patch adds a new pref OpacMaxItemsToDisplay (default to 50). If the *total* number of items for a biblio is greater, no item is displayed and a link allows to display all items. Test plan: 1/ search a biblio with many items 2/ set the pref according the number of items you want to display 3/ verify the items are not displayed if the number of items is greater the pref value 4/ enable the OpacSeparateHoldings pref and verify the items are displayed in different tabs (if items have different locations). Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/sysprefs.sql | 1 + installer/data/mysql/updatedatabase.pl | 7 +++++++ .../prog/en/modules/admin/preferences/opac.pref | 6 ++++++ .../opac-tmpl/bootstrap/en/modules/opac-detail.tt | 13 ++++++------ koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt | 20 +++++++----------- kohaversion.pl | 2 +- opac/opac-detail.pl | 22 +++++++++----------- 7 files changed, 38 insertions(+), 33 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 20:24:02 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 19:24:02 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-488-g7a2dec0 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 7a2dec05eddc979b5a957a651e393838c13560c4 (commit) from 827c7e8ece70ef3ff919d863489bab93010dd7a3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7a2dec05eddc979b5a957a651e393838c13560c4 Author: Jonathan Druart Date: Tue Feb 18 15:07:38 2014 +0100 Bug 11471: Display the currency for baskets in a basketgroup On editing a basketgroup, the currency for baskets in a basketgroup is always '0'. With this patch, the currency is correctly displayed. TEST PLAN ========= 1) Log into staff client 2) Acquisitions 3) Click 'Search' in the 'Manage orders' box 4) Click '+ New basket' because a vendor name 5) Type 'Test Basket' into basket name 6) Click 'Save' 7) Click 'Add to basket' 8) Click 'From an external source' 9) Type 'Green Eggs and Ham' into the Title text box 10) Click 'Search' 11) Click 'Order' on any one of the results 12) Click 'Add Item' in the 'Item' box 13) Select a Fund from the dropdown in the 'Accounting details' box 14) Click 'Save' 15) Click 'Close the basket' 16) Click 'Yes, close (Y)' without checking attach to a basket group 17) Click the 'Basket groups' tab 18) Click '+ New basket group' 19) Notice the listing in the 'Ungrouped baskets'. 20) Drag and drop the entry into the 'Baskets in this group' text area 21) Click 'Save' 22) Click 'Edit' 23) Notice it displays incorrectly. (e.g. Total: 0 0) 24) Apply the patch (git bz apply 11471) 25) Refresh the page 26) Notice it displays the currency correctly. (e.g. Total: 0 USD) NOTE: If there is a space issue, see Bug 9654. This can be applied separately from that bug. 27) Run the Koha QA Tool: (~/qa-test-tools/koha-qa.pl -v 2 -c 1) Signed-off-by: Mark Tompsett Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: acqui/basketgroup.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 21 20:53:20 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 21 Feb 2014 19:53:20 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-489-g4677bb5 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 4677bb52616794457f616571479aab6425be75f9 (commit) from 7a2dec05eddc979b5a957a651e393838c13560c4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4677bb52616794457f616571479aab6425be75f9 Author: Owen Leonard Date: Tue Feb 18 15:37:31 2014 -0500 Bug 11789 - Use validation plugin when creating new list The page for adding a new list includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. Other edits: Minor validation fixes. To test, apply the patch and go to Lists -> New list. Try submitting the form without entering a list name. This should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing list should also work correctly. Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../prog/en/modules/virtualshelves/shelves.tt | 41 +++++++------------- 1 file changed, 13 insertions(+), 28 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 25 14:53:13 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 25 Feb 2014 13:53:13 +0000 Subject: [koha-commits] main Koha release repository branch 3.12.x updated. v3.12.10-27-ga80918f Message-ID: This is an automated email from the git hooks/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.12.x has been updated via a80918f76d83c548999c4726959d932a6452fc87 (commit) via e3ab5fc90b2b899ef3fae33a10251ac9183d15f8 (commit) via fc3036232d44d702caf743a0092561d1f987f3d1 (commit) from 6d29191151e7295b6b2f548e52672bfb36a06f6f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a80918f76d83c548999c4726959d932a6452fc87 Author: Tomas Cohen Arazi Date: Tue Feb 25 11:12:57 2014 -0300 Increment version for 3.12.11 release Signed-off-by: Tomas Cohen Arazi commit e3ab5fc90b2b899ef3fae33a10251ac9183d15f8 Author: Bernardo Gonzalez Kriegel Date: Tue Feb 25 10:11:11 2014 -0300 Translation updates for 3.12.11 release (cherry picked from commit afa4450d02123c595300af726af4717184b7efe7) Signed-off-by: Tomas Cohen Arazi commit fc3036232d44d702caf743a0092561d1f987f3d1 Author: Tomas Cohen Arazi Date: Tue Feb 25 11:09:52 2014 -0300 Update release notes for 3.12.11 release Signed-off-by: Tomas Cohen Arazi ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 6 + kohaversion.pl | 2 +- ..._notes_3_12_9.txt => release_notes_3_12_11.txt} | 175 +- .../po/am-Ethi-i-staff-t-prog-v-3006000.po | 136 +- .../po/ar-Arab-i-staff-t-prog-v-3006000.po | 146 +- .../po/az-AZ-i-staff-t-prog-v-3006000.po | 142 +- misc/translator/po/ben-i-staff-t-prog-v-3006000.po | 136 +- .../po/bg-Cyrl-i-staff-t-prog-v-3006000.po | 136 +- .../po/ca-ES-i-staff-t-prog-v-3006000.po | 145 +- .../po/cs-CZ-i-staff-t-prog-v-3006000.po | 268 +- misc/translator/po/cs-CZ-pref.po | 5 +- .../po/da-DK-i-staff-t-prog-v-3006000.po | 146 +- .../po/de-CH-i-staff-t-prog-v-3006000.po | 146 +- .../translator/po/de-DE-i-opac-t-prog-v-3006000.po | 6 +- .../po/de-DE-i-staff-t-prog-v-3006000.po | 172 +- .../po/el-GR-i-staff-t-prog-v-3006000.po | 142 +- .../po/en-GB-i-staff-t-prog-v-3006000.po | 140 +- .../po/en-NZ-i-staff-t-prog-v-3006000.po | 144 +- .../translator/po/es-ES-i-opac-t-prog-v-3006000.po | 1755 +- .../po/es-ES-i-staff-t-prog-v-3006000.po |17191 +++++--------------- misc/translator/po/es-ES-opac-ccsr.po | 2 +- misc/translator/po/es-ES-pref.po | 212 +- misc/translator/po/eu-i-staff-t-prog-v-3006000.po | 136 +- .../po/fa-Arab-i-staff-t-prog-v-3006000.po | 145 +- .../po/fi-FI-i-staff-t-prog-v-3006000.po | 136 +- .../po/fr-CA-i-staff-t-prog-v-3006000.po | 146 +- .../po/fr-FR-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/gl-i-staff-t-prog-v-3006000.po | 142 +- .../po/he-Hebr-i-staff-t-prog-v-3006000.po | 142 +- misc/translator/po/hi-i-staff-t-prog-v-3006000.po | 142 +- .../po/hr-HR-i-staff-t-prog-v-3006000.po | 152 +- .../po/hu-HU-i-staff-t-prog-v-3006000.po | 145 +- .../po/hy-Armn-i-opac-t-prog-v-3006000.po | 15 +- .../po/hy-Armn-i-staff-t-prog-v-3006000.po | 162 +- .../po/id-ID-i-staff-t-prog-v-3006000.po | 136 +- .../po/is-IS-i-staff-t-prog-v-3006000.po | 145 +- .../translator/po/it-IT-i-opac-t-prog-v-3006000.po | 61 +- .../po/it-IT-i-staff-t-prog-v-3006000.po | 9988 ++++++------ misc/translator/po/it-IT-pref.po | 12 +- .../po/ja-Jpan-JP-i-staff-t-prog-v-3006000.po | 145 +- .../po/kn-Knda-i-staff-t-prog-v-3006000.po | 139 +- .../po/ko-Kore-KP-i-staff-t-prog-v-3006000.po | 145 +- misc/translator/po/ku-i-staff-t-prog-v-3006000.po | 145 +- .../po/lo-Laoo-i-staff-t-prog-v-3006000.po | 136 +- .../po/mi-NZ-i-staff-t-prog-v-3006000.po | 145 +- misc/translator/po/mon-i-staff-t-prog-v-3006000.po | 144 +- misc/translator/po/mr-i-staff-t-prog-v-3006000.po | 136 +- .../po/ms-MY-i-staff-t-prog-v-3006000.po | 136 +- .../po/nb-NO-i-staff-t-prog-v-3006000.po | 146 +- .../po/ne-NE-i-staff-t-prog-v-3006000.po | 136 +- .../po/nl-BE-i-staff-t-prog-v-3006000.po | 139 +- .../po/nl-NL-i-staff-t-prog-v-3006000.po | 136 +- .../po/nn-NO-i-staff-t-prog-v-3006000.po | 142 +- misc/translator/po/pbr-i-staff-t-prog-v-3006000.po | 136 +- .../translator/po/pl-PL-i-opac-t-prog-v-3006000.po | 319 +- .../po/pl-PL-i-staff-t-prog-v-3006000.po | 744 +- misc/translator/po/pl-PL-pref.po | 84 +- misc/translator/po/prs-i-staff-t-prog-v-3006000.po | 139 +- .../po/pt-BR-i-staff-t-prog-v-3006000.po | 144 +- .../translator/po/pt-PT-i-opac-t-prog-v-3006000.po | 15 +- .../po/pt-PT-i-staff-t-prog-v-3006000.po | 162 +- .../po/ro-RO-i-staff-t-prog-v-3006000.po | 147 +- .../po/ru-RU-i-staff-t-prog-v-3006000.po | 142 +- .../po/sd-PK-i-staff-t-prog-v-3006000.po | 136 +- .../po/sk-SK-i-staff-t-prog-v-3006000.po | 146 +- .../po/sl-SI-i-staff-t-prog-v-3006000.po | 136 +- .../po/sq-AL-i-staff-t-prog-v-3006000.po | 136 +- .../po/sr-Cyrl-i-staff-t-prog-v-3006000.po | 136 +- .../po/sv-SE-i-staff-t-prog-v-3006000.po | 146 +- .../po/ta-LK-i-staff-t-prog-v-3006000.po | 136 +- misc/translator/po/ta-i-staff-t-prog-v-3006000.po | 136 +- misc/translator/po/tet-i-opac-t-prog-v-3006000.po | 380 +- misc/translator/po/tet-i-staff-t-prog-v-3006000.po | 205 +- .../po/th-THA-i-staff-t-prog-v-3006000.po | 136 +- .../po/tl-PH-i-staff-t-prog-v-3006000.po | 136 +- .../po/tr-TR-i-staff-t-prog-v-3006000.po | 152 +- .../po/uk-UA-i-staff-t-prog-v-3006000.po | 142 +- .../po/ur-Arab-i-staff-t-prog-v-3006000.po | 136 +- .../translator/po/vi-VN-i-opac-t-prog-v-3006000.po | 14 +- .../po/vi-VN-i-staff-t-prog-v-3006000.po | 136 +- .../po/zh-Hans-CN-i-staff-t-prog-v-3006000.po | 146 +- .../po/zh-Hans-TW-i-staff-t-prog-v-3006000.po | 146 +- 82 files changed, 14641 insertions(+), 25511 deletions(-) copy misc/release_notes/{release_notes_3_12_9.txt => release_notes_3_12_11.txt} (63%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 25 14:54:26 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 25 Feb 2014 13:54:26 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.12.11 created. v3.12.11 Message-ID: This is an automated email from the git 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.12.11 has been created at be4bae9962cb5ee717c5481611c0ada94f7fc729 (tag) tagging a80918f76d83c548999c4726959d932a6452fc87 (commit) replaces v3.12.10 tagged by Tomas Cohen Arazi on Tue Feb 25 11:15:42 2014 -0300 - Log ----------------------------------------------------------------- Koha release 3.12.11 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (GNU/Linux) iQIcBAABAgAGBQJTDKWOAAoJEAonLqGy88FfZA8P+wckKqmPxi2gKuqlZVJgu67X y3bAfXDhhG3SRrAMRcuyXwymZFgcgb3Jcxfm12ic4QbSlvZScXev9IZNOOC/rzG2 /buWTxhgf7soD3bI4qTtM8nQ0p7Lsf8aYbU85UP3inr5sLaH99QIxUUqm3FJggEx LH8qQtjKY1fiKwVHsh5XZjZJnij4AcLV3DBEH1tqQdeOXeLuwixFG5aIq/10l5ND bvMAKBO8Shu2DxQYytAK0rsJoxmZAfjWIPWmix3EkyUrC3E9bQbW5k3Yq0hzG4ZP eQVBvalbYGzmM+7AVBYiW8zbvJvutVvfZXOlLBsyrw3hffq0OXoPt2uQi0lcc5eu rkorZztxuzCdD7VHiksZzInrfqROBUK6KtkzMADmShWK4tez58A24HcqJxR3sq6q sZf5nZoQXGWJ7Dmnl9d3uXndIYjbt7M4/272xWk5eDqWlACWxFgI+c6yaw1HBCoq XY3zBkpOhBc7JBqp6NbGaBlqoSamEhcRq4E9p6dCRisunm/Z/pXPns7DqwXWm/Ys gqP2HJsaZ2tgdon35JU4SWPlgGiFuHVDcxxSxFP2VmSeDdnb+QxagwIFzht1pNi6 +zmGDDCVvChwVYuVBEE2HUgIRYtrwrdH3zvbUw8ohzFLMXQarAhPEXn5X9k6+hUV GvAT5AFbHlnWh7U4mYQF =8v2W -----END PGP SIGNATURE----- Bernardo Gonzalez Kriegel (1): Translation updates for 3.12.11 release Emma Heath (1): Bug 11540: increase test coverage of Charset.pm Fridolyn SOMERS (1): Bug 7518: certain searches with quotation marks don't work Gaetan Boisson (1): Bug 11417: make sure remove_unused_authorities.pl accepts --test Galen Charlton (3): Bug 7518: regression test double-quote in search operand Bug 11402: (follow-up) add one more unit test Bug 11439: (follow-up) adjust for change in list returned by OCLC XISBN Jacek Ablewicz (1): Bug 9948: fix creation/updating of items when partially receiving an order Jonathan Druart (2): Bug 10453: fix unintended password reset when updating child to adult Bug 11279: (follow-up) remove unnecessary check on number of quotes Katrin Fischer (3): Bug 8018: (follow-up) fixing some wrong capitalization Bug 11279: regression test for picking random quote Bug 11279: Improve how a new quote of the day is selected Kyle M Hall (1): Bug 11419: display Z39.50 search errors more completely Magnus Enger (1): Bug 11188 - Make gather_print_notices.pl die on failed open() Marcel de Rooy (1): Bug 11398: A typo occurred with occured Matthias Meusburger (1): Bug 11412: fix potential bulkmarcimport crash when searching for duplicates in authorities Pablo Bianchi (1): Bug 8018: MARC framework max subfield length should default to 9999 Tomas Cohen Arazi (9): Bug 8018: (followup) make the default more explicit DBRev 3.12.10.001 Bug 11402: make Labels::_guide_box return undef if undefned data is passed Bug 9579: fix truncation of facets containing multi-byte characters Bug 11540: (follow-up) add a couple of tests more Bug 11510: koha-translate usage message fixes Bug 10896: Add a --verbose option to koha-translate Update release notes for 3.12.11 release Increment version for 3.12.11 release ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Tue Feb 25 15:35:39 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Tue, 25 Feb 2014 14:35:39 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-490-ga07b32f Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via a07b32f4f9090ba0c50c3e510f0be56b8805faeb (commit) from 4677bb52616794457f616571479aab6425be75f9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a07b32f4f9090ba0c50c3e510f0be56b8805faeb Author: Marcel de Rooy Date: Thu Feb 20 19:39:10 2014 +0100 Bug 11803: use $dbh consistently in _koha_modify_item This is just some code cleanup, no behavior change expected. Also replacing errstr with err in testing the results. (See DBI.) Test plan: Modify an item and save it. Followed test plan. No problems found. Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/Items.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 12:30:04 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 11:30:04 +0000 Subject: [koha-commits] main Koha release repository branch 3.14.x updated. v3.14.03-47-g1b1f24f Message-ID: This is an automated email from the git hooks/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.14.x has been updated via 1b1f24fbed0310df38036153a8283bf6a37fe9b3 (commit) via a4029b562b58b75945550abcd76a4c4d16686abd (commit) via d9a06a27b8ca6926669bd83f75fb23fd36dd9605 (commit) via e637361028ec90362239af0b0a928f8257fdf92e (commit) from 74fe7c3eaacf8fb42e1be8b9fd1accc9bb750c08 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1b1f24fbed0310df38036153a8283bf6a37fe9b3 Author: Fridolin Somers Date: Wed Feb 26 12:48:17 2014 +0100 Increment version for 3.14.4 release Signed-off-by: Fridolin Somers commit a4029b562b58b75945550abcd76a4c4d16686abd Merge: d9a06a2 e637361 Author: Fridolyn SOMERS Date: Wed Feb 26 12:44:47 2014 +0100 Merge remote-tracking branch 'translator/3.14.04-release' into 3.14.x Signed-off-by: Fridolin Somers commit d9a06a27b8ca6926669bd83f75fb23fd36dd9605 Author: Fridolyn SOMERS Date: Wed Feb 26 12:42:45 2014 +0100 Update release notes for 3.14.4 release Signed-off-by: Fridolin Somers commit e637361028ec90362239af0b0a928f8257fdf92e Author: Bernardo Gonzalez Kriegel Date: Tue Feb 25 10:19:56 2014 -0300 Translation updates for 3.14.04 release ----------------------------------------------------------------------- Summary of changes: installer/data/mysql/updatedatabase.pl | 6 + kohaversion.pl | 2 +- ...e_notes_3_14_3.txt => release_notes_3_14_4.txt} | 213 +- .../po/am-Ethi-i-opac-t-prog-v-3006000.po | 54 +- .../po/am-Ethi-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/am-Ethi-opac-bootstrap.po | 94 +- .../po/ar-Arab-i-opac-t-prog-v-3006000.po | 55 +- .../po/ar-Arab-i-staff-t-prog-v-3006000.po | 151 +- misc/translator/po/ar-Arab-opac-bootstrap.po | 97 +- .../translator/po/az-AZ-i-opac-t-prog-v-3006000.po | 56 +- .../po/az-AZ-i-staff-t-prog-v-3006000.po | 154 +- misc/translator/po/az-AZ-opac-bootstrap.po | 94 +- misc/translator/po/ben-i-opac-t-prog-v-3006000.po | 56 +- misc/translator/po/ben-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/ben-opac-bootstrap.po | 94 +- .../po/bg-Cyrl-i-opac-t-prog-v-3006000.po | 54 +- .../po/bg-Cyrl-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/bg-Cyrl-opac-bootstrap.po | 94 +- .../translator/po/ca-ES-i-opac-t-prog-v-3006000.po | 56 +- .../po/ca-ES-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/ca-ES-opac-bootstrap.po | 97 +- .../translator/po/cs-CZ-i-opac-t-prog-v-3006000.po | 66 +- .../po/cs-CZ-i-staff-t-prog-v-3006000.po | 325 +- misc/translator/po/cs-CZ-opac-bootstrap.po | 105 +- misc/translator/po/cs-CZ-pref.po | 8 +- .../translator/po/da-DK-i-opac-t-prog-v-3006000.po | 128 +- .../po/da-DK-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/da-DK-opac-bootstrap.po | 97 +- .../translator/po/de-CH-i-opac-t-prog-v-3006000.po | 55 +- .../po/de-CH-i-staff-t-prog-v-3006000.po | 161 +- misc/translator/po/de-CH-opac-bootstrap.po | 97 +- .../translator/po/de-DE-i-opac-t-prog-v-3006000.po | 5526 +++++---- .../po/de-DE-i-staff-t-prog-v-3006000.po | 196 +- misc/translator/po/de-DE-opac-bootstrap.po | 108 +- .../translator/po/el-GR-i-opac-t-prog-v-3006000.po | 80 +- .../po/el-GR-i-staff-t-prog-v-3006000.po | 163 +- misc/translator/po/el-GR-opac-bootstrap.po | 96 +- .../translator/po/en-GB-i-opac-t-prog-v-3006000.po | 56 +- .../po/en-GB-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/en-GB-opac-bootstrap.po | 96 +- .../translator/po/en-NZ-i-opac-t-prog-v-3006000.po | 55 +- .../po/en-NZ-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/en-NZ-opac-bootstrap.po | 97 +- .../translator/po/es-ES-i-opac-t-prog-v-3006000.po | 62 +- .../po/es-ES-i-staff-t-prog-v-3006000.po | 263 +- misc/translator/po/es-ES-opac-bootstrap.po | 109 +- misc/translator/po/eu-i-opac-t-prog-v-3006000.po | 56 +- misc/translator/po/eu-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/eu-opac-bootstrap.po | 96 +- .../po/fa-Arab-i-opac-t-prog-v-3006000.po | 54 +- .../po/fa-Arab-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/fa-Arab-opac-bootstrap.po | 94 +- .../translator/po/fi-FI-i-opac-t-prog-v-3006000.po | 567 +- .../po/fi-FI-i-staff-t-prog-v-3006000.po | 147 +- misc/translator/po/fi-FI-opac-bootstrap.po | 1338 ++- misc/translator/po/fi-FI-pref.po | 172 +- .../translator/po/fr-CA-i-opac-t-prog-v-3006000.po | 56 +- .../po/fr-CA-i-staff-t-prog-v-3006000.po | 157 +- misc/translator/po/fr-CA-opac-bootstrap.po | 97 +- .../translator/po/fr-FR-i-opac-t-prog-v-3006000.po | 84 +- .../po/fr-FR-i-staff-t-prog-v-3006000.po | 341 +- misc/translator/po/fr-FR-opac-bootstrap.po | 103 +- misc/translator/po/fr-FR-pref.po | 102 +- misc/translator/po/gl-i-opac-t-prog-v-3006000.po | 54 +- misc/translator/po/gl-i-staff-t-prog-v-3006000.po | 152 +- misc/translator/po/gl-opac-bootstrap.po | 94 +- .../po/he-Hebr-i-opac-t-prog-v-3006000.po | 54 +- .../po/he-Hebr-i-staff-t-prog-v-3006000.po | 152 +- misc/translator/po/he-Hebr-opac-bootstrap.po | 94 +- misc/translator/po/hi-i-opac-t-prog-v-3006000.po | 56 +- misc/translator/po/hi-i-staff-t-prog-v-3006000.po | 156 +- misc/translator/po/hi-opac-bootstrap.po | 96 +- .../translator/po/hr-HR-i-opac-t-prog-v-3006000.po | 88 +- .../po/hr-HR-i-staff-t-prog-v-3006000.po | 189 +- misc/translator/po/hr-HR-opac-bootstrap.po | 97 +- .../translator/po/hu-HU-i-opac-t-prog-v-3006000.po | 56 +- .../po/hu-HU-i-staff-t-prog-v-3006000.po | 157 +- misc/translator/po/hu-HU-opac-bootstrap.po | 96 +- .../po/hy-Armn-i-opac-t-prog-v-3006000.po | 54 +- .../po/hy-Armn-i-staff-t-prog-v-3006000.po | 162 +- misc/translator/po/hy-Armn-opac-bootstrap.po | 97 +- .../translator/po/id-ID-i-opac-t-prog-v-3006000.po | 55 +- .../po/id-ID-i-staff-t-prog-v-3006000.po | 147 +- misc/translator/po/id-ID-opac-bootstrap.po | 96 +- .../translator/po/is-IS-i-opac-t-prog-v-3006000.po | 56 +- .../po/is-IS-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/is-IS-opac-bootstrap.po | 94 +- .../translator/po/it-IT-i-opac-t-prog-v-3006000.po | 3813 +++--- .../po/it-IT-i-staff-t-prog-v-3006000.po |12260 ++++++++++---------- misc/translator/po/it-IT-opac-bootstrap.po | 120 +- misc/translator/po/it-IT-pref.po | 12 +- .../po/ja-Jpan-JP-i-opac-t-prog-v-3006000.po | 56 +- .../po/ja-Jpan-JP-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/ja-Jpan-JP-opac-bootstrap.po | 126 +- .../po/kn-Knda-i-opac-t-prog-v-3006000.po | 54 +- .../po/kn-Knda-i-staff-t-prog-v-3006000.po | 148 +- misc/translator/po/kn-Knda-opac-bootstrap.po | 94 +- .../po/ko-Kore-KP-i-opac-t-prog-v-3006000.po | 54 +- .../po/ko-Kore-KP-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/ko-Kore-KP-opac-bootstrap.po | 94 +- misc/translator/po/ku-i-opac-t-prog-v-3006000.po | 56 +- misc/translator/po/ku-i-staff-t-prog-v-3006000.po | 150 +- misc/translator/po/ku-opac-bootstrap.po | 97 +- .../po/lo-Laoo-i-opac-t-prog-v-3006000.po | 56 +- .../po/lo-Laoo-i-staff-t-prog-v-3006000.po | 147 +- misc/translator/po/lo-Laoo-opac-bootstrap.po | 96 +- .../translator/po/mi-NZ-i-opac-t-prog-v-3006000.po | 56 +- .../po/mi-NZ-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/mi-NZ-opac-bootstrap.po | 94 +- misc/translator/po/mon-i-opac-t-prog-v-3006000.po | 56 +- misc/translator/po/mon-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/mon-opac-bootstrap.po | 94 +- misc/translator/po/mr-i-opac-t-prog-v-3006000.po | 56 +- misc/translator/po/mr-i-staff-t-prog-v-3006000.po | 147 +- misc/translator/po/mr-opac-bootstrap.po | 94 +- .../translator/po/ms-MY-i-opac-t-prog-v-3006000.po | 56 +- .../po/ms-MY-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/ms-MY-opac-bootstrap.po | 96 +- .../translator/po/nb-NO-i-opac-t-prog-v-3006000.po | 3729 +++--- .../po/nb-NO-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/nb-NO-opac-bootstrap.po | 1181 +- misc/translator/po/nb-NO-pref.po | 2798 ++--- .../translator/po/ne-NE-i-opac-t-prog-v-3006000.po | 54 +- .../po/ne-NE-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/ne-NE-opac-bootstrap.po | 94 +- .../translator/po/nl-BE-i-opac-t-prog-v-3006000.po | 56 +- .../po/nl-BE-i-staff-t-prog-v-3006000.po | 148 +- misc/translator/po/nl-BE-opac-bootstrap.po | 97 +- .../translator/po/nl-NL-i-opac-t-prog-v-3006000.po | 56 +- .../po/nl-NL-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/nl-NL-opac-bootstrap.po | 96 +- .../translator/po/nn-NO-i-opac-t-prog-v-3006000.po | 56 +- .../po/nn-NO-i-staff-t-prog-v-3006000.po | 154 +- misc/translator/po/nn-NO-opac-bootstrap.po | 94 +- misc/translator/po/pbr-i-opac-t-prog-v-3006000.po | 54 +- misc/translator/po/pbr-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/pbr-opac-bootstrap.po | 94 +- .../translator/po/pl-PL-i-opac-t-prog-v-3006000.po | 94 +- .../po/pl-PL-i-staff-t-prog-v-3006000.po | 355 +- misc/translator/po/pl-PL-opac-bootstrap.po | 317 +- misc/translator/po/pl-PL-pref.po | 1331 ++- misc/translator/po/prs-i-opac-t-prog-v-3006000.po | 54 +- misc/translator/po/prs-i-staff-t-prog-v-3006000.po | 148 +- misc/translator/po/prs-opac-bootstrap.po | 94 +- .../translator/po/pt-BR-i-opac-t-prog-v-3006000.po | 77 +- .../po/pt-BR-i-staff-t-prog-v-3006000.po | 156 +- misc/translator/po/pt-BR-opac-bootstrap.po | 97 +- .../translator/po/pt-PT-i-opac-t-prog-v-3006000.po | 69 +- .../po/pt-PT-i-staff-t-prog-v-3006000.po | 210 +- misc/translator/po/pt-PT-opac-bootstrap.po | 97 +- .../translator/po/ro-RO-i-opac-t-prog-v-3006000.po | 56 +- .../po/ro-RO-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/ro-RO-opac-bootstrap.po | 94 +- .../translator/po/ru-RU-i-opac-t-prog-v-3006000.po | 55 +- .../po/ru-RU-i-staff-t-prog-v-3006000.po | 151 +- misc/translator/po/ru-RU-opac-bootstrap.po | 97 +- .../translator/po/sd-PK-i-opac-t-prog-v-3006000.po | 54 +- .../po/sd-PK-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/sd-PK-opac-bootstrap.po | 94 +- .../translator/po/sk-SK-i-opac-t-prog-v-3006000.po | 54 +- .../po/sk-SK-i-staff-t-prog-v-3006000.po | 182 +- misc/translator/po/sk-SK-opac-bootstrap.po | 97 +- .../translator/po/sl-SI-i-opac-t-prog-v-3006000.po | 54 +- .../po/sl-SI-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/sl-SI-opac-bootstrap.po | 88 +- .../translator/po/sq-AL-i-opac-t-prog-v-3006000.po | 1597 ++- .../po/sq-AL-i-staff-t-prog-v-3006000.po | 1285 +- misc/translator/po/sq-AL-opac-bootstrap.po | 88 +- misc/translator/po/sq-AL-pref.po | 187 +- .../po/sr-Cyrl-i-opac-t-prog-v-3006000.po | 54 +- .../po/sr-Cyrl-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/sr-Cyrl-opac-bootstrap.po | 94 +- .../translator/po/sv-SE-i-opac-t-prog-v-3006000.po | 55 +- .../po/sv-SE-i-staff-t-prog-v-3006000.po | 613 +- misc/translator/po/sv-SE-opac-bootstrap.po | 1360 +-- misc/translator/po/sv-SE-opac-ccsr.po | 58 +- ...3006000.po => sw-SW-i-opac-t-prog-v-3006000.po} | 1016 +- ...006000.po => sw-SW-i-staff-t-prog-v-3006000.po} | 8343 ++++--------- ...K-opac-bootstrap.po => sw-SW-opac-bootstrap.po} | 954 +- .../po/{ta-opac-ccsr.po => sw-SW-opac-ccsr.po} | 23 +- .../translator/po/{ca-ES-pref.po => sw-SW-pref.po} | 12 +- .../translator/po/ta-LK-i-opac-t-prog-v-3006000.po | 54 +- .../po/ta-LK-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/ta-LK-opac-bootstrap.po | 88 +- misc/translator/po/ta-i-opac-t-prog-v-3006000.po | 54 +- misc/translator/po/ta-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/ta-opac-bootstrap.po | 88 +- misc/translator/po/tet-i-opac-t-prog-v-3006000.po | 450 +- misc/translator/po/tet-i-staff-t-prog-v-3006000.po | 359 +- misc/translator/po/tet-opac-bootstrap.po | 201 +- misc/translator/po/tet-opac-ccsr.po | 89 +- .../po/th-THA-i-opac-t-prog-v-3006000.po | 56 +- .../po/th-THA-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/th-THA-opac-bootstrap.po | 94 +- .../translator/po/tl-PH-i-opac-t-prog-v-3006000.po | 54 +- .../po/tl-PH-i-staff-t-prog-v-3006000.po | 148 +- misc/translator/po/tl-PH-opac-bootstrap.po | 88 +- .../translator/po/tr-TR-i-opac-t-prog-v-3006000.po | 109 +- .../po/tr-TR-i-staff-t-prog-v-3006000.po | 933 +- misc/translator/po/tr-TR-opac-bootstrap.po | 137 +- misc/translator/po/tr-TR-opac-ccsr.po | 6 +- misc/translator/po/tr-TR-pref.po | 16 +- .../translator/po/uk-UA-i-opac-t-prog-v-3006000.po | 55 +- .../po/uk-UA-i-staff-t-prog-v-3006000.po | 155 +- misc/translator/po/uk-UA-opac-bootstrap.po | 99 +- .../po/ur-Arab-i-opac-t-prog-v-3006000.po | 54 +- .../po/ur-Arab-i-staff-t-prog-v-3006000.po | 146 +- misc/translator/po/ur-Arab-opac-bootstrap.po | 94 +- .../translator/po/vi-VN-i-opac-t-prog-v-3006000.po | 1802 +-- .../po/vi-VN-i-staff-t-prog-v-3006000.po | 355 +- misc/translator/po/vi-VN-opac-bootstrap.po | 131 +- .../po/zh-Hans-CN-i-opac-t-prog-v-3006000.po | 55 +- .../po/zh-Hans-CN-i-staff-t-prog-v-3006000.po | 153 +- misc/translator/po/zh-Hans-CN-opac-bootstrap.po | 97 +- .../po/zh-Hans-TW-i-opac-t-prog-v-3006000.po | 63 +- .../po/zh-Hans-TW-i-staff-t-prog-v-3006000.po | 316 +- misc/translator/po/zh-Hans-TW-opac-bootstrap.po | 103 +- misc/translator/po/zh-Hans-TW-opac-ccsr.po | 8 +- misc/translator/po/zh-Hans-TW-pref.po | 19 +- 219 files changed, 35560 insertions(+), 37122 deletions(-) copy misc/release_notes/{release_notes_3_14_3.txt => release_notes_3_14_4.txt} (53%) copy misc/translator/po/{ta-LK-i-opac-t-prog-v-3006000.po => sw-SW-i-opac-t-prog-v-3006000.po} (92%) copy misc/translator/po/{eu-i-staff-t-prog-v-3006000.po => sw-SW-i-staff-t-prog-v-3006000.po} (93%) copy misc/translator/po/{ta-LK-opac-bootstrap.po => sw-SW-opac-bootstrap.po} (93%) copy misc/translator/po/{ta-opac-ccsr.po => sw-SW-opac-ccsr.po} (98%) copy misc/translator/po/{ca-ES-pref.po => sw-SW-pref.po} (99%) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 12:32:16 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 11:32:16 +0000 Subject: [koha-commits] main Koha release repository annotated tag v3.14.04 created. v3.14.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, v3.14.04 has been created at f7fa9c095f71e53baa7d7cb5d0ff85d5c9cd85bb (tag) tagging 1b1f24fbed0310df38036153a8283bf6a37fe9b3 (commit) replaces v3.14.03 tagged by Fridolin Somers on Wed Feb 26 12:53:28 2014 +0100 - Log ----------------------------------------------------------------- Koha release 3.14.04 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (GNU/Linux) iQEcBAABAgAGBQJTDdW4AAoJECvJNkKAZAZuc6cH+gL+sL8nh3eV/gwGvUA81COo cwmxfqrJUSh4aGrFj0Uc46nyUEHbqTFlZb5im7bbrpSriXV/RBFbpkVsuKF2fl7s TgP+SGbdjsKEkk0NiZgDMlnk+RwSz+2uSblyAqc8VTuRo68/FRP2i1dzDDJWrXWj 0MlJdJ8g3Upf+3L19RytTNHnRdrTdy3aUZLzte3uFdeRG+yBJABLnL+Cmoavs1Kk 0AEVs2zyouBcGx7Z9/pXzTfz9iKPmPQWr1EYe5+BW8STDcr8svCKHTJcVpmjxeLD 15PtiAYmhr6Ulhp7ZWZ9nD7nxfR+XRDu7E3P7anlqO/r16MVck5vjm43RJBkESQ= =ImyM -----END PGP SIGNATURE----- Bernardo Gonzalez Kriegel (1): Translation updates for 3.14.04 release Chris Cormack (3): Bug 11192: (follow-up) fix a little typo Bug 11457: avoid spurious test failure in t/db_dependent/Bookseller.t Bug 7965: Silence warns in staff log Fridolin Somers (4): Bug 11384: (follow-up) test if table exists in update database Revert "Bug 11208: If no smsalertnumber is defined, the message is marked as failed" Revert "Bug 11208: regression test for failing SMS messages" Increment version for 3.14.4 release Fridolyn SOMERS (3): Bug 10429: improve display of library and library filter on serials claim page Update release notes for 3.14.4 release Merge remote-tracking branch 'translator/3.14.04-release' into 3.14.x Galen Charlton (13): Bug 11439: (follow-up) adjust for change in list returned by OCLC XISBN Bug 11509: (follow-up) fix a couple typos Bug 11208: regression test for failing SMS messages Bug 11336: (follow-up) correct change to POD for GetReserve() Bug 11336: (follow-up) improve POD for _FixPriority() Bug 11336: (follow-up) fix typo in previous follow-up Bug 11470: fix occassional spurious test failure in Circulation_transfers.t Bug 6886: (follow-up) remove redundant test for singleBranchMode Bug 11260: (follow-up) remove inadvertant change to English sample_z3950_servers.sql Bug 11260: (follow-up) repair German sample_z3950_servers.sql Bug 11483: (follow-up) fix typos Bug 10952: (follow-up) clear seach history from session after saving it to DB Bug 10952: (follow-up) remove mention of KohaOpacRecentSearches cookie Jonathan Druart (3): Bug 11208: If no smsalertnumber is defined, the message is marked as failed Bug 11336: update hold queue priorities correctly when deleting holds Bug 11475: fix return link after editing/deleting items in batch Julian Maurice (3): Bug 10952: Store anonymous search history in session Bug 10952: (follow-up) comments fixes and unit tests Bug 10952: (follow-up) Always flush session after deletion Katrin Fischer (4): Bug 11336: (follow-up) fixing capitalization in templates Bug 11260: Update German web installer for 3.14 Bug 11260: Update German web installer - frequencies and numberpatterns Bug 11260: Follow up - normalizing frequencies in English sample file a bit Kyle M Hall (3): Bug 11342: fix error in OPAC self registration form if BorrowersTitles is empty Bug 6886: ensure that singleBranchMode does not display library name for reference copies Bug 6886: (follow-up) replace needless with Mark Tompsett (1): Bug 11316 - plugin icon missing tooltip in addbiblio.pl Mathieu Saby (1): Bug 11192: Fix lf and ff07-02 definition in ccl.properties Nicole C. Engard (1): Bug 11483: Add missing serial help files Robin Sheat (1): Bug 10646 - warn if mod_rewrite is not enabled Tomas Cohen Arazi (6): Bug 9579: fix truncation of facets containing multi-byte characters Bug 11509: improve usage information printed by koha-create Bug 11510: koha-translate usage message fixes Bug 10896: Add a --verbose option to koha-translate Bug 11499: (regression tests) indexing modes not properly set on generated koha-conf.xml Bug 11499: UT: Make zebra_setup.pl correctly set indexing mode ----------------------------------------------------------------------- hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 16:40:34 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 15:40:34 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-492-gc8ad1e6 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via c8ad1e6928ed424ae127bfac870d00fae7ea180a (commit) via d8b7e635e01175bcb4c90777ee3e080d4301db79 (commit) from a07b32f4f9090ba0c50c3e510f0be56b8805faeb (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c8ad1e6928ed424ae127bfac870d00fae7ea180a Author: Kyle M Hall Date: Thu Feb 13 09:21:28 2014 -0500 Bug 11746 [QA Followup] display edit item link only if user has permission to edit items Signed-off-by: Havilah Lyon Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit d8b7e635e01175bcb4c90777ee3e080d4301db79 Author: Kyle M Hall Date: Wed Feb 12 07:47:46 2014 -0500 Bug 11746 - Add edit item links to record details page In order to edit a specific item right now, one must select the edit pulldown, then choose edit items, the click the edit link for the particular item the librarian wishes to edit. It would be much more convenient to have an edit link for each specific item in the items table on the record details page. Test Plan: 1) Apply this patch 2) View the record details for a record with items 3) Click the edit link for a particular item 4) Note that you are taken immediately to the item editor for this particular item Signed-off-by: Marcel de Rooy Signed-off-by: Havilah Lyon Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 4 ++++ 1 file changed, 4 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 17:04:59 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 16:04:59 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-493-g59b9078 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 59b9078a3f7cf240bd814ee611e8f553d043491e (commit) from c8ad1e6928ed424ae127bfac870d00fae7ea180a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 59b9078a3f7cf240bd814ee611e8f553d043491e Author: Owen Leonard Date: Fri Feb 21 09:22:50 2014 -0500 Bug 10751: standardize validation of title in staff purchase suggestions form The form for adding a new purchase suggestion in the staff client indicates that the title field is required but does nothing to enforce this rule. This can be handled client-side with HTML5 validation attributes and Koha's built-in validation plugin. This patch implements this. To test, apply the patch and go to Acquisitions -> Suggestions -> New purchase suggestion. Try submitting the form without entering a title. Doing so should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing suggestion should also work correctly. The patch displays a message 'Required' near the title field. After submitting a empty title it changes to 'This field is required' Signed-off-by: Marc V?ron Signed-off-by: Jonathan Druart The title field is required since commit d565fb02e9fca2ac9c506e4e7d44fd8b0d66f06a This one makes it more consistent with formatting. It makes sense. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 17:16:51 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 16:16:51 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-494-g521d717 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 521d7173720b4acbf4ecf40ed114520d500c5f6a (commit) from 59b9078a3f7cf240bd814ee611e8f553d043491e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 521d7173720b4acbf4ecf40ed114520d500c5f6a Author: Fridolin Somers Date: Fri Feb 7 10:13:39 2014 +0100 Bug 11707: fix editing additional attributes for patron whose category code includes a space When editing additional attributes of a patron of a category with a code with space (ie "CAT 3"), the Javascript is broken and Additional attributes are not displayed. This patch corrects by adding simple quotes around category code in JS code. Test plan : - Create an patron additional attribute - Create a new patron category with a space in code. ie "CAT 3" - Create a new patron of this category : /cgi-bin/koha/members/memberentry.pl?op=add&categorycode=CAT 3 => Without patch the JS is broken (Syntax error, unrecognized expression: [data-category_code=CAT 3]) and additional attributes are not displayed. => With patch the JS is not broken and additional attributes are displayed and can be edited. Signed-off-by: Marc V?ron In current Koha version it is not possible to create category codes with blanks. To test, I changed an existing category code directly in the database. Then I followed the Test plan. Without patch, attribute types were not displayed. With patch, they were displayed as expected. Signed-off-by: Katrin Fischer I recommend not using codes with spaces and fix existing ones. Koha doesn't allow you to add category codes with spaces, so the only way to do it is via SQL. This patch fixes a problem and passes all tests. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 18:04:36 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 17:04:36 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-495-g2345dc1 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 2345dc12d8cd6f80164fce3a2a846613da44fc50 (commit) from 521d7173720b4acbf4ecf40ed114520d500c5f6a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2345dc12d8cd6f80164fce3a2a846613da44fc50 Author: Kyle M Hall Date: Fri Feb 14 15:09:06 2014 -0500 Bug 11768: Show patron cardnumber in OPAC personal details In previous versions of Koha, the patron cardnumber was displayed in the personal details section of the OPAC for logged in users. A patron needs to be able to access his or her cardnumber in some cases to access online resources a library makes available that requires his or her cardnumber. This is especially important for patron self registration where a patron may not have a physical library card. This field should be re-added to the patron personal details page. Test Plan: 1) Apply this patch 2) Log into the OPAC 3) Browse to "your personal details" 4) Verify the patron cardnumber is visible Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer Restores cardnumber on personal details tab in OPAC for prog and bootstrap theme. Passes all tests and QA script. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 5 +++++ koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt | 5 +++++ 2 files changed, 10 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 18:08:03 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 17:08:03 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-496-ga8ebfa4 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via a8ebfa4702e2492388b6f60a11921a8ab69d677b (commit) from 2345dc12d8cd6f80164fce3a2a846613da44fc50 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a8ebfa4702e2492388b6f60a11921a8ab69d677b Author: Owen Leonard Date: Fri Feb 21 14:52:22 2014 -0500 Bug 11819 - Don't show catalog edit menu if user has no edit permissions Currently if the logged in user lacks any cataloging permissions the bibliographic detail page (catalogue/detail.pl) still shows the Edit button, but with an empty dropdown menu. This patch corrects the toolbar include so that the button will not appear at all. To test, view the biblio detail page as a user with various combinations of the following permissions: - edit_items - edit_catalogue - items_batchmod - items_batchdel The edit button should appear with the correct set of links when the user has any combination of the above permissions. If user has none the button should not appear. Followed test plan, patch behaves as expected Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Works as expected, passes all tests and QA script. Template only change. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Wed Feb 26 18:14:34 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Wed, 26 Feb 2014 17:14:34 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-497-g234560a Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 234560a690c78ef7723f15c0cb31f0497d073988 (commit) from a8ebfa4702e2492388b6f60a11921a8ab69d677b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 234560a690c78ef7723f15c0cb31f0497d073988 Author: Owen Leonard Date: Fri Feb 21 10:35:40 2014 -0500 Bug 11809: don't display 'Clear date' on OPAC patron details form if date of birth is required On the OPAC's patron details form, if the date of birth field is required we shouldn't offer the user a "clear date." This patch removes the "clear date" link if the field is required. To test, configure the BorrowerMandatoryField system preference to require dateofbirth. Enable the OPACPatronDetails system preference and log in to the OPAC. View the "personal details" form and confirm that there is no "clear date" link next to the required date of birth field. Remove dateofbirth from the BorrowerMandatoryField system preference and re-test. The "clear date" link should appear. Test in both prog and Bootstrap themes. I tested with prog and bootstrap themes, adding/removing field 'dateofbirth' in sys pref PatronSelfRegistrationBorrowerMandatoryField. Patch behaves as expected. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Works as expected, passes all tests and QA script. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 4 +++- koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 27 16:45:02 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 27 Feb 2014 15:45:02 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-503-g63d7386 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 63d7386ed00f73be837a57aeb12d75c6893ca0bd (commit) via cd089028b8c5e8f2b15ed2d41ce79bb37873662d (commit) via a4a014e365a6d27d1105096861a19f94aa5372f7 (commit) via 3fc7ea191c45ea430f362e4a883a34ebfbd0c330 (commit) via 18d5f288040fdf2d2b65b569685d60a11d3b86fc (commit) via a31bf519a9aff560f3157ad7821be3a0afe3d98f (commit) from 234560a690c78ef7723f15c0cb31f0497d073988 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 63d7386ed00f73be837a57aeb12d75c6893ca0bd Author: Owen Leonard Date: Mon Feb 24 10:21:20 2014 -0500 Bug 11829: fix JavaScript error on staff client biblio details pages if template variables are undefined The JavaScript included in cat-toolbar.inc expects several variables to be passed to the template for use in calculations. Several scripts do not pass the required variables to the template, leading to a JS error. This patch re-adds (See Bug 9823) hold count calculation to the required scripts and copies the acquisitions-related count calculation from detail.pl into related bibliographic detail scripts so that the commonly-included cat-toolbar.inc can receive correct values. To test, locate a bibliographic record which has no holds and is not used in a current or deleted order, but which has a local cover image attached. Check the following views to confirm there is no JavaScript error: - Normal - MARC - Labeled MARC - ISBD - Items - Images (from the Images tab on the "Normal" detail page) Next, locate a bibliographic record with no items attached which is used in an Acquisitions order. On each of the pages listed above, choose "Delete record" from the Edit menu. This should trigger a warning that the record is used in an order. Cancel the deletion. Finally, delete the order which references the bibliographic record. On each of the pages listed above, choose "Delete record" again. This should trigger a warning that the record is used in a deleted order. Cancel the deletion. I went through the test plan, everything works OK. It resolves Bug 11831 as well. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer - Printing from MARC and ISBD view works again - No more Javascript errors found - Deleting a record with attached order gives the correct warning, both for ordered and cancelled. Passes all tests and QA script. Signed-off-by: Galen Charlton commit cd089028b8c5e8f2b15ed2d41ce79bb37873662d Author: Owen Leonard Date: Thu Feb 20 15:42:37 2014 -0500 Bug 11805 - Use validation plugin when creating new basket in Acquisitions The page for adding a new basket in Acquisitions includes some custom form validation JavaScript which can be removed in favor of HTML5 validation attributes and Koha's built-in validation plugin. This patch does so. To test, apply the patch and go to Acquisitions -> Choose a vendor -> New basket. Try submitting the form without entering a basket name. This should trigger a validation warning. Submission of the form with valid data should work correctly. Editing an existing basket should also work correctly. Patch works as expected. Signed-off-by: Marc V?ron Signed-off-by: Katrin Fischer Works as expected, passes all tests and QA script. Tried adding a new basket with/without basket name and editing an existing basket editing/emptying the basket name. Signed-off-by: Galen Charlton commit a4a014e365a6d27d1105096861a19f94aa5372f7 Author: Owen Leonard Date: Mon Feb 10 14:13:11 2014 -0500 Bug 11736 - Use new DataTables include in Koha news templates Bug 10649 introduced a new include file for adding DataTables-related JavaScript assets. This patch adds use of this include file to the Koha news page. To test you should have existing news items with varying creation and expiration dates. Apply the patch and confirm that table sorting works correctly for all settings of the dateformat system preference. C4::NewsChannels.pm has been modified so that it now passes an unformatted date to the template, where the KohaDates plugin is used to apply the correct formatting. Sorting is based on the unformatted date. Also corrected: Capitalization errors. Signed-off-by: wajasu Signed-off-by: Katrin Fischer Works as described, no problems found. Also passes tests and QA script. Signed-off-by: Galen Charlton commit 3fc7ea191c45ea430f362e4a883a34ebfbd0c330 Author: Owen Leonard Date: Fri Feb 7 14:54:27 2014 -0500 Bug 11716 - Use new DataTables include in label manage template This patch modifies the template for the label manage pages to use the new DataTables include. This simplifies the inclusion of assets and updates to the latest DataTables version. To test, view the following pages and confirm that table sorting is working correctly: Manage layouts (/cgi-bin/koha/labels/label-manage.pl?label_element=layout) Manage templates (/cgi-bin/koha/labels/label-manage.pl?label_element=template) Manage profiles (/cgi-bin/koha/labels/label-manage.pl?label_element=profile) Manage batches (/cgi-bin/koha/labels/label-manage.pl?label_element=batch) Signed-off-by: wajasu Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit 18d5f288040fdf2d2b65b569685d60a11d3b86fc Author: Owen Leonard Date: Fri Feb 7 11:35:17 2014 -0500 Bug 11710 - Use new DataTables include in cataloging Z39.50 search template This patch modifies the template for the cataloging Z39.50 search template to use the new DataTables include. This simplifies the inclusion of assets and updates to the latest DataTables version. To test, go to cataloging and choose "New from Z39.50." Perform a search and confirm that table sorting still works correctly. Signed-off-by: wajasu Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton commit a31bf519a9aff560f3157ad7821be3a0afe3d98f Author: Owen Leonard Date: Fri Feb 7 15:24:06 2014 -0500 Bug 11717 - Use new DataTables include in member templates Bug 10649 introduced a new include file for adding DataTables-related JavaScript assets. This patch adds use of this include file to all member pages which use DataTables. Apply the patch and test the following pages to confirm that table sorting works correctly: - Patron details (members/moremember.pl) - The checkouts, relatives' checkouts, and holds tables have been modified to exclude articles when sorting of titles. - Notices (members/notices.pl) - Circulation history (members/readingrec.pl) - Statistics (members/statistics.pl) - Update child to adult patron (members/update-child.pl) - This is the page which appears in a pop-up when you update a child patron to an adult (from the "More" menu in the toolbar when viewing patron details). Signed-off-by: Aleisha Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/NewsChannels.pm | 2 -- catalogue/ISBDdetail.pl | 32 ++++++++++++++++++++ catalogue/MARCdetail.pl | 31 +++++++++++++++++++ catalogue/imageviewer.pl | 32 ++++++++++++++++++++ catalogue/labeledMARCdetail.pl | 32 ++++++++++++++++++++ catalogue/moredetail.pl | 31 +++++++++++++++++++ .../prog/en/modules/acqui/basketheader.tt | 27 +++-------------- .../prog/en/modules/cataloguing/z3950_search.tt | 4 +-- .../prog/en/modules/labels/label-manage.tt | 7 +++-- .../prog/en/modules/members/moremember.tt | 12 +++----- .../prog/en/modules/members/notices.tt | 4 +-- .../prog/en/modules/members/readingrec.tt | 6 ++-- .../prog/en/modules/members/statistics.tt | 6 ++-- .../prog/en/modules/members/update-child.tt | 6 ++-- .../prog/en/modules/tools/koha-news.tt | 17 ++++++----- 15 files changed, 188 insertions(+), 61 deletions(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Thu Feb 27 17:01:20 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Thu, 27 Feb 2014 16:01:20 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-504-g4ce0848 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 4ce0848fe35814f2324a8e3d59b3c04f061a858b (commit) from 63d7386ed00f73be837a57aeb12d75c6893ca0bd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4ce0848fe35814f2324a8e3d59b3c04f061a858b Author: Jacek Ablewicz Date: Thu Feb 20 09:53:23 2014 +0100 Bug 11798: fix problems with column sorting and row visibility in invoices table 1) Sorting on "Billing date" (functionality introduced by bug 10794) doesn't work properly any longer after bug 10401 was pushed (another side-effect being that "Vendor" column is currently not sortable at all). 2) Only "top ten" invoices are always displayed in the table, and it's not possible to change that without missing top/bottom DataTables pagination bars. This patch fixes sorting for "Billing date" & "Vendor" columns in invoices table and restores the ability to see all table rows/search results (not just "top ten"). Test plan (you'll need to have 11+ invoices with various billing dates entered in the system): 1) apply patch, 2) view the Acquisitions invoices page (acqui/invoices.pl), do some search (= as broad search as possible) and confirm that "Billing date" and "Vendor" columns now do sort correctly, 3) in situations when there are more than 10 search results, they should all be visible in the invoices table. NOTE: Generating invoices is a painfully convoluted mess. All my "Billing date" entries were blank, so was not able to confirm Billing date issues. However, Vendor sorting issues, seeing more than 10, and in my bizarre initial case the non-visible checkboxes were all fixed. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 28 20:35:35 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 28 Feb 2014 19:35:35 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-507-gdaf2ebc Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via daf2ebc4f5aeaf3a73e11915a17a2a81eafc5cb9 (commit) via 5159a43d4341b03bd1b30926e33bf9c686e9fb46 (commit) via dc86557c34284b1a14a3aa13c4474ba5302d912c (commit) from 4ce0848fe35814f2324a8e3d59b3c04f061a858b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit daf2ebc4f5aeaf3a73e11915a17a2a81eafc5cb9 Author: Tomas Cohen Arazi Date: Mon Oct 21 16:17:57 2013 -0700 Bug 11096: support the retrieval of large MARCXML records This patch makes Koha <-> Zebra use MARCXML for the serialization when using DOM, and USMARC for GRS-1. * The following functions are modified to set the Zebra record syntax according to the current sysprefs and configuration: - C4::Context->Zconn - C4::Context-_new_Zconn * A new function 'new_record_from_zebra' is introduced, which checks the context we are in, and creates the MARC::Record object using the right constructor. The following packages get touched to make use of the new function: - C4::Search - C4::AuthoritiesMarc and the same happens to the UI scripts that make use of them (both in the OPAC and STAFF interfaces). * Calls to the unsafe ZOOM::Record->render()[1] method are removed. Due to this last change the code for building facets was rewritten. And for performance on the facets creation I pushed higher version dependencies for MARC::File::XML and MARC::Record (we rely on MARC::Field->as_string). * Calls to MARC::Record->new_from_xml and MARC::Record->new_from_usmarc are wrapped with eval for catching problems [2]. * As of bug 3087, UNIMARC uses the 'unimarc' record syntax. this case is correctly handled. * As of bug 7818 misc/migration_tools/rebuild_zebra.pl behaves like: - bib_index_mode (defaults to 'grs1' if not specified) - auth_index_mode (defaults to 'dom') here we do exactly the same. To test: - prove t/db_dependent/Search.t should pass. - Searching should remain functional. - Indexing and searching for a big record should work (that's what the unit tests do). - Test an index scan search (on the staff interface): Search > More options > Check "Scan indexes". - Enable 'itemBarcodeFallbackSearch' and try to circulate any word, it shouldn't break. - Searching for a biblio in a new subscription shouldn't break. - Running bulkmarcimport.pl shouldn't break. - And so on... for the rest of the .pl files. [1] http://search.cpan.org/~mirk/Net-Z3950-ZOOM/lib/ZOOM.pod#render() [2] a record that cannot be parsed by MARC::Record is simply skipped (bug 10684) Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Kyle M Hall Signed-off-by: Martin Renvoize Signed-off-by: Galen Charlton commit 5159a43d4341b03bd1b30926e33bf9c686e9fb46 Author: Tomas Cohen Arazi Date: Wed Jan 8 14:15:28 2014 -0300 Bug 11096: Wrap each test set configuration in Search.t into a subtest This makes it easier to read. Also fixes the test count, and is rebased against 11499 which is needed to correctly test the patches for this bug (i.e. indexing mode needs to be correctly set in koha-conf.xml) To test: [1] Run prove -v t/db_dependent/Search.t Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Martin Renvoize Signed-off-by: Galen Charlton commit dc86557c34284b1a14a3aa13c4474ba5302d912c Author: Galen Charlton Date: Mon Dec 9 23:39:07 2013 +0000 Bug 11096: add regression tests for indexing/retrieving large MARC records This adds direct tests of indexing and retrieving bib records that are larger than the ISO2709 limit of 99,999 octets. To test: verify that prove -v t/db_dependent/Search.t passes. Signed-off-by: Galen Charlton Signed-off-by: Tomas Cohen Arazi Signed-off-by: Chris Cormack Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: C4/AuthoritiesMarc.pm | 40 +- C4/Context.pm | 50 +- C4/Installer/PerlDependencies.pm | 4 +- C4/Matcher.pm | 2 +- C4/Search.pm | 121 +- C4/XISBN.pm | 2 +- acqui/neworderbiblio.pl | 2 +- catalogue/search.pl | 5 +- .../value_builder/marc21_linking_section.pl | 2 +- cataloguing/value_builder/unimarc_field_4XX.pl | 2 +- circ/circulation.pl | 2 +- labels/label-item-search.pl | 2 +- misc/migration_tools/bulkmarcimport.pl | 2 +- serials/subscription-bib-search.pl | 2 +- t/db_dependent/Search.t | 100 +- .../large_biblio_dom/exported_records.xml | 1667 ++++++++++++++++++++ .../large_biblio_grs1/exported_records.xml | 1665 +++++++++++++++++++ 17 files changed, 3572 insertions(+), 98 deletions(-) create mode 100644 t/db_dependent/data/marc21/zebraexport/large_biblio_dom/exported_records.xml create mode 100644 t/db_dependent/data/marc21/zebraexport/large_biblio_grs1/exported_records.xml hooks/post-receive -- main Koha release repository From gitmaster at git.koha-community.org Fri Feb 28 23:07:02 2014 From: gitmaster at git.koha-community.org (Git repo owner) Date: Fri, 28 Feb 2014 22:07:02 +0000 Subject: [koha-commits] main Koha release repository branch master updated. v3.14.00-510-g160c44d Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "main Koha release repository". The branch, master has been updated via 160c44d4e9f529fc6e6ecbdab23ffab6bce5630e (commit) via 07de37f0e5ea8685573794ff6a84ab30e32f1973 (commit) via 88e7faf8600b64884649f8c02104bf848df37a9b (commit) from daf2ebc4f5aeaf3a73e11915a17a2a81eafc5cb9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 160c44d4e9f529fc6e6ecbdab23ffab6bce5630e Author: Galen Charlton Date: Fri Feb 28 22:11:17 2014 +0000 Bug 11078: (follow-up) tidy code - fix a couple typos in comments - make replace a "$i" with a more descriptive variable name - style some of the new code Signed-off-by: Galen Charlton commit 07de37f0e5ea8685573794ff6a84ab30e32f1973 Author: Marcel de Rooy Date: Wed Feb 19 13:58:00 2014 +0100 Bug 11078: QA Follow-up for missing file permissions on lockfile The original patch creates a lockfile in the ZEBRA_LOCKDIR. It can fall back to /var/lock or even /tmp. If the create fails, it dies. This can be considered as very exceptional. This followup adjusts the fallback location in /var/lock or /tmp slightly. It appends the database name to the folder in order to prevent interfering between multiple Koha instances. Creation of the lockfile has been moved to a subroutine extending directory and file creation testing. In the very unlikely case that we cannot create the lockfile (after three separate tries), this follow-up allows you to continue instead of die. This is just as we did before we had file locking here. Every time skipping a reindex could cause more harm than continuing and having the race condition once in a while. Test plan: Test adding and removing lockdir from your koha-conf.xml. Check fallback. Note that fallback in /var/lock or /tmp must contain database name. Remove the lockdir config line and remove permissions from fallback. In this case the reindex should continue but with a warning. Signed-off-by: Marcel de Rooy Tested with daemon and one-off invocation simultaneously. Tested new wait parameter. Tried all variations of lock directory (changing permissions etc.) Signed-off-by: Galen Charlton commit 88e7faf8600b64884649f8c02104bf848df37a9b Author: Doug Kingston Date: Tue Feb 18 22:56:58 2014 -0800 Bug 11078: Add locking to rebuild_zebra This patch adds locking to rebuild_zebra.pl to ensure that simultaneous changes are prevented (as one is likely to overwrite the other). Incremental updates in daemon mode will skipped if the lock is busy and they will be picked up on the next pass. Non-daemon mode invocations will also exit immediately if they cannot get the lock unless the new flag -wait-for-lock is specified, in which case they will wait until the get the lock and then proceed. Supporting changes made to Makefile.PL and templates for the new locking directory (paralleling the other zebra lock directories). We stash the zebra_lockdir in koha-conf.xml so rebuild_zebra.pl can find it. To address earlier QA concerns we: 1. added code to check if flock is available and ignore locking if it's missing (from M. de Rooy) 2. changed default for adhoc invocations to abort if they cannot obtain the lock. Added option -wait-for-lock if the user prefers to wait until the lock is free, and then continue processing. 3. added missing entry to t/db_dependent/zebra_config.pl 4. added a fallback locking directory of /tmp Signed-off-by: Marcel de Rooy Doug merged the original patch with the QA changes. Just for the record, noting here that the original patch was tested extensively too by Martin Renvoize. I have added a followup for some exceptional cases. Signed-off-by: Galen Charlton ----------------------------------------------------------------------- Summary of changes: Makefile.PL | 5 +- debian/templates/koha-conf-site.xml.in | 1 + etc/koha-conf.xml | 1 + misc/bin/koha-zebra-ctl.sh | 1 + misc/migration_tools/rebuild_zebra.pl | 107 +++++++++++++++++++++++++++-- skel/var/lock/koha/zebradb/rebuild/README | 1 + t/db_dependent/zebra_config.pl | 1 + 7 files changed, 109 insertions(+), 8 deletions(-) create mode 100644 skel/var/lock/koha/zebradb/rebuild/README hooks/post-receive -- main Koha release repository