commit | 77f2d6fee142f6ba8010f52b23e8627d02ec3e96 | [log] [tgz] |
---|---|---|
author | hebasta <stallkamp@ids-mannheim.de> | Tue Jul 24 13:21:36 2018 +0200 |
committer | hebasta <stallkamp@ids-mannheim.de> | Tue Jul 24 13:45:16 2018 +0200 |
tree | 8dd04bf07e1219148062d36172847ff7dbbfc0ba | |
parent | b6a1fb777e7778e5c60d988997e81cede266f5b9 [diff] |
changed statSpec because of panel and view integration Change-Id: I624caa3e609e82595738d53c0cfcfb426aee37d0
Kalamar is a Mojolicious-based user interface frontend for the KorAP Corpus Analysis Platform.
To fetch the latest version of Kalamar ...
$ git clone https://github.com/KorAP/Kalamar
To generate the static asset files (scripts, styles, images ...), you need NodeJS > 0.8 and npm (maybe bundled with your version of NodeJS). For processing Sass, you will need Ruby with the sass
gem in addition. This will probably need administration rights, depending on your installation path. These tools may also be available with a package manager.
You can check, if all tools are available using
$ npm -v $ sass -v
Afterwards you can install grunt and run grunt to create the assets.
$ cd Kalamar $ npm install -g grunt-cli $ npm install $ grunt
Whenever the assets change, just rerun grunt
.
Kalamar uses the Mojolicious framework, that expects a Perl version of at least 5.10.1. The recommended environment is based on Perlbrew with App::cpanminus.
Some perl modules are not on CPAN yet, so you need to install them from GitHub. The easiest way to do this is using App::cpanminus. This will probably need administration rights.
$ cpanm git://github.com/Akron/Mojolicious-Plugin-Search.git $ cpanm git://github.com/Akron/Mojolicious-Plugin-Localize.git $ cpanm git://github.com/Akron/Mojolicious-Plugin-TagHelpers-ContentBlock.git
Then install the dependencies using App::cpanminus (there is no need to install Kalamar) and run the test suite.
$ cd Kalamar $ cpanm --installdeps . $ perl Makefile.PL $ make test
Kalamar can be deployed like all Mojolicious apps. The easiest way is to start the built-in server:
$ perl script/kalamar daemon
Kalamar will then be available at localhost:3000
in your browser.
By default, Kalamar tries to connect to localhost:9999
. You may change that endpoint to the KorAP API provider in in the configuration (see Kustvakt for further information).
The basic configuration file is kalamar.conf
. To define derivations, create a configuration file with the pattern kalamar.[MYNAME].conf
and follow the descriptions in kalamar.conf
. For client-side configurations, a file kalamar.conf.js
can be introduced, that will be consulted during the build process, loading optional components using a require(...)
directive (see example below).
To create a localized version of Kalamar, start the localize
command with the target locale as its argument, e.g. pl
for polish.
$ perl script/kalamar localize pl
The newly defined dictionary file can then be modified and added to the resources definition of the Localize
plugin in the configuration:
Localize => { resources => ['kalamar.pl.dict'] }
To localize example queries according to a special corpus environment, define a name of the example corpus in the configuration.
Kalamar => { examplecorpus => 'mycorpus' }
Then create a translation file based on kalamar.queries.dict
as a blueprint and add it to the Localize
resource list.
Templates can be localized and customized by overriding the Template
dictionary entries.
Currently the JavaScript translations are separated and stored in dev/js/src/loc
. To generate assets relying on different locales, add the locale to Gruntfile.js
.
To localize the annotation helper according to a special corpus environment, different annotation foundries can be loaded in kalamar.conf.js
. For example to support marmot
and malt
, the configuration may look like this:
require([ "hint/foundries/marmot", "hint/foundries/malt" ]);
See dev/js/src/hint/foundries
for more optional foundries.
The landing page can be customized by overriding the entry for Template_intro
in the dictionary.
Some sections of the user interface can be customized by adding new content blocks. Currently the sections are in footer
, in the bottom line of the user interface, and loginInfo
, below the login form, if present.
ALERTIFY.js is released under the terms of the MIT License. Almond is released under the terms of the BSD License. dagre is released under the terms of the MIT License. Highlight.js is released under the terms of the BSD License. Jasmine is released under the terms of the MIT License. RequireJS is released under the terms of the BSD License. Font Awesome by Dave Gandy is released under the terms of the SIL OFL 1.1. Benchmark.js is released under the terms of the MIT License. lodash is released under the terms of the MIT License. Platform.js is released under the terms of the MIT License.
Copyright (C) 2015-2018, IDS Mannheim
Author: Nils Diewald Contributor: Susanne Feix (Translations)
Kalamar is developed as part of the KorAP Corpus Analysis Platform at the Institute for the German Language (IDS), member of the Leibniz Association and supported by the KobRA project, funded by the Federal Ministry of Education and Research (BMBF).
Kalamar is free software published under the BSD-2 License.