Skip to content

Commit

Permalink
use mojolicious.org instead of mojolicio.us
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 3, 2016
1 parent 3699624 commit 99ad764
Show file tree
Hide file tree
Showing 131 changed files with 347 additions and 344 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
@@ -1 +1 @@
Please read the guide for [contributing to Mojolicious](http://mojolicio.us/perldoc/Mojolicious/Guides/Contributing).
Please read the guide for [contributing to Mojolicious](http://mojolicious.org/perldoc/Mojolicious/Guides/Contributing).
3 changes: 2 additions & 1 deletion Changes
@@ -1,5 +1,6 @@

6.39 2016-01-01
6.39 2016-01-03
- Updated links to Mojolicious website.
- Fixed small html_unescape bug in Mojo::Util.
- Fixed handling of invalid max age in Mojo::UserAgent::CookieJar.

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -22,7 +22,7 @@ WriteMakefile(
prereqs => {runtime => {requires => {perl => '5.010001'}}},
resources => {
bugtracker => {web => 'https://github.com/kraih/mojo/issues'},
homepage => 'http://mojolicio.us',
homepage => 'http://mojolicious.org',
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
repository => {
type => 'git',
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -74,7 +74,7 @@ use experimental 'signatures';
# Render template "index.html.ep" from the DATA section
get '/' => {template => 'index'};

# WebSocket service used by the template to extract the title from a web site
# WebSocket service used by the template to extract the title from a website
websocket '/title' => sub ($c) {
$c->on(message => sub ($c, $msg) {
my $title = $c->ua->get($msg)->res->dom->at('title')->text;
Expand All @@ -90,10 +90,10 @@ __DATA__
<script>
var ws = new WebSocket('<%= $url->to_abs %>');
ws.onmessage = function (event) { document.body.innerHTML += event.data };
ws.onopen = function (event) { ws.send('http://mojolicio.us') };
ws.onopen = function (event) { ws.send('http://mojolicious.org') };
</script>
```
## Want to know more?
Take a look at our excellent [documentation](http://mojolicio.us/perldoc>)!
Take a look at our excellent [documentation](http://mojolicious.org/perldoc>)!
2 changes: 1 addition & 1 deletion lib/Mojo.pm
Expand Up @@ -142,6 +142,6 @@ be overloaded in a subclass.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Asset.pm
Expand Up @@ -131,6 +131,6 @@ Read all asset data at once. Meant to be overloaded in a subclass.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Asset/File.pm
Expand Up @@ -252,6 +252,6 @@ Read all asset data at once.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Asset/Memory.pm
Expand Up @@ -168,6 +168,6 @@ Read all asset data at once.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Base.pm
Expand Up @@ -237,6 +237,6 @@ also available as C<$_>.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/ByteStream.pm
Expand Up @@ -381,6 +381,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Cache.pm
Expand Up @@ -70,6 +70,6 @@ Set cached value.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Collection.pm
Expand Up @@ -365,6 +365,6 @@ callback/method.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Content.pm
Expand Up @@ -593,6 +593,6 @@ time to end the stream.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Content/MultiPart.pm
Expand Up @@ -301,6 +301,6 @@ event with default content parser.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Content/Single.pm
Expand Up @@ -165,6 +165,6 @@ necessary.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Cookie.pm
Expand Up @@ -84,6 +84,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Cookie/Request.pm
Expand Up @@ -68,6 +68,6 @@ Render cookie.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
4 changes: 2 additions & 2 deletions lib/Mojo/Cookie/Response.pm
Expand Up @@ -118,7 +118,7 @@ Max age for cookie.
=head2 origin
my $origin = $cookie->origin;
$cookie = $cookie->origin('mojolicio.us');
$cookie = $cookie->origin('mojolicious.org');
Origin of the cookie.
Expand Down Expand Up @@ -156,6 +156,6 @@ Render cookie.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/DOM.pm
Expand Up @@ -1052,6 +1052,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/DOM/CSS.pm
Expand Up @@ -572,6 +572,6 @@ Run CSS selector against L</"tree"> and stop as soon as the first node matched.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/DOM/HTML.pm
Expand Up @@ -326,6 +326,6 @@ Render DOM to HTML/XML.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Date.pm
Expand Up @@ -184,6 +184,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/EventEmitter.pm
Expand Up @@ -187,6 +187,6 @@ advanced diagnostics information printed to C<STDERR>.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Exception.pm
Expand Up @@ -215,6 +215,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Headers.pm
Expand Up @@ -675,6 +675,6 @@ Shortcut for the C<WWW-Authenticate> header.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/HelloWorld.pm
Expand Up @@ -27,6 +27,6 @@ testing.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Home.pm
Expand Up @@ -186,6 +186,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop.pm
Expand Up @@ -634,6 +634,6 @@ diagnostics information printed to C<STDERR>.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
4 changes: 2 additions & 2 deletions lib/Mojo/IOLoop/Client.pm
Expand Up @@ -279,7 +279,7 @@ These options are currently available:
=item address
address => 'mojolicio.us'
address => 'mojolicious.org'
Address or host name of the peer to connect to, defaults to C<127.0.0.1>.
Expand Down Expand Up @@ -360,6 +360,6 @@ Path to the TLS key file.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop/Delay.pm
Expand Up @@ -265,6 +265,6 @@ gets emitted, does nothing when L</"ioloop"> is already running.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop/Server.pm
Expand Up @@ -331,6 +331,6 @@ Stop accepting connections.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop/Stream.pm
Expand Up @@ -309,6 +309,6 @@ has been written.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/JSON.pm
Expand Up @@ -377,6 +377,6 @@ True value, used because Perl has no native equivalent.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/JSON/Pointer.pm
Expand Up @@ -117,6 +117,6 @@ Build new L<Mojo::JSON::Pointer> object.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Loader.pm
Expand Up @@ -184,6 +184,6 @@ C<new> method to see if they are already loaded.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Log.pm
Expand Up @@ -252,6 +252,6 @@ Emit L</"message"> event and log C<warn> message.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Message.pm
Expand Up @@ -661,6 +661,6 @@ All C<multipart/form-data> file uploads, usually L<Mojo::Upload> objects.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Message/Request.pm
Expand Up @@ -479,6 +479,6 @@ Size of the request-line in bytes. Note that this method finalizes the request.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Message/Response.pm
Expand Up @@ -266,6 +266,6 @@ Size of the status-line in bytes. Note that this method finalizes the response.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Parameters.pm
Expand Up @@ -378,6 +378,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Path.pm
Expand Up @@ -347,6 +347,6 @@ Alias for L</"to_string">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Reactor.pm
Expand Up @@ -202,6 +202,6 @@ overloaded in a subclass. Note that this method requires an active I/O watcher.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Reactor/EV.pm
Expand Up @@ -205,6 +205,6 @@ this method requires an active I/O watcher.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Reactor/Poll.pm
Expand Up @@ -304,6 +304,6 @@ this method requires an active I/O watcher.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Server.pm
Expand Up @@ -190,6 +190,6 @@ Run server. Meant to be overloaded in a subclass.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
2 changes: 1 addition & 1 deletion lib/Mojo/Server/CGI.pm
Expand Up @@ -130,6 +130,6 @@ Run CGI.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut

0 comments on commit 99ad764

Please sign in to comment.