Changeset 16521

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

continued to update distribution to standard style

Location:
lang/perl/Text-Pipe-Translate/trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Text-Pipe-Translate/trunk/Changes

    r16386 r16521  
    11Revision history for Perl extension Text-Pipe-Translate 
     2 
     30.04  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.03  Thu, 29 May 2008 12:08:58 -0000 (Marcel Gruenauer <marcel@cpan.org>) 
  • lang/perl/Text-Pipe-Translate/trunk/MANIFEST

    r16386 r16521  
    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 
    1513inc/Test/Compile.pm 
    1614inc/Test/More.pm 
    17 inc/UNIVERSAL/require.pm 
    1815lib/Text/Pipe/Translate.pm 
    1916lib/Text/Pipe/Translate/Babelfish.pm 
  • lang/perl/Text-Pipe-Translate/trunk/MANIFEST.SKIP

    r9819 r16521  
    1010^Build$ 
    1111^blib/ 
     12^pm_to_blib/ 
    1213^_build/ 
    1314^MakeMaker-\d 
     
    2728\.old$ 
    2829\.swp$ 
     30\.tar$ 
     31\.tar\.gz$ 
    2932^#.*#$ 
    3033^\.# 
  • lang/perl/Text-Pipe-Translate/trunk/Makefile.PL

    r9819 r16521  
    1010requires 'Text::Pipe' => '0.03'; 
    1111 
    12 build_requires 'Test::More' => '0.70'; 
     12recommends 'Test::Pod'; 
     13recommends 'Test::Pod::Coverage'; 
    1314 
    14 process_templates( 
    15     first_year => 2007, 
    16     rest_from  => "$ENV{HOME}/.mitlib/standard_pod", 
    17     start_tag  => '{%', 
    18     end_tag    => '%}', 
    19 ); 
     15test_requires 'Test::More' => '0.70'; 
     16test_requires 'Test::Compile'; 
    2017 
    21 use_standard_tests(without => 'pod_coverage'); 
    2218auto_install; 
    2319auto_include; 
  • lang/perl/Text-Pipe-Translate/trunk/lib/Text/Pipe/Translate.pm

    r9819 r16521  
    3838__END__ 
    3939 
    40 {% USE p = PodGenerated %} 
     40 
    4141 
    4242=head1 NAME 
    4343 
    44 {% p.package %} - Translate text from one language to another 
     44Text::Pipe::Translate - Translate text from one language to another 
    4545 
    4646=head1 SYNOPSIS 
     
    6262=over 4 
    6363 
    64 {% p.write_methods %} 
     64=item clear_from 
     65 
     66    $obj->clear_from; 
     67 
     68Clears the value. 
     69 
     70=item clear_to 
     71 
     72    $obj->clear_to; 
     73 
     74Clears the value. 
     75 
     76=item clear_translators 
     77 
     78    $obj->clear_translators; 
     79 
     80Clears the value. 
     81 
     82=item from 
     83 
     84    my $value = $obj->from; 
     85    $obj->from($value); 
     86 
     87A basic getter/setter method. If called without an argument, it returns the 
     88value. If called with a single argument, it sets the value. 
     89 
     90=item from_clear 
     91 
     92    $obj->from_clear; 
     93 
     94Clears the value. 
     95 
     96=item to 
     97 
     98    my $value = $obj->to; 
     99    $obj->to($value); 
     100 
     101A basic getter/setter method. If called without an argument, it returns the 
     102value. If called with a single argument, it sets the value. 
     103 
     104=item to_clear 
     105 
     106    $obj->to_clear; 
     107 
     108Clears the value. 
     109 
     110=item translators 
     111 
     112    my $value = $obj->translators; 
     113    $obj->translators($value); 
     114 
     115A basic getter/setter method. If called without an argument, it returns the 
     116value. If called with a single argument, it sets the value. 
     117 
     118=item translators_clear 
     119 
     120    $obj->translators_clear; 
     121 
     122Clears the value. 
    65123 
    66124=item get_translator 
     
    76134=back 
    77135 
    78 {% p.write_inheritance %} 
    79  
    80 {% PROCESS standard_pod %} 
     136Text::Pipe::Translate inherits from L<Text::Pipe::Base>. 
     137 
     138The superclass L<Text::Pipe::Base> defines these methods and functions: 
     139 
     140    new(), bit_or(), filter(), init() 
     141 
     142The superclass L<Class::Accessor::Complex> defines these methods and 
     143functions: 
     144 
     145    mk_abstract_accessors(), mk_array_accessors(), mk_boolean_accessors(), 
     146    mk_class_array_accessors(), mk_class_hash_accessors(), 
     147    mk_class_scalar_accessors(), mk_concat_accessors(), 
     148    mk_forward_accessors(), mk_hash_accessors(), mk_integer_accessors(), 
     149    mk_new(), mk_object_accessors(), mk_scalar_accessors(), 
     150    mk_set_accessors(), mk_singleton() 
     151 
     152The superclass L<Class::Accessor> defines these methods and functions: 
     153 
     154    _carp(), _croak(), _mk_accessors(), accessor_name_for(), 
     155    best_practice_accessor_name_for(), best_practice_mutator_name_for(), 
     156    follow_best_practice(), get(), make_accessor(), make_ro_accessor(), 
     157    make_wo_accessor(), mk_accessors(), mk_ro_accessors(), 
     158    mk_wo_accessors(), mutator_name_for(), set() 
     159 
     160The superclass L<Class::Accessor::Installer> defines these methods and 
     161functions: 
     162 
     163    install_accessor() 
     164 
     165The superclass L<Class::Accessor::Constructor> defines these methods and 
     166functions: 
     167 
     168    _make_constructor(), mk_constructor(), mk_constructor_with_dirty(), 
     169    mk_singleton_constructor() 
     170 
     171The superclass L<Data::Inherited> defines these methods and functions: 
     172 
     173    every_hash(), every_list(), flush_every_cache_by_key() 
     174 
     175The superclass L<Class::Accessor::Constructor::Base> defines these methods 
     176and functions: 
     177 
     178    STORE(), clear_dirty(), clear_hygienic(), clear_unhygienic(), 
     179    contains_hygienic(), contains_unhygienic(), delete_hygienic(), 
     180    delete_unhygienic(), dirty(), dirty_clear(), dirty_set(), 
     181    elements_hygienic(), elements_unhygienic(), hygienic(), 
     182    hygienic_clear(), hygienic_contains(), hygienic_delete(), 
     183    hygienic_elements(), hygienic_insert(), hygienic_is_empty(), 
     184    hygienic_size(), insert_hygienic(), insert_unhygienic(), 
     185    is_empty_hygienic(), is_empty_unhygienic(), set_dirty(), 
     186    size_hygienic(), size_unhygienic(), unhygienic(), unhygienic_clear(), 
     187    unhygienic_contains(), unhygienic_delete(), unhygienic_elements(), 
     188    unhygienic_insert(), unhygienic_is_empty(), unhygienic_size() 
     189 
     190The superclass L<Tie::StdHash> defines these methods and functions: 
     191 
     192    CLEAR(), DELETE(), EXISTS(), FETCH(), FIRSTKEY(), NEXTKEY(), SCALAR(), 
     193    TIEHASH() 
     194 
     195=head1 BUGS AND LIMITATIONS 
     196 
     197No bugs have been reported. 
     198 
     199Please report any bugs or feature requests through the web interface at 
     200L<http://rt.cpan.org>. 
     201 
     202=head1 INSTALLATION 
     203 
     204See perlmodinstall for information and options on installing Perl modules. 
     205 
     206=head1 AVAILABILITY 
     207 
     208The latest version of this module is available from the Comprehensive Perl 
     209Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 
     210site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 
     211 
     212=head1 AUTHORS 
     213 
     214Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 
     215 
     216=head1 COPYRIGHT AND LICENSE 
     217 
     218Copyright 2007-2008 by the authors. 
     219 
     220This library is free software; you can redistribute it and/or modify 
     221it under the same terms as Perl itself. 
     222 
    81223 
    82224=cut 
  • lang/perl/Text-Pipe-Translate/trunk/lib/Text/Pipe/Translate/Babelfish.pm

    r9819 r16521  
    3030__END__ 
    3131 
    32 {% USE p = PodGenerated %} 
     32 
    3333 
    3434=head1 NAME 
    3535 
    36 {% p.package %} - Translate text using Babelfish 
     36Text::Pipe::Translate::Babelfish - Translate text using Babelfish 
    3737 
    3838=head1 SYNOPSIS 
     
    5151=over 4 
    5252 
    53 {% p.write_methods %} 
     53 
    5454 
    5555=item init 
     
    5959=back 
    6060 
    61 {% p.write_inheritance %} 
     61Text::Pipe::Translate::Babelfish inherits from L<Text::Pipe::Translate>. 
    6262 
    63 {% PROCESS standard_pod %} 
     63The superclass L<Text::Pipe::Translate> defines these methods and 
     64functions: 
     65 
     66    clear_from(), clear_to(), clear_translators(), filter_single(), from(), 
     67    from_clear(), get_translator(), to(), to_clear(), translators(), 
     68    translators_clear() 
     69 
     70The superclass L<Text::Pipe::Base> defines these methods and functions: 
     71 
     72    new(), bit_or(), filter() 
     73 
     74The superclass L<Class::Accessor::Complex> defines these methods and 
     75functions: 
     76 
     77    mk_abstract_accessors(), mk_array_accessors(), mk_boolean_accessors(), 
     78    mk_class_array_accessors(), mk_class_hash_accessors(), 
     79    mk_class_scalar_accessors(), mk_concat_accessors(), 
     80    mk_forward_accessors(), mk_hash_accessors(), mk_integer_accessors(), 
     81    mk_new(), mk_object_accessors(), mk_scalar_accessors(), 
     82    mk_set_accessors(), mk_singleton() 
     83 
     84The superclass L<Class::Accessor> defines these methods and functions: 
     85 
     86    _carp(), _croak(), _mk_accessors(), accessor_name_for(), 
     87    best_practice_accessor_name_for(), best_practice_mutator_name_for(), 
     88    follow_best_practice(), get(), make_accessor(), make_ro_accessor(), 
     89    make_wo_accessor(), mk_accessors(), mk_ro_accessors(), 
     90    mk_wo_accessors(), mutator_name_for(), set() 
     91 
     92The superclass L<Class::Accessor::Installer> defines these methods and 
     93functions: 
     94 
     95    install_accessor() 
     96 
     97The superclass L<Class::Accessor::Constructor> defines these methods and 
     98functions: 
     99 
     100    _make_constructor(), mk_constructor(), mk_constructor_with_dirty(), 
     101    mk_singleton_constructor() 
     102 
     103The superclass L<Data::Inherited> defines these methods and functions: 
     104 
     105    every_hash(), every_list(), flush_every_cache_by_key() 
     106 
     107The superclass L<Class::Accessor::Constructor::Base> defines these methods 
     108and functions: 
     109 
     110    STORE(), clear_dirty(), clear_hygienic(), clear_unhygienic(), 
     111    contains_hygienic(), contains_unhygienic(), delete_hygienic(), 
     112    delete_unhygienic(), dirty(), dirty_clear(), dirty_set(), 
     113    elements_hygienic(), elements_unhygienic(), hygienic(), 
     114    hygienic_clear(), hygienic_contains(), hygienic_delete(), 
     115    hygienic_elements(), hygienic_insert(), hygienic_is_empty(), 
     116    hygienic_size(), insert_hygienic(), insert_unhygienic(), 
     117    is_empty_hygienic(), is_empty_unhygienic(), set_dirty(), 
     118    size_hygienic(), size_unhygienic(), unhygienic(), unhygienic_clear(), 
     119    unhygienic_contains(), unhygienic_delete(), unhygienic_elements(), 
     120    unhygienic_insert(), unhygienic_is_empty(), unhygienic_size() 
     121 
     122The superclass L<Tie::StdHash> defines these methods and functions: 
     123 
     124    CLEAR(), DELETE(), EXISTS(), FETCH(), FIRSTKEY(), NEXTKEY(), SCALAR(), 
     125    TIEHASH() 
     126 
     127=head1 BUGS AND LIMITATIONS 
     128 
     129No bugs have been reported. 
     130 
     131Please report any bugs or feature requests through the web interface at 
     132L<http://rt.cpan.org>. 
     133 
     134=head1 INSTALLATION 
     135 
     136See perlmodinstall for information and options on installing Perl modules. 
     137 
     138=head1 AVAILABILITY 
     139 
     140The latest version of this module is available from the Comprehensive Perl 
     141Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 
     142site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 
     143 
     144=head1 AUTHORS 
     145 
     146Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 
     147 
     148=head1 COPYRIGHT AND LICENSE 
     149 
     150Copyright 2007-2008 by the authors. 
     151 
     152This library is free software; you can redistribute it and/or modify 
     153it under the same terms as Perl itself. 
     154 
    64155 
    65156=cut