| 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 | 864c293 | 2018-11-16 17:18:55 +0100 | [diff] [blame] | 7 | use Mojo::Util qw/url_escape deprecated/; | 
| 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 | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 11 | our $VERSION = '0.35'; | 
| 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 | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 61 |   # Get configuration | 
| Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 62 |   my $conf = $self->config('Kalamar'); | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 63 |   unless ($conf) { | 
 | 64 |     $self->config(Kalamar => {}); | 
 | 65 |     $conf = $self->config('Kalamar'); | 
 | 66 |   }; | 
 | 67 |  | 
 | 68 |   # Check for API endpoint and set the endpoint accordingly | 
 | 69 |   if ($conf->{api}) { | 
 | 70 |  | 
 | 71 |     # The api endpoint should be defined as a separated path | 
 | 72 |     # and version string | 
 | 73 |     $self->log->warn( | 
 | 74 |       'Kalamar.api is no longer supported in configurations '. | 
 | 75 |         'in favor of Kalamar.api_path' | 
 | 76 |       ); | 
 | 77 |   }; | 
 | 78 |  | 
 | 79 |   unless ($conf->{api_path} || $ENV{KALAMAR_API}) { | 
 | 80 |     $self->log->warn('Kalamar-api_path not defined in configuration'); | 
 | 81 |   }; | 
 | 82 |  | 
 | 83 |   if ($conf->{proxy_prefix}) { | 
| Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 84 |  | 
| Akron | f3d856c | 2017-06-21 17:07:40 +0200 | [diff] [blame] | 85 |     for ($self->sessions) { | 
| Akron | 1a39472 | 2017-06-21 16:25:30 +0200 | [diff] [blame] | 86 |       $_->cookie_path($conf->{proxy_prefix}); | 
 | 87 |       $_->cookie_name('kalamar'); | 
 | 88 |       $_->secure(1); | 
 | 89 |     }; | 
 | 90 |  | 
| Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 91 |     # Set prefix in stash | 
 | 92 |     $self->defaults(prefix => $conf->{proxy_prefix}); | 
 | 93 |  | 
 | 94 |     # Create base path | 
 | 95 |     $self->hook( | 
 | 96 |       before_dispatch => sub { | 
 | 97 |         shift->req->url->base->path($conf->{proxy_prefix} . '/'); | 
 | 98 |       }); | 
 | 99 |   }; | 
 | 100 |  | 
| Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 101 |   # API is not yet set - define | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 102 |   $conf->{api_path} //= $ENV{KALAMAR_API}; | 
 | 103 |   $conf->{api_version} //= $API_VERSION; | 
| Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 104 |  | 
| Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 105 |   # Add development path | 
| Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 106 |   if ($self->mode eq 'development') { | 
| Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 107 |     push @{$self->static->paths}, 'dev'; | 
| Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 108 |   }; | 
 | 109 |  | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 110 |   # Client notifications | 
| Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 111 |   $self->plugin(Notifications => { | 
 | 112 |     'Kalamar::Plugin::Notifications' => 1, | 
| Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 113 |     JSON => 1, | 
 | 114 |     'HTML' => 1 | 
| Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 115 |   }); | 
 | 116 |  | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 117 |   # Localization framework | 
 | 118 |   $self->plugin(Localize => { | 
| Akron | dbb448c | 2018-02-14 17:02:36 +0100 | [diff] [blame] | 119 |     dict => { | 
 | 120 |       Q => { | 
 | 121 |         _ => sub { shift->config('Kalamar')->{'examplecorpus'} }, | 
 | 122 |       } | 
 | 123 |     }, | 
| Akron | a7cfd90 | 2017-12-21 19:28:36 +0100 | [diff] [blame] | 124 |     resources => ['kalamar.dict', 'kalamar.queries.dict'] | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 125 |   }); | 
 | 126 |  | 
 | 127 |   # Pagination widget | 
 | 128 |   $self->plugin('TagHelpers::Pagination' => { | 
 | 129 |     prev      => '<span><span><</span></span>', | 
| Akron | 86e63a9 | 2019-02-27 17:35:04 +0100 | [diff] [blame] | 130 |     next      => '<span><span>></span></span>', | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 131 |     ellipsis  => '<a class="ellipsis"><span><span>...</span></span></a>', | 
 | 132 |     separator => '', | 
 | 133 |     current   => '<span>{current}</span>', | 
 | 134 |     page      => '<span>{page}</span>' | 
 | 135 |   }); | 
 | 136 |  | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 137 |   # Load plugins | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 138 |   foreach ( | 
| Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 139 |     'TagHelpers::MailToChiffre', # Obfuscate email addresses | 
| Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 140 |     'KalamarHelpers',            # Specific Helpers for Kalamar | 
| Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 141 |     'KalamarErrors',             # Specific Errors for Kalamar | 
 | 142 |     'KalamarUser',               # Specific Helpers for Kalamar Users | 
| Akron | 429aeda | 2018-03-19 16:02:29 +0100 | [diff] [blame] | 143 |     'ClientIP',                  # Get client IP from X-Forwarded-For | 
| Akron | 51757cb | 2018-05-16 13:10:08 +0200 | [diff] [blame] | 144 |     'ClosedRedirect',            # Redirect with OpenRedirect protection | 
| Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 145 |     'TagHelpers::ContentBlock',  # Flexible content blocks | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 146 |   ) { | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 147 |     $self->plugin($_); | 
 | 148 |   }; | 
 | 149 |  | 
| Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 150 |   my $serializer = 'JSON'; | 
 | 151 |  | 
 | 152 |   if (my $chi = $self->config('CHI')) { | 
 | 153 |     if ($chi->{default}) { | 
 | 154 |       $chi->{default}->{serializer} = $serializer; | 
 | 155 |     }; | 
 | 156 |     if ($chi->{user}) { | 
 | 157 |       $chi->{user}->{serializer} = $serializer; | 
 | 158 |     }; | 
 | 159 |   }; | 
 | 160 |  | 
| Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 161 |   # Global caching mechanism | 
 | 162 |   $self->plugin('CHI' => { | 
 | 163 |     default => { | 
 | 164 |       driver => 'Memory', | 
| Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 165 |       global => 1, | 
 | 166 |       serializer => $serializer | 
| Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 167 |     }, | 
 | 168 |     user => { | 
 | 169 |       driver => 'Memory', | 
| Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 170 |       global => 1, | 
 | 171 |       serializer => $serializer | 
| Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 172 |     } | 
 | 173 |   }); | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 174 |  | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 175 |   # Configure mail exception | 
| Akron | 40cc1d8 | 2017-05-10 17:58:16 +0200 | [diff] [blame] | 176 |   if ($self->config('MailException')) { | 
 | 177 |     $self->plugin('MailException' => $self->config('MailException')); | 
 | 178 |   }; | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 179 |  | 
| Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 180 |   # Load further plugins | 
 | 181 |   if (exists $conf->{'plugins'}) { | 
 | 182 |     foreach (@{$conf->{'plugins'}}) { | 
 | 183 |       $self->plugin('Kalamar::Plugin::' . $_); | 
 | 184 |     }; | 
 | 185 |   }; | 
 | 186 |  | 
