Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 1 | package Kalamar; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 2 | use Mojo::Base 'Mojolicious'; |
Nils Diewald | e2c8381 | 2014-11-11 21:13:18 +0000 | [diff] [blame] | 3 | use Mojo::ByteStream 'b'; |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 4 | use Mojo::URL; |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 5 | use Mojo::File; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 6 | use Mojo::JSON 'decode_json'; |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 7 | use Mojo::Util qw/url_escape/; |
Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame^] | 8 | use List::Util 'none'; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 9 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 10 | # Minor version - may be patched from package.json |
Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 11 | our $VERSION = '0.30'; |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 12 | |
| 13 | # Supported version of Backend API |
| 14 | our $API_VERSION = '1.0'; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 15 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 16 | # TODO: The FAQ-Page has a contact form for new questions |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 17 | # TODO: Embed query serialization |
| 18 | # TODO: Embed collection statistics |
| 19 | # TODO: Implement tab opener for matches and the tutorial |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 20 | # TODO: Implement a "projects" system |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 21 | # TODO: Make authentification a plugin |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 22 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 23 | # Start the application and register all routes and plugins |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 24 | sub startup { |
| 25 | my $self = shift; |
| 26 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 27 | # Set version based on package file |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 28 | # This may introduce a SemVer patch number |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 29 | my $pkg_path = $self->home->child('package.json'); |
| 30 | if (-e $pkg_path->to_abs) { |
| 31 | my $pkg = $pkg_path->slurp; |
| 32 | $Kalamar::VERSION = decode_json($pkg)->{version}; |
| 33 | }; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 34 | |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 35 | # Lift maximum template cache |
| 36 | $self->renderer->cache->max_keys(200); |
| 37 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 38 | # Add additional plugin path |
| 39 | push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin'); |
| 40 | |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 41 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 42 | # Set secrets for signed cookies |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 43 | if (-e (my $secret = $self->home->child('kalamar.secret'))) { |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 44 | |
| 45 | # Load file and split lines for multiple secrets |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 46 | $self->secrets([b($secret->slurp)->split("\n")]); |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 47 | } |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 48 | |
| 49 | # File not found ... |
| 50 | # Kalamar needs secrets in a file to be easily deployable |
| 51 | # and publishable at the same time. |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 52 | else { |
| 53 | $self->log->warn('Please create a kalamar.secret file'); |
Nils Diewald | 1940214 | 2015-04-30 15:44:52 +0000 | [diff] [blame] | 54 | }; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 55 | |
Akron | cba9f32 | 2016-02-29 23:12:45 +0100 | [diff] [blame] | 56 | # Configuration framework |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 57 | $self->plugin('Config'); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 58 | |
Akron | 741b2b1 | 2017-04-13 22:15:59 +0200 | [diff] [blame] | 59 | $self->log->info('Mode is ' . $self->mode); |
| 60 | |
Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 61 | # Specific path prefixing |
| 62 | my $conf = $self->config('Kalamar'); |
| 63 | if ($conf && $conf->{proxy_prefix}) { |
| 64 | |
Akron | f3d856c | 2017-06-21 17:07:40 +0200 | [diff] [blame] | 65 | for ($self->sessions) { |
Akron | 1a39472 | 2017-06-21 16:25:30 +0200 | [diff] [blame] | 66 | $_->cookie_path($conf->{proxy_prefix}); |
| 67 | $_->cookie_name('kalamar'); |
| 68 | $_->secure(1); |
| 69 | }; |
| 70 | |
Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 71 | # Set prefix in stash |
| 72 | $self->defaults(prefix => $conf->{proxy_prefix}); |
| 73 | |
| 74 | # Create base path |
| 75 | $self->hook( |
| 76 | before_dispatch => sub { |
| 77 | shift->req->url->base->path($conf->{proxy_prefix} . '/'); |
| 78 | }); |
| 79 | }; |
| 80 | |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 81 | # Load Kalamar configuration |
| 82 | my $kalamar_conf = $self->config('Kalamar'); |
| 83 | |
| 84 | # Check for API endpoint and set the endpoint accordingly |
| 85 | if ($kalamar_conf->{api}) { |
| 86 | |
| 87 | # The api endpoint should be defined as a separated path |
| 88 | # and version string |
| 89 | $self->log->info( |
| 90 | 'Kalamar.api is deprecated in configurations '. |
| 91 | 'in favor of Kalamar.api_path' |
| 92 | ); |
| 93 | } |
| 94 | |
| 95 | # Set from environment variable |
| 96 | elsif ($ENV{'KALAMAR_API'}) { |
| 97 | $kalamar_conf->{api} = $ENV{'KALAMAR_API'}; |
| 98 | } |
| 99 | |
| 100 | # API is not yet set - define |
| 101 | else { |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 102 | |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 103 | $kalamar_conf->{api} = |
| 104 | Mojo::URL->new($kalamar_conf->{api_path})->path('v' . ($kalamar_conf->{api_version} // $API_VERSION) . '/')->to_string; |
| 105 | }; |
| 106 | |
Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 107 | # Add development path |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 108 | if ($self->mode eq 'development') { |
Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 109 | push @{$self->static->paths}, 'dev'; |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 110 | }; |
| 111 | |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 112 | # Check search configuration |
| 113 | |
| 114 | # Set endpoint |
| 115 | $self->config('Search')->{api} //= $kalamar_conf->{api}; |
| 116 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 117 | # Client notifications |
Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 118 | $self->plugin(Notifications => { |
| 119 | 'Kalamar::Plugin::Notifications' => 1, |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 120 | JSON => 1, |
| 121 | 'HTML' => 1 |
Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 122 | }); |
| 123 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 124 | # Localization framework |
| 125 | $self->plugin(Localize => { |
Akron | dbb448c | 2018-02-14 17:02:36 +0100 | [diff] [blame] | 126 | dict => { |
| 127 | Q => { |
| 128 | _ => sub { shift->config('Kalamar')->{'examplecorpus'} }, |
| 129 | } |
| 130 | }, |
Akron | a7cfd90 | 2017-12-21 19:28:36 +0100 | [diff] [blame] | 131 | resources => ['kalamar.dict', 'kalamar.queries.dict'] |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 132 | }); |
| 133 | |
| 134 | # Pagination widget |
| 135 | $self->plugin('TagHelpers::Pagination' => { |
| 136 | prev => '<span><span><</span></span>', |
| 137 | next => '<span><span><</span></span>', |
| 138 | ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>', |
| 139 | separator => '', |
| 140 | current => '<span>{current}</span>', |
| 141 | page => '<span>{page}</span>' |
| 142 | }); |
| 143 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 144 | # Load plugins |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 145 | foreach ( |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 146 | 'TagHelpers::MailToChiffre', # Obfuscate email addresses |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 147 | 'KalamarHelpers', # Specific Helpers for Kalamar |
Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 148 | 'KalamarErrors', # Specific Errors for Kalamar |
| 149 | 'KalamarUser', # Specific Helpers for Kalamar Users |
Akron | 429aeda | 2018-03-19 16:02:29 +0100 | [diff] [blame] | 150 | 'ClientIP', # Get client IP from X-Forwarded-For |
Akron | 51757cb | 2018-05-16 13:10:08 +0200 | [diff] [blame] | 151 | 'ClosedRedirect', # Redirect with OpenRedirect protection |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 152 | 'TagHelpers::ContentBlock', # Flexible content blocks |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 153 | ) { |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 154 | $self->plugin($_); |
| 155 | }; |
| 156 | |
Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 157 | # Global caching mechanism |
| 158 | $self->plugin('CHI' => { |
| 159 | default => { |
| 160 | driver => 'Memory', |
| 161 | global => 1 |
| 162 | }, |
| 163 | user => { |
| 164 | driver => 'Memory', |
| 165 | global => 1 |
| 166 | } |
| 167 | }); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 168 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 169 | # Configure mail exception |
Akron | 40cc1d8 | 2017-05-10 17:58:16 +0200 | [diff] [blame] | 170 | if ($self->config('MailException')) { |
| 171 | $self->plugin('MailException' => $self->config('MailException')); |
| 172 | }; |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 173 | |
Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame^] | 174 | # Load further plugins |
| 175 | if (exists $conf->{'plugins'}) { |
| 176 | foreach (@{$conf->{'plugins'}}) { |
| 177 | $self->plugin('Kalamar::Plugin::' . $_); |
| 178 | }; |
| 179 | }; |
| 180 | |
| 181 | # Deprecated Legacy code - |
| 182 | # TODO: Remove 2019-02 |
| 183 | if ($self->config('Piwik') && |
| 184 | none { $_ eq 'Piwik' } @{$conf->{plugins} // []}) { |
| 185 | use Data::Dumper; |
| 186 | warn Dumper $self->config('Piwik'); |
| 187 | $self->log->error('Piwik is no longer considered a mandatory plugin'); |
| 188 | $self->plugin('Piwik'); |
| 189 | }; |
| 190 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 191 | # Configure documentation navigation |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 192 | my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp; |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 193 | $self->config(navi => decode_json($navi)) if $navi; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 194 | |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 195 | $self->log->info('API expected at ' . $self->config->{Kalamar}->{api}); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 196 | |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 197 | # Establish routes with authentification |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 198 | my $r = $self->routes; |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 199 | |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 200 | # Check for auth support |
| 201 | $self->defaults( |
| 202 | auth_support => $self->config('Kalamar')->{auth_support} |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 203 | ); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 204 | |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 205 | # Support auth |
| 206 | if ($self->stash('auth_support')) { |
| 207 | $r = $r->under( |
| 208 | '/' => sub { |
| 209 | my $c = shift; |
| 210 | |
| 211 | if ($c->session('auth')) { |
| 212 | $c->stash(auth => $c->session('auth')); |
| 213 | $c->stash(user => $c->session('user')); |
| 214 | }; |
| 215 | return 1; |
| 216 | } |
| 217 | ); |
| 218 | }; |
| 219 | |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 220 | # Set footer value |
Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 221 | $self->content_block(footer => { |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 222 | inline => '<%= doc_link_to "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>', |
| 223 | position => 100 |
Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 224 | }); |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 225 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 226 | # Base query route |
Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 227 | $r->get('/')->to('search#query')->name('index'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 228 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 229 | # Documentation routes |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 230 | $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 231 | $r->get('/doc/:page')->to('documentation#page', scope => undef); |
| 232 | $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 233 | |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 234 | # Contact route |
| 235 | $r->get('/contact')->to('documentation#contact'); |
| 236 | $r->get('/contact')->mail_to_chiffre('documentation#contact'); |
| 237 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 238 | # Match route |
Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 239 | # Corpus route |
Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 240 | my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus'); |
Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 241 | my $doc = $r->route('/corpus/:corpus_id/:doc_id'); |
Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 242 | my $text = $doc->get('/:text_id')->to('search#text_info')->name('text'); |
| 243 | my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match'); |
Akron | b80341d | 2018-10-15 19:46:23 +0200 | [diff] [blame] | 244 | |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 245 | # User Management |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 246 | my $user = $r->any('/user')->to(controller => 'User'); |
| 247 | $user->post('/login')->to(action => 'login')->name('login'); |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 248 | $user->get('/logout')->to(action => 'logout')->name('logout'); |
Akron | d7ed34b | 2018-10-22 18:42:28 +0200 | [diff] [blame] | 249 | # $r->any('/register')->to(action => 'register')->name('register'); |
| 250 | # $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten'); |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 251 | }; |
| 252 | |
| 253 | |
| 254 | 1; |
| 255 | |
| 256 | |
| 257 | __END__ |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 258 | |
| 259 | =pod |
| 260 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 261 | =encoding utf8 |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 262 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 263 | =head1 NAME |
| 264 | |
| 265 | Kalamar |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 266 | |
| 267 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 268 | =head1 DESCRIPTION |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 269 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 270 | L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface |
| 271 | frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>. |
| 272 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 273 | B<See the README for further information!> |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 274 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 275 | =head2 COPYRIGHT AND LICENSE |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 276 | |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame] | 277 | Copyright (C) 2015-2018, L<IDS Mannheim|http://www.ids-mannheim.de/> |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 278 | Author: L<Nils Diewald|http://nils-diewald.de/> |
| 279 | |
| 280 | Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> |
| 281 | Corpus Analysis Platform at the |
| 282 | L<Institute for the German Language (IDS)|http://ids-mannheim.de/>, |
| 283 | member of the |
| 284 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/> |
| 285 | and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project, |
| 286 | funded by the |
| 287 | L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>. |
| 288 | |
| 289 | Kalamar is free software published under the |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 290 | L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>. |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 291 | |
| 292 | =cut |