Skip to content

Commit

Permalink
no need to mention HTTP version everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jul 27, 2012
1 parent dc9f883 commit aae26ef
Show file tree
Hide file tree
Showing 33 changed files with 72 additions and 72 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,4 +1,7 @@

3.15 2012-07-28
- Improved documentation.

3.14 2012-07-27
- Improved documentation.

Expand Down
2 changes: 1 addition & 1 deletion README.pod
Expand Up @@ -34,7 +34,7 @@ they are installed).

=item *

Full stack HTTP 1.1 and WebSocket client/server implementation with IPv6, TLS,
Full stack HTTP and WebSocket client/server implementation with IPv6, TLS,
IDNA, Comet (long polling), chunking and multipart support.

=item *
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo.pm
Expand Up @@ -126,8 +126,8 @@ The logging layer of your application, defaults to a L<Mojo::Log> object.
my $ua = $app->ua;
$app = $app->ua(Mojo::UserAgent->new);
A full featured HTTP 1.1 user agent for use in your applications, defaults to
a L<Mojo::UserAgent> object. Note that this user agent should not be used in
A full featured HTTP user agent for use in your applications, defaults to a
L<Mojo::UserAgent> object. Note that this user agent should not be used in
plugins, since non-blocking requests that are already in progress will
interfere with new blocking ones.
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Asset.pm
Expand Up @@ -21,15 +21,15 @@ sub slurp { croak 'Method "slurp" not implemented by subclass' }

