History log of /external/fonttools/Lib/fontTools/misc/xmlReader.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
e3d7d71b7a9b1c4afae1110b27cf3254c41acfb6 01-Feb-2014 Behdad Esfahbod <behdad@behdad.org> Allow setting 'raw' attrs on XML for tables to be loaded from hex

Previously one had to set the 'ERROR' attribute. Accept raw also.
So, for example one can say:

<cmap raw="1">
<!-- Hand-coded format13 table mapping all Unicode
characters to .notdef glyph. -->
<hexdata>
0000 0001 <!-- version numTables -->
0000 0006 <!-- platformID encodingID -->
0000000C <!-- offset -->
000D 0000 <!-- format reserved -->
0000001C <!-- length -->
00000000 <!-- language -->
00000001 <!-- nGroups -->
00000001 <!-- startCharCode -->
0010FFFE <!-- endCharCode -->
00000001 <!-- glyphID -->
</hexdata>
</cmap>
/external/fonttools/Lib/fontTools/misc/xmlReader.py
1ae29591efbb29492ce05378909ccf4028d7c1ee 14-Jan-2014 Behdad Esfahbod <behdad@behdad.org> from __future__ import absolute_import

Such that our Python 2 is closer to Python 3.

Part of https://github.com/behdad/fonttools/issues/77
/external/fonttools/Lib/fontTools/misc/xmlReader.py
cc43f3a15c1012bc593b06eca06b694ab5d59ddd 04-Dec-2013 Behdad Esfahbod <behdad@behdad.org> Fixup
/external/fonttools/Lib/fontTools/misc/xmlReader.py
153ec402094adbea673e914385b87f1d99191d0b 04-Dec-2013 Behdad Esfahbod <behdad@behdad.org> Fix a few pychecker warnings

Fixes https://github.com/behdad/fonttools/issues/58
/external/fonttools/Lib/fontTools/misc/xmlReader.py
e388db566b9ba42669c7e353db4293cf27bc2a5b 28-Nov-2013 Behdad Esfahbod <behdad@behdad.org> py23 Use new-style classes

Such that we get the same semantics in both Python 2 and 3.
/external/fonttools/Lib/fontTools/misc/xmlReader.py
5f6418d9e1fa15a89dcec29cdc433ba2c99732c3 28-Nov-2013 Behdad Esfahbod <behdad@behdad.org> py23 Turn Unicode XML parsing on; more bytes fixes
/external/fonttools/Lib/fontTools/misc/xmlReader.py
32c10eecffb4923e0721c395e4b80fb732543f18 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> py23 from __future__ import division and adjust divisions
/external/fonttools/Lib/fontTools/misc/xmlReader.py
30e691edd056ba22fa8970280e986747817bec3d 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> py23 from __future__ import print_function
/external/fonttools/Lib/fontTools/misc/xmlReader.py
7ed91eca1eaa96b79eae780778e89bb9ec44c1ee 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> py23 import in all nontrivial source files and unused import cleanup
/external/fonttools/Lib/fontTools/misc/xmlReader.py
3ec6a258238b6068e4eef3fe579f1f5c0a06bbba 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> 2to3 --fix=print with manual fixup
/external/fonttools/Lib/fontTools/misc/xmlReader.py
ac1b4359467ca3deab03186a15eae1d55eb35567 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> 2to3 --fix=idioms
/external/fonttools/Lib/fontTools/misc/xmlReader.py
3a9fd301808f5a8991ca9ac44028d1ecb22d307f 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> 2to3 equivalent to --fix=tuple_params

I hope I got this all right...
/external/fonttools/Lib/fontTools/misc/xmlReader.py
cd5aad92f23737ff93a110d5c73d624658a28da8 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> 2to3 --fix=raise
/external/fonttools/Lib/fontTools/misc/xmlReader.py
180ace6a5ff1399ec53bc696e8bef7cce6eef39a 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> 2to3 --fix=ne
/external/fonttools/Lib/fontTools/misc/xmlReader.py
bc5e1cb195c0bfa1c8e7507326d5a9ad05aecb4b 27-Nov-2013 Behdad Esfahbod <behdad@behdad.org> 2to3 --fix=has_key
/external/fonttools/Lib/fontTools/misc/xmlReader.py
3ebfea491ea795217e0f9649c23ee81df769a250 25-Nov-2013 Behdad Esfahbod <behdad@behdad.org> Move fontTools.ttLib.importXML to fontTools.misc.xmlReader

Better matches xmlWriter.
/external/fonttools/Lib/fontTools/misc/xmlReader.py