From: Alexander Hartmaier Date: Fri, 29 Jul 2011 15:28:11 +0000 (+0200) Subject: fixed the remaining spelling errors + improved some wording in the process X-Git-Tag: 5.90005~4^2~10^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=7c7954572cfa0a81c6cea8c15c6110386b851418 fixed the remaining spelling errors + improved some wording in the process --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index ec983a1..8f91b31 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -276,11 +276,11 @@ the name will be replaced with underscores, e.g. MyApp::Web should use MYAPP_WEB_HOME. If both variables are set, the MYAPP_HOME one will be used. If none of these are set, Catalyst will attempt to automatically detect the -home directory. If you are working in a development envirnoment, Catalyst +home directory. If you are working in a development environment, Catalyst will try and find the directory containing either Makefile.PL, Build.PL or dist.ini. If the application has been installed into the system (i.e. you have done C), then Catalyst will use the path to your -application module, without the .pm extension (ie, /foo/MyApp if your +application module, without the .pm extension (e.g., /foo/MyApp if your application was installed at /foo/MyApp.pm) =head2 -Log @@ -348,9 +348,10 @@ call to forward. Note that L<< forward|/"$c->forward( $action [, \@arguments ] )" >> implies an C<< eval { } >> around the call (actually -L<< execute|/"$c->execute( $class, $coderef )" >> does), thus de-fatalizing -all 'dies' within the called action. If you want C to propagate you -need to do something like: +L<< execute|/"$c->execute( $class, $coderef )" >> does), thus rendering all +exceptions thrown by the called action non-fatal and pushing them onto +$c->error instead. If you want C to propagate you need to do something +like: $c->forward('foo'); die join "\n", @{ $c->error } if @{ $c->error }; @@ -412,7 +413,7 @@ L return information for the visited action when they are invoked within the visited action. This is different from the behavior of L<< forward|/"$c->forward( $action [, \@arguments ] )" >>, which continues to use the $c->action object from the caller action even when -invoked from the callee. +invoked from the called action. C<< $c->stash >> is kept unchanged. @@ -2249,7 +2250,7 @@ sub log_response_status_line { =head2 $c->log_response_headers($headers); -Hook method which can be wrapped by plugins to log the responseheaders. +Hook method which can be wrapped by plugins to log the response headers. No-op in the default implementation. =cut @@ -3036,7 +3037,7 @@ welcome screens C - The request body (for example file uploads) will not be parsed until it is accessed. This allows you to (for example) check authentication (and reject -the upload) before actually recieving all the data. See L +the upload) before actually receiving all the data. See L =item * @@ -3057,7 +3058,7 @@ to be shown in hit debug tables in the test server. =item * -C - Controlls if the C or C environment +C - Controls if the C or C environment variable should be used for determining the request path. See L for more information. @@ -3174,6 +3175,8 @@ Wiki: =head2 L - The test suite. +=begin stopwords + =head1 PROJECT FOUNDER sri: Sebastian Riedel @@ -3316,6 +3319,8 @@ rainboxx: Matthias Dietrich, C dd070: Dhaval Dhanani +=end stopwords + =head1 COPYRIGHT Copyright (c) 2005, the above named PROJECT FOUNDER and CONTRIBUTORS. diff --git a/lib/Catalyst/ClassData.pm b/lib/Catalyst/ClassData.pm index 89cc1fd..f79149b 100644 --- a/lib/Catalyst/ClassData.pm +++ b/lib/Catalyst/ClassData.pm @@ -81,8 +81,12 @@ L; =head1 AUTHOR +=begin stopwords + Guillermo Roditi +=end stopwords + =head1 COPYRIGHT This library is free software. You can redistribute it and/or modify it under diff --git a/lib/Catalyst/Component/ContextClosure.pm b/lib/Catalyst/Component/ContextClosure.pm index 18d09b7..9c3139a 100644 --- a/lib/Catalyst/Component/ContextClosure.pm +++ b/lib/Catalyst/Component/ContextClosure.pm @@ -63,10 +63,14 @@ L L +=begin stopwords + =head1 AUTHOR Florian Ragwitz Erafl@debian.orgE +=end stopwords + =head1 COPYRIGHT This library is free software. You can redistribute it and/or modify it under diff --git a/t/author/spelling.t b/t/author/spelling.t index ea72024..b0f5cdd 100644 --- a/t/author/spelling.t +++ b/t/author/spelling.t @@ -4,15 +4,15 @@ use Test::More; use Test::Spelling; add_stopwords(qw( - undef env regex rethrow rethrows stringifies CPAN STDERR SIGCHLD baz + undef env regex unary rethrow rethrows stringifies CPAN STDERR SIGCHLD baz roadmap wishlist refactor refactored Runtime pluggable pluggability hoc apis - fastcgi nginx IIS middlewares + fastcgi nginx Lighttpd IIS middlewares backend IRC ctx _application MyApp restarter httponly Utils stash's unescapes dispatchtype dispatchtypes redispatch redispatching CaptureArgs ChainedParent PathPart PathPrefix - BUILDARGS metaclass - filename tempname request's - wiki bitmask uri url urls dir hostname http https IP SSL + BUILDARGS metaclass namespaces + filename tempname request's subdirectory ini uninstalled uppercased + wiki bitmask uri url urls dir hostname proxied http https IP SSL )); set_spell_cmd('aspell list -l en'); all_pod_files_spelling_ok();