Changeset 2747
- Timestamp:
- 12/07/07 11:07:58 (6 years ago)
- Location:
- lang/perl/Encode-BOCU1/trunk
- Files:
-
- 6 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Encode-BOCU1/trunk/Changes
r2743 r2747 7 7 - optimized version 8 8 9 0.03 Mon Jul 03 22:00:00 2006 10 - changed copyright & license notices 9 11 -
lang/perl/Encode-BOCU1/trunk/META.yml
r2741 r2747 2 2 #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# 3 3 name: Encode-BOCU1 4 version: 0.0 24 version: 0.03 5 5 version_from: lib/Encode/BOCU1.pm 6 6 installdirs: site -
lang/perl/Encode-BOCU1/trunk/Makefile
r2741 r2747 53 53 NAME = Encode::BOCU1 54 54 NAME_SYM = Encode_BOCU1 55 VERSION = 0.0 255 VERSION = 0.03 56 56 VERSION_MACRO = VERSION 57 VERSION_SYM = 0_0 257 VERSION_SYM = 0_03 58 58 DEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\" 59 XS_VERSION = 0.0 259 XS_VERSION = 0.03 60 60 XS_VERSION_MACRO = XS_VERSION 61 61 XS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\" … … 238 238 DIST_DEFAULT = tardist 239 239 DISTNAME = Encode-BOCU1 240 DISTVNAME = Encode-BOCU1-0.0 2240 DISTVNAME = Encode-BOCU1-0.03 241 241 242 242 … … 431 431 $(NOECHO) $(ECHO) '#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#' >> META.yml 432 432 $(NOECHO) $(ECHO) 'name: Encode-BOCU1' >> META.yml 433 $(NOECHO) $(ECHO) 'version: 0.0 2' >> META.yml433 $(NOECHO) $(ECHO) 'version: 0.03' >> META.yml 434 434 $(NOECHO) $(ECHO) 'version_from: lib/Encode/BOCU1.pm' >> META.yml 435 435 $(NOECHO) $(ECHO) 'installdirs: site' >> META.yml … … 699 699 # Creates a PPD (Perl Package Description) for a binary distribution. 700 700 ppd: 701 $(NOECHO) $(ECHO) '<SOFTPKG NAME="$(DISTNAME)" VERSION="0,0 2,0,0">' > $(DISTNAME).ppd701 $(NOECHO) $(ECHO) '<SOFTPKG NAME="$(DISTNAME)" VERSION="0,03,0,0">' > $(DISTNAME).ppd 702 702 $(NOECHO) $(ECHO) ' <TITLE>$(DISTNAME)</TITLE>' >> $(DISTNAME).ppd 703 703 $(NOECHO) $(ECHO) ' <ABSTRACT></ABSTRACT>' >> $(DISTNAME).ppd -
lang/perl/Encode-BOCU1/trunk/README
r2741 r2747 29 29 COPYRIGHT AND LICENCE 30 30 31 Based on pure-perl port of "Sample C Sources" on http://www.unicode.org/notes/tn6/,31 Based on pure-perl port of "Sample C Code" on http://www.unicode.org/notes/tn6/, 32 32 written by Markus W. Scherer on 2002jan24 and is 33 33 … … 35 35 All Rights Reserved. 36 36 37 Th is code is distributedunder the X license (ICU version).37 The "Sample C Code" is under the X license (ICU version). 38 38 ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 39 39 -
lang/perl/Encode-BOCU1/trunk/blib/lib/Encode/BOCU1.pm
r2743 r2747 8 8 use base qw(Encode::Encoding); 9 9 10 our $VERSION = '0.0 2';10 our $VERSION = '0.03'; 11 11 12 12 __PACKAGE__->Define('bocu1'); … … 257 257 BOCU-1 is a MIME-compatible application of the Binary Ordered Compression for Unicode 258 258 [BOCU] base algorithm. 259 260 Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm 261 from/to BOCU-1 through UTF-8. 262 263 =head1 SEE ALSO 264 259 265 http://www.unicode.org/notes/tn6/ 260 266 http://icu.sourceforge.net/docs/papers/binary_ordered_compression_for_unicode.html 261 267 262 Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm263 from/to BOCU-1 through UTF-8.264 265 268 =head1 COPYRIGHT AND LICENSE 266 269 267 Copyright (C) 2006 Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 268 269 Based on pure-perl port of "Sample C Sources" on http://www.unicode.org/notes/tn6/. 270 "Sample C Sources" are licensed under the X license (ICU version). 271 This module is licensed under the same license. 272 273 BOCU ("Binary-Ordered Compression For Unicode") is patent-protected technology of IBM. 270 Based on pure-perl port of "Sample C Code" on http://www.unicode.org/notes/tn6/, 271 written by Markus W. Scherer on 2002jan24 and is 272 273 Copyright (C) 2002, International Business Machines Corporation and others. 274 All Rights Reserved. 275 276 The "Sample C Code" is under the X license (ICU version). 277 ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 278 279 BOCU "Binary-Ordered Compression For Unicode" is a patent-protected technology of IBM. 274 280 (US Patent 6737994) 275 281 276 ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 282 Ported and modified by Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 283 As with the original C code, this port is licensed under the X license (ICU version). 277 284 278 285 =cut -
lang/perl/Encode-BOCU1/trunk/lib/Encode/BOCU1.pm
r2743 r2747 8 8 use base qw(Encode::Encoding); 9 9 10 our $VERSION = '0.0 2';10 our $VERSION = '0.03'; 11 11 12 12 __PACKAGE__->Define('bocu1'); … … 257 257 BOCU-1 is a MIME-compatible application of the Binary Ordered Compression for Unicode 258 258 [BOCU] base algorithm. 259 260 Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm 261 from/to BOCU-1 through UTF-8. 262 263 =head1 SEE ALSO 264 259 265 http://www.unicode.org/notes/tn6/ 260 266 http://icu.sourceforge.net/docs/papers/binary_ordered_compression_for_unicode.html 261 267 262 Encode::BOCU1 enables to convert any encoding systems supported by Encode.pm263 from/to BOCU-1 through UTF-8.264 265 268 =head1 COPYRIGHT AND LICENSE 266 269 267 Copyright (C) 2006 Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 268 269 Based on pure-perl port of "Sample C Sources" on http://www.unicode.org/notes/tn6/. 270 "Sample C Sources" are licensed under the X license (ICU version). 271 This module is licensed under the same license. 272 273 BOCU ("Binary-Ordered Compression For Unicode") is patent-protected technology of IBM. 270 Based on pure-perl port of "Sample C Code" on http://www.unicode.org/notes/tn6/, 271 written by Markus W. Scherer on 2002jan24 and is 272 273 Copyright (C) 2002, International Business Machines Corporation and others. 274 All Rights Reserved. 275 276 The "Sample C Code" is under the X license (ICU version). 277 ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 278 279 BOCU "Binary-Ordered Compression For Unicode" is a patent-protected technology of IBM. 274 280 (US Patent 6737994) 275 281 276 ICU License : http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html 282 Ported and modified by Naoya Tozuka E<lt>naoyat@naochan.comE<gt> 283 As with the original C code, this port is licensed under the X license (ICU version). 277 284 278 285 =cut
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)