Skip to content

Commit

Permalink
lets just start calling Mojolicious a real-time web framework
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Sep 26, 2011
1 parent 4371068 commit 6fdaa63
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
This file documents the revision history for Perl extension Mojolicious.

1.99 2011-09-25 00:00:00
1.99 2011-09-26 00:00:00
- Deprecated direct hash access to the flash in
Mojolicious::Controller.
- Added EXPERIMENTAL group function to Mojolicious::Lite.
Expand Down
4 changes: 2 additions & 2 deletions README.pod
Expand Up @@ -15,8 +15,8 @@ art technology.

=item *

An amazing MVC web framework supporting a simplified single file mode through
L<Mojolicious::Lite>.
An amazing real-time web framework supporting a simplified single file mode
through L<Mojolicious::Lite>.

=over 2

Expand Down
5 changes: 3 additions & 2 deletions lib/Mojo.pm
Expand Up @@ -49,7 +49,7 @@ __END__
=head1 NAME
Mojo - The duct tape!
Mojo - Duct tape for the HTML5 web!
=head1 SYNOPSIS
Expand All @@ -75,7 +75,8 @@ Mojo - The duct tape!
=head1 DESCRIPTION
Mojo provides a flexible runtime environment for Perl web frameworks.
Mojo provides a flexible runtime environment for Perl real-time web
frameworks.
It provides all the basic tools and helpers needed to write simple web
applications and higher level web frameworks such as L<Mojolicious>.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -237,7 +237,7 @@ __END__
=head1 NAME
Mojolicious - Duct tape for the HTML5 web!
Mojolicious - Real-Time Web Framework
=head1 SYNOPSIS
Expand Down
9 changes: 6 additions & 3 deletions lib/Mojolicious/Command/generate/app.pm
Expand Up @@ -108,16 +108,19 @@ sub welcome {
my $self = shift;
# Render template "example/welcome.html.ep" with message
$self->render(message => 'Welcome to the Mojolicious Web Framework!');
$self->render(
message => 'Welcome to the Mojolicious Real-Time Web Framework!');
}
1;
@@ static
<!doctype html><html>
<head><title>Welcome to the Mojolicious Web Framework!</title></head>
<head>
<title>Welcome to the Mojolicious Real-Time Web Framework!</title>
</head>
<body>
<h2>Welcome to the Mojolicious Web Framework!</h2>
<h2>Welcome to the Mojolicious Real-Time Web Framework!</h2>
This is the static document "public/index.html",
<a href="/welcome">click here</a> to get back to the start.
</body>
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Guides/CodingGuidelines.pod
Expand Up @@ -12,7 +12,7 @@ Please do not send patches unless you agree with them.

=head1 MISSION STATEMENT

L<Mojo> is a runtime environment for Perl web frameworks.
L<Mojo> is a runtime environment for Perl real-time web frameworks.
It provides all the basic tools and helpers needed to write simple web
applications and higher level web frameworks such as L<Mojolicious>.

Expand Down
5 changes: 3 additions & 2 deletions lib/Mojolicious/Lite.pm
Expand Up @@ -73,7 +73,7 @@ __END__
=head1 NAME
Mojolicious::Lite - Micro Web Framework
Mojolicious::Lite - Micro Real-Time Web Framework
=head1 SYNOPSIS
Expand All @@ -92,7 +92,8 @@ Mojolicious::Lite - Micro Web Framework
=head1 DESCRIPTION
L<Mojolicious::Lite> is a micro web framework built around L<Mojolicious>.
L<Mojolicious::Lite> is a micro real-time web framework built around
L<Mojolicious>.
=head1 TUTORIAL
Expand Down

0 comments on commit 6fdaa63

Please sign in to comment.