=head1 NAME
Mojo::Asset - HTTP 1.1 content storage base class
Mojo::Asset - HTTP content storage base class
=head1 SYNOPSIS
use Mojo::Base 'Mojo::Asset';
=head1 DESCRIPTION
L<Mojo::Asset> is an abstract base class for HTTP 1.1 content storage.
L<Mojo::Asset> is an abstract base class for HTTP content storage.
=head1 ATTRIBUTES
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Asset/File.pm
Expand Up @@ -146,7 +146,7 @@ sub slurp {

=head1 NAME
Mojo::Asset::File - File storage for HTTP 1.1 content
Mojo::Asset::File - File storage for HTTP content
=head1 SYNOPSIS
Expand All @@ -165,7 +165,7 @@ Mojo::Asset::File - File storage for HTTP 1.1 content
=head1 DESCRIPTION
L<Mojo::Asset::File> is a file storage backend for HTTP 1.1 content.
L<Mojo::Asset::File> is a file storage backend for HTTP content.
=head1 ATTRIBUTES
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Asset/Memory.pm
Expand Up @@ -59,7 +59,7 @@ sub slurp { shift->{content} }

=head1 NAME
Mojo::Asset::Memory - In-memory storage for HTTP 1.1 content
Mojo::Asset::Memory - In-memory storage for HTTP content
=head1 SYNOPSIS
Expand All @@ -71,7 +71,7 @@ Mojo::Asset::Memory - In-memory storage for HTTP 1.1 content
=head1 DESCRIPTION
L<Mojo::Asset::Memory> is an in-memory storage backend for HTTP 1.1 content.
L<Mojo::Asset::Memory> is an in-memory storage backend for HTTP content.
=head1 EVENTS
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Content.pm
Expand Up @@ -335,16 +335,16 @@ sub _parse_headers {

=head1 NAME
Mojo::Content - HTTP 1.1 content base class
Mojo::Content - HTTP content base class
=head1 SYNOPSIS
use Mojo::Base 'Mojo::Content';
=head1 DESCRIPTION
L<Mojo::Content> is an abstract base class for HTTP 1.1 content as described
in RFC 2616.
L<Mojo::Content> is an abstract base class for HTTP content as described in
RFC 2616.
=head1 EVENTS
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Content/MultiPart.pm
Expand Up @@ -228,7 +228,7 @@ sub _parse_multipart_preamble {

=head1 NAME
Mojo::Content::MultiPart - HTTP 1.1 multipart content container
Mojo::Content::MultiPart - HTTP multipart content container
=head1 SYNOPSIS
Expand All @@ -240,7 +240,7 @@ Mojo::Content::MultiPart - HTTP 1.1 multipart content container
=head1 DESCRIPTION
L<Mojo::Content::MultiPart> is a container for HTTP 1.1 multipart content as
L<Mojo::Content::MultiPart> is a container for HTTP multipart content as
described in RFC 2616.
=head1 EVENTS
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Content/Single.pm
Expand Up @@ -66,7 +66,7 @@ sub parse {

=head1 NAME
Mojo::Content::Single - HTTP 1.1 content container
Mojo::Content::Single - HTTP content container
=head1 SYNOPSIS
Expand All @@ -78,8 +78,8 @@ Mojo::Content::Single - HTTP 1.1 content container
=head1 DESCRIPTION
L<Mojo::Content::Single> is a container for HTTP 1.1 content as described in
RFC 2616.
L<Mojo::Content::Single> is a container for HTTP content as described in RFC
2616.
=head1 EVENTS
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Cookie.pm
Expand Up @@ -53,15 +53,15 @@ sub _tokenize {

=head1 NAME
Mojo::Cookie - HTTP 1.1 cookie base class
Mojo::Cookie - HTTP cookie base class
=head1 SYNOPSIS
use Mojo::Base 'Mojo::Cookie';
=head1 DESCRIPTION
L<Mojo::Cookie> is an abstract base class for HTTP 1.1 cookies.
L<Mojo::Cookie> is an abstract base class for HTTP cookies.
=head1 ATTRIBUTES
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Cookie/Request.pm
Expand Up @@ -33,7 +33,7 @@ sub to_string {

=head1 NAME
Mojo::Cookie::Request - HTTP 1.1 request cookie container
Mojo::Cookie::Request - HTTP request cookie container
=head1 SYNOPSIS
Expand All @@ -46,7 +46,7 @@ Mojo::Cookie::Request - HTTP 1.1 request cookie container
=head1 DESCRIPTION
L<Mojo::Cookie::Request> is a container for HTTP 1.1 request cookies.
L<Mojo::Cookie::Request> is a container for HTTP request cookies.
=head1 ATTRIBUTES
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Cookie/Response.pm
Expand Up @@ -87,7 +87,7 @@ sub to_string {

=head1 NAME
Mojo::Cookie::Response - HTTP 1.1 response cookie container
Mojo::Cookie::Response - HTTP response cookie container
=head1 SYNOPSIS
Expand All @@ -100,7 +100,7 @@ Mojo::Cookie::Response - HTTP 1.1 response cookie container
=head1 DESCRIPTION
L<Mojo::Cookie::Response> is a container for HTTP 1.1 response cookies.
L<Mojo::Cookie::Response> is a container for HTTP response cookies.
=head1 ATTRIBUTES
Expand Down
7 changes: 3 additions & 4 deletions lib/Mojo/Date.pm
Expand Up @@ -70,7 +70,7 @@ sub to_string {

=head1 NAME
Mojo::Date - HTTP 1.1 date container
Mojo::Date - HTTP date container
=head1 SYNOPSIS
Expand All @@ -83,8 +83,7 @@ Mojo::Date - HTTP 1.1 date container
=head1 DESCRIPTION
L<Mojo::Date> implements HTTP 1.1 date and time functions according to RFC
2616.
L<Mojo::Date> implements HTTP date and time functions according to RFC 2616.
Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123
Sunday, 06-Nov-94 08:49:37 GMT ; RFC 850, obsoleted by RFC 1036
Expand Down Expand Up @@ -129,7 +128,7 @@ Parse date in one of the following formats.
my $string = $date->to_string;
my $string = "$date";
Render date suitable for HTTP 1.1 messages.
Render date suitable for HTTP messages.
=head1 SEE ALSO
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Headers.pm
Expand Up @@ -528,7 +528,7 @@ line values are disabled by default.
my $string = $headers->to_string;
Turn headers into a string, suitable for HTTP 1.1 messages.
Turn headers into a string, suitable for HTTP messages.
=head2 C<trailer>
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Message.pm
Expand Up @@ -416,16 +416,16 @@ sub _parse_start_line { }

=head1 NAME
Mojo::Message - HTTP 1.1 message base class
Mojo::Message - HTTP message base class
=head1 SYNOPSIS
use Mojo::Base 'Mojo::Message';
=head1 DESCRIPTION
L<Mojo::Message> is an abstract base class for HTTP 1.1 messages as described
in RFC 2616 and RFC 2388.
L<Mojo::Message> is an abstract base class for HTTP messages as described in
RFC 2616 and RFC 2388.
=head1 EVENTS
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Message/Request.pm
Expand Up @@ -279,7 +279,7 @@ sub _parse_start_line {

=head1 NAME
Mojo::Message::Request - HTTP 1.1 request container
Mojo::Message::Request - HTTP request container
=head1 SYNOPSIS
Expand All @@ -301,8 +301,8 @@ Mojo::Message::Request - HTTP 1.1 request container
=head1 DESCRIPTION
L<Mojo::Message::Request> is a container for HTTP 1.1 requests as described
in RFC 2616.
L<Mojo::Message::Request> is a container for HTTP requests as described in RFC
2616.
=head1 EVENTS
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Message/Response.pm
Expand Up @@ -132,7 +132,7 @@ sub _parse_start_line {

=head1 NAME
Mojo::Message::Response - HTTP 1.1 response container
Mojo::Message::Response - HTTP response container
=head1 SYNOPSIS
Expand All @@ -155,8 +155,8 @@ Mojo::Message::Response - HTTP 1.1 response container
=head1 DESCRIPTION
L<Mojo::Message::Response> is a container for HTTP 1.1 responses as described
in RFC 2616.
L<Mojo::Message::Response> is a container for HTTP responses as described in
RFC 2616.
=head1 EVENTS
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Server/Daemon.pm
Expand Up @@ -270,7 +270,7 @@ sub _write {

=head1 NAME
Mojo::Server::Daemon - Non-blocking I/O HTTP 1.1 and WebSocket server
Mojo::Server::Daemon - Non-blocking I/O HTTP and WebSocket server
=head1 SYNOPSIS
Expand All @@ -297,8 +297,8 @@ Mojo::Server::Daemon - Non-blocking I/O HTTP 1.1 and WebSocket server
=head1 DESCRIPTION
L<Mojo::Server::Daemon> is a full featured non-blocking I/O HTTP 1.1 and
WebSocket server with C<IPv6>, C<TLS> and C<libev> support.
L<Mojo::Server::Daemon> is a full featured non-blocking I/O HTTP and WebSocket
server with C<IPv6>, C<TLS> and C<libev> support.
Optional modules L<EV> (4.0+), L<IO::Socket::IP> (0.16+) and
L<IO::Socket::SSL> (1.75+) are supported transparently and used if installed.
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Server/Hypnotoad.pm
Expand Up @@ -365,9 +365,9 @@ Mojo::Server::Hypnotoad - ALL GLORY TO THE HYPNOTOAD!
=head1 DESCRIPTION
L<Mojo::Server::Hypnotoad> is a full featured UNIX optimized preforking
non-blocking I/O HTTP 1.1 and WebSocket server built around the very well
tested and reliable L<Mojo::Server::Daemon> with C<IPv6>, C<TLS>, C<libev> and
hot deployment support that just works.
non-blocking I/O HTTP and WebSocket server built around the very well tested
and reliable L<Mojo::Server::Daemon> with C<IPv6>, C<TLS>, C<libev> and hot
deployment support that just works.
To start applications with it you can use the L<hypnotoad> script.
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Server/Morbo.pm
Expand Up @@ -122,8 +122,8 @@ Mojo::Server::Morbo - DOOOOOOOOOOOOOOOOOOM!
=head1 DESCRIPTION
L<Mojo::Server::Morbo> is a full featured self-restart capable non-blocking
I/O HTTP 1.1 and WebSocket server built around the very well tested and
reliable L<Mojo::Server::Daemon> with C<IPv6>, C<TLS> and C<libev> support.
I/O HTTP and WebSocket server built around the very well tested and reliable
L<Mojo::Server::Daemon> with C<IPv6>, C<TLS> and C<libev> support.
To start applications with it you can use the L<morbo> script.
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Transaction.pm
Expand Up @@ -171,14 +171,14 @@ Remote interface port.
my $req = $tx->req;
$tx = $tx->req(Mojo::Message::Request->new);
HTTP 1.1 request, defaults to a L<Mojo::Message::Request> object.
HTTP request, defaults to a L<Mojo::Message::Request> object.
=head2 C<res>
my $res = $tx->res;
$tx = $tx->res(Mojo::Message::Response->new);
HTTP 1.1 response, defaults to a L<Mojo::Message::Response> object.
HTTP response, defaults to a L<Mojo::Message::Response> object.
=head1 METHODS
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Transaction/HTTP.pm
Expand Up @@ -249,7 +249,7 @@ sub _start_line {

=head1 NAME
Mojo::Transaction::HTTP - HTTP 1.1 transaction container
Mojo::Transaction::HTTP - HTTP transaction container
=head1 SYNOPSIS
Expand All @@ -275,7 +275,7 @@ Mojo::Transaction::HTTP - HTTP 1.1 transaction container
=head1 DESCRIPTION
L<Mojo::Transaction::HTTP> is a container for HTTP 1.1 transactions as
L<Mojo::Transaction::HTTP> is a container for HTTP transactions as
described in RFC 2616.
=head1 EVENTS
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/UserAgent.pm
Expand Up @@ -524,7 +524,7 @@ sub _write {
=head1 NAME
Mojo::UserAgent - Non-blocking I/O HTTP 1.1 and WebSocket user agent
Mojo::UserAgent - Non-blocking I/O HTTP and WebSocket user agent
=head1 SYNOPSIS
Expand Down Expand Up @@ -605,8 +605,8 @@ Mojo::UserAgent - Non-blocking I/O HTTP 1.1 and WebSocket user agent
=head1 DESCRIPTION
L<Mojo::UserAgent> is a full featured non-blocking I/O HTTP 1.1 and WebSocket
user agent with C<IPv6>, C<TLS> and C<libev> support.
L<Mojo::UserAgent> is a full featured non-blocking I/O HTTP and WebSocket user
agent with C<IPv6>, C<TLS> and C<libev> support.
Optional modules L<EV> (4.0+), L<IO::Socket::IP> (0.16+) and
L<IO::Socket::SSL> (1.75+) are supported transparently and used if installed.
Expand Down

0 comments on commit aae26ef

Please sign in to comment.