Changeset 16521
- Timestamp:
- 07/25/08 23:16:42 (5 years ago)
- Location:
- lang/perl/Text-Pipe-Translate/trunk
- Files:
-
- 6 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
MANIFEST.SKIP (modified) (2 diffs)
-
Makefile.PL (modified) (1 diff)
-
lib/Text/Pipe/Translate.pm (modified) (3 diffs)
-
lib/Text/Pipe/Translate/Babelfish.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Text-Pipe-Translate/trunk/Changes
r16386 r16521 1 1 Revision history for Perl extension Text-Pipe-Translate 2 3 0.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. 2 7 3 8 0.03 Thu, 29 May 2008 12:08:58 -0000 (Marcel Gruenauer <marcel@cpan.org>) -
lang/perl/Text-Pipe-Translate/trunk/MANIFEST
r16386 r16521 9 9 inc/Module/Install/Makefile.pm 10 10 inc/Module/Install/Metadata.pm 11 inc/Module/Install/StandardTests.pm12 inc/Module/Install/Template.pm13 11 inc/Module/Install/Win32.pm 14 12 inc/Module/Install/WriteAll.pm 15 13 inc/Test/Compile.pm 16 14 inc/Test/More.pm 17 inc/UNIVERSAL/require.pm18 15 lib/Text/Pipe/Translate.pm 19 16 lib/Text/Pipe/Translate/Babelfish.pm -
lang/perl/Text-Pipe-Translate/trunk/MANIFEST.SKIP
r9819 r16521 10 10 ^Build$ 11 11 ^blib/ 12 ^pm_to_blib/ 12 13 ^_build/ 13 14 ^MakeMaker-\d … … 27 28 \.old$ 28 29 \.swp$ 30 \.tar$ 31 \.tar\.gz$ 29 32 ^#.*#$ 30 33 ^\.# -
lang/perl/Text-Pipe-Translate/trunk/Makefile.PL
r9819 r16521 10 10 requires 'Text::Pipe' => '0.03'; 11 11 12 build_requires 'Test::More' => '0.70'; 12 recommends 'Test::Pod'; 13 recommends 'Test::Pod::Coverage'; 13 14 14 process_templates( 15 first_year => 2007, 16 rest_from => "$ENV{HOME}/.mitlib/standard_pod", 17 start_tag => '{%', 18 end_tag => '%}', 19 ); 15 test_requires 'Test::More' => '0.70'; 16 test_requires 'Test::Compile'; 20 17 21 use_standard_tests(without => 'pod_coverage');22 18 auto_install; 23 19 auto_include; -
lang/perl/Text-Pipe-Translate/trunk/lib/Text/Pipe/Translate.pm
r9819 r16521 38 38 __END__ 39 39 40 {% USE p = PodGenerated %} 40 41 41 42 42 =head1 NAME 43 43 44 {% p.package %}- Translate text from one language to another44 Text::Pipe::Translate - Translate text from one language to another 45 45 46 46 =head1 SYNOPSIS … … 62 62 =over 4 63 63 64 {% p.write_methods %} 64 =item clear_from 65 66 $obj->clear_from; 67 68 Clears the value. 69 70 =item clear_to 71 72 $obj->clear_to; 73 74 Clears the value. 75 76 =item clear_translators 77 78 $obj->clear_translators; 79 80 Clears the value. 81 82 =item from 83 84 my $value = $obj->from; 85 $obj->from($value); 86 87 A basic getter/setter method. If called without an argument, it returns the 88 value. If called with a single argument, it sets the value. 89 90 =item from_clear 91 92 $obj->from_clear; 93 94 Clears the value. 95 96 =item to 97 98 my $value = $obj->to; 99 $obj->to($value); 100 101 A basic getter/setter method. If called without an argument, it returns the 102 value. If called with a single argument, it sets the value. 103 104 =item to_clear 105 106 $obj->to_clear; 107 108 Clears the value. 109 110 =item translators 111 112 my $value = $obj->translators; 113 $obj->translators($value); 114 115 A basic getter/setter method. If called without an argument, it returns the 116 value. If called with a single argument, it sets the value. 117 118 =item translators_clear 119 120 $obj->translators_clear; 121 122 Clears the value. 65 123 66 124 =item get_translator … … 76 134 =back 77 135 78 {% p.write_inheritance %} 79 80 {% PROCESS standard_pod %} 136 Text::Pipe::Translate inherits from L<Text::Pipe::Base>. 137 138 The superclass L<Text::Pipe::Base> defines these methods and functions: 139 140 new(), bit_or(), filter(), init() 141 142 The superclass L<Class::Accessor::Complex> defines these methods and 143 functions: 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 152 The 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 160 The superclass L<Class::Accessor::Installer> defines these methods and 161 functions: 162 163 install_accessor() 164 165 The superclass L<Class::Accessor::Constructor> defines these methods and 166 functions: 167 168 _make_constructor(), mk_constructor(), mk_constructor_with_dirty(), 169 mk_singleton_constructor() 170 171 The superclass L<Data::Inherited> defines these methods and functions: 172 173 every_hash(), every_list(), flush_every_cache_by_key() 174 175 The superclass L<Class::Accessor::Constructor::Base> defines these methods 176 and 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 190 The 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 197 No bugs have been reported. 198 199 Please report any bugs or feature requests through the web interface at 200 L<http://rt.cpan.org>. 201 202 =head1 INSTALLATION 203 204 See perlmodinstall for information and options on installing Perl modules. 205 206 =head1 AVAILABILITY 207 208 The latest version of this module is available from the Comprehensive Perl 209 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 210 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 211 212 =head1 AUTHORS 213 214 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 215 216 =head1 COPYRIGHT AND LICENSE 217 218 Copyright 2007-2008 by the authors. 219 220 This library is free software; you can redistribute it and/or modify 221 it under the same terms as Perl itself. 222 81 223 82 224 =cut -
lang/perl/Text-Pipe-Translate/trunk/lib/Text/Pipe/Translate/Babelfish.pm
r9819 r16521 30 30 __END__ 31 31 32 {% USE p = PodGenerated %} 32 33 33 34 34 =head1 NAME 35 35 36 {% p.package %}- Translate text using Babelfish36 Text::Pipe::Translate::Babelfish - Translate text using Babelfish 37 37 38 38 =head1 SYNOPSIS … … 51 51 =over 4 52 52 53 {% p.write_methods %} 53 54 54 55 55 =item init … … 59 59 =back 60 60 61 {% p.write_inheritance %} 61 Text::Pipe::Translate::Babelfish inherits from L<Text::Pipe::Translate>. 62 62 63 {% PROCESS standard_pod %} 63 The superclass L<Text::Pipe::Translate> defines these methods and 64 functions: 65 66 clear_from(), clear_to(), clear_translators(), filter_single(), from(), 67 from_clear(), get_translator(), to(), to_clear(), translators(), 68 translators_clear() 69 70 The superclass L<Text::Pipe::Base> defines these methods and functions: 71 72 new(), bit_or(), filter() 73 74 The superclass L<Class::Accessor::Complex> defines these methods and 75 functions: 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 84 The 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 92 The superclass L<Class::Accessor::Installer> defines these methods and 93 functions: 94 95 install_accessor() 96 97 The superclass L<Class::Accessor::Constructor> defines these methods and 98 functions: 99 100 _make_constructor(), mk_constructor(), mk_constructor_with_dirty(), 101 mk_singleton_constructor() 102 103 The superclass L<Data::Inherited> defines these methods and functions: 104 105 every_hash(), every_list(), flush_every_cache_by_key() 106 107 The superclass L<Class::Accessor::Constructor::Base> defines these methods 108 and 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 122 The 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 129 No bugs have been reported. 130 131 Please report any bugs or feature requests through the web interface at 132 L<http://rt.cpan.org>. 133 134 =head1 INSTALLATION 135 136 See perlmodinstall for information and options on installing Perl modules. 137 138 =head1 AVAILABILITY 139 140 The latest version of this module is available from the Comprehensive Perl 141 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 142 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 143 144 =head1 AUTHORS 145 146 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 147 148 =head1 COPYRIGHT AND LICENSE 149 150 Copyright 2007-2008 by the authors. 151 152 This library is free software; you can redistribute it and/or modify 153 it under the same terms as Perl itself. 154 64 155 65 156 =cut
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)