From: Jarkko Hietaniemi Date: Mon, 21 Jan 2002 19:16:00 +0000 (+0000) Subject: Undo the renaming of the Unicode data files; the simple X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=551b6b6ff9895983c94b1aff97abae5f0914a105;p=p5sagit%2Fp5-mst-13.2.git Undo the renaming of the Unicode data files; the simple solution being not including the *.html files. This means that in the future there is no need for any renamings (well, assuming that the Consortium doesn't cause any), and the files are named like they are in the Consortium website, thus alleviating confusion. p4raw-id: //depot/perl@14370 --- diff --git a/MANIFEST b/MANIFEST index a6f1b9c..ba44a28 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1386,18 +1386,18 @@ lib/Unicode/UCD.pm Unicode character database lib/Unicode/UCD.t See if Unicode character database works lib/unicore/ArabLink.pl Unicode character database lib/unicore/ArabLnkGrp.pl Unicode character database -lib/unicore/ArabShap.txt Unicode character database -lib/unicore/BidiMirr.txt Unicode character database +lib/unicore/ArabicShaping.txt Unicode character database +lib/unicore/BidiMirroring.txt Unicode character database lib/unicore/Bidirectional.pl Unicode character database lib/unicore/Blocks.pl Unicode character database lib/unicore/Blocks.txt Unicode character database lib/unicore/Canonical.pl Unicode character database -lib/unicore/CaseFold.txt Unicode character database +lib/unicore/CaseFolding.txt Unicode character database lib/unicore/Category.pl Unicode character database lib/unicore/CombiningClass.pl Unicode character database -lib/unicore/CompExcl.txt Unicode character database +lib/unicore/CompositionExclusions.txt Unicode character database lib/unicore/Decomposition.pl Unicode character database -lib/unicore/EAWidth.txt Unicode character database +lib/unicore/EastAsianWidth.txt Unicode character database lib/unicore/Exact.pl Unicode character database lib/unicore/Index.txt Unicode character database lib/unicore/Jamo.txt Unicode character database @@ -1660,30 +1660,25 @@ lib/unicore/lib/Zs.pl Unicode character database lib/unicore/lib/_CanonDC.pl Unicode character database lib/unicore/lib/_CaseIgn.pl Unicode character database lib/unicore/lib/_CombAbo.pl Unicode character database -lib/unicore/LineBrk.txt Unicode character database +lib/unicore/LineBreak.txt Unicode character database lib/unicore/Makefile Unicode character database lib/unicore/mktables Unicode character database generator lib/unicore/Name.pl Unicode character database -lib/unicore/NamesList.html Unicode character database lib/unicore/NamesList.txt Unicode character database lib/unicore/Number.pl Unicode character database lib/unicore/Properties Built-in \p{...} / \P{...} property list -lib/unicore/PropList.html Unicode character database lib/unicore/PropList.txt Unicode character database lib/unicore/README.perl Unicode character database lib/unicore/ReadMe.txt Unicode character database info -lib/unicore/rename Filename mappings used lib/unicore/Scripts.pl Unicode character database lib/unicore/Scripts.txt Unicode character database -lib/unicore/SpecCase.txt Unicode character database +lib/unicore/SpecialCasing.txt Unicode character database lib/unicore/To/Digit.pl Unicode character database lib/unicore/To/Fold.pl Unicode character database lib/unicore/To/Lower.pl Unicode character database lib/unicore/To/Title.pl Unicode character database lib/unicore/To/Upper.pl Unicode character database -lib/unicore/UCD.html Unicode character database -lib/unicore/Unicode.html Unicode character database -lib/unicore/Unicode.txt Unicode character database +lib/unicore/UnicodeData.txt Unicode character database lib/unicore/version The version of the Unicode lib/UNIVERSAL.pm Base class for ALL classes lib/User/grent.pm By-name interface to Perl's builtin getgr* diff --git a/ext/Unicode/Normalize/README b/ext/Unicode/Normalize/README index db54b1f..96c456a 100644 --- a/ext/Unicode/Normalize/README +++ b/ext/Unicode/Normalize/README @@ -48,9 +48,9 @@ Carp Exporter File::Copy File::Spec -unicore/CombiningClass.pl or unicode/CombiningClass.pl -unicore/Decomposition.pl or unicode/Decomposition.pl -unicore/CompExcl.txt or unicode/CompExcl.txt +unicore/CombiningClass.pl or unicode/CombiningClass.pl +unicore/Decomposition.pl or unicode/Decomposition.pl +unicore/CompositionExclusions.txt or unicode/CompExcl.txt and for the Non-XS version, in addition to the above, Lingua::KO::Hangul::Util 0.06 diff --git a/ext/Unicode/Normalize/mkheader b/ext/Unicode/Normalize/mkheader index 7aef304..ddd8cbf 100644 --- a/ext/Unicode/Normalize/mkheader +++ b/ext/Unicode/Normalize/mkheader @@ -32,7 +32,7 @@ our %Exclus; # $codepoint => 1 : composition exclusions my($f, $fh); foreach my $d (@INC) { use File::Spec; - $f = File::Spec->catfile($d, "unicore", "CompExcl.txt"); + $f = File::Spec->catfile($d, "unicore", "CompositionExclusions.txt"); last if open($fh, $f); $f = File::Spec->catfile($d, "unicode", "CompExcl.txt"); last if open($fh, $f); diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm index b239c16..9dabc5d 100644 --- a/lib/Unicode/UCD.pm +++ b/lib/Unicode/UCD.pm @@ -204,7 +204,7 @@ sub charinfo { last; } } - openunicode(\$UNICODEFH, "Unicode.txt"); + openunicode(\$UNICODEFH, "UnicodeData.txt"); if (defined $UNICODEFH) { use Search::Dict 1.02; if (look($UNICODEFH, "$hexk;", { xfrm => sub { $_[0] =~ /^([^;]+);(.+)/; sprintf "%06X;$2", hex($1) } } ) >= 0) { @@ -492,7 +492,7 @@ my %COMPEXCL; sub _compexcl { unless (%COMPEXCL) { - if (openunicode(\$COMPEXCLFH, "CompExcl.txt")) { + if (openunicode(\$COMPEXCLFH, "CompositionExclusions.txt")) { while (<$COMPEXCLFH>) { if (/^([0-9A-F]+) \# /) { my $code = hex($1); @@ -562,7 +562,7 @@ my %CASEFOLD; sub _casefold { unless (%CASEFOLD) { - if (openunicode(\$CASEFOLDFH, "CaseFold.txt")) { + if (openunicode(\$CASEFOLDFH, "CaseFolding.txt")) { while (<$CASEFOLDFH>) { if (/^([0-9A-F]+); ([CFSI]); ([0-9A-F]+(?: [0-9A-F]+)*);/) { my $code = hex($1); @@ -642,7 +642,7 @@ my %CASESPEC; sub _casespec { unless (%CASESPEC) { - if (openunicode(\$CASESPECFH, "SpecCase.txt")) { + if (openunicode(\$CASESPECFH, "SpecialCasing.txt")) { while (<$CASESPECFH>) { if (/^([0-9A-F]+); ([0-9A-F]+(?: [0-9A-F]+)*)?; ([0-9A-F]+(?: [0-9A-F]+)*)?; ([0-9A-F]+(?: [0-9A-F]+)*)?; (\w+(?: \w+)*)?/) { my ($hexcode, $lower, $title, $upper, $condition) = @@ -669,7 +669,7 @@ sub _casespec { upper => $oldupper, condition => $oldcondition }; } else { - warn __PACKAGE__, ": SpecCase.txt:", $., ": No oldlocale for 0x$hexcode\n" + warn __PACKAGE__, ": SpecialCasing.txt:", $., ": No oldlocale for 0x$hexcode\n" } } my ($locale) = diff --git a/lib/unicore/ArabLink.pl b/lib/unicore/ArabLink.pl index 1be0855..ab32b94 100644 --- a/lib/unicore/ArabLink.pl +++ b/lib/unicore/ArabLink.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/ArabLnkGrp.pl b/lib/unicore/ArabLnkGrp.pl index a183712..b834017 100644 --- a/lib/unicore/ArabLnkGrp.pl +++ b/lib/unicore/ArabLnkGrp.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/ArabShap.txt b/lib/unicore/ArabicShaping.txt similarity index 100% rename from lib/unicore/ArabShap.txt rename to lib/unicore/ArabicShaping.txt diff --git a/lib/unicore/BidiMirr.txt b/lib/unicore/BidiMirroring.txt similarity index 100% rename from lib/unicore/BidiMirr.txt rename to lib/unicore/BidiMirroring.txt diff --git a/lib/unicore/Bidirectional.pl b/lib/unicore/Bidirectional.pl index a158c17..36d7097 100644 --- a/lib/unicore/Bidirectional.pl +++ b/lib/unicore/Bidirectional.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/Blocks.pl b/lib/unicore/Blocks.pl index 9349041..cd384b4 100644 --- a/lib/unicore/Blocks.pl +++ b/lib/unicore/Blocks.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/Canonical.pl b/lib/unicore/Canonical.pl index ac1a660..40eadd8 100644 --- a/lib/unicore/Canonical.pl +++ b/lib/unicore/Canonical.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! ## diff --git a/lib/unicore/CaseFold.txt b/lib/unicore/CaseFolding.txt similarity index 100% rename from lib/unicore/CaseFold.txt rename to lib/unicore/CaseFolding.txt diff --git a/lib/unicore/Category.pl b/lib/unicore/Category.pl index bb2272e..98b55eb 100644 --- a/lib/unicore/Category.pl +++ b/lib/unicore/Category.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/CombiningClass.pl b/lib/unicore/CombiningClass.pl index 86afd9d..d078d18 100644 --- a/lib/unicore/CombiningClass.pl +++ b/lib/unicore/CombiningClass.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/CompExcl.txt b/lib/unicore/CompositionExclusions.txt similarity index 100% rename from lib/unicore/CompExcl.txt rename to lib/unicore/CompositionExclusions.txt diff --git a/lib/unicore/Decomposition.pl b/lib/unicore/Decomposition.pl index ed2bd4b..e03c762 100644 --- a/lib/unicore/Decomposition.pl +++ b/lib/unicore/Decomposition.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/EAWidth.txt b/lib/unicore/EastAsianWidth.txt similarity index 100% rename from lib/unicore/EAWidth.txt rename to lib/unicore/EastAsianWidth.txt diff --git a/lib/unicore/Exact.pl b/lib/unicore/Exact.pl index c72557a..61ba06a 100644 --- a/lib/unicore/Exact.pl +++ b/lib/unicore/Exact.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! ## diff --git a/lib/unicore/JamoShort.pl b/lib/unicore/JamoShort.pl index 08559e3..4ab02fd 100644 --- a/lib/unicore/JamoShort.pl +++ b/lib/unicore/JamoShort.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/Lbrk.pl b/lib/unicore/Lbrk.pl index ba16fcc..32a2ef7 100644 --- a/lib/unicore/Lbrk.pl +++ b/lib/unicore/Lbrk.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/LineBrk.txt b/lib/unicore/LineBreak.txt similarity index 100% rename from lib/unicore/LineBrk.txt rename to lib/unicore/LineBreak.txt diff --git a/lib/unicore/Name.pl b/lib/unicore/Name.pl index a5ed116..27e37eb 100644 --- a/lib/unicore/Name.pl +++ b/lib/unicore/Name.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/NamesList.html b/lib/unicore/NamesList.html deleted file mode 100644 index fd9f21c..0000000 --- a/lib/unicore/NamesList.html +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - - - - - -UCD: Unicode NamesList File Format - - - - - - - - - - - - - -
- - - - -
[Unicode]  Unicode Character - Database
-
 
-

Unicode NamesList File Format

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
Revision3.1
AuthorsAsmus Freytag
Date2001-02-26
This Versionhttp://www.unicode.org/Public/3.1-Update/NamesList-2.html
Previous Versionhttp://www.unicode.org/Public/3.0-Update/NamesList-1.html
Latest Versionhttp://www.unicode.org/Public/UNIDATA/NamesList.html
-

-
-Summary

-
-

This file describes the format and contents of NamesList.txt

-
-

Status

-
-

-The file and the files described herein are part of the Unicode Character Database -(UCD) -and are governed by the UCD Terms of Use stated at the end.

-
-
- -

1.0 Introduction

- -

The Unicode name list file NamesList.txt (also NamesList.lst) is a plain text file used -to drive the layout of the character code charts in the Unicode Standard. The information -in this file is a combination of several fields from the UnicodeData.txt and Blocks.txt files, -together with additional annotations for many characters. This document describes the -syntax rules for the file format, but also gives brief information on how each construct -is rendered when laid out for the book. Some of the syntax elements were used in -preparation of the drafts of the book and may not be present in the final, released form -of the NamesList.txt file.

- -

The same input file can be used to do the draft preparation for ISO/IEC 10646 (referred -below as ISO-style). This necessitates the presence of some information in the name list -file that is not needed (and in fact removed during parsing) for the Unicode book.

- -

With access to the layout program (unibook.exe) it is a simple matter of creating -name lists for the purpose of formatting working drafts containing proposed characters.

- -

1.1 NamesList File Overview

- -

The *.lst files are plain text files which in their most simple form look like this

- -

@@<tab>0020<tab>BASIC LATIN<tab>007F
-; this is a file comment (ignored)
-0020<tab>SPACE
-0021<tab>EXCLAMATION MARK
-0022<tab>QUOTATION MARK
-. . .
-007F<tab>DELETE

- -

The semicolon (as first character), @ and <tab> characters are used by the file -syntax and must be provided as shown. Hexadecimal digits must be in UPPER CASE). A double -@@ introduces a block header, with the title, and start and ending code of the block -provided as shown.