| Akron | 864c293 | 2018-11-16 17:18:55 +0100 | [diff] [blame] | 187 |   # Deprecated Legacy code | 
| Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 188 |   if ($self->config('Piwik') && | 
 | 189 |         none { $_ eq 'Piwik' } @{$conf->{plugins} // []}) { | 
| Akron | 864c293 | 2018-11-16 17:18:55 +0100 | [diff] [blame] | 190 |  | 
 | 191 |     # 2018-11-12 | 
 | 192 |     deprecated 'Piwik is no longer considered a mandatory plugin'; | 
 | 193 |     $self->plugin('Kalamar::Plugin::Piwik'); | 
 | 194 |   }; | 
 | 195 |  | 
 | 196 |   # Deprecated Legacy code | 
 | 197 |   if ($self->config('Kalamar')->{auth_support} && | 
 | 198 |         none { $_ eq 'Auth' } @{$conf->{plugins} // []}) { | 
 | 199 |  | 
 | 200 |     # 2018-11-16 | 
 | 201 |     deprecated 'auth_support configuration is deprecated in favor of Plugin loading'; | 
 | 202 |     $self->plugin('Kalamar::Plugin::Auth') | 
| Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 203 |   }; | 
 | 204 |  | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 205 |   # Configure documentation navigation | 
| Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 206 |   my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp; | 
| Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 207 |   $navi = $navi ? decode_json($navi) : []; | 
 | 208 |  | 
 | 209 |   if ($conf->{navi_ext}) { | 
 | 210 |     push @$navi, @{$conf->{navi_ext}}; | 
 | 211 |   }; | 
 | 212 |  | 
 | 213 |   $self->config(navi => $navi); | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 214 |  | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 215 |   $self->log->info('API expected at ' . $self->korap->api); | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 216 |  | 
| Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 217 |   # Establish routes with authentification | 
| Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 218 |   my $r = $self->routes; | 
| Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 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'); | 
| Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 231 |   $r->get('/doc/:page')->to('documentation#page')->name('doc1'); | 
 | 232 |   $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc2'); | 
| 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 |  | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 238 |   # API proxy route | 
| Akron | b7876a8 | 2019-07-18 13:09:00 +0200 | [diff] [blame] | 239 |   if ($conf->{experimental_proxy}) { | 
 | 240 |     $r->any('/api/v#apiv' => [apiv => ['1.0']])->to('Proxy#pass'); | 
 | 241 |     $r->any('/api/v#apiv/*path' => [apiv => ['1.0']])->to('Proxy#pass'); | 
 | 242 |   } | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 243 |  | 
| Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 244 |   # Match route | 
| Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 245 |   # Corpus route | 
| Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 246 |   my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus'); | 
| Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 247 |   my $doc    = $r->route('/corpus/:corpus_id/:doc_id'); | 
| Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 248 |   my $text   = $doc->get('/:text_id')->to('search#text_info')->name('text'); | 
 | 249 |   my $match  = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match'); | 
| Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 250 | }; | 
 | 251 |  | 
 | 252 |  | 
 | 253 | 1; | 
 | 254 |  | 
 | 255 |  | 
 | 256 | __END__ | 
| Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 257 |  | 
 | 258 | =pod | 
 | 259 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 260 | =encoding utf8 | 
| Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 261 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 262 | =head1 NAME | 
 | 263 |  | 
 | 264 | Kalamar | 
| Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 265 |  | 
 | 266 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 267 | =head1 DESCRIPTION | 
| Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 268 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 269 | L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface | 
 | 270 | frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>. | 
 | 271 |  | 
| Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 272 | B<See the README for further information!> | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 273 |  | 
| Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 274 | =head2 COPYRIGHT AND LICENSE | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 275 |  | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 276 | Copyright (C) 2015-2019, L<IDS Mannheim|http://www.ids-mannheim.de/> | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 277 | Author: L<Nils Diewald|http://nils-diewald.de/> | 
 | 278 |  | 
 | 279 | Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> | 
 | 280 | Corpus Analysis Platform at the | 
| Akron | a2d92de | 2019-02-27 15:51:07 +0100 | [diff] [blame] | 281 | L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>, | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 282 | member of the | 
 | 283 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/> | 
 | 284 | and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project, | 
 | 285 | funded by the | 
 | 286 | L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>. | 
 | 287 |  | 
 | 288 | Kalamar is free software published under the | 
| Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 289 | L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>. | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 290 |  | 
 | 291 | =cut |