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