blob: 0998ed97a4cc8f21ea1f655f4fcf84dacc4d7e21 [file] [log] [blame]
Nils Diewald2fe12e12015-03-06 16:47:06 +00001package Kalamar;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00002use Mojo::Base 'Mojolicious';
Nils Diewalde2c83812014-11-11 21:13:18 +00003use Mojo::ByteStream 'b';
Akronc7656e92018-08-30 13:33:25 +02004use Mojo::URL;
Akronf65ad6c2017-02-01 14:36:38 +01005use Mojo::File;
Akron2c2ddbd2021-03-05 12:10:27 +01006use Mojo::JSON qw/decode_json encode_json/;
Akron0c4cd222019-07-19 16:33:34 +02007use Mojo::Util qw/url_escape deprecated slugify/;
Akrond8db6722022-12-06 10:05:24 +01008use List::Util qw!none uniq!;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00009
Nils Diewald709f52f2015-05-21 18:32:58 +000010# Minor version - may be patched from package.json
Akrond77eefe2024-08-26 14:01:09 +020011our $VERSION = '0.56';
Akronc7656e92018-08-30 13:33:25 +020012
13# Supported version of Backend API
14our $API_VERSION = '1.0';
Nils Diewald7cad8402014-07-08 17:06:56 +000015
Nils Diewald7148c6f2015-05-04 15:07:53 +000016# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000017# TODO: Embed query serialization
18# TODO: Embed collection statistics
19# TODO: Implement tab opener for matches and the tutorial
Nils Diewald709f52f2015-05-21 18:32:58 +000020# TODO: Implement a "projects" system
Nils Diewald7148c6f2015-05-04 15:07:53 +000021
Nils Diewald002e8fb2014-06-22 14:27:01 +000022# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000023sub startup {
24 my $self = shift;
25
Nils Diewalda944fab2015-04-08 21:02:04 +000026 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000027 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010028 my $pkg_path = $self->home->child('package.json');
Akrone40933b2022-12-21 09:56:55 +010029 if ($ENV{KALAMAR_VERSION}) {
30 $Kalamar::VERSION = $ENV{KALAMAR_VERSION};
31 }
32 elsif (-e $pkg_path->to_abs) {
Akronf65ad6c2017-02-01 14:36:38 +010033 my $pkg = $pkg_path->slurp;
34 $Kalamar::VERSION = decode_json($pkg)->{version};
35 };
Nils Diewalda944fab2015-04-08 21:02:04 +000036
Akron656c5d92015-11-13 21:17:03 +010037 # Lift maximum template cache
38 $self->renderer->cache->max_keys(200);
39
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000040 # Add additional plugin path
41 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
42
Akron3340ae72022-11-22 12:20:13 +010043 # Add additional commands
44 push(@{$self->commands->namespaces}, __PACKAGE__ . '::Command');
45
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000046 # Set secrets for signed cookies
Akron2c2ddbd2021-03-05 12:10:27 +010047 my $secret_file = $self->home->rel_file('kalamar.secret.json');
48
49 # Support old secrets file
50 # This is deprecated 2021-03-05
51 if (-e (my $old_secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000052
53 # Load file and split lines for multiple secrets
Akron2c2ddbd2021-03-05 12:10:27 +010054 my $secrets = [b($old_secret->slurp)->split("\n")];
Akron3d68ac32022-01-04 14:40:30 +010055
Akron2c2ddbd2021-03-05 12:10:27 +010056 $self->secrets($secrets);
57
Akron3d68ac32022-01-04 14:40:30 +010058 for (@$secrets) {
59 if (length($secrets) > 22) {
60 $self->log->warn(
61 'Unable to automatically switch to Autosecrets, as secret is too long (> 22 chars)'
62 );
63 goto CONF;
64 };
65 }
66
Akron2c2ddbd2021-03-05 12:10:27 +010067 eval {
Akron889bc202024-03-15 17:16:55 +010068 $secret_file->spew(encode_json(@$secrets));
Akron2c2ddbd2021-03-05 12:10:27 +010069 $secret_file->chmod(0600);
70 if (-w $secret_file) {
71 $self->log->warn(
72 "Please delete $old_secret file " .
73 "- $secret_file was created instead"
74 );
75 }
76 };
77 if ($@) {
78 $self->log->error("Please make $secret_file accessible");
79 };
Nils Diewald4347ee92015-05-04 20:32:48 +000080 }
Nils Diewald709f52f2015-05-21 18:32:58 +000081
82 # File not found ...
83 # Kalamar needs secrets in a file to be easily deployable
84 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000085 else {
Akron2c2ddbd2021-03-05 12:10:27 +010086 $self->plugin(AutoSecrets => {
87 path => $secret_file
88 });
Nils Diewald19402142015-04-30 15:44:52 +000089 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000090
Akron3d68ac32022-01-04 14:40:30 +010091 CONF:
Akron2c2ddbd2021-03-05 12:10:27 +010092
Akroncba9f322016-02-29 23:12:45 +010093 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030094 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000095
Akron741b2b12017-04-13 22:15:59 +020096 $self->log->info('Mode is ' . $self->mode);
97
Akron63d963b2019-07-05 15:35:51 +020098 # Get configuration
Akron47787ca2017-05-17 16:00:10 +020099 my $conf = $self->config('Kalamar');
Akron63d963b2019-07-05 15:35:51 +0200100 unless ($conf) {
101 $self->config(Kalamar => {});
102 $conf = $self->config('Kalamar');
103 };
104
Akronf260e6e2023-05-16 16:36:10 +0200105 # Set log file. All precedng logs where send to stderr
106 if ($conf->{log_file}) {
107 Mojo::File->new(Mojo::File->new($conf->{log_file})->dirname)->make_path;
108 $self->log(Mojo::Log->new(
109 path => $conf->{log_file},
110 ));
111 };
112
113
Akron63d963b2019-07-05 15:35:51 +0200114 # Check for API endpoint and set the endpoint accordingly
115 if ($conf->{api}) {
116
117 # The api endpoint should be defined as a separated path
118 # and version string
119 $self->log->warn(
120 'Kalamar.api is no longer supported in configurations '.
121 'in favor of Kalamar.api_path'
122 );
123 };
124
Akron0c4cd222019-07-19 16:33:34 +0200125 $self->sessions->cookie_name('kalamar');
126
127 # Require HTTPS
128 if ($conf->{https_only}) {
129
130 # ... for cookie transport
131 $self->sessions->secure(1);
Akron1bee5a42021-01-13 17:44:18 +0100132
Akron26244a72021-04-28 00:17:56 +0200133 # Temporary for session riding
134 $self->sessions->samesite('None');
135
Akron1bee5a42021-01-13 17:44:18 +0100136 # For all pages
137 $self->hook(
138 before_dispatch => sub {
139 shift->res->headers->header('Strict-Transport-Security' => 'max-age=3600; includeSubDomains');
140 }
141 );
Akron0c4cd222019-07-19 16:33:34 +0200142 };
143
144 # Run the app from a subdirectory
Akron63d963b2019-07-05 15:35:51 +0200145 if ($conf->{proxy_prefix}) {
Akron47787ca2017-05-17 16:00:10 +0200146
Akronf3d856c2017-06-21 17:07:40 +0200147 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +0200148 $_->cookie_path($conf->{proxy_prefix});
Akron0c4cd222019-07-19 16:33:34 +0200149 $_->cookie_name('kalamar-' . slugify($conf->{proxy_prefix}));
Akron1a394722017-06-21 16:25:30 +0200150 };
151
Akron47787ca2017-05-17 16:00:10 +0200152 # Set prefix in stash
153 $self->defaults(prefix => $conf->{proxy_prefix});
154
155 # Create base path
156 $self->hook(
157 before_dispatch => sub {
158 shift->req->url->base->path($conf->{proxy_prefix} . '/');
159 });
160 };
161
Akron807225b2021-01-13 18:00:13 +0100162 $self->hook(
163 before_dispatch => sub {
Akron5b6d7272021-01-21 11:26:02 +0100164 my $h = shift->res->headers;
165 $h->header('X-Content-Type-Options' => 'nosniff');
Akron52b32d02021-01-21 17:37:19 +0100166 $h->header('X-XSS-Protection' => '1; mode=block');
Akron5b6d7272021-01-21 11:26:02 +0100167 $h->header(
168 'Access-Control-Allow-Methods' =>
169 $h->header('Access-Control-Allow-Methods') // 'GET, POST, OPTIONS'
170 );
Akron807225b2021-01-13 18:00:13 +0100171 }
172 );
173
Akron90be03b2020-02-03 16:13:37 +0100174 $conf->{proxy_host} //= 1;
175
176 # Take proxy host
177 if ($conf->{proxy_host}) {
178 $self->hook(
179 before_dispatch => sub {
180 my $c = shift;
Akron409f6b82023-05-08 10:42:36 +0200181 my $h = $c->req->headers;
182 if (my $host = $h->header('X-Forwarded-Host')) {
183
184 my $proto = $h->header('X-Forwarded-Proto') // ($conf->{https_only} ? 'https' : undef);
185
Akron90be03b2020-02-03 16:13:37 +0100186 foreach ($c->req->url->base) {
187 $_->host($host);
Akron409f6b82023-05-08 10:42:36 +0200188 $_->scheme($proto);
Akron90be03b2020-02-03 16:13:37 +0100189 $_->port(undef);
190 };
191 };
192 }
193 );
194 };
195
Akron8f8deda2021-01-15 12:55:06 +0100196 # API is not yet set - define the default Kustvakt api endpoint
197 $conf->{api_path} //= $ENV{KALAMAR_API} || 'https://korap.ids-mannheim.de/api/';
Akron63d963b2019-07-05 15:35:51 +0200198 $conf->{api_version} //= $API_VERSION;
Akronc7656e92018-08-30 13:33:25 +0200199
Akron4036d542018-02-12 13:17:09 +0100200 # Add development path
Akron0e1ed242018-10-11 13:22:00 +0200201 if ($self->mode eq 'development') {
Akron4036d542018-02-12 13:17:09 +0100202 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +0200203 };
204
Akron23ab0472019-12-17 16:55:55 +0100205 # Set proxy timeouts
206 if ($conf->{proxy_inactivity_timeout}) {
207 $self->ua->inactivity_timeout($conf->{proxy_inactivity_timeout});
208 };
209 if ($conf->{proxy_connect_timeout}) {
210 $self->ua->connect_timeout($conf->{proxy_connect_timeout});
211 };
212
Akron09a567c2016-04-11 22:49:20 +0300213 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200214 $self->plugin(Notifications => {
215 'Kalamar::Plugin::Notifications' => 1,
Akron8ea84292018-10-24 13:41:52 +0200216 JSON => 1,
Akron3c390c42020-03-30 09:06:21 +0200217 HTML => 1
Akron0504a182016-04-10 21:13:42 +0200218 });
219
Akronc4ea2e52021-01-27 18:34:05 +0100220 # Establish content security policy
Akron0a4d36e2021-01-18 17:50:48 +0100221 # This needs to be defined prior to Kalamar::Plugin::Piwik!
Akronc4ea2e52021-01-27 18:34:05 +0100222 $self->plugin(CSP => {
223 'default-src' => 'self',
Akron0a4d36e2021-01-18 17:50:48 +0100224 'style-src' => ['self','unsafe-inline'],
Akron1871f032021-01-29 10:35:53 +0100225 # Hash for korap-overview.svg script
226 'script-src' => ['self','sha256-VGXK99kFz+zmAQ0kxgleFrBWZgybFAPOl3GQtS7FQkI='],
Akron5b6d7272021-01-21 11:26:02 +0100227 'connect-src' => 'self',
Akron0a4d36e2021-01-18 17:50:48 +0100228 'frame-src' => '*',
Akronaef5cf22021-06-21 11:45:54 +0200229 'frame-ancestors' => 'self',
Akron0a4d36e2021-01-18 17:50:48 +0100230 'media-src' => 'none',
231 'object-src' => 'self',
232 'font-src' => 'self',
233 'img-src' => ['self', 'data:'],
Akronb7b91c52021-01-27 17:46:52 +0100234 -with_nonce => 1
Akronc4ea2e52021-01-27 18:34:05 +0100235 });
236
Akron09a567c2016-04-11 22:49:20 +0300237 # Localization framework
238 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100239 dict => {
240 Q => {
241 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
242 }
243 },
Akrona7cfd902017-12-21 19:28:36 +0100244 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300245 });
246
247 # Pagination widget
248 $self->plugin('TagHelpers::Pagination' => {
249 prev => '<span><span>&lt;</span></span>',
Akron86e63a92019-02-27 17:35:04 +0100250 next => '<span><span>&gt;</span></span>',
Akrona4b17f72021-11-04 15:37:02 +0100251 ellipsis => '<a class="ellipsis inactive"><span><span>...</span></span></a>',
Akron09a567c2016-04-11 22:49:20 +0300252 separator => '',
253 current => '<span>{current}</span>',
254 page => '<span>{page}</span>'
255 });
256
Akron1011daf2021-03-01 12:34:58 +0100257 # Obfuscate email addresses
258 $self->plugin('TagHelpers::MailToChiffre' => {
259 method_name => 'PArok',
260 pattern_rotate => 673,
261 no_inline => 1
262 });
263
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000264 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000265 foreach (
Akrone8235be2016-06-27 11:02:18 +0200266 'KalamarHelpers', # Specific Helpers for Kalamar
Akronb7b91c52021-01-27 17:46:52 +0100267 'KalamarPages', # Page Helpers for Kalamar
Akron7093b812018-10-19 17:28:21 +0200268 'KalamarErrors', # Specific Errors for Kalamar
269 'KalamarUser', # Specific Helpers for Kalamar Users
Akron429aeda2018-03-19 16:02:29 +0100270 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200271 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200272 'TagHelpers::ContentBlock', # Flexible content blocks
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000273 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000274 $self->plugin($_);
275 };
276
Akron751e9e42019-03-13 09:54:55 +0100277 my $serializer = 'JSON';
278
279 if (my $chi = $self->config('CHI')) {
280 if ($chi->{default}) {
281 $chi->{default}->{serializer} = $serializer;
282 };
283 if ($chi->{user}) {
284 $chi->{user}->{serializer} = $serializer;
285 };
286 };
287
Akron05c6dd62018-10-11 17:05:06 +0200288 # Global caching mechanism
289 $self->plugin('CHI' => {
290 default => {
291 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100292 global => 1,
293 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200294 },
295 user => {
296 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100297 global => 1,
298 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200299 }
300 });
Nils Diewald709f52f2015-05-21 18:32:58 +0000301
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000302 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200303 if ($self->config('MailException')) {
304 $self->plugin('MailException' => $self->config('MailException'));
305 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000306
Akrond8db6722022-12-06 10:05:24 +0100307 # Load plugins defined in environment variables
308 if ($ENV{'KALAMAR_PLUGINS'}) {
309 $conf->{'plugins'} //= [];
310 push @{$conf->{'plugins'}}, split(/\s*,\s*/, $ENV{'KALAMAR_PLUGINS'} // '');
311 };
312
Akroncdfd9d52019-07-23 11:35:00 +0200313 # Load further plugins,
314 # that can override core functions,
315 # therefore order may be of importance
Akron4c33c622018-11-12 13:43:27 +0100316 if (exists $conf->{'plugins'}) {
Akrond8db6722022-12-06 10:05:24 +0100317 foreach (uniq @{$conf->{'plugins'}}) {
Akron4c33c622018-11-12 13:43:27 +0100318 $self->plugin('Kalamar::Plugin::' . $_);
319 };
320 };
321
Akron3422d452024-05-14 11:14:07 +0200322 # Set defaults per config
323 $self->defaults(
324 items_per_page => 25,
325 context => '40-t,40-t', # Before: 'base/s:p'/'paragraph'
326 );
327
328 if (exists $conf->{defaults}) {
329 my $def = $conf->{defaults};
330 $self->defaults(items_per_page => $def->{items_per_page}) if $def->{items_per_page};
331 $self->defaults(context => $def->{context}) if $def->{context};
332 };
333
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000334 # Configure documentation navigation
Akrond512ea62019-10-24 15:50:04 +0200335 my $doc_navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
336 $doc_navi = $doc_navi ? decode_json($doc_navi) : [];
Akron1b1a2712018-12-21 14:59:05 +0100337
Akronf7ec4442019-10-27 20:01:05 +0100338 # TODO:
339 # Use navi->add()
Akron1b1a2712018-12-21 14:59:05 +0100340 if ($conf->{navi_ext}) {
Akrond512ea62019-10-24 15:50:04 +0200341 push @$doc_navi, @{$conf->{navi_ext}};
Akron1b1a2712018-12-21 14:59:05 +0100342 };
343
Akronf7ec4442019-10-27 20:01:05 +0100344 # TODO:
345 # Remove navi entry
Akrond512ea62019-10-24 15:50:04 +0200346 $self->config(doc_navi => $doc_navi);
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000347
Akronf7ec4442019-10-27 20:01:05 +0100348 $self->navi->set(doc => $doc_navi);
349
Akron63d963b2019-07-05 15:35:51 +0200350 $self->log->info('API expected at ' . $self->korap->api);
Nils Diewald709f52f2015-05-21 18:32:58 +0000351
Akron3cd391e2017-03-29 23:42:54 +0200352 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200353 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200354
Akronafeca252018-05-23 15:54:28 +0200355 # Set footer value
Akronef6d5f12018-05-28 17:54:58 +0200356 $self->content_block(footer => {
Akron3cfa26d2019-10-24 15:17:34 +0200357 inline => '<%= embedded_link_to "doc", "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
Akronafeca252018-05-23 15:54:28 +0200358 position => 100
Akronef6d5f12018-05-28 17:54:58 +0200359 });
Akronafeca252018-05-23 15:54:28 +0200360
Akronb7b91c52021-01-27 17:46:52 +0100361 # Add nonce script
362 $self->content_block(nonce_js => {
363 inline => <<'NONCE_JS'
364 // Remove the no-js class from the body
365 document.body.classList.remove('no-js');
366NONCE_JS
367 });
368
Nils Diewalda79b2682015-05-18 18:34:06 +0000369 # Base query route
Akronfb6d87d2018-10-24 18:10:20 +0200370 $r->get('/')->to('search#query')->name('index');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000371
Nils Diewalda79b2682015-05-18 18:34:06 +0000372 # Documentation routes
hebastada903dd2021-07-20 15:58:48 +0200373 $r->get('/doc')->to('documentation#page', page => 'ql')->name('doc_start');
Akron254fe212019-10-24 14:33:28 +0200374 $r->get('/doc/:scope/:page')->to('documentation#page', scope => undef)->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000375
Akron59992122019-10-29 11:28:45 +0100376 # Settings routes
377 if ($self->navi->exists('settings')) {
378 $r->get('/settings')->to(
379 cb => sub {
Akron88c26b12020-09-07 12:44:18 +0200380 my $c = shift;
381 $c->res->headers->header('X-Robots' => 'noindex');
382 return $c->render('settings');
Akron59992122019-10-29 11:28:45 +0100383 }
384 )->name('settings_start');
385 $r->get('/settings/:scope/:page')->to(
386 scope => undef,
387 page => undef
388 )->name('settings');
389 };
Akronf7ec4442019-10-27 20:01:05 +0100390
Nils Diewaldc46003b2015-05-07 15:55:35 +0000391 # Contact route
392 $r->get('/contact')->to('documentation#contact');
393 $r->get('/contact')->mail_to_chiffre('documentation#contact');
394
Akron63d963b2019-07-05 15:35:51 +0200395 # API proxy route
Akron8a21b4d2020-04-16 16:17:42 +0200396 $r->any('/api/v#apiv' => [apiv => ['1.0']])->name('proxy')->to('Proxy#pass');
Akron03c3c9d2021-02-15 07:41:27 +0100397 $r->any('/api/v#apiv/*api_path' => [apiv => ['1.0']])->to('Proxy#pass');
Akron63d963b2019-07-05 15:35:51 +0200398
Nils Diewald7148c6f2015-05-04 15:07:53 +0000399 # Match route
Akron80a84b22018-10-24 17:44:24 +0200400 # Corpus route
Akronfb6d87d2018-10-24 18:10:20 +0200401 my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus');
Akron4e413fb2023-09-26 13:11:11 +0200402 my $doc = $r->any('/corpus/#corpus_id/#doc_id');
403 my $text = $doc->get('/#text_id')->to('search#text_info')->name('text');
404 my $match = $doc->get('/#text_id/#match_id')->to('search#match_info')->name('match');
Nils Diewald996aa552014-12-02 03:26:44 +0000405};
406
407
4081;
409
410
411__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000412
413=pod
414
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000415=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000416
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000417=head1 NAME
418
419Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000420
421
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000422=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000423
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000424L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
Akron87468c22021-02-08 09:30:01 +0100425frontend for the L<KorAP Corpus Analysis Platform|https://korap.ids-mannheim.de/>.
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000426
Akron456abd92015-06-02 15:07:21 +0200427B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000428
Akron456abd92015-06-02 15:07:21 +0200429=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000430
Akron006ddc62024-02-19 08:49:43 +0100431Copyright (C) 2015-2024, L<IDS Mannheim|https://www.ids-mannheim.de/>
Akron87468c22021-02-08 09:30:01 +0100432Author: L<Nils Diewald|https://www.nils-diewald.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000433
434Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
435Corpus Analysis Platform at the
Akron87468c22021-02-08 09:30:01 +0100436L<Leibniz Institute for the German Language (IDS)|https://www.ids-mannheim.de/>,
Nils Diewalda748b0e2015-05-19 22:54:06 +0000437member of the
hebasta21b7baf2019-12-16 10:32:43 +0100438L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000439and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
440funded by the
441L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
442
443Kalamar is free software published under the
Akron87468c22021-02-08 09:30:01 +0100444L<BSD-2 License|https://opensource.org/licenses/BSD-2-Clause>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000445
446=cut