Changeset 1246
- Timestamp:
- 08/09/06 16:43:49
- Files:
-
- trunk/plagger/lib/Plagger/Plugin/UserAgent/AuthenRequest.pm (modified) (1 diff)
- trunk/plagger/t/TestPlagger.pm (modified) (1 diff)
- trunk/plagger/t/core/log-level.t (modified) (1 diff)
- trunk/plagger/t/plugins/UserAgent-AuthenRequest (added)
- trunk/plagger/t/plugins/UserAgent-AuthenRequest/authen.t (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/lib/Plagger/Plugin/UserAgent/AuthenRequest.pm
r1245 r1246 31 31 $auth = $self->conf->{$auth}; 32 32 33 if ( $auth && $auth->{auth}eq 'basic' ) { # todo: other authentication support33 if ( $auth && ($auth->{auth}||'basic') eq 'basic' ) { # todo: other authentication support 34 34 $req->headers->authorization_basic( $auth->{username}, $auth->{password} ); 35 35 } trunk/plagger/t/TestPlagger.pm
r1244 r1246 93 93 94 94 sub run_eval_expected_with_capture { 95 # run this method with 'filters_delay'95 filters_delay; 96 96 for my $block (blocks) { 97 97 my $warning; trunk/plagger/t/core/log-level.t
r1238 r1246 3 3 4 4 plan 'no_plan'; 5 6 filters_delay;7 5 run_eval_expected_with_capture; 8 6
