Skip to content
Koha Connector - 7.x-1.1
========================

Bugfixes
- (RM 595 RM 650) conntextualisation and translation
- (RM 600) Transversal changes in koha.conf

Features

- (RM 583 -> Story RM 569) Implements methods patronCheckoutsFields and patronHoldsFields

    Fields returned by these 2 new methods are configurable in koha.conf
    See examples attached in this patch.
    Related to opac feature "display callnumber"

- (RM 622) Make labels and descriptions translatable

    To be able to translate those strings, you need to
     1. Create a language
     2. Switch to this language (Important!)
     3. Go to pages when these strings appear to generate the corresponding
     entries in database
     4. Go to translation interface

- (RM 649 -> Story RM 359) New plugin 'substring'

    Gives ability to manage coded field during harvest (publication year for example).
    + Sample usage in koha.conf for publication date (100$a)

    ; Publication date
    biblioFields[publicationdate][label] = Publication date
    biblioFields[publicationdate][description] = 'Four first characters of 100$a'
    biblioFields[publicationdate][get][0][value] = '100$a'
    biblioFields[publicationdate][get][0][plugin] = substring
    biblioFields[publicationdate][get][0][plugin_params][start] = 0
    biblioFields[publicationdate][get][0][plugin_params][length] = 4

Git history

$ git show-branch --sha1-name HEAD 7.x-1.0
! [HEAD] RM 600 adding all subjects
 ! [7.x-1.0] Fix koha-conf label - Laurence
--
+  [8d5d268] RM 600 adding all subjects
+  [1aab777] R650: Contextualize strings from configuration file
+  [12eb3ea] R649: New plugin 'substring'
+  [8f0a108] R622: Make labels and descriptions translatable
+  [ac83a09] R595 - first po to translate koha_connector
+  [f83a63a] Fix Pareview errors
+  [bbb2c24] R583: Implements methods patronCheckoutsFields and patronHoldsFields
++ [955ed6a] Fix koha-conf label - Laurence