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