Changeset 16488

Show
Ignore:
Timestamp:
07/25/08 23:09:24 (5 years ago)
Author:
hanekomu
Message:

continued to update distribution to standard style

Location:
lang/perl/LWP-UserAgent-ProgressBar/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/LWP-UserAgent-ProgressBar/trunk/Changes

    r16353 r16488  
    11Revision history for Perl extension LWP-UserAgent-ProgressBar 
     2 
     30.03  Thu Jul 25 15:27:43 CEST 2008 (Marcel Gruenauer <marcel@cpan.org>) 
     4     - Changed dist style and Changes back to standard. People didn't like it - 
     5       the nail that sticks out gets hammered down. 
     6     - Added standard test files; this will also help with CPANTS. 
    27 
    380.02  Thu, 29 May 2008 12:05:49 -0000 (Marcel Gruenauer <marcel@cpan.org>) 
  • lang/perl/LWP-UserAgent-ProgressBar/trunk/MANIFEST

    r16353 r16488  
    99inc/Module/Install/Makefile.pm 
    1010inc/Module/Install/Metadata.pm 
    11 inc/Module/Install/StandardTests.pm 
    12 inc/Module/Install/Template.pm 
    1311inc/Module/Install/Win32.pm 
    1412inc/Module/Install/WriteAll.pm 
     
    1614inc/Test/Differences.pm 
    1715inc/Test/More.pm 
    18 inc/UNIVERSAL/require.pm 
    1916lib/LWP/UserAgent/ProgressBar.pm 
    2017LICENSE 
  • lang/perl/LWP-UserAgent-ProgressBar/trunk/MANIFEST.SKIP

    r9783 r16488  
    1010^Build$ 
    1111^blib/ 
     12^pm_to_blib/ 
    1213^_build/ 
    1314^MakeMaker-\d 
     
    2728\.old$ 
    2829\.swp$ 
     30\.tar$ 
     31\.tar\.gz$ 
    2932^#.*#$ 
    3033^\.# 
     
    3538core 
    3639^var/ 
    37 local/ 
  • lang/perl/LWP-UserAgent-ProgressBar/trunk/Makefile.PL

    r9783 r16488  
    99requires 'Term::ProgressBar'; 
    1010 
    11 build_requires 'Test::Differences'; 
    12 build_requires 'Test::More' => '0.70'; 
     11recommends 'Test::Pod'; 
     12recommends 'Test::Pod::Coverage'; 
    1313 
    14 process_templates( 
    15     first_year => 2007, 
    16     rest_from  => "$ENV{HOME}/.mitlib/standard_pod", 
    17     start_tag  => '{%', 
    18     end_tag    => '%}', 
    19 ); 
     14test_requires 'Test::Differences'; 
     15test_requires 'Test::More' => '0.70'; 
     16test_requires 'Test::Compile'; 
    2017 
    21 use_standard_tests(without => 'pod_coverage'); 
    2218auto_install; 
    2319auto_include; 
  • lang/perl/LWP-UserAgent-ProgressBar/trunk/lib/LWP/UserAgent/ProgressBar.pm

    r9783 r16488  
    7474__END__ 
    7575 
    76 {% USE p = PodGenerated %} 
     76 
    7777 
    7878=head1 NAME 
    7979 
    80 {% p.package %} - An LWP user agent that can display a progress bar 
     80LWP::UserAgent::ProgressBar - An LWP user agent that can display a progress bar 
    8181 
    8282=head1 SYNOPSIS 
     
    9595=over 4 
    9696 
    97 {% p.write_methods %} 
     97 
    9898 
    9999=item get_with_progress 
     
    105105=back 
    106106 
    107 {% p.write_inheritance %} 
     107LWP::UserAgent::ProgressBar inherits from L<LWP::UserAgent>. 
    108108 
    109 {% PROCESS standard_pod %} 
     109The superclass L<LWP::UserAgent> defines these methods and functions: 
     110 
     111    new(), _agent(), _need_proxy(), _new_response(), 
     112    _process_colonic_headers(), _request_sanity_check(), agent(), clone(), 
     113    conn_cache(), cookie_jar(), credentials(), default_header(), 
     114    default_headers(), env_proxy(), from(), get(), get_basic_credentials(), 
     115    head(), is_protocol_supported(), max_redirect(), max_size(), mirror(), 
     116    no_proxy(), parse_head(), post(), prepare_request(), progress(), 
     117    protocols_allowed(), protocols_forbidden(), proxy(), redirect_ok(), 
     118    request(), requests_redirectable(), send_request(), simple_request(), 
     119    timeout(), use_alarm(), use_eval() 
     120 
     121The superclass L<LWP::MemberMixin> defines these methods and functions: 
     122 
     123    _elem() 
     124 
     125=head1 BUGS AND LIMITATIONS 
     126 
     127No bugs have been reported. 
     128 
     129Please report any bugs or feature requests through the web interface at 
     130L<http://rt.cpan.org>. 
     131 
     132=head1 INSTALLATION 
     133 
     134See perlmodinstall for information and options on installing Perl modules. 
     135 
     136=head1 AVAILABILITY 
     137 
     138The latest version of this module is available from the Comprehensive Perl 
     139Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 
     140site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 
     141 
     142=head1 AUTHORS 
     143 
     144Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 
     145 
     146=head1 COPYRIGHT AND LICENSE 
     147 
     148Copyright 2007-2008 by the authors. 
     149 
     150This library is free software; you can redistribute it and/or modify 
     151it under the same terms as Perl itself. 
     152 
    110153 
    111154=cut