- -

For an ISO-style, minimal name list, only the NAME_LINE and BLOCKHEADER and their -constituent syntax elements are needed.

- -

The full syntax with all the options is provided in the following sections.

- -

1.2 NamesList File Structure

- -

This section gives defines the overall file structure

- -
NAMELIST:     TITLE_PAGE* BLOCK* 
-
-TITLE_PAGE:   TITLE 
-		| TITLE_PAGE SUBTITLE 
-		| TITLE_PAGE SUBHEADER 
-		| TITLE_PAGE IGNORED_LINE 
-		| TITLE_PAGE EMPTY_LINE
-		| TITLE_PAGE COMMENTLINE
-		| TITLE_PAGE NOTICE
-		| TITLE_PAGE PAGEBREAK 
-
-BLOCK:	      BLOCKHEADER 
-		| BLOCK CHAR_ENTRY 
-		| BLOCK SUBHEADER 
-		| BLOCK NOTICE 
-		| BLOCK EMPTY_LINE 
-		| BLOCK IGNORED_LINE 
-		| BLOCK PAGEBREAK
-
-CHAR_ENTRY:   NAME_LINE | RESERVED_LINE
-		| CHAR_ENTRY ALIAS_LINE
-		| CHAR_ENTRY COMMENT_LINE
-		| CHAR_ENTRY CROSS_REF
-		| CHAR_ENTRY DECOMPOSITION
-		| CHAR_ENTRY COMPAT_MAPPING
-		| CHAR_ENTRY IGNORED_LINE
-		| CHAR_ENTRY EMPTY_LINE
-		| CHAR_ENTRY NOTICE
-
- -

In other words:
-
-Neither TITLE nor  SUBTITLE may occur after the first BLOCKHEADER.

- -

Only TITLE, SUBTITLE, SUBHEADER, PAGEBREAK, COMMENT_LINE,  and IGNORED_LINE may -occur before the first BLOCKHEADER.

- -

Directly following either a NAME_LINE or a RESERVED_LINE an uninterrupted sequence of -the following lines may occur (in any order and repeated as often as needed): ALIAS_LINE, -CROSS_REF, DECOMPOSITION, COMPAT_MAPPING, NOTICE, EMPTY_LINE and IGNORED_LINE.

- -

Except for EMPTY_LINE, NOTICE and IGNORED_LINE, none of these lines may occur in any other -place.

- -

Note: A NOTICE displays differently depending on whether it follows a header or title -or is part of a CHAR_ENTRY.

- -

1.3 NamesList File Elements

- -

This section provides the details of the syntax for the individual elements.

- -
ELEMENT		SYNTAX	// How rendered
- -
NAME_LINE:	CHAR <tab> LINE
-			// the CHAR and the corresponding image are echoed, 
-			// followed by the name as given in LINE
-
-		CHAR TAB NAME COMMENT LF
-			// Names may have a comment, which is stripped off
-			// unless the file is parsed for an ISO style list
-										
-RESERVED_LINE:	CHAR TAB <reserved>		
-			// the CHAR is echoed followed by an icon for the
-			// reserved character and a fixed string e.g. <reserved>
-	
-COMMMENT_LINE:	<tab> "*" SP EXPAND_LINE
-			// * is replaced by BULLET, output line as comment
-		<tab> EXPAND_LINE	
-			// output line as comment
-
-ALIAS_LINE:	<tab> "=" SP LINE	
-			// replace = by itself, output line as alias
-
-CROSS_REF:	<tab> "X" SP EXPAND_LINE	
-			// X is replaced by a right arrow
-		<tab> "X" SP "(" STRING SP "-" SP CHAR ")"	
-			// X is replaced by a right arrow
-			// the "(", "-", ")" are removed, the
-			// order of CHAR and STRING is reversed
-			// i.e. both inputs result in the same output
-
-IGNORED_LINE:	<tab> ";" EXPAND_LINE	
-EMPTY_LINE:	LF			
-			// empty lines and file comments are ignored
-
-DECOMPOSITION:	<tab> ":" EXPAND_LINE	
-			// replace ':' by EQUIV, expand line into 
-			// decomposition 
-
-COMPAT_MAPPING:	<tab> "#" SP EXPAND_LINE	
-			// replace '#' by APPROX, output line as mapping 
-
-NOTICE:		"@+" <tab> LINE		
-			// skip '@+', output text as notice
-		"@+" TAB * SP LINE	
-			// skip '@', output text as notice
-			// "*" expands to a bullet character
-			// Notices following a character code apply to the
-			// character and are indented. Notices not following
-			// a character code apply to the page/block/column 
-			// and are italicized, but not indented
-
-SUBTITLE:	"@@@+" <tab> LINE	
-			// skip "@@@+", output text as subtitle
-
-SUBHEADER:	"@" <tab> LINE	
-			// skip '@', output line as text as column header
-
-BLOCKHEADER:	"@@" <tab> BLOCKSTART <tab> BLOCKNAME <tab> BLOCKEND
-			// skip "@@", cause a page break and optional
-			// blank page, then output one or more charts
-			// followed by the list of character names. 
-			// use BLOCKSTART and BLOCKEND to define the 
-			// characters belonging to a block
-			// use blockname in page and table headers
-		"@@" <tab> BLOCKSTART <tab> BLOCKNAME COMMENT <tab> BLOCKEND
-			// if a comment is present it replaces the blockname
-			// when an ISO-style namelist is laid out
-
-BLOCKSTART:	CHAR	// first character position in block
-BLOCKEND:	CHAR	// last character position in block
-PAGE_BREAK:	"@@"	// insert a (column) break
-
-TITLE:		"@@@" <tab> LINE	
-			// skip "@@@", output line as text
-			// Title is used in page headers
-
-EXPAND_LINE:	{CHAR | STRING}+ LF	
-			// all instances of CHAR *) are replaced by 
-			// CHAR NBSP x NBSP where x is the single Unicode
-			// character corresponding to char
-			// If character is combining, it is replaced with
-			// CHAR NBSP <circ> x NBSP where <circ> is the 
-			// dotted circle
- -

Notes: - -

- - - -

1.4 NamesList File Primitives

- -

The following are the primitives and terminals for the NamesList syntax.

- -
LINE:		STRING LF
-COMMENT:		"(" NAME ")"
-		"(" NAME ")" "*" 
-BLOCKNAME:	<sequence of Latin-1 characters, except "(" and ")"> 
-NAME:	  	<sequence of uppercase ASCII letters, digit and hyphen> 
-STRING:	  	<sequence of Latin-1 characters> 
-CHAR:		X X X X
-		| X X X X X
-		| X X X X X X
-X:	  	"0"|"1"|"2"|"3"|"4"|"5"|"6"|"7"|"8"|"9"|"A"|"B"|"C"|"D"|"E"|"F" 
-<tab>:	  	<sequence of one or more ASCII tab characters 0x09>	
-SP:	  	<ASCII 0x20>
-LF:	  	<any sequence of ASCII 0x0A and 0x0D>
-
- -

Notes: - -

-

Modifications

-

Use of 4-6 digit hex notation is now supported.

-
-

-UCD Terms of Use

-

-Disclaimer

-
-

The Unicode Character Database is provided as is by Unicode, Inc. No - claims are made as to fitness for any particular purpose. No warranties of any - kind are expressed or implied. The recipient agrees to determine applicability - of information provided. If this file has been purchased on magnetic or - optical media from Unicode, Inc., the sole remedy for any claim will be - exchange of defective media within 90 days of receipt.

-

This disclaimer is applicable for all other data files accompanying the - Unicode Character Database, some of which have been compiled by the Unicode - Consortium, and some of which have been supplied by other sources.

-
-

Limitations on Rights to Redistribute This Data

-
-

Recipient is granted the right to make copies in any form for internal - distribution and to freely use the information supplied in the creation of - products supporting the UnicodeTM Standard. The files in the - Unicode Character Database can be redistributed to third parties or other - organizations (whether for profit or not) as long as this notice and the - disclaimer notice are retained. Information can be extracted from these files - and used in documentation or programs, as long as there is an accompanying - notice indicating the source.

-
-
-
-
- - - - -
HomeTerms of UseE-mail
- -
-
- - - - - diff --git a/lib/unicore/Number.pl b/lib/unicore/Number.pl index 99af073..5588c8b 100644 --- a/lib/unicore/Number.pl +++ b/lib/unicore/Number.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/PropList.html b/lib/unicore/PropList.html deleted file mode 100644 index 508a533..0000000 --- a/lib/unicore/PropList.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - - - -UCD: Extended Character Properties - - - - - - - - - - - - -
- - - - -
[Unicode]  Unicode Character - Database
-
 
-

Extended Character Properties

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
Revision3.1.1
AuthorsMark Davis
Date2001-07-12
This Versionhttp://www.unicode.org/Public/3.1-Update1/PropList-3.1.1.html
Previous Versionn/a
Latest Versionhttp://www.unicode.org/Public/UNIDATA/PropList.html
-


-Summary

-
-

This document describes the format and content of the PropList.txt data - file in the Unicode Character Database (UCD).

-
-

Status

-
-

The file and the files described herein are part of the Unicode - Character Database and governed by the UCD Terms of Use - given below.

-

For general information on file formats and table formats, and the - implications of normative vs informative properties, see - UnicodeCharacterDatabase.html.

-

Warning: the information in this file does not completely - describe the use and interpretation of Unicode character properties and - behavior. It must be used in conjunction with the data in the other files in - the UCD, and relies on the notation and definitions supplied in The - Unicode Standard. All chapter references are to Version 3.1.0 of the - standard.

-
-
-

Introduction

-

PropList.txt contains extended properties that supplement the -General Category property described in UnicodeData.html. Unlike the derived -properties, the properties in PropList.txt cannot be derived directly from -UnicodeData.txt or other data files of the UCD. These properties are listed in -the following table.

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Property ValueN/IDefinition and Usage
White_spaceNSpace characters and those format control characters - (such as TAB, CR and LF) which should be treated by programming - languages as "white space" for the purpose of parsing - elements. -

Note: ZERO WIDTH SPACE and ZERO WIDTH NO-BREAK SPACE are not - included, since their functions are restricted to line-break control. - Their names are unfortunately misleading in this respect.

-

Note: There are other senses of "whitespace" that - encompass a different set of characters.

-
Bidi_ControlNThose format control characters which have specific - functions in the Bidirectional Algorithm.
Join_ControlNThose format control characters which have specific - functions for control of cursive joining and ligation.
ASCII_Hex_DigitNASCII characters commonly used for the representation of - hexadecimal numbers.
DashIThose punctuation characters explicitly called out as - dashes in the Unicode Standard, plus compatibility equivalents to those. - Most of these have the Pd General Category, but some have the Sm General - Category because of their use in mathematics.
HyphenIThose dashes used to mark connections between pieces of - words, plus the Katakana middle dot. The Katakana middle dot functions - like a hyphen, but is shaped like a dot rather than a dash.
Quotation_MarkIThose punctuation characters that function as quotation - marks.
Terminal_PunctuationIThose punctuation characters that generally mark the end - of textual units.
Other_MathIMath characters that do not have the Sm General Category.
Hex_DigitICharacters commonly used for the representation of - hexadecimal numbers, plus their compatibility equivalents.
Other_AlphabeticIAlphabetic characters that do not have L as their major - class for the General Category (Lu, Ll, Lt, Lm, Lo).
IdeographicICharacters considered to be CJKV (Chinese, Japanese, - Korean, and Vietnamese) ideographs.
DiacriticICharacters that linguistically modify the meaning of - another character to which they apply. Some diacritics are not combining - characters, and some combining characters are not diacritics.
ExtenderICharacters whose principal function is to extend the - value or shape of a preceding alphabetic character. Typical of these are - length and iteration marks.
Other_LowercaseILowercase characters that do not have the Ll General - Category.
Other_UppercaseIUppercase characters that do not have the Lu General - Category.
Noncharacter_Code_PointNCode points that are explicitly defined as illegal for - the encoding of characters. See Unicode 3.1 for - more information.
-
-
-


-UCD Terms of Use

-

Disclaimer

-
-

The Unicode Character Database is provided as is by Unicode, Inc. No - claims are made as to fitness for any particular purpose. No warranties of any - kind are expressed or implied. The recipient agrees to determine applicability - of information provided. If this file has been purchased on magnetic or - optical media from Unicode, Inc., the sole remedy for any claim will be - exchange of defective media within 90 days of receipt.

-

This disclaimer is applicable for all other data files accompanying the - Unicode Character Database, some of which have been compiled by the Unicode - Consortium, and some of which have been supplied by other sources.

-
-

Limitations on Rights to Redistribute This Data

-
-

Recipient is granted the right to make copies in any form for internal - distribution and to freely use the information supplied in the creation of - products supporting the UnicodeTM Standard. The files in the - Unicode Character Database can be redistributed to third parties or other - organizations (whether for profit or not) as long as this notice and the - disclaimer notice are retained. Information can be extracted from these files - and used in documentation or programs, as long as there is an accompanying - notice indicating the source.

-
-
-

