37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
|
* Sorting weight table for DANISH order of ISO8859/1 characters.
|
||
|
* This is based on the LATIN1-DEFAULT table, but changes the weights of the
|
||
|
* Danish and equivalent Swedish characters to sort after Z or z as follows:
|
||
|
*
|
||
|
* After Z: LIGATURE AE, A WITH DIAERESIS, O WITH STROKE,
|
||
|
* O WITH DIAERESIS (Swedish letter == O WITH STROKE),
|
||
|
* A WITH RING ABOVE
|
||
|
*
|
||
|
* SYNTAX:
|
||
|
* Each non-comment line gives one or more weights for a character,
|
||
|
* as follows (character value in hex, weights in decimal):
|
||
|
* Field 1 = Unicode character value
|
||
|
* Field 2 = Shared weight (characters that sort together if accents
|
||
|
* and case were to be disregarded should have the same SW)
|
||
|
* Or, Block Weight/Shared Weight. This form allows characters
|
||
|
* in different Unicode blocks to have equal SWs. If BW is
|
||
|
* omitted, only SWs for characters in the same block are equal.
|
||
|
* Field 3 = Accent weight, or '-' to omit or copy from previous.
|
||
|
* Please use values as defined in the file NLS.WT.LOOKUP.
|
||
|
* Field 4 = Case weight, or 'U' for upper and 'L' for lower case chars.
|
||
|
*
|
||
|
**********************************************************************
|
||
|
* HEX (BW/)SW AW CW
|
||
|
* After Z (4/1300):
|
||
|
00C6 4/1310 - U * LIGATURE AE
|
||
|
00E6 - - L * LIGATURE AE
|
||
|
00C4 - 24 U * A WITH DIAERESIS
|
||
|
00E4 - 24 L * A WITH DIAERESIS
|
||
|
00D6 4/1312 24 U * O WITH DIAERESIS
|
||
|
00F6 - 24 L * O WITH DIAERESIS
|
||
|
00D8 - 38 U * O WITH STROKE
|
||
|
00F8 - 38 L * O WITH STROKE
|
||
|
00C5 4/1313 21 U * A WITH RING ABOVE
|
||
|
00E5 - 21 L
|
||
|
*
|
||
|
* END
|