.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Mojolicious 3pm" .TH Mojolicious 3pm 2024-05-15 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Mojolicious \- Real\-time web framework .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 3 \& # Application \& package MyApp; \& use Mojo::Base \*(AqMojolicious\*(Aq, \-signatures; \& \& # Route \& sub startup ($self) { \& $self\->routes\->get(\*(Aq/hello\*(Aq)\->to(\*(Aqfoo#hello\*(Aq); \& } \& \& # Controller \& package MyApp::Controller::Foo; \& use Mojo::Base \*(AqMojolicious::Controller\*(Aq, \-signatures; \& \& # Action \& sub hello ($self) { \& $self\->render(text => \*(AqHello World!\*(Aq); \& } .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" An amazing real-time web framework built on top of the powerful Mojo web development toolkit. With support for RESTful routes, plugins, commands, Perl-ish templates, content negotiation, session management, form validation, testing framework, static file server, \f(CW\*(C`CGI\*(C'\fR/\f(CW\*(C`PSGI\*(C'\fR detection, first class Unicode support and much more for you to discover. .PP Take a look at our excellent documentation in Mojolicious::Guides! .SH HOOKS .IX Header "HOOKS" Mojolicious will emit the following hooks in the listed order. .SS before_command .IX Subsection "before_command" Emitted right before the application runs a command through the command line interface. .PP .Vb 1 \& $app\->hook(before_command => sub ($command, $args) {...}); .Ve .PP Useful for reconfiguring the application before running a command or to modify the behavior of a command. (Passed the command object and the command arguments) .SS before_server_start .IX Subsection "before_server_start" Emitted right before the application server is started, for web servers that support it, which includes all the built-in ones. .PP .Vb 1 \& $app\->hook(before_server_start => sub ($server, $app) {...}); .Ve .PP Useful for reconfiguring application servers dynamically or collecting server diagnostics information. (Passed the server and application objects) .SS after_build_tx .IX Subsection "after_build_tx" Emitted right after the transaction is built and before the HTTP request gets parsed. .PP .Vb 1 \& $app\->hook(after_build_tx => sub ($tx, $app) {...}); .Ve .PP This is a very powerful hook and should not be used lightly, it makes some rather advanced features such as upload progress bars possible. Note that this hook will not work for embedded applications, because only the host application gets to build transactions. (Passed the transaction and application objects) .SS around_dispatch .IX Subsection "around_dispatch" Emitted right after a new request has been received and wraps around the whole dispatch process, so you have to manually forward to the next hook if you want to continue the chain. Default exception handling with "reply\->exception" in Mojolicious::Plugin::DefaultHelpers is the first hook in the chain and a call to "dispatch" the last, yours will be in between. .PP .Vb 5 \& $app\->hook(around_dispatch => sub ($next, $c) { \& ... \& $next\->(); \& ... \& }); .Ve .PP This is a very powerful hook and should not be used lightly, it allows you to, for example, customize application-wide exception handling, consider it the sledgehammer in your toolbox. (Passed a callback leading to the next hook and the default controller object) .SS before_dispatch .IX Subsection "before_dispatch" Emitted right before the static file server and router start their work. .PP .Vb 1 \& $app\->hook(before_dispatch => sub ($c) {...}); .Ve .PP Very useful for rewriting incoming requests and other preprocessing tasks. (Passed the default controller object) .SS after_static .IX Subsection "after_static" Emitted after a static file response has been generated by the static file server. .PP .Vb 1 \& $app\->hook(after_static => sub ($c) {...}); .Ve .PP Mostly used for post-processing static file responses. (Passed the default controller object) .SS before_routes .IX Subsection "before_routes" Emitted after the static file server determined if a static file should be served and before the router starts its work. .PP .Vb 1 \& $app\->hook(before_routes => sub ($c) {...}); .Ve .PP Mostly used for custom dispatchers and collecting metrics. (Passed the default controller object) .SS around_action .IX Subsection "around_action" Emitted right before an action gets executed and wraps around it, so you have to manually forward to the next hook if you want to continue the chain. Default action dispatching is the last hook in the chain, yours will run before it. .PP .Vb 4 \& $app\->hook(around_action => sub ($next, $c, $action, $last) { \& ... \& return $next\->(); \& }); .Ve .PP This is a very powerful hook and should not be used lightly, it allows you for example to pass additional arguments to actions or handle return values differently. Note that this hook can trigger more than once for the same request if there are nested routes. (Passed a callback leading to the next hook, the current controller object, the action callback and a flag indicating if this action is an endpoint) .SS before_render .IX Subsection "before_render" Emitted before content is generated by the renderer. Note that this hook can trigger out of order due to its dynamic nature, and with embedded applications will only work for the application that is rendering. .PP .Vb 1 \& $app\->hook(before_render => sub ($c, $args) {...}); .Ve .PP Mostly used for pre-processing arguments passed to the renderer. (Passed the current controller object and the render arguments) .SS after_render .IX Subsection "after_render" Emitted after content has been generated by the renderer that will be assigned to the response. Note that this hook can trigger out of order due to its dynamic nature, and with embedded applications will only work for the application that is rendering. .PP .Vb 1 \& $app\->hook(after_render => sub ($c, $output, $format) {...}); .Ve .PP Mostly used for post-processing dynamically generated content. (Passed the current controller object, a reference to the content and the format) .SS after_dispatch .IX Subsection "after_dispatch" Emitted in reverse order after a response has been generated. Note that this hook can trigger out of order due to its dynamic nature, and with embedded applications will only work for the application that is generating the response. .PP .Vb 1 \& $app\->hook(after_dispatch => sub ($c) {...}); .Ve .PP Useful for rewriting outgoing responses and other post-processing tasks. (Passed the current controller object) .SH ATTRIBUTES .IX Header "ATTRIBUTES" Mojolicious implements the following attributes. .SS commands .IX Subsection "commands" .Vb 2 \& my $commands = $app\->commands; \& $app = $app\->commands(Mojolicious::Commands\->new); .Ve .PP Command line interface for your application, defaults to a Mojolicious::Commands object. .PP .Vb 2 \& # Add another namespace to load commands from \& push @{$app\->commands\->namespaces}, \*(AqMyApp::Command\*(Aq; .Ve .SS controller_class .IX Subsection "controller_class" .Vb 2 \& my $class = $app\->controller_class; \& $app = $app\->controller_class(\*(AqMojolicious::Controller\*(Aq); .Ve .PP Class to be used for the default controller, defaults to Mojolicious::Controller. Note that this class needs to have already been loaded before the first request arrives. .SS exception_format .IX Subsection "exception_format" .Vb 2 \& my $format = $app\->exception_format; \& $app = $app\->exception_format(\*(Aqtxt\*(Aq); .Ve .PP Format for HTTP exceptions (\f(CW\*(C`html\*(C'\fR, \f(CW\*(C`json\*(C'\fR, or \f(CW\*(C`txt\*(C'\fR), defaults to \f(CW\*(C`html\*(C'\fR. .SS home .IX Subsection "home" .Vb 2 \& my $home = $app\->home; \& $app = $app\->home(Mojo::Home\->new); .Ve .PP The home directory of your application, defaults to a Mojo::Home object which stringifies to the actual path. .PP .Vb 2 \& # Portably generate path relative to home directory \& my $path = $app\->home\->child(\*(Aqdata\*(Aq, \*(Aqimportant.txt\*(Aq); .Ve .SS log .IX Subsection "log" .Vb 2 \& my $log = $app\->log; \& $app = $app\->log(Mojo::Log\->new); .Ve .PP The logging layer of your application, defaults to a Mojo::Log object. The level will default to either the \&\f(CW\*(C`MOJO_LOG_LEVEL\*(C'\fR environment variable, \f(CW\*(C`trace\*(C'\fR if the "mode" is \f(CW\*(C`development\*(C'\fR, or \f(CW\*(C`info\*(C'\fR otherwise. All messages will be written to \f(CW\*(C`STDERR\*(C'\fR by default. .PP .Vb 2 \& # Log debug message \& $app\->log\->debug(\*(AqIt works\*(Aq); .Ve .SS max_request_size .IX Subsection "max_request_size" .Vb 2 \& my $max = $app\->max_request_size; \& $app = $app\->max_request_size(16777216); .Ve .PP Maximum request size in bytes, defaults to the value of "max_message_size" in Mojo::Message. Setting the value to \f(CW0\fR will allow requests of indefinite size. Note that increasing this value can also drastically increase memory usage, should you for example attempt to parse an excessively large request body with the methods "dom" in Mojo::Message or "json" in Mojo::Message. .SS mode .IX Subsection "mode" .Vb 2 \& my $mode = $app\->mode; \& $app = $app\->mode(\*(Aqproduction\*(Aq); .Ve .PP The operating mode for your application, defaults to a value from the \f(CW\*(C`MOJO_MODE\*(C'\fR and \f(CW\*(C`PLACK_ENV\*(C'\fR environment variables or \f(CW\*(C`development\*(C'\fR. .SS moniker .IX Subsection "moniker" .Vb 2 \& my $moniker = $app\->moniker; \& $app = $app\->moniker(\*(Aqfoo_bar\*(Aq); .Ve .PP Moniker of this application, often used as default filename for configuration files and the like, defaults to decamelizing the application class with "decamelize" in Mojo::Util. .SS plugins .IX Subsection "plugins" .Vb 2 \& my $plugins = $app\->plugins; \& $app = $app\->plugins(Mojolicious::Plugins\->new); .Ve .PP The plugin manager, defaults to a Mojolicious::Plugins object. See the "plugin" method below if you want to load a plugin. .PP .Vb 2 \& # Add another namespace to load plugins from \& push @{$app\->plugins\->namespaces}, \*(AqMyApp::Plugin\*(Aq; .Ve .SS preload_namespaces .IX Subsection "preload_namespaces" .Vb 2 \& my $namespaces = $app\->preload_namespaces; \& $app = $app\->preload_namespaces([\*(AqMyApp::Controller\*(Aq]); .Ve .PP Namespaces to preload classes from during application startup. .SS renderer .IX Subsection "renderer" .Vb 2 \& my $renderer = $app\->renderer; \& $app = $app\->renderer(Mojolicious::Renderer\->new); .Ve .PP Used to render content, defaults to a Mojolicious::Renderer object. For more information about how to generate content see Mojolicious::Guides::Rendering. .PP .Vb 2 \& # Enable compression \& $app\->renderer\->compress(1); \& \& # Add another "templates" directory \& push @{$app\->renderer\->paths}, \*(Aq/home/sri/templates\*(Aq; \& \& # Add another "templates" directory with higher precedence \& unshift @{$app\->renderer\->paths}, \*(Aq/home/sri/themes/blue/templates\*(Aq; \& \& # Add another class with templates in DATA section \& push @{$app\->renderer\->classes}, \*(AqMojolicious::Plugin::Fun\*(Aq; .Ve .SS routes .IX Subsection "routes" .Vb 2 \& my $routes = $app\->routes; \& $app = $app\->routes(Mojolicious::Routes\->new); .Ve .PP The router, defaults to a Mojolicious::Routes object. You use this in your startup method to define the url endpoints for your application. .PP .Vb 4 \& # Add routes \& my $r = $app\->routes; \& $r\->get(\*(Aq/foo/bar\*(Aq)\->to(\*(Aqtest#foo\*(Aq, title => \*(AqHello Mojo!\*(Aq); \& $r\->post(\*(Aq/baz\*(Aq)\->to(\*(Aqtest#baz\*(Aq); \& \& # Add another namespace to load controllers from \& push @{$app\->routes\->namespaces}, \*(AqMyApp::MyController\*(Aq; .Ve .SS secrets .IX Subsection "secrets" .Vb 2 \& my $secrets = $app\->secrets; \& $app = $app\->secrets([$bytes]); .Ve .PP Secret passphrases used for signed cookies and the like, defaults to the "moniker" of this application, which is not very secure, so you should change it!!! As long as you are using the insecure default there will be debug messages in the log file reminding you to change your passphrase. Only the first passphrase is used to create new signatures, but all of them for verification. So you can increase security without invalidating all your existing signed cookies by rotating passphrases, just add new ones to the front and remove old ones from the back. .PP .Vb 2 \& # Rotate passphrases \& $app\->secrets([\*(Aqnew_passw0rd\*(Aq, \*(Aqold_passw0rd\*(Aq, \*(Aqvery_old_passw0rd\*(Aq]); .Ve .SS sessions .IX Subsection "sessions" .Vb 2 \& my $sessions = $app\->sessions; \& $app = $app\->sessions(Mojolicious::Sessions\->new); .Ve .PP Signed cookie based session manager, defaults to a Mojolicious::Sessions object. You can usually leave this alone, see "session" in Mojolicious::Controller for more information about working with session data. .PP .Vb 2 \& # Change name of cookie used for all sessions \& $app\->sessions\->cookie_name(\*(Aqmysession\*(Aq); \& \& # Disable SameSite feature \& $app\->sessions\->samesite(undef); .Ve .SS static .IX Subsection "static" .Vb 2 \& my $static = $app\->static; \& $app = $app\->static(Mojolicious::Static\->new); .Ve .PP For serving static files from your \f(CW\*(C`public\*(C'\fR directories, defaults to a Mojolicious::Static object. .PP .Vb 2 \& # Serve static files only with a "/static" prefix \& $app\->static\->prefix(\*(Aq/static\*(Aq); \& \& # Add another "public" directory \& push @{$app\->static\->paths}, \*(Aq/home/sri/public\*(Aq; \& \& # Add another "public" directory with higher precedence \& unshift @{$app\->static\->paths}, \*(Aq/home/sri/themes/blue/public\*(Aq; \& \& # Add another class with static files in DATA section \& push @{$app\->static\->classes}, \*(AqMojolicious::Plugin::Fun\*(Aq; \& \& # Remove built\-in favicon \& delete $app\->static\->extra\->{\*(Aqfavicon.ico\*(Aq}; .Ve .SS types .IX Subsection "types" .Vb 2 \& my $types = $app\->types; \& $app = $app\->types(Mojolicious::Types\->new); .Ve .PP Responsible for connecting file extensions with MIME types, defaults to a Mojolicious::Types object. .PP .Vb 2 \& # Add custom MIME type \& $app\->types\->type(twt => \*(Aqtext/tweet\*(Aq); .Ve .SS ua .IX Subsection "ua" .Vb 2 \& my $ua = $app\->ua; \& $app = $app\->ua(Mojo::UserAgent\->new); .Ve .PP A full featured HTTP user agent for use in your applications, defaults to a Mojo::UserAgent object. .PP .Vb 2 \& # Perform blocking request \& say $app\->ua\->get(\*(Aqexample.com\*(Aq)\->result\->body; .Ve .SS validator .IX Subsection "validator" .Vb 2 \& my $validator = $app\->validator; \& $app = $app\->validator(Mojolicious::Validator\->new); .Ve .PP Validate values, defaults to a Mojolicious::Validator object. .PP .Vb 4 \& # Add validation check \& $app\->validator\->add_check(foo => sub ($v, $name, $value) { \& return $value ne \*(Aqfoo\*(Aq; \& }); \& \& # Add validation filter \& $app\->validator\->add_filter(quotemeta => sub ($v, $name, $value) { \& return quotemeta $value; \& }); .Ve .SH METHODS .IX Header "METHODS" Mojolicious inherits all methods from Mojo::Base and implements the following new ones. .SS build_controller .IX Subsection "build_controller" .Vb 3 \& my $c = $app\->build_controller; \& my $c = $app\->build_controller(Mojo::Transaction::HTTP\->new); \& my $c = $app\->build_controller(Mojolicious::Controller\->new); .Ve .PP Build default controller object with "controller_class". .PP .Vb 2 \& # Render template from application \& my $foo = $app\->build_controller\->render_to_string(template => \*(Aqfoo\*(Aq); .Ve .SS build_tx .IX Subsection "build_tx" .Vb 1 \& my $tx = $app\->build_tx; .Ve .PP Build Mojo::Transaction::HTTP object and emit "after_build_tx" hook. .SS config .IX Subsection "config" .Vb 4 \& my $hash = $app\->config; \& my $foo = $app\->config(\*(Aqfoo\*(Aq); \& $app = $app\->config({foo => \*(Aqbar\*(Aq, baz => 23}); \& $app = $app\->config(foo => \*(Aqbar\*(Aq, baz => 23); .Ve .PP Application configuration. .PP .Vb 2 \& # Remove value \& my $foo = delete $app\->config\->{foo}; \& \& # Assign multiple values at once \& $app\->config(foo => \*(Aqtest\*(Aq, bar => 23); .Ve .SS defaults .IX Subsection "defaults" .Vb 4 \& my $hash = $app\->defaults; \& my $foo = $app\->defaults(\*(Aqfoo\*(Aq); \& $app = $app\->defaults({foo => \*(Aqbar\*(Aq, baz => 23}); \& $app = $app\->defaults(foo => \*(Aqbar\*(Aq, baz => 23); .Ve .PP Default values for "stash" in Mojolicious::Controller, assigned for every new request. .PP .Vb 2 \& # Remove value \& my $foo = delete $app\->defaults\->{foo}; \& \& # Assign multiple values at once \& $app\->defaults(foo => \*(Aqtest\*(Aq, bar => 23); .Ve .SS dispatch .IX Subsection "dispatch" .Vb 1 \& $app\->dispatch(Mojolicious::Controller\->new); .Ve .PP The heart of every Mojolicious application, calls the "static" and "routes" dispatchers for every request and passes them a Mojolicious::Controller object. .SS handler .IX Subsection "handler" .Vb 2 \& $app\->handler(Mojo::Transaction::HTTP\->new); \& $app\->handler(Mojolicious::Controller\->new); .Ve .PP Sets up the default controller and emits the "around_dispatch" hook for every request. .SS helper .IX Subsection "helper" .Vb 1 \& $app\->helper(foo => sub {...}); .Ve .PP Add or replace a helper that will be available as a method of the controller object and the application object, as well as a function in \f(CW\*(C`ep\*(C'\fR templates. For a full list of helpers that are available by default see Mojolicious::Plugin::DefaultHelpers and Mojolicious::Plugin::TagHelpers. .PP .Vb 2 \& # Helper \& $app\->helper(cache => sub { state $cache = {} }); \& \& # Application \& $app\->cache\->{foo} = \*(Aqbar\*(Aq; \& my $result = $app\->cache\->{foo}; \& \& # Controller \& $c\->cache\->{foo} = \*(Aqbar\*(Aq; \& my $result = $c\->cache\->{foo}; \& \& # Template \& % cache\->{foo} = \*(Aqbar\*(Aq; \& %= cache\->{foo} .Ve .SS hook .IX Subsection "hook" .Vb 1 \& $app\->hook(after_dispatch => sub {...}); .Ve .PP Extend Mojolicious with hooks, which allow code to be shared with all requests indiscriminately, for a full list of available hooks see "HOOKS". .PP .Vb 5 \& # Dispatchers will not run if there\*(Aqs already a response code defined \& $app\->hook(before_dispatch => sub ($c) { \& $c\->render(text => \*(AqSkipped static file server and router!\*(Aq) \& if $c\->req\->url\->path\->to_route =~ /do_not_dispatch/; \& }); .Ve .SS new .IX Subsection "new" .Vb 3 \& my $app = Mojolicious\->new; \& my $app = Mojolicious\->new(moniker => \*(Aqfoo_bar\*(Aq); \& my $app = Mojolicious\->new({moniker => \*(Aqfoo_bar\*(Aq}); .Ve .PP Construct a new Mojolicious application and call "startup". Will automatically detect your home directory. Also sets up the renderer, static file server, a default set of plugins and an "around_dispatch" hook with the default exception handling. .SS plugin .IX Subsection "plugin" .Vb 9 \& $app\->plugin(\*(Aqsome_thing\*(Aq); \& $app\->plugin(\*(Aqsome_thing\*(Aq, foo => 23); \& $app\->plugin(\*(Aqsome_thing\*(Aq, {foo => 23}); \& $app\->plugin(\*(AqSomeThing\*(Aq); \& $app\->plugin(\*(AqSomeThing\*(Aq, foo => 23); \& $app\->plugin(\*(AqSomeThing\*(Aq, {foo => 23}); \& $app\->plugin(\*(AqMyApp::Plugin::SomeThing\*(Aq); \& $app\->plugin(\*(AqMyApp::Plugin::SomeThing\*(Aq, foo => 23); \& $app\->plugin(\*(AqMyApp::Plugin::SomeThing\*(Aq, {foo => 23}); .Ve .PP Load a plugin, for a full list of example plugins included in the Mojolicious distribution see "PLUGINS" in Mojolicious::Plugins. .SS server .IX Subsection "server" .Vb 1 \& $app\->server(Mojo::Server\->new); .Ve .PP Emits the "before_server_start" hook. .SS start .IX Subsection "start" .Vb 2 \& $app\->start; \& $app\->start(@ARGV); .Ve .PP Start the command line interface for your application. For a full list of commands that are available by default see "COMMANDS" in Mojolicious::Commands. Note that the options \f(CW\*(C`\-h\*(C'\fR/\f(CW\*(C`\-\-help\*(C'\fR, \f(CW\*(C`\-\-home\*(C'\fR and \f(CW\*(C`\-m\*(C'\fR/\f(CW\*(C`\-\-mode\*(C'\fR, which are shared by all commands, will be parsed from \f(CW@ARGV\fR during compile time. .PP .Vb 2 \& # Always start daemon \& $app\->start(\*(Aqdaemon\*(Aq, \*(Aq\-l\*(Aq, \*(Aqhttp://*:8080\*(Aq); .Ve .SS startup .IX Subsection "startup" .Vb 1 \& $app\->startup; .Ve .PP This is your main hook into the application, it will be called at application startup. Meant to be overloaded in a subclass. .PP .Vb 1 \& sub startup ($self) {...} .Ve .SS warmup .IX Subsection "warmup" .Vb 1 \& $app\->warmup; .Ve .PP Preload classes from "preload_namespaces" for future use. .SH HELPERS .IX Header "HELPERS" In addition to the "ATTRIBUTES" and "METHODS" above you can also call helpers on Mojolicious objects. This includes all helpers from Mojolicious::Plugin::DefaultHelpers and Mojolicious::Plugin::TagHelpers. Note that application helpers are always called with a new default controller object, so they can't depend on or change controller state, which includes request, response and stash. .PP .Vb 2 \& # Call helper \& say $app\->dumper({foo => \*(Aqbar\*(Aq}); \& \& # Longer version \& say $app\->build_controller\->helpers\->dumper({foo => \*(Aqbar\*(Aq}); .Ve .SH "BUNDLED FILES" .IX Header "BUNDLED FILES" The Mojolicious distribution includes a few files with different licenses that have been bundled for internal use. .SS "Mojolicious Artwork" .IX Subsection "Mojolicious Artwork" .Vb 1 \& Copyright (C) 2010\-2024, Sebastian Riedel. .Ve .PP Licensed under the CC-SA License, Version 4.0 . .SS highlight.js .IX Subsection "highlight.js" .Vb 1 \& Copyright (C) 2006, Ivan Sagalaev. .Ve .PP Licensed under the BSD License, . .SS Bootstrap .IX Subsection "Bootstrap" .Vb 2 \& Copyright 2011\-2020 The Bootstrap Authors. \& Copyright 2011\-2020 Twitter, Inc. .Ve .PP Licensed under the MIT License, . .SS "Font Awesome" .IX Subsection "Font Awesome" Licensed under the CC-BY License, Version 4.0 and SIL OFL, Version 1.1 . .SH "CODE NAMES" .IX Header "CODE NAMES" Every major release of Mojolicious has a code name, these are the ones that have been used in the past. .PP 9.0, \f(CW\*(C`Waffle\*(C'\fR (U+1F9C7) .PP 8.0, \f(CW\*(C`Supervillain\*(C'\fR (U+1F9B9) .PP 7.0, \f(CW\*(C`Doughnut\*(C'\fR (U+1F369) .PP 6.0, \f(CW\*(C`Clinking Beer Mugs\*(C'\fR (U+1F37B) .PP 5.0, \f(CW\*(C`Tiger Face\*(C'\fR (U+1F42F) .PP 4.0, \f(CW\*(C`Top Hat\*(C'\fR (U+1F3A9) .PP 3.0, \f(CW\*(C`Rainbow\*(C'\fR (U+1F308) .PP 2.0, \f(CW\*(C`Leaf Fluttering In Wind\*(C'\fR (U+1F343) .PP 1.0, \f(CW\*(C`Snowflake\*(C'\fR (U+2744) .SH SPONSORS .IX Header "SPONSORS" .IP \(bu 2 Stix sponsored the creation of the Mojolicious logo (designed by Nicolai Graesdal) and transferred its copyright to Sebastian Riedel. .IP \(bu 2 Some of the work on this distribution has been sponsored by The Perl Foundation . .SH AUTHORS .IX Header "AUTHORS" Mojolicious is an open source project that relies on the tireless support of its contributors. .SS "Project Founder" .IX Subsection "Project Founder" Sebastian Riedel, \f(CW\*(C`kraih@mojolicious.org\*(C'\fR .SS "Core Developers" .IX Subsection "Core Developers" Current voting members of the core team in alphabetical order: .Sp .RS 2 CandyAngel, \f(CW\*(C`candyangel@mojolicious.org\*(C'\fR .Sp Christopher Rasch-Olsen Raa, \f(CW\*(C`christopher@mojolicious.org\*(C'\fR .Sp Dan Book, \f(CW\*(C`grinnz@mojolicious.org\*(C'\fR .Sp Jan Henning Thorsen, \f(CW\*(C`batman@mojolicious.org\*(C'\fR .Sp Joel Berger, \f(CW\*(C`jberger@mojolicious.org\*(C'\fR .Sp Marcus Ramberg, \f(CW\*(C`marcus@mojolicious.org\*(C'\fR .RE .PP The following members of the core team are currently on hiatus: .Sp .RS 2 Abhijit Menon-Sen, \f(CW\*(C`ams@cpan.org\*(C'\fR .Sp Glen Hinkle, \f(CW\*(C`tempire@cpan.org\*(C'\fR .RE .SS Contributors .IX Subsection "Contributors" In alphabetical order: .Sp .RS 2 Adam Kennedy .Sp Adriano Ferreira .Sp Al Newkirk .Sp Alex Efros .Sp Alex Salimon .Sp Alexander Karelas .Sp Alexey Likhatskiy .Sp Anatoly Sharifulin .Sp Andre Parker .Sp Andre Vieth .Sp Andreas Guldstrand .Sp Andreas Jaekel .Sp Andreas Koenig .Sp Andrew Fresh .Sp Andrew Nugged .Sp Andrey Khozov .Sp Andrey Kuzmin .Sp Andy Grundman .Sp Andy Lester .Sp Aristotle Pagaltzis .Sp Ashley Dev .Sp Ask Bjoern Hansen .Sp Audrey Tang .Sp Ben Tyler .Sp Ben van Staveren .Sp Benjamin Erhart .Sp Bernhard Graf .Sp Breno G. de Oliveira .Sp Brian Duggan .Sp Brian Medley .Sp Burak Gursoy .Sp Ch Lamprecht .Sp Charlie Brady .Sp Chas. J. Owens IV .Sp Chase Whitener .Sp Chris Scheller .Sp Christian Hansen .Sp chromatic .Sp Curt Tilmes .Sp Daniel Kimsey .Sp Daniel Mantovani .Sp Danijel Tasov .Sp Dagfinn Ilmari Manns�ker .Sp Danny Thomas .Sp David Davis .Sp David Webb .Sp Diego Kuperman .Sp Dmitriy Shalashov .Sp Dmitry Konstantinov .Sp Dominik Jarmulowicz .Sp Dominique Dumont .Sp Dotan Dimet .Sp Douglas Christopher Wilson .Sp Elmar S. Heeb .Sp Ettore Di Giacinto .Sp Eugen Konkov .Sp Eugene Toropov .Sp Flavio Poletti .Sp Gisle Aas .Sp Graham Barr .Sp Graham Knop .Sp Heiko Jansen .Sp Henry Tang .Sp Hernan Lopes .Sp Hideki Yamamura .Sp Hiroki Toyokawa .Sp Ian Goodacre .Sp Ilya Chesnokov .Sp Ilya Rassadin .Sp James Duncan .Sp Jan Jona Javorsek .Sp Jan Schmidt .Sp Jaroslav Muhin .Sp Jesse Vincent .Sp Johannes Plunien .Sp John Kingsley .Sp Jonathan Yu .Sp Josh Leder .Sp Kamen Naydenov .Sp Karen Etheridge .Sp Kazuhiro Shibuya .Sp Kevin Old .Sp Kitamura Akatsuki .Sp Klaus S. Madsen .Sp Knut Arne Bjorndal .Sp Lars Balker Rasmussen .Sp Lee Johnson .Sp Leon Brocard .Sp Lukas Mai .Sp Magnus Holm .Sp Maik Fischer .Sp Mark Fowler .Sp Mark Grimes .Sp Mark Stosberg .Sp Martin McGrath .Sp Marty Tennison .Sp Matt S Trout .Sp Matthew Lineen .Sp Maksym Komar .Sp Maxim Vuets .Sp Michael Gregorowicz .Sp Michael Harris .Sp Michael Jemmeson .Sp Mike Magowan .Sp Mirko Westermeier .Sp Mons Anderson .Sp Moritz Lenz .Sp Neil Watkiss .Sp Nic Sandfield .Sp Nils Diewald .Sp Oleg Zhelo .Sp Oliver Kurz .Sp Olivier Mengue .Sp Pascal Gaudette .Sp Paul Evans .Sp Paul Robins .Sp Paul Tomlin .Sp Pavel Shaydo .Sp Pedro Melo .Sp Peter Edwards .Sp Pierre-Yves Ritschard .Sp Piotr Roszatycki .Sp Quentin Carbonneaux .Sp Rafal Pocztarski .Sp Randal Schwartz .Sp Rawley Fowler .Sp Richard Elberger .Sp Rick Delaney .Sp Robert Hicks .Sp Robert Rothenberg .Sp Robin Lee .Sp Roland Lammel .Sp Roy Storey .Sp Ryan Jendoubi .Sp Salvador Fandino .Sp Santiago Zarate .Sp Sascha Kiefer .Sp Scott Wiersdorf .Sp Sebastian Paaske Torholm .Sp Sergey Zasenko .Sp Simon Bertrang .Sp Simone Tampieri .Sp Shoichi Kaji .Sp Shu Cho .Sp Skye Shaw .Sp Stanis Trendelenburg .Sp Stefan Adams .Sp Steffen Ullrich .Sp Stephan Kulow .Sp Stephane Este-Gracias .Sp Stevan Little .Sp Steve Atkins .Sp Tatsuhiko Miyagawa .Sp Terrence Brannon .Sp Tianon Gravi .Sp Tomas Znamenacek .Sp Tudor Constantin .Sp Ulrich Habel .Sp Ulrich Kautz .Sp Uwe Voelker .Sp Veesh Goldman .Sp Viacheslav Tykhanovskyi .Sp Victor Engmark .Sp Viliam Pucik .Sp Wes Cravens .Sp William Lindley .Sp Yaroslav Korshak .Sp Yuki Kimoto .Sp Zak B. Elep .Sp Zoffix Znet .RE .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" Copyright (C) 2008\-2024, Sebastian Riedel and others. .PP This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0. .SH "SEE ALSO" .IX Header "SEE ALSO" , Mojolicious::Guides, .