OLD | NEW |
1 ######################## BEGIN LICENSE BLOCK ######################## | 1 ######################## BEGIN LICENSE BLOCK ######################## |
2 # The Original Code is mozilla.org code. | 2 # The Original Code is mozilla.org code. |
3 # | 3 # |
4 # The Initial Developer of the Original Code is | 4 # The Initial Developer of the Original Code is |
5 # Netscape Communications Corporation. | 5 # Netscape Communications Corporation. |
6 # Portions created by the Initial Developer are Copyright (C) 1998 | 6 # Portions created by the Initial Developer are Copyright (C) 1998 |
7 # the Initial Developer. All Rights Reserved. | 7 # the Initial Developer. All Rights Reserved. |
8 # | 8 # |
9 # Contributor(s): | 9 # Contributor(s): |
10 # Mark Pilgrim - port to Python | 10 # Mark Pilgrim - port to Python |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
566 | 566 |
567 UTF8CharLenTable = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) | 567 UTF8CharLenTable = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) |
568 | 568 |
569 UTF8SMModel = {'classTable': UTF8_cls, | 569 UTF8SMModel = {'classTable': UTF8_cls, |
570 'classFactor': 16, | 570 'classFactor': 16, |
571 'stateTable': UTF8_st, | 571 'stateTable': UTF8_st, |
572 'charLenTable': UTF8CharLenTable, | 572 'charLenTable': UTF8CharLenTable, |
573 'name': 'UTF-8'} | 573 'name': 'UTF-8'} |
574 | 574 |
575 # flake8: noqa | 575 # flake8: noqa |
OLD | NEW |