Usare software di terze parti con Koha
MarcEdit
Many libraries like to use MarcEdit for modifications or data cleanup such as converting records in spreadsheet data formats to MARC records. If you’d like to do this you will need to download it at: http://marcedit.reeset.net/
Nota
Many of the actions described on the Koha Community wiki at https://wiki.koha-community.org/wiki/MARCEdit can be done in Koha using Marc Modification Templates, but instructions are provided on the Wiki for those who are used to MarcEdit.
OCLC Cataloging Services
Koha can be set to work with the OCLC cataloging services such as
This allows librarians to use the WorldShare Record Manager web interface or the OCLC Connexion Client desktop software as their cataloging tool and send those records to Koha with a single click.
Setting up the OCLC Connexion Daemon
First, you will need to set up the OCLC Connexion Daemon on your server. If you have a system administrator you will want to consult with them on this process.
Find the script on your server and view its documentation.
/usr/share/koha/bin/connexion_import_daemon.pl --help
Create a configuration file. You could put this anywhere that is readable by the user that will be running the service, e.g.,
/etc/koha/sites/my_instance/oclc_connexion.conf
. The output of the help command provides the details about what this file should contain. Here is an example:host: 0.0.0.0 port: 5500 log: /var/log/koha/my_instance/oclc_connexion.log koha: https://staff.mylibrary.example.com user: koha_staff_user_name password: koha_staff_user_password connexion_user: oclc_connexion_user_name connexion_password: oclc_connexion_user_password import_mode: direct
Since the configuration file contains passwords, make sure that it’s only readable by the user running the script, and nobody else.
chmod 400 /etc/koha/sites/my_instance/oclc_connexion.conf
Run the script.
You can do this manually to test it out:
/usr/share/koha/bin/connexion_import_daemon.pl --config /etc/koha/sites/my_instance/oclc_connexion.conf
Or you can set up a
systemd
unit to keep the script running even when it crashes or the server reboots:Create a file at
/etc/systemd/system/koha-oclc-connexion.service
:[Unit] Description=Koha OCLC Connexion Daemon After=network.target [Service] Type=exec ExecStart=/usr/share/koha/bin/connexion_import_daemon.pl --config /etc/koha/sites/my_instance/oclc_connexion.conf Restart=always [Install] WantedBy=multi-user.target
Enable and start the service:
systemctl enable koha-oclc-connexion systemctl start koha-oclc-connexion
Check the status of the service:
systemctl status koha-oclc-connexion
WorldShare Record Manager
OCLC Connexion Client desktop software
See https://wiki.koha-community.org/wiki/OCLC_Connexion_Client for instructions on setting up and using the OCLC Connexion Client desktop software.
Talking Tech
Talking Tech i-tiva is a third party, proprietary, product that libraries can subscribe to. Learn more here: http://www.talkingtech.com/solutions/library.
Installation and setup instructions
Assicurarsi di aver eseguito installer/data/mysql/atomicupdate/Bug-4246-Talking-Tech-itiva-phone-notifications.pl per installare il pacchetto dati richiesto (nuova preferenza di sistema, preferenze sui segnaposto negli avvisi e sul protocollo di messaggistica)
To use, TalkingTechItivaPhoneNotification system preference must be turned on.
If you wish to process PREOVERDUE or RESERVES messages, you’ll need the EnhancedMessagingPreferences system preference turned on, and patrons to have filled in a preference for receiving these notices by phone.
Per i messaggi OVERDUE, i trigger per gli avvisi di scadenza devono essere configurati sotto Koha -> Tools -> Triggers per messaggi di ritardo/status. Si possono usare o trigger specifici per biblioteca, oppure quelli predefiniti; lo script selezionerà automaticamente i trigger appropriati.
Sending notices file
Aggiungere lo script TalkingTech_itiva_outbound.pl alla lista delle esecuzioni pianificate
Add an FTP/SFTP or other transport method to send the output file to the i-tiva server
Se desiderato, archiviare i file di avviso in un’altra cartella dopo l’invio.
Eseguire TalkingTech_itiva_outbound.pl –help per maggiori informazioni
Receiving results file
Aggiungere un’operazione FTP/SFTP alla lista delle operazioni pianificate, per ricevere il file Results in una cartella stabilita sul server di Koha
Aggiungere lo script TalkingTech_itiva_inbound.pl <cron-receiving-notices-file-label> alla lista delle operazioni pianificate, impostato per lavorare su tale cartella
Se desiderato, archiviare i file di risultati in un’altra cartella, dopo l’elaborazione
Eseguire TalkingTech_itiva_inbound.pl –help per maggiori informazioni