HomeE-mail - - - - diff --git a/lib/unicore/README.perl b/lib/unicore/README.perl index f6ac702..4fa7e49 100644 --- a/lib/unicore/README.perl +++ b/lib/unicore/README.perl @@ -2,13 +2,9 @@ The *.txt files were copied 11 Feb 2001 from http://www.unicode.org/Public/3.1-Update/ -and most of them were renamed to better fit 8.3 filename limitations, -by which the Perl distribution tries to live. The renamings are listed -in the file 'rename'. - The two big files, NormalizationTest.txt (2.0MB) and Unihan.txt (15.8MB) -were not copied due to space considerations. Also not included are the -derived files: +were not copied due to space considerations. Also not included are any +*.html files and the derived files: DerivedBidiClass.txt DerivedBinaryProperties.txt @@ -25,9 +21,7 @@ derived files: DerivedNumericValues.txt DerivedProperties.html -The *.pl files are generated from these files by the 'mktables.PL' script. - -While the files have been renamed the links in the html files haven't. +The *.pl files are generated from these files by the mktables script. -- jhi@iki.fi diff --git a/lib/unicore/Scripts.pl b/lib/unicore/Scripts.pl index 25164ce..99d7f46 100644 --- a/lib/unicore/Scripts.pl +++ b/lib/unicore/Scripts.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/SpecCase.txt b/lib/unicore/SpecialCasing.txt similarity index 100% rename from lib/unicore/SpecCase.txt rename to lib/unicore/SpecialCasing.txt diff --git a/lib/unicore/To/Digit.pl b/lib/unicore/To/Digit.pl index 9531d15..e5c0ff4 100644 --- a/lib/unicore/To/Digit.pl +++ b/lib/unicore/To/Digit.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! return <<'END'; diff --git a/lib/unicore/To/Fold.pl b/lib/unicore/To/Fold.pl index ae5642d..983bb79 100644 --- a/lib/unicore/To/Fold.pl +++ b/lib/unicore/To/Fold.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! diff --git a/lib/unicore/To/Lower.pl b/lib/unicore/To/Lower.pl index 0cf3d23..521d3a2 100644 --- a/lib/unicore/To/Lower.pl +++ b/lib/unicore/To/Lower.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! diff --git a/lib/unicore/To/Title.pl b/lib/unicore/To/Title.pl index 445732f..fa8401b 100644 --- a/lib/unicore/To/Title.pl +++ b/lib/unicore/To/Title.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! diff --git a/lib/unicore/To/Upper.pl b/lib/unicore/To/Upper.pl index 3b57ed3..decd6a8 100644 --- a/lib/unicore/To/Upper.pl +++ b/lib/unicore/To/Upper.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! diff --git a/lib/unicore/UCD.html b/lib/unicore/UCD.html deleted file mode 100644 index 3634dc5..0000000 --- a/lib/unicore/UCD.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - - - -Unicode Character Database - - - - - - - - - - - -
- - - - -
[Unicode]  Unicode Character - Database
-
 
-

UNICODE CHARACTER DATABASE

- - - - - - - - - - - - - - - - - - - - - - - - - -
Revision3.1.0
AuthorsMark Davis and Ken Whistler
Date2001-02-28
This Versionhttp://www.unicode.org/Public/3.1-Update/UnicodeCharacterDatabase-3.1.0.html
Previous Versionhttp://www.unicode.org/Public/3.0-Update1/UnicodeCharacterDatabase-3.0.1.html
Latest Versionhttp://www.unicode.org/Public/UNIDATA/UnicodeCharacterDatabase.html
-


-Summary

-
-

This document describes the format and content of the Unicode Character - Database (UCD)

-
-

Status

-
-

The file and the files described herein are part of the Unicode - Character Database and are governed by the UCD Terms of - Use given below.

-

The References provide related information - that is useful in understanding this document.

-

Warning: the information in this file does not completely - describe the use and interpretation of Unicode character properties and - behavior. It must be used in conjunction with the data in the other files in - the Unicode Character Database, and relies on the notation and definitions - supplied in The - Unicode Standard. All chapter references are to Version 3.1.0 of the - standard.

-
-

Introduction

-

The Unicode Character Database (UCD) is a set of files that define the -Unicode character properties and internal mappings. This document describes the -files that are part of The -Unicode Standard, Version 3.1 [U3.1]. The main changes -in this version are:

- -

Files in the UCD use a common format unless otherwise specified. For -details, see UCD File Format.

-

Conformance

-

For information on the meaning and application of the terms normative and -informative, see "Chapter 4, Character Properties (revision)" in UAX #27, Unicode -3.1.

-

Some informative data files contain derived properties, properties that can -be derived from other properties in the UCD. The derived properties that are -computed from solely normative properties are themselves normative, while the -others are informative.

-

UCD Files

-

The following table summarizes the files in the Unicode Character Database. - For more information about these files, see the referenced technical -report(s), files, or section of Unicode Standard, Version 3.1.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
".txt" FileDescriptionN/ISummary
ArabicShapingSection 8.2NBasic Arabic and Syriac character shaping properties, such as initial, - medial and final shapes.
BidiMirroringUAX #9IProperties for substituting characters in an implementation of - bidirectional mirroring.
BlocksChapter 14NList of block names.
CaseFoldingUTR #21NMapping from characters to their case-folded forms. This is an - informative file containing normative derived properties. -

Derived from UnicodeData and SpecialCasing.

-
CompositionExclusionsUAX #15NProperties for normalization.
DerivedXXXDerivedProperties.htmlN/IVarious informative derived files, described in the documentation file. - Some of the derived properties are normative and some are informative.
EastAsianWidthUAX #11IProperties for determining the choice of wide vs. narrow glyphs in East - Asian contexts.
IndexChapter 14IIndex to Unicode characters, as printed in the Unicode Standard. (See Update Note.)
JamoChapter 4NList of Jamo short names, used in deriving HANGUL SYLLABLE names - algorithmically.
LineBreakUAX #14N/IProperties for line breaking.
NamesListChapter 14IThis file duplicates some of the material in the UnicodeData file, and - adds annotations used in the character charts.
NormalizationTestUAX #15NTest file for conformance to Unicode Normalization Forms.
PropListPropList.htmlN/IExtended character properties
ScriptsUTR #24IDefault scripts values for use in regular expressions.
SpecialCasingChapter 4,
- UTR #21
NList of properties required for full case mapping.
UnicodeDataUnicodeData.html,
- Chapter 4,
- UTR #21,
- UAX #15
N/IThe main file in the UCD. 
UnihanUnihan.txtN/IExtended properties of Han (CJK) characters. (See Format - Note.)
-
-

Update Note: The information in Index.txt - files matches the appropriate version of the book. Changes in the Unicode - Character Database since then may not be reflected in these files, since they - are primarily of archival interest.

-

Format Note: The file data format differs - from the standard format, and is described in the header of the file. The - header also describes which properties are informative and which are - normative.

-
-

UCD File Format

-

Files in the UCD use the following format, unless otherwise specified.

- - - -
-
0000..007F; Basic Latin
-0080..00FF; Latin-1 Supplement
-
-1680      ; White_space # Zs OGHAM SPACE MARK
-2000..200A; White_space # Zs [11] EN QUAD..HAIR SPACE
-
- -
-
00BC..00BE ; numeric # No [3] VULGAR FRACTION ONE QUARTER..VULGAR FRACTION THREE QUARTERS
-
- -

However, the comments are purely informational, and may change format or be -omitted in the future. They should not be parsed for content.

-

References

- - - - - - - - - - - - - - - - - - - - - - - -
[FAQ]Unicode Frequently Asked Questions
- http://www.unicode.org/unicode/faq/
-
For answers to common questions on technical issues.
[Glossary]Unicode Glossary
- http://www.unicode.org/glossary/
-
For explanations of terminology used in this and other documents.
[Reports]Unicode Technical Reports
- http://www.unicode.org/unicode/reports/
-
For information on the status and development process for - technical reports, and for a list of technical reports.
[U3.1]Unicode Standard Annex #27: Unicode 3.1
- http://www.unicode.org/unicode/reports/tr27/
[Versions]Versions of the Unicode Standard
- http://www.unicode.org/unicode/standard/versions/
-
For details on the precise contents of each version of the - Unicode Standard, and how to cite them.
-


-UCD Terms of Use

-

Disclaimer

-
-

The Unicode Character Database is provided as is by Unicode, Inc. No - claims are made as to fitness for any particular purpose. No warranties of any - kind are expressed or implied. The recipient agrees to determine applicability - of information provided. If this file has been purchased on magnetic or - optical media from Unicode, Inc., the sole remedy for any claim will be - exchange of defective media within 90 days of receipt.

-

This disclaimer is applicable for all other data files accompanying the - Unicode Character Database, some of which have been compiled by the Unicode - Consortium, and some of which have been supplied by other sources.

-
-

Limitations on Rights to Redistribute This Data

-
-

Recipient is granted the right to make copies in any form for internal - distribution and to freely use the information supplied in the creation of - products supporting the UnicodeTM Standard. The files in the - Unicode Character Database can be redistributed to third parties or other - organizations (whether for profit or not) as long as this notice and the - disclaimer notice are retained. Information can be extracted from these files - and used in documentation or programs, as long as there is an accompanying - notice indicating the source.

-
-
-

HomeE-mail - - - - diff --git a/lib/unicore/Unicode.html b/lib/unicore/Unicode.html deleted file mode 100644 index f348491..0000000 --- a/lib/unicore/Unicode.html +++ /dev/null @@ -1,1068 +0,0 @@ - - - - - - - -UnicodeData File Format - - - - - - - - - - - -
- - - - -
[Unicode]  Unicode Character - Database
-
 
-

Unicode Data File Format

- - - - - - - - - - - - - - - - - - - - - - - - - -
Revision3.1.0
AuthorsMark Davis and Ken Whistler
Date2001-02-28
This Versionhttp://www.unicode.org/Public/3.1-Update/UnicodeData-3.1.0.html
Previous Versionhttp://www.unicode.org/Public/3.0-Update1/UnicodeData-3.0.1.html
Latest Versionhttp://www.unicode.org/Public/UNIDATA/UnicodeData.html
-


-Summary

-
-

This document describes the format and content of the UnicodeData.txt - file in the Unicode Character Database (UCD).

-
-

Status

-
-

The file and the files described herein are part of the Unicode - Character Database  and governed by the UCD Terms of - Use given below.

-

For general information on file formats and table formats, and the - implications of normative vs informative properties, see - UnicodeCharacterDatabase.html.

-

Warning: the information in this file does not completely - describe the use and interpretation of Unicode character properties and - behavior. It must be used in conjunction with the data in the other files in - the UCD, and relies on the notation and definitions supplied in The - Unicode Standard. All chapter references are to Version 3.1.0 of the - standard.

-
-

Introduction

-

This document describes the format of the UnicodeData.txt file, which is one -of the files in the Unicode Character Database. The document is divided into the -following sections: -

-

Field Formats

-

Each line represents the data for one encoded character in the Unicode -Standard. (For information on the file format, see UCD File Format in -UnicodeCharacterDatabase.html). -

Every encoded character has a data entry, with the exception of certain -special ranges, as detailed below. -

-

The exact ranges represented by start and end characters are: -

-

The following table describes the format and meaning of each field in a data -entry in the UnicodeData file.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

Field

-

Name

-

N/I

-

Explanation

0Code valueNCode value.
1Character nameNThese names match exactly the names published in Chapter 14 - of the Unicode Standard, Version 3.0.
2General CategoryNThis is a useful breakdown into various "character - types" which can be used as a default categorization in - implementations. See below for a brief explanation.
3Canonical Combining - ClassesNThe classes used for the Canonical Ordering Algorithm in - the Unicode Standard. These classes are also printed in Chapter 4 of the - Unicode Standard.
4Bidirectional CategoryNSee the list below for an explanation of the abbreviations - used in this field. These are the categories required by the Bidirectional - Behavior Algorithm in the Unicode Standard. These categories are - summarized in Chapter 3 of the Unicode Standard.
5Character Decomposition - MappingNIn the Unicode Standard, not all of the mappings are full - (maximal) decompositions. Recursive application of look-up for - decompositions will, in all cases, lead to a maximal decomposition. The - decomposition mappings match exactly the decomposition mappings published - with the character names in the Unicode Standard.
6Decimal digit valueNThis is a numeric field. If the character has the decimal - digit property, as specified in Chapter 4 of the Unicode Standard, the - value of that digit is represented with an integer value in this field
7Digit valueNThis is a numeric field. If the character represents a - digit, not necessarily a decimal digit, the value is here. This covers - digits which do not form decimal radix forms, such as the compatibility - superscript digits
8Numeric valueNThis is a numeric field. If the character has the numeric - property, as specified in Chapter 4 of the Unicode Standard, the value of - that character is represented with an integer or rational number in this - field. This includes fractions as, e.g., "1/5" for U+2155 VULGAR - FRACTION ONE FIFTH Also included are numerical values for compatibility - characters such as circled numbers.
9MirroredNIf the character has been identified as a - "mirrored" character in bidirectional text, this field has the - value "Y"; otherwise "N". The list of mirrored - characters is also printed in Chapter 4 of the Unicode Standard.
10Unicode 1.0 NameIThis is the old name as published in Unicode 1.0. This name - is only provided when it is significantly different from the current name - for the character.
1110646 comment fieldIThis is the ISO 10646 comment field. It appears in - parentheses in the 10646 names list, or contains an asterisk to mark an - Annex P note.
12Uppercase MappingNUpper case equivalent mapping. If a character is part of an - alphabet with case distinctions, and has a simple upper case equivalent, - then the upper case equivalent is in this field. See the explanation below - on case distinctions. These mappings are always one-to-one, not - one-to-many or many-to-one. -

For full case mappings, see UTR #21 and - SpecialCasing.txt.

-
13Lowercase MappingNSimilar to Uppercase mapping
14Titlecase MappingNSimilar to Uppercase mapping
-

General Category

-

The values in this field are abbreviations for the following values. For more -information, see the Unicode Standard.

-
-

Note: the standard does not assign information to control characters - (except for certain cases in the Bidirectional Algorithm). Implementations - will generally also assign categories to certain control characters, notably - CR and LF, according to platform conventions. See UAX #13: Unicode Newline - Guidelines for more information.

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

Abbr.

-

Description

