Skip to content

Commit a529497

Browse files
committed
removed experimental status from hypnotoad, tag helpers and more
1 parent acb4e0a commit a529497

File tree

9 files changed

+7
-14
lines changed

9 files changed

+7
-14
lines changed

Changes

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
This file documents the revision history for Perl extension Mojolicious.
22

33
1.12 2011-02-19 00:00:00
4+
- Relicensed all artwork to CC-SA, so the whole distribution can be
5+
considered "open" again.
46
- Deprecated MOJO_JSON_CONFIG environment variable in favor of
57
MOJO_CONFIG. (crab)
68
- Added EXPERIMENTAL support for IPv6.
7-
- Added EXPERIMENTAL more Perl-ish configuration plugin.
9+
- Added more Perl-ish configuration plugin.
810
- Added drain callback support for WebSockets.
11+
- Removed experimental status from hypnotoad and
12+
Mojolicious::Plugin::TagHelpers.
13+
- Removed experimental status from many attributes and methods all
14+
over Mojolicious.
915
- Improved attribute support of the select_field tag helper. (yko)
1016
- Improved text_field tag helper.
1117
- Improved tag helper attribute escaping.

lib/Mojo/Base.pm

-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ Both forms save a lot of typing.
201201
has [qw/name1 name2 name3/] => sub { ... };
202202
203203
Create attributes, just like the C<attr> method.
204-
Note that this function is EXPERIMENTAL and might change without warning!
205204
206205
=head1 METHODS
207206

lib/Mojo/Message.pm

-3
Original file line numberDiff line numberDiff line change
@@ -659,15 +659,13 @@ L<Mojo::JSON>.
659659
$message = $message->max_line_size(1024);
660660
661661
Maximum line size in bytes, defaults to C<10240>.
662-
Note that this attribute is EXPERIMENTAL and might change without warning!
663662
664663
=head2 C<max_message_size>
665664
666665
my $size = $message->max_message_size;
667666
$message = $message->max_message_size(1024);
668667
669668
Maximum message size in bytes, defaults to C<5242880>.
670-
Note that this attribute is EXPERIMENTAL and might change without warning!
671669
672670
=head2 C<on_finish>
673671
@@ -821,7 +819,6 @@ Check if parser is done.
821819
my $limit = $message->is_limit_exceeded;
822820
823821
Check if message has exceeded C<max_line_size> or C<max_message_size>.
824-
Note that this method is EXPERIMENTAL and might change without warning!
825822
826823
=head2 C<is_multipart>
827824

lib/Mojo/Server/Hypnotoad.pm

-2
Original file line numberDiff line numberDiff line change
@@ -498,8 +498,6 @@ Optional modules L<IO::KQueue>, L<IO::Epoll>, L<IO::Socket::IP>,
498498
L<IO::Socket::SSL> and L<Net::Rendezvous::Publish> are supported
499499
transparently and used if installed.
500500
501-
Note that this module is EXPERIMENTAL and might change without warning!
502-
503501
See L<Mojolicious::Guides::Cookbook> for deployment recipes.
504502
505503
=head1 SIGNALS

lib/Mojolicious/Controller.pm

-1
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,6 @@ Render a data structure as JSON.
13731373
$c->render_later;
13741374
13751375
Disable auto rendering, especially for long polling this can be quite useful.
1376-
Note that this method is EXPERIMENTAL and might change without warning!
13771376
13781377
$c->render_later;
13791378
Mojo::IOLoop->singleton->timer(2 => sub {

lib/Mojolicious/Plugin/Config.pm

-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ L<Mojolicious::Plugin::Config> is a Perl-ish configuration plugin.
138138
The application object can be accessed via the C<app> helper.
139139
You can extend the normal config file C<myapp.conf> with C<mode> specific
140140
ones like C<myapp.$mode.conf>.
141-
Note that this module is EXPERIMENTAL and might change without warning!
142141
143142
=head1 OPTIONS
144143

lib/Mojolicious/Plugin/TagHelpers.pm

-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,6 @@ L<Mojolicious::Plugin::TagHelpers> is a collection of HTML5 tag helpers for
356356
L<Mojolicious>.
357357
This is a core plugin, that means it is always enabled and its code a good
358358
example for learning to build new plugins.
359-
Note that this module is EXPERIMENTAL and might change without warning!
360359
361360
=head1 HELPERS
362361

lib/Mojolicious/Routes.pm

-2
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,6 @@ and used for matching.
850850
$r = $r->shortcuts({foo => sub { ... }});
851851
852852
Contains all additional route shortcuts available for this route.
853-
Note that this attribute is EXPERIMENTAL and might change without warning!
854853
855854
=head1 METHODS
856855
@@ -881,7 +880,6 @@ Add a new condition for this route.
881880
$r = $r->add_shortcut(foo => sub { ... });
882881
883882
Add a new shortcut for this route.
884-
Note that this method is EXPERIMENTAL and might change without warning!
885883
886884
=head2 C<any>
887885

script/hypnotoad

-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ hypnotoad - Hypnotoad HTTP 1.1 And WebSocket Server
7070
Start L<Mojolicious> and L<Mojolicious::Lite> applications with the
7171
L<Mojo::Server::Hypnotoad> web server.
7272
73-
Note that this script is EXPERIMENTAL and might change without warning!
74-
7573
=head1 SEE ALSO
7674
7775
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.

0 commit comments

Comments
 (0)