home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 8.ddi / NOCASEPR.IS@ / NOCASEPR.bin
Encoding:
Text File  |  1992-09-15  |  9.1 KB  |  255 lines

  1. ; semi-colon is the comment character
  2. [sortorder]
  3. ;===============================================================================
  4. ;
  5. ;   @(#)nocasepref.srt    28.1    10/11/90
  6. ;
  7. ;   Sort Order Overview:
  8. ;   --------------------
  9. ;   Based on the ISO 8859-1 ("Latin 1") character set, this sort order is a
  10. ;   case-insensitive ordering. Upper case letters are equal to and
  11. ;   always sort before their lower case counterparts.
  12. ;
  13. ;   It is useful for several Western-European languages including English, French
  14. ;   and German, and may work for many others.
  15. ;
  16. ;   Ligatures, Sort-Doubles, etc.:
  17. ;   ------------------------------
  18. ;           AE, ae ligatures
  19. ;        German sharp-s ligature with "ss"
  20. ;
  21. ;   The ordering:
  22. ;   --------------
  23. ;   first all non-alphanumeric characters in binary order
  24. ;   followed by all numeric digits
  25. ;   then followed by all alphabetic characters used in English, French and German
  26. ;   and ended by all alphabetic characters not used in English, French or German
  27. ;
  28. ;   Note:
  29. ;   ------
  30. ;      Some applications require that diacritiacl marks be ignored as well as
  31. ;      the case for alpha letters.  This can easily be accomplished by setting
  32. ;      all variants of each letter to be equivalent.
  33. ;
  34. ;      For instance, the letter 'E', for a case-insensitive scenario where
  35. ;      diacritics are to be ignored would look like this:
  36. ;
  37. ;      char = 0x45=0x65=0xC8=0xE8=0xC9=0xE9=0xCA=0xEA=0xCB=0xEB
  38. ;             ; E, e, E-grave, e-grave, E-acute, e-acute, 
  39. ;             ; E-circumflex, e-circumflex, E-diaeresis, e-diaeresis
  40. ;===============================================================================
  41.  
  42. class = 0x01            ; Class `1' sort order
  43. id = 0x35            ; Unique ID # (53) for the sort order
  44. name = nocasepref        ; Western-European, case-insensitive with preference
  45. menuname = "Dictionary order, case insensitive with preference."
  46. charset = iso_1      
  47. preference = true        ; Use case-insentivity with preference
  48.  
  49. description = "Case-insensitive dictionary sort order, with case preference for\
  50.  collating purposes, for use with several\
  51.  Western-European languages including English, French, and German.  Uses\
  52.  the ISO 8859-1 character set."
  53.  
  54. ; Ligatures 
  55.  
  56. lig = 0xC6=0xE6, after ae    ; AE, ae ligature
  57. lig = 0xDF, after ss        ; small german letter sharp s
  58.  
  59. ; Control characters
  60.  
  61. char = 0x01      ;(SOH) start of heading
  62. char = 0x02      ;(STX) start of text
  63. char = 0x03      ;(ETX) end of text
  64. char = 0x04      ;(EOT) end of transmission
  65. char = 0x05      ;(ENQ) enquiry
  66. char = 0x06      ;(ACK) acknowledge
  67. char = 0x07      ;(BEL) bell
  68. char = 0x08      ;(BS) backspace
  69. char = 0x09      ;(HT) horizontal tab
  70. char = 0x0A      ;(LF) newline, or line feed
  71. char = 0x0B      ;(VT) vertical tab
  72. char = 0x0C      ;(FF) form feed
  73. char = 0x0D      ;(CR) carriage return
  74. char = 0x0E      ;(SO) shift out
  75. char = 0x0F      ;(SI) shift in
  76. char = 0x10      ;(DLE) data link escape
  77. char = 0x11      ;(DC1) device control 1
  78. char = 0x12      ;(DC2) device control 2
  79. char = 0x13      ;(DC3) device control 3
  80. char = 0x14      ;(DC4) device control 4
  81. char = 0x15      ;(NAK) negative acknowledge
  82. char = 0x16      ;(SYN) synchronous idle
  83. char = 0x17      ;(ETB) end transmission blk
  84. char = 0x18      ;(CAN) cancel
  85. char = 0x19      ;(EM) end of medium
  86. char = 0x1A      ;(SUB) substitute
  87. char = 0x1B      ;(ESC) escape
  88. char = 0x1C      ;(FS) file separator
  89. char = 0x1D      ;(GS) group separator
  90. char = 0x1E      ;(RS) record separator
  91. char = 0x1F      ;(US) unit separator
  92.  
  93. ; All non-alphanumeric characters, including puntuation
  94. ;     These are sorted merely by their numerical ordering
  95. ;    based on the ISO 8859-1 standard for clarity and
  96. ;    consistency
  97.  
  98. char = 0x20      ;( ) space
  99. char = 0x21      ;(!) exclamation mark
  100. char = 0x22      ;(") quotation mark
  101. char = 0x23      ;(#) number sign
  102. char = 0x24      ;($) dollar sign
  103. char = 0x25      ;(%) percent sign
  104. char = 0x26      ;(&) ampersand
  105. char = 0x27      ;(') apostrophe
  106. char = 0x28      ;(() left parenthesis
  107. char = 0x29      ;()) right parenthesis
  108. char = 0x2A      ;(*) asterisk
  109. char = 0x2B      ;(+) plus sign
  110. char = 0x2C      ;(,) comma
  111. char = 0x2D      ;(-) hyphen, minus sign
  112. char = 0x2E      ;(.) full stop
  113. char = 0x2F      ;(/) solidus
  114. char = 0x3A      ;(:) colon
  115. char = 0x3B      ;(;) semicolon
  116. char = 0x3C      ;(<) less-than sign
  117. char = 0x3D      ;(=) equals sign
  118. char = 0x3E      ;(>) greater-than sign
  119. char = 0x3F      ;(?) question mark
  120. char = 0x40      ;(@) commercial at
  121. char = 0x5B      ;([) left square bracket
  122. char = 0x5C      ;(\) reverse solidus
  123. char = 0x5D      ;(]) right square bracket
  124. char = 0x5E      ;(^) circumflex accent
  125. char = 0x5F      ;(_) low line
  126. char = 0x60      ;(`) grave accent
  127. char = 0x7B      ;({) left curly bracket
  128. char = 0x7C      ;(|) vertical line
  129. char = 0x7D      ;(}) right curly bracket
  130. char = 0x7E      ;(~) tilde
  131. char = 0x7F      ;delete, or rubout
  132. char = 0x80     ; undefined
  133. char = 0x81     ; undefined
  134. char = 0x82     ; undefined
  135. char = 0x83     ; undefined
  136. char = 0x84     ; undefined
  137. char = 0x85     ; undefined
  138. char = 0x86     ; undefined
  139. char = 0x87     ; undefined
  140. char = 0x88     ; undefined
  141. char = 0x89     ; undefined
  142. char = 0x8A     ; undefined
  143. char = 0x8B     ; undefined
  144. char = 0x8C     ; undefined
  145. char = 0x8D     ; undefined
  146. char = 0x8E     ; undefined
  147. char = 0x8F     ; undefined
  148. char = 0x90     ; undefined
  149. char = 0x91     ; undefined
  150. char = 0x92     ; undefined
  151. char = 0x93     ; undefined
  152. char = 0x94     ; undefined
  153. char = 0x95     ; undefined
  154. char = 0x96     ; undefined
  155. char = 0x97     ; undefined
  156. char = 0x98     ; undefined
  157. char = 0x99     ; undefined
  158. char = 0x9A     ; undefined
  159. char = 0x9B     ; undefined
  160. char = 0x9C     ; undefined
  161. char = 0x9D     ; undefined
  162. char = 0x9E     ; undefined
  163. char = 0x9F     ; undefined
  164. char = 0xA0     ;no-break space
  165. char = 0xA1      ;inverted exclamation mark
  166. char = 0xA2      ;cent sign
  167. char = 0xA3      ;pound sign
  168. char = 0xA4      ;currency sign
  169. char = 0xA5      ;yen sign
  170. char = 0xA6      ;broken bar
  171. char = 0xA7      ;paragraph sign, section sign
  172. char = 0xA8      ;diaeresis
  173. char = 0xA9      ;copyright sign
  174. char = 0xAA      ;feminine ordinal indicator
  175. char = 0xAB      ;left angle quotation mark
  176. char = 0xAC      ;not sign
  177. char = 0xAD      ;soft hyphen
  178. char = 0xAE      ;registered trade mark sign
  179. char = 0xAF      ;macron
  180. char = 0xB0      ;ring above or degree sign
  181. char = 0xB1      ;plus/minus (+/-) sign
  182. char = 0xB2      ;superscript 2
  183. char = 0xB3      ;superscript 3
  184. char = 0xB4      ;acute accent
  185. char = 0xB5      ;micro sign
  186. char = 0xB6      ;pilcrow or paragraph sign
  187. char = 0xB7      ;middle dot
  188. char = 0xB8      ;cedilla
  189. char = 0xB9      ;superscript 1
  190. char = 0xBA      ;masculine ordinal indicator
  191. char = 0xBB      ;right angle quotation mark
  192. char = 0xBC      ;vulgar fraction one quarter
  193. char = 0xBD      ;vulgar fraction one half
  194. char = 0xBE      ;vulgar fraction three quarter
  195. char = 0xBF      ;inverted question mark
  196. char = 0xD7      ;multiplication sign
  197. char = 0xF7      ;division sign
  198.  
  199. ; Digits
  200.     
  201. char = 0x30      ;(0) digit zero
  202. char = 0x31      ;(1) digit one
  203. char = 0x32      ;(2) digit two
  204. char = 0x33      ;(3) digit three
  205. char = 0x34      ;(4) digit four
  206. char = 0x35      ;(5) digit five
  207. char = 0x36      ;(6) digit six
  208. char = 0x37      ;(7) digit seven
  209. char = 0x38      ;(8) digit eight
  210. char = 0x39      ;(9) digit nine
  211.  
  212. ; Latin Alphabet
  213.  
  214. char = 0x41=0x61,0xC0=0xE0,0xC1=0xE1,0xC2=0xE2,0xC3=0xE3,0xC4=0xE4,0xC5=0xE5
  215.     ;A, a, A-grave, a-grave, A-acute, a-acute, A-circumflex, a-circumflex,
  216.     ;A-tilde, a-tilde, ;A-diaeresis, a-diaeresis, A-ring, a-ring
  217. char = 0x42=0x62    ;letter B, b
  218. char = 0x43=0x63, 0xC7=0xE7    ;letters C, c, C-cedilla, c-cedilla
  219. char = 0x44=0x64    ;letter D, d
  220. char = 0x45=0x65, 0xC8=0xE8, 0xC9=0xE9, 0xCA=0xEA, 0xCB=0xEB
  221.     ;E, e, E-grave, e-grave, E-acute, e-acute, E-circumflex, e-circumflex,
  222.     ;E-diaeresis, e-diaeresis
  223. char = 0x46=0x66    ;letter F, f
  224. char = 0x47=0x67    ;letter G, g
  225. char = 0x48=0x68    ;letter H, h
  226. char = 0x49=0x69, 0xCC=0xEC, 0xCD=0xED, 0xCE=0xEE, 0xCF=0xEF
  227.     ;I, i, I-grave, i-grave, I-acute, i-acute, I-circumflex, i-circumflex,
  228.     ;I-diaeresis, i-diaeresis
  229. char = 0x4A=0x6A    ;letter J, j
  230. char = 0x4B=0x6B    ;letter K, k
  231. char = 0x4C=0x6C    ;letter L, l
  232. char = 0x4D=0x6D    ;letter M, m
  233. char = 0x4E=0x6E, 0xD1=0xF1   ;letters N, n, N-tilde, n-tilde
  234. char = 0x4F=0x6F,0xD2=0xF2,0xD3=0xF3,0xD4=0xF4,0xD5=0xF5,0xD6=0xF6,0xD8=0xF8
  235.     ;O, o, O-grave, o-grave, O-acute, o-acute, O-circumflex, o-circumflex,
  236.     ;O-tilde, o-tilde, O-diaeresis, o-diaeresis, O-stroke, o-stroke
  237. char = 0x50=0x70    ;letter P, p
  238. char = 0x51=0x71    ;letter Q, q
  239. char = 0x52=0x72    ;letter R, r
  240. char = 0x53=0x73    ;letter S, s
  241. char = 0x54=0x74    ;letter T, t
  242. char = 0x55=0x75,0xD9=0xF9,0xDA=0xFA,0xDB=0xFB,0xDC=0xFC
  243.     ;U, u, U-grave, u-grave, U-acute, u-acute, U-circumflex, u-circumflex,
  244.     ;U-diaeresis, u-diaeresis
  245. char = 0x56=0x76    ;letter V, v
  246. char = 0x57=0x77    ;letter W, w
  247. char = 0x58=0x78    ;letter X, x
  248. char = 0x59=0x79, 0xDD=0xFD, 0xFF  ; Y, y, Y-acute, y-acute, y-diaeresis
  249. char = 0x5A=0x7A    ;letter Z, z
  250.  
  251. ; Alpha characters not used in English, French or German:
  252.  
  253. char = 0xD0=0xF0    ;icelandic capital letter eth, small letter eth
  254. char = 0xDE=0xFE    ;icelandic capital letter thorn, small letter thorn
  255.