LuLetter, Uppercase
LlLetter, Lowercase
LtLetter, Titlecase
LmLetter, Modifier
LoLetter, Other
MnMark, Non-Spacing
McMark, Spacing Combining
MeMark, Enclosing
NdNumber, Decimal Digit
NlNumber, Letter
NoNumber, Other
PcPunctuation, Connector
PdPunctuation, Dash
PsPunctuation, Open
PePunctuation, Close
PiPunctuation, Initial quote (may behave like Ps or Pe depending on usage)
PfPunctuation, Final quote (may behave like Ps or Pe depending on usage)
PoPunctuation, Other
SmSymbol, Math
ScSymbol, Currency
SkSymbol, Modifier
SoSymbol, Other
ZsSeparator, Space
ZlSeparator, Line
ZpSeparator, Paragraph
CcOther, Control
CfOther, Format
CsOther, Surrogate
CoOther, Private Use
CnOther, Not Assigned (no characters in the file have this property)
-
-

Note: The term "L&" is sometimes used to stand for - Uppercase, Lowercase or Titlecase letters (Lu, Ll, or Lt).

-
-

Bidirectional Category

-

Please refer to Chapter 3 for an explanation of the algorithm for -Bidirectional Behavior and an explanation of the significance of these -categories. An up-to-date version can be found on Unicode Standard Annex #9: -The Bidirectional Algorithm.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

Type

-

Description

LLeft-to-Right
LRELeft-to-Right Embedding
LROLeft-to-Right Override
RRight-to-Left
ALRight-to-Left Arabic
RLERight-to-Left Embedding
RLORight-to-Left Override
PDFPop Directional Format
ENEuropean Number
ESEuropean Number Separator
ETEuropean Number Terminator
ANArabic Number
CSCommon Number Separator
NSMNon-Spacing Mark
BNBoundary Neutral
BParagraph Separator
SSegment Separator
WSWhitespace
ONOther Neutrals
-

Character Decomposition Mapping

-

The tags supplied with certain decomposition mappings generally indicate -formatting information. Where no such tag is given, the mapping is designated as -canonical. Conversely, the presence of a formatting tag also indicates that the -mapping is a compatibility mapping and not a canonical mapping. In the absence -of other formatting information in a compatibility mapping, the tag is used to -distinguish it from canonical mappings.

-

In some instances a canonical mapping or a compatibility mapping may consist -of a single character. For a canonical mapping, this indicates that the -character is a canonical equivalent of another single character. For a -compatibility mapping, this indicates that the character is a compatibility -equivalent of another single character. The compatibility formatting tags used -are:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Tag -

Description

<font>  A font variant (e.g. a blackletter form).
<noBreak>  A no-break version of a space or hyphen.
<initial>  An initial presentation form (Arabic).
<medial>  A medial presentation form (Arabic).
<final>  A final presentation form (Arabic).
<isolated>  An isolated presentation form (Arabic).
<circle>  An encircled form.
<super>  A superscript form.
<sub>  A subscript form.
<vertical>  A vertical layout presentation form.
<wide>  A wide (or zenkaku) compatibility character.
<narrow>  A narrow (or hankaku) compatibility character.
<small>  A small variant form (CNS compatibility).
<square>  A CJK squared font variant.
<fraction>  A vulgar fraction form.
<compat>  Otherwise unspecified compatibility character.
-

Reminder: There is a difference between decomposition and -decomposition mapping. The decomposition mappings are defined in the UnicodeData, -while the decomposition (also termed "full decomposition") is defined -in Chapter 3 to use those mappings recursively. -

-

Canonical Combining Classes

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

Value

-

Description

0:Spacing, split, enclosing, reordrant, and Tibetan subjoined
1:Overlays and interior
7:Nuktas
8:Hiragana/Katakana voicing marks
9:Viramas
10:Start of fixed position classes
199:End of fixed position classes
200:Below left attached
202:Below attached
204:Below right attached
208:Left attached (reordrant around single base character)
210:Right attached
212:Above left attached
214:Above attached
216:Above right attached
218:Below left
220:Below
222:Below right
224:Left (reordrant around single base character)
226:Right
228:Above left
230:Above
232:Above right
233:Double below
234:Double above
240:Below (iota subscript)
-

Note: some of the combining classes in this list do not -currently have members but are specified here for completeness.

-

Decompositions and -Normalization

-

Decomposition is specified in Chapter 3. Unicode Standard Annex -#15: Unicode Normalization Forms specifies the interaction between -decomposition and normalization. That report specifies how the decompositions -defined in UnicodeData.txt are used to derive normalized forms of Unicode text.

-

Note that as of the 2.1.9 update of the Unicode Character Database, the -decompositions in the UnicodeData.txt file can be used to recursively derive the -full decomposition in canonical order, without the need to separately apply -canonical reordering. However, canonical reordering of combining character -sequences must still be applied in decomposition when normalizing -source text which contains any combining marks.

-

Case Mappings

-

There are a number of complications to case mappings that occur once the -repertoire of characters is expanded beyond ASCII. For more information, see UTR #21: Case Mappings.

-

For compatibility with existing parsers, UnicodeData.txt only contains case -mappings for characters where they are one-to-one mappings; it also omits -information about context-sensitive case mappings. Information about these -special cases can be found in a separate data file, SpecialCasing.txt.

-

Property Invariants

-

Values in UnicodeData.txt are subject to correction as errors are found; -however, some characteristics of the categories themselves can be considered -invariants. Applications may wish to take these invariants into account when -choosing how to implement character properties. For more information, see Unicode Policies.

-

The following is a partial list of known invariants for the Unicode Character -Database.

-

Database Fields

- -

General Category

- -

Combining Classes

- -

Canonical Decomposition

- -

Modification History

-

This section provides a summary of the changes between update versions of the -Unicode Standard.

-

Unicode -3.1

-

Modifications made for Version 3.0.1 of UnicodeData.txt include: -

-

Unicode -3.0.1

-

Modifications made for Version 3.0.1 of UnicodeData.txt include: -

-

Unicode -3.0.0

-

Modifications made for Version 3.0.0 of UnicodeData.txt include many new -characters and a number of property changes. These are summarized in Appendex D -of The Unicode Standard, Version 3.0.

-

Unicode -2.1.9

-

Modifications made for Version 2.1.9 of UnicodeData.txt include: -

-

Unicode -2.1.8

-

Modifications made for Version 2.1.8 of UnicodeData.txt include: -

-

Version 2.1.7

-

This version was for internal change tracking only, and never publicly -released.

-

Version 2.1.6

-

This version was for internal change tracking only, and never publicly -released.

-

Unicode -2.1.5

-

Modifications made for Version 2.1.5 of UnicodeData.txt include: -

-

Version 2.1.4

-

This version was for internal change tracking only, and never publicly -released.

-

Version 2.1.3

-

This version was for internal change tracking only, and never publicly -released.

-

Unicode -2.1.2

-

Modifications made in updating UnicodeData.txt to Version 2.1.2 for the -Unicode Standard, Version 2.1 (from Version 2.0) include: -

-

Version 2.1.1

-

This version was for internal change tracking only, and never publicly -released.

-

Unicode -2.0.0

-

The modifications made in updating UnicodeData.txt for the Unicode Standard, -Version 2.0 include: -

-

UCD Terms of Use

-

Disclaimer

-
-

The Unicode Character Database is provided as is by Unicode, Inc. No - claims are made as to fitness for any particular purpose. No warranties of any - kind are expressed or implied. The recipient agrees to determine applicability - of information provided. If this file has been purchased on magnetic or - optical media from Unicode, Inc., the sole remedy for any claim will be - exchange of defective media within 90 days of receipt.

-

This disclaimer is applicable for all other data files accompanying the - Unicode Character Database, some of which have been compiled by the Unicode - Consortium, and some of which have been supplied by other sources.

-
-

Limitations on Rights to Redistribute This Data

-
-

Recipient is granted the right to make copies in any form for internal - distribution and to freely use the information supplied in the creation of - products supporting the UnicodeTM Standard. The files in the - Unicode Character Database can be redistributed to third parties or other - organizations (whether for profit or not) as long as this notice and the - disclaimer notice are retained. Information can be extracted from these files - and used in documentation or programs, as long as there is an accompanying - notice indicating the source.

