commit | 1ee62bb2d3a67f3a5162e01f267431c9d1d146a9 | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Wed Nov 02 08:45:10 2022 +0000 |
committer | Akron <nils@diewald-online.de> | Wed Nov 02 09:52:32 2022 +0100 |
tree | d4dad40a53c7e182136c3eff3874c6b531554fc2 | |
parent | 861975d16b36d6bbd05f0c7beb9b886e838937ef [diff] |
Bump jackson-databind from 2.14.0-rc1 to 2.14.0-rc3 (closes #42) Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.14.0-rc1 to 2.14.0-rc3. - [Release notes](https://github.com/FasterXML/jackson/releases) - [Commits](https://github.com/FasterXML/jackson/commits) Change-Id: I185fa5eec0a82a956ec520a2b6b595d1b287908c --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Change-Id: I7c3b3e2b2837596f0049257519e8e41958f8c455
Kalamar-Plugin-Export is a web service that integrates in the plugin framework of Kalamar, to export matches for the KorAP Corpus Analysis Platform in various formats. Currently supported are RTF, CSV, and JSON.
Kalamar-Plugin-Export is meant to be a basic export plugin and should demonstrate and evaluate the plugin capabilities of Kalamar.
Java 8 (OpenJDK or Oracle JDK), Git, Maven 3. Further dependencies are resolved using Maven.
To build the latest version of Kalamar-Plugin-Export, do ...
$ git clone https://github.com/KorAP/Kalamar-Plugin-Export $ cd Kalamar-Plugin-Export
... and build the jar file ...
$ mvn clean package
Afterwards the jar file is located in the target/
folder and can be started with ...
$ java -jar KalamarExportPlugin-[VERSION].jar
Per default, this will start a server at http://localhost:7777
. It will also create a subfolder files
to temporarily store created exports.
Registration of the plugin in Kalamar is not yet officially supported. Registration works by passing the following JSON blob to the plugin registration handler.
{ "name" : "Export", "desc" : "Exports Kalamar results", "embed" : [{ "panel" : "result", "title" : "exports KWICs and snippets", "icon" : "\uf019", "classes" : ["button-icon", "plugin" ], "onClick" : { "action" : "addWidget", "template" : "http://localhost:7777/export", "permissions":["forms","scripts","downloads"] } }] }
The simplest way to do this at the moment is by storing the json blob in a file (the blob needs to be in a list, i.e. surrounded by [...]
). The file then can be loaded using the Plugins
addon in Kalamar using the Kalamar configuration file.
{ Kalamar => { plugins => ['Plugins'], }, 'Kalamar-Plugins' => { default_plugins => 'plugins.json' } }
For example, with this configuration addition, the content of plugins.json
will be registered on every Kalamar page load.
An example demo showcases the embedded plugin.
The basic configuration file is stored in src/main/resources/exportPlugin.conf
. To change the configuration create a new config file and run the jar with the according filename as argument:
$ java -jar KalamarExportPlugin-[VERSION].jar myconf_exportPlugin.conf
Alternatively a file named exportPlugin.conf
can be stored in the same directory as the java jar.
Copyright (c) 2020-2021, IDS Mannheim, Germany
Kalamar-Plugin-Export is developed as part of the KorAP Corpus Analysis Platform at the Leibniz Institute for the German Language (IDS).
Kalamar-Plugin-Export is published under the BSD-2 License.