| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # References: | 6 # References: |
| 7 # http://encoding.spec.whatwg.org/#shift_jis | 7 # http://encoding.spec.whatwg.org/#shift_jis |
| 8 | 8 |
| 9 # Download the following file, run it in source/data/mappings directory | 9 # Download the following file, run it in source/data/mappings directory |
| 10 # and save the result to euc-jp-html5.ucm | 10 # and save the result to euc-jp-html5.ucm |
| 11 # http://encoding.spec.whatwg.org/index-jis0208.txt | 11 # http://encoding.spec.whatwg.org/index-jis0208.txt |
| 12 | 12 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 jis208 | 113 jis208 |
| 114 eudc "0x40" "0x7E" "0x40" | 114 eudc "0x40" "0x7E" "0x40" |
| 115 eudc "0x80" "0xFC" "0x41" | 115 eudc "0x80" "0xFC" "0x41" |
| 116 echo '<U00A5> \x5C |1' | 116 echo '<U00A5> \x5C |1' |
| 117 echo '<U203E> \x7E |1' | 117 echo '<U203E> \x7E |1' |
| 118 } | 118 } |
| 119 | 119 |
| 120 preamble | 120 preamble |
| 121 unsorted_table | sort | uniq | 121 unsorted_table | sort | uniq |
| 122 echo 'END CHARMAP' | 122 echo 'END CHARMAP' |
| OLD | NEW |