-
-
-
-
- - - - -
HomeTerms of UseE-mail
-
-
- - - - diff --git a/lib/unicore/Unicode.txt b/lib/unicore/UnicodeData.txt similarity index 100% rename from lib/unicore/Unicode.txt rename to lib/unicore/UnicodeData.txt diff --git a/lib/unicore/lib/ASCII.pl b/lib/unicore/lib/ASCII.pl index c40837d..42aa565 100644 --- a/lib/unicore/lib/ASCII.pl +++ b/lib/unicore/lib/ASCII.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Alnum.pl b/lib/unicore/lib/Alnum.pl index 9fdf74e..eeddd22 100644 --- a/lib/unicore/lib/Alnum.pl +++ b/lib/unicore/lib/Alnum.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Alpha.pl b/lib/unicore/lib/Alpha.pl index c0923d8..0d43491 100644 --- a/lib/unicore/lib/Alpha.pl +++ b/lib/unicore/lib/Alpha.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Alphabet.pl b/lib/unicore/lib/Alphabet.pl index d7462dd..5b0b9df 100644 --- a/lib/unicore/lib/Alphabet.pl +++ b/lib/unicore/lib/Alphabet.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Any.pl b/lib/unicore/lib/Any.pl index 8179ec7..b30cb2f 100644 --- a/lib/unicore/lib/Any.pl +++ b/lib/unicore/lib/Any.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Arabic.pl b/lib/unicore/lib/Arabic.pl index 4b66297..0f26cf9 100644 --- a/lib/unicore/lib/Arabic.pl +++ b/lib/unicore/lib/Arabic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Armenian.pl b/lib/unicore/lib/Armenian.pl index 567452d..6652079 100644 --- a/lib/unicore/lib/Armenian.pl +++ b/lib/unicore/lib/Armenian.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/AsciiHex.pl b/lib/unicore/lib/AsciiHex.pl index ef8a62d..24c43ee 100644 --- a/lib/unicore/lib/AsciiHex.pl +++ b/lib/unicore/lib/AsciiHex.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Assigned.pl b/lib/unicore/lib/Assigned.pl index e1ace2e..bf9d7e8 100644 --- a/lib/unicore/lib/Assigned.pl +++ b/lib/unicore/lib/Assigned.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Bengali.pl b/lib/unicore/lib/Bengali.pl index 8a04b20..3349676 100644 --- a/lib/unicore/lib/Bengali.pl +++ b/lib/unicore/lib/Bengali.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiAL.pl b/lib/unicore/lib/BidiAL.pl index 872a1a6..928fc7a 100644 --- a/lib/unicore/lib/BidiAL.pl +++ b/lib/unicore/lib/BidiAL.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiAN.pl b/lib/unicore/lib/BidiAN.pl index 6c401fc..c5defcb 100644 --- a/lib/unicore/lib/BidiAN.pl +++ b/lib/unicore/lib/BidiAN.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiB.pl b/lib/unicore/lib/BidiB.pl index d0c069c..85572fe 100644 --- a/lib/unicore/lib/BidiB.pl +++ b/lib/unicore/lib/BidiB.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiBN.pl b/lib/unicore/lib/BidiBN.pl index f0e171b..b552cb3 100644 --- a/lib/unicore/lib/BidiBN.pl +++ b/lib/unicore/lib/BidiBN.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiCS.pl b/lib/unicore/lib/BidiCS.pl index 129154e..7f17238 100644 --- a/lib/unicore/lib/BidiCS.pl +++ b/lib/unicore/lib/BidiCS.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiCont.pl b/lib/unicore/lib/BidiCont.pl index 62a70c8..070ad87 100644 --- a/lib/unicore/lib/BidiCont.pl +++ b/lib/unicore/lib/BidiCont.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiEN.pl b/lib/unicore/lib/BidiEN.pl index 3834487..24a291f 100644 --- a/lib/unicore/lib/BidiEN.pl +++ b/lib/unicore/lib/BidiEN.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiES.pl b/lib/unicore/lib/BidiES.pl index e62c128..9810f81 100644 --- a/lib/unicore/lib/BidiES.pl +++ b/lib/unicore/lib/BidiES.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiET.pl b/lib/unicore/lib/BidiET.pl index 092ac54..762ce1e 100644 --- a/lib/unicore/lib/BidiET.pl +++ b/lib/unicore/lib/BidiET.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiL.pl b/lib/unicore/lib/BidiL.pl index bb13e01..3f45d2c 100644 --- a/lib/unicore/lib/BidiL.pl +++ b/lib/unicore/lib/BidiL.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiLRE.pl b/lib/unicore/lib/BidiLRE.pl index 208ec0a..5070363 100644 --- a/lib/unicore/lib/BidiLRE.pl +++ b/lib/unicore/lib/BidiLRE.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiLRO.pl b/lib/unicore/lib/BidiLRO.pl index f85446b..52ea960 100644 --- a/lib/unicore/lib/BidiLRO.pl +++ b/lib/unicore/lib/BidiLRO.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiNSM.pl b/lib/unicore/lib/BidiNSM.pl index 303cdb8..7ab0135 100644 --- a/lib/unicore/lib/BidiNSM.pl +++ b/lib/unicore/lib/BidiNSM.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiON.pl b/lib/unicore/lib/BidiON.pl index 7a205bf..fcf553d 100644 --- a/lib/unicore/lib/BidiON.pl +++ b/lib/unicore/lib/BidiON.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiPDF.pl b/lib/unicore/lib/BidiPDF.pl index 35a417f..ef251bd 100644 --- a/lib/unicore/lib/BidiPDF.pl +++ b/lib/unicore/lib/BidiPDF.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiR.pl b/lib/unicore/lib/BidiR.pl index 44d2445..4d62027 100644 --- a/lib/unicore/lib/BidiR.pl +++ b/lib/unicore/lib/BidiR.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiRLE.pl b/lib/unicore/lib/BidiRLE.pl index f85f09a..dd21623 100644 --- a/lib/unicore/lib/BidiRLE.pl +++ b/lib/unicore/lib/BidiRLE.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiRLO.pl b/lib/unicore/lib/BidiRLO.pl index 0362988..2443855 100644 --- a/lib/unicore/lib/BidiRLO.pl +++ b/lib/unicore/lib/BidiRLO.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiS.pl b/lib/unicore/lib/BidiS.pl index a7ba061..27207fa 100644 --- a/lib/unicore/lib/BidiS.pl +++ b/lib/unicore/lib/BidiS.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/BidiWS.pl b/lib/unicore/lib/BidiWS.pl index 44414f0..3267bf4 100644 --- a/lib/unicore/lib/BidiWS.pl +++ b/lib/unicore/lib/BidiWS.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Blank.pl b/lib/unicore/lib/Blank.pl index 73abe82..607783d 100644 --- a/lib/unicore/lib/Blank.pl +++ b/lib/unicore/lib/Blank.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Bopomofo.pl b/lib/unicore/lib/Bopomofo.pl index f4f1b70..525797c 100644 --- a/lib/unicore/lib/Bopomofo.pl +++ b/lib/unicore/lib/Bopomofo.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/C.pl b/lib/unicore/lib/C.pl index c3a04e8..2aca103 100644 --- a/lib/unicore/lib/C.pl +++ b/lib/unicore/lib/C.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Canadian.pl b/lib/unicore/lib/Canadian.pl index dd223f1..8e9ae32 100644 --- a/lib/unicore/lib/Canadian.pl +++ b/lib/unicore/lib/Canadian.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Canon.pl b/lib/unicore/lib/Canon.pl index f011763..03c0850 100644 --- a/lib/unicore/lib/Canon.pl +++ b/lib/unicore/lib/Canon.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Cc.pl b/lib/unicore/lib/Cc.pl index 4238ba8..34faf2e 100644 --- a/lib/unicore/lib/Cc.pl +++ b/lib/unicore/lib/Cc.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Cf.pl b/lib/unicore/lib/Cf.pl index 9c05455..ba1a416 100644 --- a/lib/unicore/lib/Cf.pl +++ b/lib/unicore/lib/Cf.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Cherokee.pl b/lib/unicore/lib/Cherokee.pl index 9546fd7..4844ef4 100644 --- a/lib/unicore/lib/Cherokee.pl +++ b/lib/unicore/lib/Cherokee.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Cn.pl b/lib/unicore/lib/Cn.pl index c666285..f6debee 100644 --- a/lib/unicore/lib/Cn.pl +++ b/lib/unicore/lib/Cn.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Cntrl.pl b/lib/unicore/lib/Cntrl.pl index cb64dff..cc116b1 100644 --- a/lib/unicore/lib/Cntrl.pl +++ b/lib/unicore/lib/Cntrl.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Co.pl b/lib/unicore/lib/Co.pl index bd792f3..1f1ad21 100644 --- a/lib/unicore/lib/Co.pl +++ b/lib/unicore/lib/Co.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Common.pl b/lib/unicore/lib/Common.pl index 39156ae..c3be542 100644 --- a/lib/unicore/lib/Common.pl +++ b/lib/unicore/lib/Common.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Compat.pl b/lib/unicore/lib/Compat.pl index 0d8519e..e838c17 100644 --- a/lib/unicore/lib/Compat.pl +++ b/lib/unicore/lib/Compat.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Cs.pl b/lib/unicore/lib/Cs.pl index 5a1ea95..4624d9d 100644 --- a/lib/unicore/lib/Cs.pl +++ b/lib/unicore/lib/Cs.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Cyrillic.pl b/lib/unicore/lib/Cyrillic.pl index c2da179..311f008 100644 --- a/lib/unicore/lib/Cyrillic.pl +++ b/lib/unicore/lib/Cyrillic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCcircle.pl b/lib/unicore/lib/DCcircle.pl index 8cdd900..c860621 100644 --- a/lib/unicore/lib/DCcircle.pl +++ b/lib/unicore/lib/DCcircle.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCcompat.pl b/lib/unicore/lib/DCcompat.pl index dedd1db..794f108 100644 --- a/lib/unicore/lib/DCcompat.pl +++ b/lib/unicore/lib/DCcompat.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCfinal.pl b/lib/unicore/lib/DCfinal.pl index 35b7a2b..d5fa53e 100644 --- a/lib/unicore/lib/DCfinal.pl +++ b/lib/unicore/lib/DCfinal.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCfont.pl b/lib/unicore/lib/DCfont.pl index d854833..ed54414 100644 --- a/lib/unicore/lib/DCfont.pl +++ b/lib/unicore/lib/DCfont.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCfracti.pl b/lib/unicore/lib/DCfracti.pl index 829f92c..87b4247 100644 --- a/lib/unicore/lib/DCfracti.pl +++ b/lib/unicore/lib/DCfracti.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCinitia.pl b/lib/unicore/lib/DCinitia.pl index d1806fc..b903ece 100644 --- a/lib/unicore/lib/DCinitia.pl +++ b/lib/unicore/lib/DCinitia.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCisolat.pl b/lib/unicore/lib/DCisolat.pl index 4d6c1d6..a49b936 100644 --- a/lib/unicore/lib/DCisolat.pl +++ b/lib/unicore/lib/DCisolat.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCmedial.pl b/lib/unicore/lib/DCmedial.pl index 7fd7ee2..8d15d90 100644 --- a/lib/unicore/lib/DCmedial.pl +++ b/lib/unicore/lib/DCmedial.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCnarrow.pl b/lib/unicore/lib/DCnarrow.pl index ed77c2e..33eca3c 100644 --- a/lib/unicore/lib/DCnarrow.pl +++ b/lib/unicore/lib/DCnarrow.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCnoBrea.pl b/lib/unicore/lib/DCnoBrea.pl index 57874cf..8cbaecd 100644 --- a/lib/unicore/lib/DCnoBrea.pl +++ b/lib/unicore/lib/DCnoBrea.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCsmall.pl b/lib/unicore/lib/DCsmall.pl index aa89e45..6606d75 100644 --- a/lib/unicore/lib/DCsmall.pl +++ b/lib/unicore/lib/DCsmall.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCsquare.pl b/lib/unicore/lib/DCsquare.pl index 07dc325..28d4f64 100644 --- a/lib/unicore/lib/DCsquare.pl +++ b/lib/unicore/lib/DCsquare.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCsub.pl b/lib/unicore/lib/DCsub.pl index ea5467b..df3daf6 100644 --- a/lib/unicore/lib/DCsub.pl +++ b/lib/unicore/lib/DCsub.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCsuper.pl b/lib/unicore/lib/DCsuper.pl index 13c7dd7..55b5968 100644 --- a/lib/unicore/lib/DCsuper.pl +++ b/lib/unicore/lib/DCsuper.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCvertic.pl b/lib/unicore/lib/DCvertic.pl index 8fa6b8c..df46df5 100644 --- a/lib/unicore/lib/DCvertic.pl +++ b/lib/unicore/lib/DCvertic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/DCwide.pl b/lib/unicore/lib/DCwide.pl index eb3f542..e2b4849 100644 --- a/lib/unicore/lib/DCwide.pl +++ b/lib/unicore/lib/DCwide.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Dash.pl b/lib/unicore/lib/Dash.pl index 00f3589..3d4dd59 100644 --- a/lib/unicore/lib/Dash.pl +++ b/lib/unicore/lib/Dash.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Deseret.pl b/lib/unicore/lib/Deseret.pl index 210e7a1..20431e6 100644 --- a/lib/unicore/lib/Deseret.pl +++ b/lib/unicore/lib/Deseret.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Devanaga.pl b/lib/unicore/lib/Devanaga.pl index 904708b..d35fc08 100644 --- a/lib/unicore/lib/Devanaga.pl +++ b/lib/unicore/lib/Devanaga.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Diacriti.pl b/lib/unicore/lib/Diacriti.pl index ddd09ec..e221116 100644 --- a/lib/unicore/lib/Diacriti.pl +++ b/lib/unicore/lib/Diacriti.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Digit.pl b/lib/unicore/lib/Digit.pl index d494682..3a8c507 100644 --- a/lib/unicore/lib/Digit.pl +++ b/lib/unicore/lib/Digit.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Ethiopic.pl b/lib/unicore/lib/Ethiopic.pl index 2627f83..433d7d8 100644 --- a/lib/unicore/lib/Ethiopic.pl +++ b/lib/unicore/lib/Ethiopic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Extender.pl b/lib/unicore/lib/Extender.pl index 587cc5b..dd0dab8 100644 --- a/lib/unicore/lib/Extender.pl +++ b/lib/unicore/lib/Extender.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Georgian.pl b/lib/unicore/lib/Georgian.pl index 94d1445..808007d 100644 --- a/lib/unicore/lib/Georgian.pl +++ b/lib/unicore/lib/Georgian.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Gothic.pl b/lib/unicore/lib/Gothic.pl index 6a25e6c..321d723 100644 --- a/lib/unicore/lib/Gothic.pl +++ b/lib/unicore/lib/Gothic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Graph.pl b/lib/unicore/lib/Graph.pl index cc76eb2..03d8f47 100644 --- a/lib/unicore/lib/Graph.pl +++ b/lib/unicore/lib/Graph.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Greek.pl b/lib/unicore/lib/Greek.pl index 177a0d6..6267238 100644 --- a/lib/unicore/lib/Greek.pl +++ b/lib/unicore/lib/Greek.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Gujarati.pl b/lib/unicore/lib/Gujarati.pl index ef62ccc..aba2f31 100644 --- a/lib/unicore/lib/Gujarati.pl +++ b/lib/unicore/lib/Gujarati.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Gurmukhi.pl b/lib/unicore/lib/Gurmukhi.pl index 4b16a9e..a56e9ae 100644 --- a/lib/unicore/lib/Gurmukhi.pl +++ b/lib/unicore/lib/Gurmukhi.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Han.pl b/lib/unicore/lib/Han.pl index 549ce1e..ff8c4f2 100644 --- a/lib/unicore/lib/Han.pl +++ b/lib/unicore/lib/Han.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Hangul.pl b/lib/unicore/lib/Hangul.pl index df24cd2..afa24a0 100644 --- a/lib/unicore/lib/Hangul.pl +++ b/lib/unicore/lib/Hangul.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Hebrew.pl b/lib/unicore/lib/Hebrew.pl index a4fb1eb..4ec1444 100644 --- a/lib/unicore/lib/Hebrew.pl +++ b/lib/unicore/lib/Hebrew.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/HexDigit.pl b/lib/unicore/lib/HexDigit.pl index 38b3071..9bb0755 100644 --- a/lib/unicore/lib/HexDigit.pl +++ b/lib/unicore/lib/HexDigit.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Hiragana.pl b/lib/unicore/lib/Hiragana.pl index 8731f2b..6d1f4c9 100644 --- a/lib/unicore/lib/Hiragana.pl +++ b/lib/unicore/lib/Hiragana.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Hyphen.pl b/lib/unicore/lib/Hyphen.pl index e868bca..b1ca8d6 100644 --- a/lib/unicore/lib/Hyphen.pl +++ b/lib/unicore/lib/Hyphen.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/IdContin.pl b/lib/unicore/lib/IdContin.pl index 365e886..a15f6d8 100644 --- a/lib/unicore/lib/IdContin.pl +++ b/lib/unicore/lib/IdContin.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/IdStart.pl b/lib/unicore/lib/IdStart.pl index 4d89817..9a98318 100644 --- a/lib/unicore/lib/IdStart.pl +++ b/lib/unicore/lib/IdStart.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Ideograp.pl b/lib/unicore/lib/Ideograp.pl index 505bbb9..476d5cd 100644 --- a/lib/unicore/lib/Ideograp.pl +++ b/lib/unicore/lib/Ideograp.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InAlphab.pl b/lib/unicore/lib/InAlphab.pl index fe07233..2ecd85d 100644 --- a/lib/unicore/lib/InAlphab.pl +++ b/lib/unicore/lib/InAlphab.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InArabi2.pl b/lib/unicore/lib/InArabi2.pl index 75ae109..b7b05eb 100644 --- a/lib/unicore/lib/InArabi2.pl +++ b/lib/unicore/lib/InArabi2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InArabi3.pl b/lib/unicore/lib/InArabi3.pl index 1c4e4c0..8ab3bb0 100644 --- a/lib/unicore/lib/InArabi3.pl +++ b/lib/unicore/lib/InArabi3.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InArabic.pl b/lib/unicore/lib/InArabic.pl index ae7cb8d..ac250e8 100644 --- a/lib/unicore/lib/InArabic.pl +++ b/lib/unicore/lib/InArabic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InArmeni.pl b/lib/unicore/lib/InArmeni.pl index 7ff3911..62a0777 100644 --- a/lib/unicore/lib/InArmeni.pl +++ b/lib/unicore/lib/InArmeni.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InArrows.pl b/lib/unicore/lib/InArrows.pl index 8a58c83..15f4c0b 100644 --- a/lib/unicore/lib/InArrows.pl +++ b/lib/unicore/lib/InArrows.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InBasicL.pl b/lib/unicore/lib/InBasicL.pl index fd18493..b15a479 100644 --- a/lib/unicore/lib/InBasicL.pl +++ b/lib/unicore/lib/InBasicL.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InBengal.pl b/lib/unicore/lib/InBengal.pl index a941f06..c20bf6c 100644 --- a/lib/unicore/lib/InBengal.pl +++ b/lib/unicore/lib/InBengal.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InBlockE.pl b/lib/unicore/lib/InBlockE.pl index c0a2267..b301e9d 100644 --- a/lib/unicore/lib/InBlockE.pl +++ b/lib/unicore/lib/InBlockE.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InBopom2.pl b/lib/unicore/lib/InBopom2.pl index 105f4da..8320eb5 100644 --- a/lib/unicore/lib/InBopom2.pl +++ b/lib/unicore/lib/InBopom2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InBopomo.pl b/lib/unicore/lib/InBopomo.pl index 78f2d22..43edd7c 100644 --- a/lib/unicore/lib/InBopomo.pl +++ b/lib/unicore/lib/InBopomo.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InBoxDra.pl b/lib/unicore/lib/InBoxDra.pl index b109be0..4f3698f 100644 --- a/lib/unicore/lib/InBoxDra.pl +++ b/lib/unicore/lib/InBoxDra.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InBraill.pl b/lib/unicore/lib/InBraill.pl index 2e5d23d..b03465e 100644 --- a/lib/unicore/lib/InBraill.pl +++ b/lib/unicore/lib/InBraill.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InByzant.pl b/lib/unicore/lib/InByzant.pl index d619d60..a706086 100644 --- a/lib/unicore/lib/InByzant.pl +++ b/lib/unicore/lib/InByzant.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCherok.pl b/lib/unicore/lib/InCherok.pl index baba329..089e3f6 100644 --- a/lib/unicore/lib/InCherok.pl +++ b/lib/unicore/lib/InCherok.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkCo2.pl b/lib/unicore/lib/InCjkCo2.pl index 782b00d..bf9af65 100644 --- a/lib/unicore/lib/InCjkCo2.pl +++ b/lib/unicore/lib/InCjkCo2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkCo3.pl b/lib/unicore/lib/InCjkCo3.pl index dc3cc61..678c493 100644 --- a/lib/unicore/lib/InCjkCo3.pl +++ b/lib/unicore/lib/InCjkCo3.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkCo4.pl b/lib/unicore/lib/InCjkCo4.pl index 1446c1e..05bde2e 100644 --- a/lib/unicore/lib/InCjkCo4.pl +++ b/lib/unicore/lib/InCjkCo4.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkCom.pl b/lib/unicore/lib/InCjkCom.pl index e9f7da6..76f7396 100644 --- a/lib/unicore/lib/InCjkCom.pl +++ b/lib/unicore/lib/InCjkCom.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkRad.pl b/lib/unicore/lib/InCjkRad.pl index 7933c42..46e7463 100644 --- a/lib/unicore/lib/InCjkRad.pl +++ b/lib/unicore/lib/InCjkRad.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkSym.pl b/lib/unicore/lib/InCjkSym.pl index 7c580d1..293608f 100644 --- a/lib/unicore/lib/InCjkSym.pl +++ b/lib/unicore/lib/InCjkSym.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkUn2.pl b/lib/unicore/lib/InCjkUn2.pl index c5a0da4..517c673 100644 --- a/lib/unicore/lib/InCjkUn2.pl +++ b/lib/unicore/lib/InCjkUn2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkUn3.pl b/lib/unicore/lib/InCjkUn3.pl index 79091e0..7702617 100644 --- a/lib/unicore/lib/InCjkUn3.pl +++ b/lib/unicore/lib/InCjkUn3.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCjkUni.pl b/lib/unicore/lib/InCjkUni.pl index fb5f06f..62c36bf 100644 --- a/lib/unicore/lib/InCjkUni.pl +++ b/lib/unicore/lib/InCjkUni.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCombi2.pl b/lib/unicore/lib/InCombi2.pl index 6a3c2e5..7a6dc73 100644 --- a/lib/unicore/lib/InCombi2.pl +++ b/lib/unicore/lib/InCombi2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCombi3.pl b/lib/unicore/lib/InCombi3.pl index a116575..f4169cf 100644 --- a/lib/unicore/lib/InCombi3.pl +++ b/lib/unicore/lib/InCombi3.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCombin.pl b/lib/unicore/lib/InCombin.pl index 5a67b2a..5e2670d 100644 --- a/lib/unicore/lib/InCombin.pl +++ b/lib/unicore/lib/InCombin.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InContro.pl b/lib/unicore/lib/InContro.pl index d75ad86..5460b22 100644 --- a/lib/unicore/lib/InContro.pl +++ b/lib/unicore/lib/InContro.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCurren.pl b/lib/unicore/lib/InCurren.pl index 72b1dba..4418270 100644 --- a/lib/unicore/lib/InCurren.pl +++ b/lib/unicore/lib/InCurren.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InCyrill.pl b/lib/unicore/lib/InCyrill.pl index 06906a4..9d6f53a 100644 --- a/lib/unicore/lib/InCyrill.pl +++ b/lib/unicore/lib/InCyrill.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InDesere.pl b/lib/unicore/lib/InDesere.pl index b13e7dc..5e8b99f 100644 --- a/lib/unicore/lib/InDesere.pl +++ b/lib/unicore/lib/InDesere.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InDevana.pl b/lib/unicore/lib/InDevana.pl index bfa18cf..eaaa712 100644 --- a/lib/unicore/lib/InDevana.pl +++ b/lib/unicore/lib/InDevana.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InDingba.pl b/lib/unicore/lib/InDingba.pl index a6408ae..72eef35 100644 --- a/lib/unicore/lib/InDingba.pl +++ b/lib/unicore/lib/InDingba.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InEnclo2.pl b/lib/unicore/lib/InEnclo2.pl index 6aceaa7..aadcbdb 100644 --- a/lib/unicore/lib/InEnclo2.pl +++ b/lib/unicore/lib/InEnclo2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InEnclos.pl b/lib/unicore/lib/InEnclos.pl index 7f8e481..82c20de 100644 --- a/lib/unicore/lib/InEnclos.pl +++ b/lib/unicore/lib/InEnclos.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InEthiop.pl b/lib/unicore/lib/InEthiop.pl index 3cc7a39..fcb2053 100644 --- a/lib/unicore/lib/InEthiop.pl +++ b/lib/unicore/lib/InEthiop.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGenera.pl b/lib/unicore/lib/InGenera.pl index 3a608af..2fd27a7 100644 --- a/lib/unicore/lib/InGenera.pl +++ b/lib/unicore/lib/InGenera.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGeomet.pl b/lib/unicore/lib/InGeomet.pl index 7e97d02..817dabc 100644 --- a/lib/unicore/lib/InGeomet.pl +++ b/lib/unicore/lib/InGeomet.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGeorgi.pl b/lib/unicore/lib/InGeorgi.pl index 79539f4..7e96544 100644 --- a/lib/unicore/lib/InGeorgi.pl +++ b/lib/unicore/lib/InGeorgi.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGothic.pl b/lib/unicore/lib/InGothic.pl index 12bba49..552cba4 100644 --- a/lib/unicore/lib/InGothic.pl +++ b/lib/unicore/lib/InGothic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGreek.pl b/lib/unicore/lib/InGreek.pl index be15898..e932705 100644 --- a/lib/unicore/lib/InGreek.pl +++ b/lib/unicore/lib/InGreek.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGreekE.pl b/lib/unicore/lib/InGreekE.pl index 7e7e7c2..06965f9 100644 --- a/lib/unicore/lib/InGreekE.pl +++ b/lib/unicore/lib/InGreekE.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGujara.pl b/lib/unicore/lib/InGujara.pl index cd05cf3..f0a8e4a 100644 --- a/lib/unicore/lib/InGujara.pl +++ b/lib/unicore/lib/InGujara.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InGurmuk.pl b/lib/unicore/lib/InGurmuk.pl index 53ae08f..7023d05 100644 --- a/lib/unicore/lib/InGurmuk.pl +++ b/lib/unicore/lib/InGurmuk.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHalfwi.pl b/lib/unicore/lib/InHalfwi.pl index 3700834..d543110 100644 --- a/lib/unicore/lib/InHalfwi.pl +++ b/lib/unicore/lib/InHalfwi.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHangu2.pl b/lib/unicore/lib/InHangu2.pl index 0a46081..08989a2 100644 --- a/lib/unicore/lib/InHangu2.pl +++ b/lib/unicore/lib/InHangu2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHangu3.pl b/lib/unicore/lib/InHangu3.pl index ab9afaa..e256ea5 100644 --- a/lib/unicore/lib/InHangu3.pl +++ b/lib/unicore/lib/InHangu3.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHangul.pl b/lib/unicore/lib/InHangul.pl index fcdd1d6..d0ef32e 100644 --- a/lib/unicore/lib/InHangul.pl +++ b/lib/unicore/lib/InHangul.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHebrew.pl b/lib/unicore/lib/InHebrew.pl index 2911115..14459f4 100644 --- a/lib/unicore/lib/InHebrew.pl +++ b/lib/unicore/lib/InHebrew.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHighPr.pl b/lib/unicore/lib/InHighPr.pl index f0bf1c3..fd92248 100644 --- a/lib/unicore/lib/InHighPr.pl +++ b/lib/unicore/lib/InHighPr.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHighSu.pl b/lib/unicore/lib/InHighSu.pl index 40de27a..eec73b3 100644 --- a/lib/unicore/lib/InHighSu.pl +++ b/lib/unicore/lib/InHighSu.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InHiraga.pl b/lib/unicore/lib/InHiraga.pl index 4859948..2db67da 100644 --- a/lib/unicore/lib/InHiraga.pl +++ b/lib/unicore/lib/InHiraga.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InIdeogr.pl b/lib/unicore/lib/InIdeogr.pl index 7e52105..95f6229 100644 --- a/lib/unicore/lib/InIdeogr.pl +++ b/lib/unicore/lib/InIdeogr.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InIpaExt.pl b/lib/unicore/lib/InIpaExt.pl index 9926bea..3280cb6 100644 --- a/lib/unicore/lib/InIpaExt.pl +++ b/lib/unicore/lib/InIpaExt.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InKanbun.pl b/lib/unicore/lib/InKanbun.pl index d99efdd..5dddfb3 100644 --- a/lib/unicore/lib/InKanbun.pl +++ b/lib/unicore/lib/InKanbun.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InKangxi.pl b/lib/unicore/lib/InKangxi.pl index 6dd91e0..49f334c 100644 --- a/lib/unicore/lib/InKangxi.pl +++ b/lib/unicore/lib/InKangxi.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InKannad.pl b/lib/unicore/lib/InKannad.pl index b9a5a48..418011c 100644 --- a/lib/unicore/lib/InKannad.pl +++ b/lib/unicore/lib/InKannad.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InKataka.pl b/lib/unicore/lib/InKataka.pl index 3157252..5ef3ce0 100644 --- a/lib/unicore/lib/InKataka.pl +++ b/lib/unicore/lib/InKataka.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InKhmer.pl b/lib/unicore/lib/InKhmer.pl index e7919e9..8c2efea 100644 --- a/lib/unicore/lib/InKhmer.pl +++ b/lib/unicore/lib/InKhmer.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InLao.pl b/lib/unicore/lib/InLao.pl index c6e9e50..eb96edc 100644 --- a/lib/unicore/lib/InLao.pl +++ b/lib/unicore/lib/InLao.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InLatin1.pl b/lib/unicore/lib/InLatin1.pl index 88fa91d..52e4c71 100644 --- a/lib/unicore/lib/InLatin1.pl +++ b/lib/unicore/lib/InLatin1.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InLatin2.pl b/lib/unicore/lib/InLatin2.pl index a56c71b..a5f0d22 100644 --- a/lib/unicore/lib/InLatin2.pl +++ b/lib/unicore/lib/InLatin2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InLatin3.pl b/lib/unicore/lib/InLatin3.pl index 09ed939..8a53dc7 100644 --- a/lib/unicore/lib/InLatin3.pl +++ b/lib/unicore/lib/InLatin3.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InLatinE.pl b/lib/unicore/lib/InLatinE.pl index b17d1a0..3a81b6e 100644 --- a/lib/unicore/lib/InLatinE.pl +++ b/lib/unicore/lib/InLatinE.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InLetter.pl b/lib/unicore/lib/InLetter.pl index f87eadf..d452812 100644 --- a/lib/unicore/lib/InLetter.pl +++ b/lib/unicore/lib/InLetter.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InLowSur.pl b/lib/unicore/lib/InLowSur.pl index 56dd72e..5be81e5 100644 --- a/lib/unicore/lib/InLowSur.pl +++ b/lib/unicore/lib/InLowSur.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMalaya.pl b/lib/unicore/lib/InMalaya.pl index 90bfdf5..ee91b9a 100644 --- a/lib/unicore/lib/InMalaya.pl +++ b/lib/unicore/lib/InMalaya.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMathe2.pl b/lib/unicore/lib/InMathe2.pl index 0a1aca8..aba54a6 100644 --- a/lib/unicore/lib/InMathe2.pl +++ b/lib/unicore/lib/InMathe2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMathem.pl b/lib/unicore/lib/InMathem.pl index 97a874e..d037fec 100644 --- a/lib/unicore/lib/InMathem.pl +++ b/lib/unicore/lib/InMathem.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMisce2.pl b/lib/unicore/lib/InMisce2.pl index c11fd2b..fb9217a 100644 --- a/lib/unicore/lib/InMisce2.pl +++ b/lib/unicore/lib/InMisce2.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMiscel.pl b/lib/unicore/lib/InMiscel.pl index 3b68244..f1668ea 100644 --- a/lib/unicore/lib/InMiscel.pl +++ b/lib/unicore/lib/InMiscel.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMongol.pl b/lib/unicore/lib/InMongol.pl index 1166665..e1771ec 100644 --- a/lib/unicore/lib/InMongol.pl +++ b/lib/unicore/lib/InMongol.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMusica.pl b/lib/unicore/lib/InMusica.pl index 168f681..74419bc 100644 --- a/lib/unicore/lib/InMusica.pl +++ b/lib/unicore/lib/InMusica.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InMyanma.pl b/lib/unicore/lib/InMyanma.pl index c4e94f8..e00a9f2 100644 --- a/lib/unicore/lib/InMyanma.pl +++ b/lib/unicore/lib/InMyanma.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InNumber.pl b/lib/unicore/lib/InNumber.pl index a15c2ff..e1f219e 100644 --- a/lib/unicore/lib/InNumber.pl +++ b/lib/unicore/lib/InNumber.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InOgham.pl b/lib/unicore/lib/InOgham.pl index 1e4ad3e..6336e02 100644 --- a/lib/unicore/lib/InOgham.pl +++ b/lib/unicore/lib/InOgham.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InOldIta.pl b/lib/unicore/lib/InOldIta.pl index e6f03e0..71b2acc 100644 --- a/lib/unicore/lib/InOldIta.pl +++ b/lib/unicore/lib/InOldIta.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InOptica.pl b/lib/unicore/lib/InOptica.pl index 7112b78..bc3f3ee 100644 --- a/lib/unicore/lib/InOptica.pl +++ b/lib/unicore/lib/InOptica.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InOriya.pl b/lib/unicore/lib/InOriya.pl index 22d456f..a8bc8aa 100644 --- a/lib/unicore/lib/InOriya.pl +++ b/lib/unicore/lib/InOriya.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InPrivat.pl b/lib/unicore/lib/InPrivat.pl index 3bf1c6e..4149fbb 100644 --- a/lib/unicore/lib/InPrivat.pl +++ b/lib/unicore/lib/InPrivat.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InRunic.pl b/lib/unicore/lib/InRunic.pl index ff03ebf..b99e1fa 100644 --- a/lib/unicore/lib/InRunic.pl +++ b/lib/unicore/lib/InRunic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InSinhal.pl b/lib/unicore/lib/InSinhal.pl index 4518d70..b08f388 100644 --- a/lib/unicore/lib/InSinhal.pl +++ b/lib/unicore/lib/InSinhal.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InSmallF.pl b/lib/unicore/lib/InSmallF.pl index 20f4455..7938a44 100644 --- a/lib/unicore/lib/InSmallF.pl +++ b/lib/unicore/lib/InSmallF.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InSpacin.pl b/lib/unicore/lib/InSpacin.pl index ed1bda7..9a38259 100644 --- a/lib/unicore/lib/InSpacin.pl +++ b/lib/unicore/lib/InSpacin.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InSpecia.pl b/lib/unicore/lib/InSpecia.pl index bed30f4..a7be602 100644 --- a/lib/unicore/lib/InSpecia.pl +++ b/lib/unicore/lib/InSpecia.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InSupers.pl b/lib/unicore/lib/InSupers.pl index 2db0bba..493f817 100644 --- a/lib/unicore/lib/InSupers.pl +++ b/lib/unicore/lib/InSupers.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InSyriac.pl b/lib/unicore/lib/InSyriac.pl index 80c73af..74f1970 100644 --- a/lib/unicore/lib/InSyriac.pl +++ b/lib/unicore/lib/InSyriac.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InTags.pl b/lib/unicore/lib/InTags.pl index eaa6a79..4a6600e 100644 --- a/lib/unicore/lib/InTags.pl +++ b/lib/unicore/lib/InTags.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InTamil.pl b/lib/unicore/lib/InTamil.pl index 7a0ed65..20036ca 100644 --- a/lib/unicore/lib/InTamil.pl +++ b/lib/unicore/lib/InTamil.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InTelugu.pl b/lib/unicore/lib/InTelugu.pl index 3849120..1027f93 100644 --- a/lib/unicore/lib/InTelugu.pl +++ b/lib/unicore/lib/InTelugu.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InThaana.pl b/lib/unicore/lib/InThaana.pl index bbf3f95..740d71b 100644 --- a/lib/unicore/lib/InThaana.pl +++ b/lib/unicore/lib/InThaana.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InThai.pl b/lib/unicore/lib/InThai.pl index 91feb42..db6a145 100644 --- a/lib/unicore/lib/InThai.pl +++ b/lib/unicore/lib/InThai.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InTibeta.pl b/lib/unicore/lib/InTibeta.pl index d118468..8fbe185 100644 --- a/lib/unicore/lib/InTibeta.pl +++ b/lib/unicore/lib/InTibeta.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InUnifie.pl b/lib/unicore/lib/InUnifie.pl index be19c24..50d46f1 100644 --- a/lib/unicore/lib/InUnifie.pl +++ b/lib/unicore/lib/InUnifie.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InYiRadi.pl b/lib/unicore/lib/InYiRadi.pl index d50561f..7b4265f 100644 --- a/lib/unicore/lib/InYiRadi.pl +++ b/lib/unicore/lib/InYiRadi.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/InYiSyll.pl b/lib/unicore/lib/InYiSyll.pl index 06f417f..c33de83 100644 --- a/lib/unicore/lib/InYiSyll.pl +++ b/lib/unicore/lib/InYiSyll.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Inherite.pl b/lib/unicore/lib/Inherite.pl index d52a465..b21e1e0 100644 --- a/lib/unicore/lib/Inherite.pl +++ b/lib/unicore/lib/Inherite.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/JoinCont.pl b/lib/unicore/lib/JoinCont.pl index 9e8278a..be25b1a 100644 --- a/lib/unicore/lib/JoinCont.pl +++ b/lib/unicore/lib/JoinCont.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Kannada.pl b/lib/unicore/lib/Kannada.pl index 3fa302f..7c9a858 100644 --- a/lib/unicore/lib/Kannada.pl +++ b/lib/unicore/lib/Kannada.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Katakana.pl b/lib/unicore/lib/Katakana.pl index 1a55151..5af21eb 100644 --- a/lib/unicore/lib/Katakana.pl +++ b/lib/unicore/lib/Katakana.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Khmer.pl b/lib/unicore/lib/Khmer.pl index 108bafb..1e69e00 100644 --- a/lib/unicore/lib/Khmer.pl +++ b/lib/unicore/lib/Khmer.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/L.pl b/lib/unicore/lib/L.pl index b3f6df3..d7d8630 100644 --- a/lib/unicore/lib/L.pl +++ b/lib/unicore/lib/L.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/L_.pl b/lib/unicore/lib/L_.pl index b2e89eb..3a7cc15 100644 --- a/lib/unicore/lib/L_.pl +++ b/lib/unicore/lib/L_.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Lao.pl b/lib/unicore/lib/Lao.pl index e482223..83bc60c 100644 --- a/lib/unicore/lib/Lao.pl +++ b/lib/unicore/lib/Lao.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Latin.pl b/lib/unicore/lib/Latin.pl index 4c26446..5419026 100644 --- a/lib/unicore/lib/Latin.pl +++ b/lib/unicore/lib/Latin.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Ll.pl b/lib/unicore/lib/Ll.pl index 573c56a..05414bc 100644 --- a/lib/unicore/lib/Ll.pl +++ b/lib/unicore/lib/Ll.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Lm.pl b/lib/unicore/lib/Lm.pl index 2dfd4f3..b92f339 100644 --- a/lib/unicore/lib/Lm.pl +++ b/lib/unicore/lib/Lm.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Lo.pl b/lib/unicore/lib/Lo.pl index 7113103..efe528c 100644 --- a/lib/unicore/lib/Lo.pl +++ b/lib/unicore/lib/Lo.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Lower.pl b/lib/unicore/lib/Lower.pl index 084a4b2..5eb5288 100644 --- a/lib/unicore/lib/Lower.pl +++ b/lib/unicore/lib/Lower.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Lowercas.pl b/lib/unicore/lib/Lowercas.pl index 969d821..11f2289 100644 --- a/lib/unicore/lib/Lowercas.pl +++ b/lib/unicore/lib/Lowercas.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Lt.pl b/lib/unicore/lib/Lt.pl index b758932..40f761a 100644 --- a/lib/unicore/lib/Lt.pl +++ b/lib/unicore/lib/Lt.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Lu.pl b/lib/unicore/lib/Lu.pl index 2923b3b..257634a 100644 --- a/lib/unicore/lib/Lu.pl +++ b/lib/unicore/lib/Lu.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/M.pl b/lib/unicore/lib/M.pl index 0274aed..143cccb 100644 --- a/lib/unicore/lib/M.pl +++ b/lib/unicore/lib/M.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Malayala.pl b/lib/unicore/lib/Malayala.pl index de2ec26..eb1c736 100644 --- a/lib/unicore/lib/Malayala.pl +++ b/lib/unicore/lib/Malayala.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Math.pl b/lib/unicore/lib/Math.pl index 389a73d..d2d7c80 100644 --- a/lib/unicore/lib/Math.pl +++ b/lib/unicore/lib/Math.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Mc.pl b/lib/unicore/lib/Mc.pl index 70181af..f01a01b 100644 --- a/lib/unicore/lib/Mc.pl +++ b/lib/unicore/lib/Mc.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Me.pl b/lib/unicore/lib/Me.pl index 03ba369..547e4cf 100644 --- a/lib/unicore/lib/Me.pl +++ b/lib/unicore/lib/Me.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Mirrored.pl b/lib/unicore/lib/Mirrored.pl index 2c25ac3..c914486 100644 --- a/lib/unicore/lib/Mirrored.pl +++ b/lib/unicore/lib/Mirrored.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Mn.pl b/lib/unicore/lib/Mn.pl index c707ec2..237d51e 100644 --- a/lib/unicore/lib/Mn.pl +++ b/lib/unicore/lib/Mn.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Mongolia.pl b/lib/unicore/lib/Mongolia.pl index b440c67..5cdc083 100644 --- a/lib/unicore/lib/Mongolia.pl +++ b/lib/unicore/lib/Mongolia.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Myanmar.pl b/lib/unicore/lib/Myanmar.pl index 7428b51..49385bb 100644 --- a/lib/unicore/lib/Myanmar.pl +++ b/lib/unicore/lib/Myanmar.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/N.pl b/lib/unicore/lib/N.pl index 07d2da4..b369840 100644 --- a/lib/unicore/lib/N.pl +++ b/lib/unicore/lib/N.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Nd.pl b/lib/unicore/lib/Nd.pl index d51cb07..30cd844 100644 --- a/lib/unicore/lib/Nd.pl +++ b/lib/unicore/lib/Nd.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Nl.pl b/lib/unicore/lib/Nl.pl index 9b42189..14279d3 100644 --- a/lib/unicore/lib/Nl.pl +++ b/lib/unicore/lib/Nl.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/No.pl b/lib/unicore/lib/No.pl index b0cc18c..5df6e6d 100644 --- a/lib/unicore/lib/No.pl +++ b/lib/unicore/lib/No.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Nonchara.pl b/lib/unicore/lib/Nonchara.pl index a46dc4e..adf8740 100644 --- a/lib/unicore/lib/Nonchara.pl +++ b/lib/unicore/lib/Nonchara.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Ogham.pl b/lib/unicore/lib/Ogham.pl index c44acff..6b95384 100644 --- a/lib/unicore/lib/Ogham.pl +++ b/lib/unicore/lib/Ogham.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/OldItali.pl b/lib/unicore/lib/OldItali.pl index 8dc65e7..5cc92ed 100644 --- a/lib/unicore/lib/OldItali.pl +++ b/lib/unicore/lib/OldItali.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Oriya.pl b/lib/unicore/lib/Oriya.pl index 3a4959e..2b599d6 100644 --- a/lib/unicore/lib/Oriya.pl +++ b/lib/unicore/lib/Oriya.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/OtherAlp.pl b/lib/unicore/lib/OtherAlp.pl index 82ef36b..09c11ef 100644 --- a/lib/unicore/lib/OtherAlp.pl +++ b/lib/unicore/lib/OtherAlp.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/OtherLow.pl b/lib/unicore/lib/OtherLow.pl index 67d48ce..ae844c9 100644 --- a/lib/unicore/lib/OtherLow.pl +++ b/lib/unicore/lib/OtherLow.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/OtherMat.pl b/lib/unicore/lib/OtherMat.pl index 199bbf0..4253bcd 100644 --- a/lib/unicore/lib/OtherMat.pl +++ b/lib/unicore/lib/OtherMat.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/OtherUpp.pl b/lib/unicore/lib/OtherUpp.pl index 3e66567..4ba3048 100644 --- a/lib/unicore/lib/OtherUpp.pl +++ b/lib/unicore/lib/OtherUpp.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/P.pl b/lib/unicore/lib/P.pl index df116cf..386e724 100644 --- a/lib/unicore/lib/P.pl +++ b/lib/unicore/lib/P.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Pc.pl b/lib/unicore/lib/Pc.pl index f4a03a9..2f08742 100644 --- a/lib/unicore/lib/Pc.pl +++ b/lib/unicore/lib/Pc.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Pd.pl b/lib/unicore/lib/Pd.pl index be8412a..af29f62 100644 --- a/lib/unicore/lib/Pd.pl +++ b/lib/unicore/lib/Pd.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Pe.pl b/lib/unicore/lib/Pe.pl index 72c1bae..4f83f7f 100644 --- a/lib/unicore/lib/Pe.pl +++ b/lib/unicore/lib/Pe.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Pf.pl b/lib/unicore/lib/Pf.pl index 9af533d..8e363d2 100644 --- a/lib/unicore/lib/Pf.pl +++ b/lib/unicore/lib/Pf.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Pi.pl b/lib/unicore/lib/Pi.pl index 54fa4e6..c78bde1 100644 --- a/lib/unicore/lib/Pi.pl +++ b/lib/unicore/lib/Pi.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Po.pl b/lib/unicore/lib/Po.pl index d1ec8cc..28b7179 100644 --- a/lib/unicore/lib/Po.pl +++ b/lib/unicore/lib/Po.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Print.pl b/lib/unicore/lib/Print.pl index 5c0a3c7..6872117 100644 --- a/lib/unicore/lib/Print.pl +++ b/lib/unicore/lib/Print.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Ps.pl b/lib/unicore/lib/Ps.pl index f03aa02..724f017 100644 --- a/lib/unicore/lib/Ps.pl +++ b/lib/unicore/lib/Ps.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Punct.pl b/lib/unicore/lib/Punct.pl index ca2cdbb..ceb693a 100644 --- a/lib/unicore/lib/Punct.pl +++ b/lib/unicore/lib/Punct.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Quotatio.pl b/lib/unicore/lib/Quotatio.pl index 70e80f8..802e85a 100644 --- a/lib/unicore/lib/Quotatio.pl +++ b/lib/unicore/lib/Quotatio.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Runic.pl b/lib/unicore/lib/Runic.pl index 08fdd5b..01eef2b 100644 --- a/lib/unicore/lib/Runic.pl +++ b/lib/unicore/lib/Runic.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/S.pl b/lib/unicore/lib/S.pl index f9ded7d..d395a22 100644 --- a/lib/unicore/lib/S.pl +++ b/lib/unicore/lib/S.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Sc.pl b/lib/unicore/lib/Sc.pl index 31cabc3..0f1f53d 100644 --- a/lib/unicore/lib/Sc.pl +++ b/lib/unicore/lib/Sc.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Sinhala.pl b/lib/unicore/lib/Sinhala.pl index d7de9bb..3288efe 100644 --- a/lib/unicore/lib/Sinhala.pl +++ b/lib/unicore/lib/Sinhala.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Sk.pl b/lib/unicore/lib/Sk.pl index 34d4ae3..19ff8b0 100644 --- a/lib/unicore/lib/Sk.pl +++ b/lib/unicore/lib/Sk.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Sm.pl b/lib/unicore/lib/Sm.pl index bde87a9..5520212 100644 --- a/lib/unicore/lib/Sm.pl +++ b/lib/unicore/lib/Sm.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/So.pl b/lib/unicore/lib/So.pl index 0cc548e..366adac 100644 --- a/lib/unicore/lib/So.pl +++ b/lib/unicore/lib/So.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Space.pl b/lib/unicore/lib/Space.pl index ed97335..f4626ec 100644 --- a/lib/unicore/lib/Space.pl +++ b/lib/unicore/lib/Space.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/SpacePer.pl b/lib/unicore/lib/SpacePer.pl index b84be26..7436711 100644 --- a/lib/unicore/lib/SpacePer.pl +++ b/lib/unicore/lib/SpacePer.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Syriac.pl b/lib/unicore/lib/Syriac.pl index 355493a..d78a76d 100644 --- a/lib/unicore/lib/Syriac.pl +++ b/lib/unicore/lib/Syriac.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Tamil.pl b/lib/unicore/lib/Tamil.pl index aaad4ac..b9777a3 100644 --- a/lib/unicore/lib/Tamil.pl +++ b/lib/unicore/lib/Tamil.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Telugu.pl b/lib/unicore/lib/Telugu.pl index 97d051d..1c161eb 100644 --- a/lib/unicore/lib/Telugu.pl +++ b/lib/unicore/lib/Telugu.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Terminal.pl b/lib/unicore/lib/Terminal.pl index 4bfbd11..d760686 100644 --- a/lib/unicore/lib/Terminal.pl +++ b/lib/unicore/lib/Terminal.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Thaana.pl b/lib/unicore/lib/Thaana.pl index 5007ea7..aad70d4 100644 --- a/lib/unicore/lib/Thaana.pl +++ b/lib/unicore/lib/Thaana.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Thai.pl b/lib/unicore/lib/Thai.pl index 1b72367..b09ced7 100644 --- a/lib/unicore/lib/Thai.pl +++ b/lib/unicore/lib/Thai.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Tibetan.pl b/lib/unicore/lib/Tibetan.pl index 89c6c7c..cdf7d5b 100644 --- a/lib/unicore/lib/Tibetan.pl +++ b/lib/unicore/lib/Tibetan.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Title.pl b/lib/unicore/lib/Title.pl index b13f42b..a1d0320 100644 --- a/lib/unicore/lib/Title.pl +++ b/lib/unicore/lib/Title.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Upper.pl b/lib/unicore/lib/Upper.pl index 6b3d280..8677d94 100644 --- a/lib/unicore/lib/Upper.pl +++ b/lib/unicore/lib/Upper.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Uppercas.pl b/lib/unicore/lib/Uppercas.pl index c216b45..220016e 100644 --- a/lib/unicore/lib/Uppercas.pl +++ b/lib/unicore/lib/Uppercas.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/WhiteSpa.pl b/lib/unicore/lib/WhiteSpa.pl index 18c90de..1e5867d 100644 --- a/lib/unicore/lib/WhiteSpa.pl +++ b/lib/unicore/lib/WhiteSpa.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Word.pl b/lib/unicore/lib/Word.pl index c65866b..e06f289 100644 --- a/lib/unicore/lib/Word.pl +++ b/lib/unicore/lib/Word.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/XDigit.pl b/lib/unicore/lib/XDigit.pl index 3d3594e..6fe95d5 100644 --- a/lib/unicore/lib/XDigit.pl +++ b/lib/unicore/lib/XDigit.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Yi.pl b/lib/unicore/lib/Yi.pl index 169d739..eb7131e 100644 --- a/lib/unicore/lib/Yi.pl +++ b/lib/unicore/lib/Yi.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Z.pl b/lib/unicore/lib/Z.pl index 3a053e1..38f1933 100644 --- a/lib/unicore/lib/Z.pl +++ b/lib/unicore/lib/Z.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Zl.pl b/lib/unicore/lib/Zl.pl index 2fa53b3..db5580d 100644 --- a/lib/unicore/lib/Zl.pl +++ b/lib/unicore/lib/Zl.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Zp.pl b/lib/unicore/lib/Zp.pl index 7860fc3..f7a4eb6 100644 --- a/lib/unicore/lib/Zp.pl +++ b/lib/unicore/lib/Zp.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/Zs.pl b/lib/unicore/lib/Zs.pl index 56ff72e..741f7f8 100644 --- a/lib/unicore/lib/Zs.pl +++ b/lib/unicore/lib/Zs.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/_CanonDC.pl b/lib/unicore/lib/_CanonDC.pl index 849aef2..3d627e7 100644 --- a/lib/unicore/lib/_CanonDC.pl +++ b/lib/unicore/lib/_CanonDC.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/_CaseIgn.pl b/lib/unicore/lib/_CaseIgn.pl index db91957..9fec374 100644 --- a/lib/unicore/lib/_CaseIgn.pl +++ b/lib/unicore/lib/_CaseIgn.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/lib/_CombAbo.pl b/lib/unicore/lib/_CombAbo.pl index 678ccc7..9277aaf 100644 --- a/lib/unicore/lib/_CombAbo.pl +++ b/lib/unicore/lib/_CombAbo.pl @@ -1,5 +1,5 @@ # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by ./mktables from e.g. Unicode.txt. +# This file is built by ./mktables from e.g. UnicodeData.txt. # Any changes made here will be lost! # diff --git a/lib/unicore/mktables b/lib/unicore/mktables index a6c234c..16fc09f 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -34,7 +34,7 @@ my $LastUnicodeCodepoint = 0x10FFFF; # As of Unicode 3.1.1. my $HEADER=<<"EOF"; # !!!!!!! DO NOT EDIT THIS FILE !!!!!!! -# This file is built by $0 from e.g. Unicode.txt. +# This file is built by $0 from e.g. UnicodeData.txt. # Any changes made here will be lost! EOF @@ -533,7 +533,7 @@ my %General; my %Cat; ## -## Process Unicode.txt (Categories, etc.) +## Process UnicodeData.txt (Categories, etc.) ## sub Unicode_Txt() { @@ -556,7 +556,7 @@ sub Unicode_Txt() Fuzzy => 0); ## Initialize Perl-generated categories - ## (Categories from Unicode.txt are auto-initialized in gencat) + ## (Categories from UnicodeData.txt are auto-initialized in gencat) $Cat{Alnum} = Table->New(Is => 'Alnum', Desc => "[[:Alnum:]]", Fuzzy => 0); $Cat{Alpha} = Table->New(Is => 'Alpha', Desc => "[[:Alpha:]]", Fuzzy => 0); $Cat{ASCII} = Table->New(Is => 'ASCII', Desc => "[[:ASCII:]]", Fuzzy => 0); @@ -651,8 +651,8 @@ sub Unicode_Txt() } ## open ane read file..... - if (not open IN, "Unicode.txt") { - die "$0: Unicode.txt: $!\n"; + if (not open IN, "UnicodeData.txt") { + die "$0: UnicodeData.txt: $!\n"; } ## @@ -852,12 +852,12 @@ sub Unicode_Txt() } ## -## Process LineBrk.txt +## Process LineBreak.txt ## -sub LineBrk_Txt() +sub LineBreak_Txt() { - if (not open IN, "LineBrk.txt") { - die "$0: LineBrk.txt: $!\n"; + if (not open IN, "LineBreak.txt") { + die "$0: LineBreak.txt: $!\n"; } my $Lbrk = Table->New(); @@ -887,12 +887,12 @@ sub LineBrk_Txt() } ## -## Process ArabShap.txt. +## Process ArabicShaping.txt. ## -sub ArabShap_txt() +sub ArabicShaping_txt() { - if (not open IN, "ArabShap.txt") { - die "$0: ArabShap.txt: $!\n"; + if (not open IN, "ArabicShaping.txt") { + die "$0: ArabicShaping.txt: $!\n"; } my $ArabLink = Table->New(); @@ -1041,7 +1041,7 @@ sub Blocks_txt() ## ## Read in the PropList.txt. It contains extended properties not -## listed in the Unicode.txt, such as 'Other_Alphabetic': +## listed in the UnicodeData.txt, such as 'Other_Alphabetic': ## alphabetic but not of the general category L; many modifiers ## belong to this extended property category: while they are not ## alphabets, they are alphabetic in nature. @@ -1588,7 +1588,7 @@ sub WriteAllMappings() } -sub SpecCase_txt() +sub SpecialCasing_txt() { # # Read in the special cases. @@ -1596,8 +1596,8 @@ sub SpecCase_txt() my %CaseInfo; - if (not open IN, "SpecCase.txt") { - die "$0: SpecCase.txt: $!\n"; + if (not open IN, "SpecialCasing.txt") { + die "$0: SpecialCasing.txt: $!\n"; } while () { next unless /^[0-9A-Fa-f]+;/; @@ -1651,12 +1651,12 @@ sub SpecCase_txt() # # Read in the case foldings. # -# We will do full case folding, C + F + I (see CaseFold.txt). +# We will do full case folding, C + F + I (see CaseFolding.txt). # -sub CaseFold_txt() +sub CaseFolding_txt() { - if (not open IN, "CaseFold.txt") { - die "$0: CaseFold.txt: $!\n"; + if (not open IN, "CaseFolding.txt") { + die "$0: CaseFolding.txt: $!\n"; } my $Fold = Table->New(); @@ -1714,11 +1714,11 @@ Blocks_txt(); WriteAllMappings(); -LineBrk_Txt(); -ArabShap_txt(); +LineBreak_Txt(); +ArabicShaping_txt(); Jamo_txt(); -SpecCase_txt(); -CaseFold_txt(); +SpecialCasing_txt(); +CaseFolding_txt(); exit(0); diff --git a/lib/unicore/rename b/lib/unicore/rename deleted file mode 100644 index d9e6051..0000000 --- a/lib/unicore/rename +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -mv ArabicShaping.txt ArabShap.txt -mv BidiMirroring.txt BidiMirr.txt -#Blocks.txt Blocks.txt -mv CaseFolding.txt CaseFold.txt -mv CompositionExclusions.txt CompExcl.txt -mv EastAsianWidth.txt EAWidth.txt -#Index.txt Index.txt -#Jamo.txt Jamo.txt -mv LineBreak.txt LineBrk.txt -#NamesList.html NamesList.html -#NamesList.txt NamesList.txt -#PropList.txt PropList.txt -#PropList.html PropList.html -#ReadMe.txt ReadMe.txt -mv SpecialCasing.txt SpecCase.txt -mv UnicodeCharacterDatabase.html UCD.html -mv UnicodeData.html Unicode.html -mv UnicodeData.txt Unicode.txt diff --git a/pod/perluniintro.pod b/pod/perluniintro.pod index 14b0cd3..a5ee48b 100644 --- a/pod/perluniintro.pod +++ b/pod/perluniintro.pod @@ -768,7 +768,7 @@ in Perl 5.8.0 or newer, and in the Perl 5.6 series. (The renaming to F was done to avoid naming conflicts with lib/Unicode in case-insensitive filesystems.) -The main Unicode data file is F (or F in +The main Unicode data file is F (or F in Perl 5.6.1.) You can find the C<$Config{installprivlib}> by perl "-V:installprivlib" diff --git a/t/uni/fold.t b/t/uni/fold.t index 76e1639..a068e65 100644 --- a/t/uni/fold.t +++ b/t/uni/fold.t @@ -7,7 +7,7 @@ use File::Spec; my $CF = File::Spec->catfile(File::Spec->catdir(File::Spec->updir, "lib", "unicore"), - "CaseFold.txt"); + "CaseFolding.txt"); if (open(CF, $CF)) { my @CF;