In the goobi_opac.xml the searched ID used to be appended to the catalog address, now, for a catalog with the opacType="intranda_opac_xml", it is necessary to write {pv.id} for it. Example:
Modification of the configuration file of the plugin goobi_plugin_administration_data_poller
By updating the plugin, a type="" must be set for each <rule>. The type of existing rules is always filter. For this, type="filter" must be set in each <rule> tag in the config file plugin_intranda_administration_data_poller.xml.
22.10
Renaming from the datapoller
The Goobi workflow Plugin: Catalogue Poller has been renamed to Data Poller. Instead of plugin_intranda_administration_catalogue-poller.jar the file is now called plugin_intranda_administration_data-poller.jar and is downloadable from GitHub: https://github.com/intranda/goobi-plugin-administration-catalogue-poller
The name of the config file has changed from plugin_intranda_administration_catalogue_poller.xml to plugin_intranda_administration_data_poller.xml.
New Config File goobi_exportValidation.xml
With the new version, goobi_exportValidation.xml must be stored as a new configuration file.
<config_plugin><!-- order of configuration is: 1.) project name and step name matches 2.) step name matches and project is * 3.) project name matches and step name is * 4.) project name and step name are * --> <config><!-- which projects to use for (can be more then one, otherwise use *) --> <project>*</project><!-- which stepss to use for (can be more then one, otherwise use *) --> <step>*</step><!-- use images from master or media folder --> <imagesFolder>media</imagesFolder><!-- if set to true, create single page pdf files first, merge them to a large file --><!-- if set to false, create a pdf for all images, split them afterwards --> <pagePdfenabled="true" /><!-- keep the full pdf if set to true, delete it otherwise --> <fullPdfenabled="true" /> </config> <config> <project>testocr</project> <step>testpdf</step> <imagesFolder>master</imagesFolder> <pagePdfenabled="true" /> <fullPdfenabled="false" /> </config></config_plugin>
Change in escaping for LDAP user
In the background something has changed in the escaping. This must be adjusted in the DB.
mysql goobi -NBse 'update benutzer set ldaplogin = replace(ldaplogin, "\\\\,", "\\,") where ldaplogin regexp "\\\\\\\\"'
22.08
Tomcat
Check that the tomcat-lib folder is no longer included as PreResources in:
Update of the URN generator required
If used, the urn-generator.jar has to be updated.
Configuration change for goobi-plugin-export-configurable
The options exportFolder and useSubFolderPerProcess are read directly from the project configuration now (Administration -> Projects -> Edit project -> Technical Data). They should be removed from the config file plugin_intranda_export_configurable.xml. The project configuration has to be adjusted: "Export path for XML file" and "Export path for the images" instead of exportFolder, and "Create process directory" instead of useSubFolderPerProcess.
In addition the option includeDerivate was renamed to includeMedia:
Apply this only if the feature is in use. It is unused, if the result of the following SQL-Queryeine is emtpy: mysql goobi -NBse 'select * from journal where type="file" limit 10'
In the configuration file goobi_rest.xml this block must be present to be able to display the images on dockets:
Apply this only if the feature is in use. Image comments are only in use, if MetsEditorShowImageComments or ShowImageComments in the goobi_config.properties is active (true). In order to move any existing image comments from the previous location to the new location, the following script can be called (adjust folder names if necessary):
The delivery plugin for Leiden University Library has been renamed. Instead of plugin_intranda_step_file-delivery.jar the file is now called plugin_intranda_step_leiden_file_delivery.jar and is downloadable from GitHub: https://github.com/intranda/goobi-plugin-step-leiden-file-delivery
2022-05-03
The rulesets must be adapted for the use of image coordinates. The following metadata elements must be created:
Line breaks in the configuration file goobi_projects.xml can affect the process title generation when creating new processes. The XML file can be reformatted this way (formatting is lost, especially of multiline comments):
The syntax for the configuration file of the editor for configuration files has changed and should be re-installed on the system and adapted for this purpose. The current version of a sample configuration for the file plugin_intranda_administration_config_file_editor.xml can be found here.
2022-02-25
goobi-plugin-import-excel: config changes:
The old version:
<!-- prefix path to the image folder. Can be empty or missing if the import doesn't contain images or if the excel field contains absolute path -->
<imageFolderPath>/opt/digiverso/images/</imageFolderPath><!-- define which column contains the image folder name. Can be combined with <imageFolderPath> prefix or an absolute path.
If the field is missing, empty or does not contain an existing directory, no images will be imported --><imageFolderHeaderName>images</imageFolderHeaderName><!-- defines, if images are moved from the source folder to the destination (true) or copied (false) --><moveImages>true</moveImages>
Needs to be replaced with:
<importImagesfailOnMissingImageFiles="true"> <!-- prefix path to the image folder. Can be empty or missing if the import doesn't contain images or if the excel field contains absolute path -->
<imageFolderPath>/opt/digiverso/images/</imageFolderPath> <!-- define which column contains the image folder name. Can be combined with <imageFolderPath> prefix or an absolute path.
If the field is missing, empty or does not contain an existing directory, no images will be imported --> <imageFolderHeaderName>images</imageFolderHeaderName><!-- Image handling strategy. Valid values are "move", "copy" or "ignore". --> <imageHandlingStrategy>move</imageHandlingStrategy></importImages>
The plugin name changed from plugin_intranda_mycore_export to intranda_export_sword:
mysql goobi -e 'update schritte set stepplugin="intranda_export_sword" where stepplugin="plugin_intranda_mycore_export"'
2022-02-09
Goobi workflow has supported WebSockets for some time. To do this, its support in the Apache web server must be included in the configuration:
## make sure rewrite is enabledRewriteEngineOn## Enable WebSockets to check concurrent accessRewriteCond%{HTTP:Upgrade}websocket [NC]RewriteCond%{HTTP:Connection}upgrade [NC]RewriteRule/?(.*) ws://localhost:8080/$1 [P,L]
If the Tomcat is not listening on 8080, please adjust the port accordingly. However, you must always forward to the HTTP connector, not to the AJP connector;
Then activate the required module and restart the service: