while the OT modules are in progress, disable decompilation and fall back to hex dumps.
git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@48 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
parent
e414c92045
commit
484a67ebb1
@ -13,6 +13,8 @@ class base_GPOS_GSUB(DefaultTable.DefaultTable):
|
|||||||
version = 0x00010000
|
version = 0x00010000
|
||||||
|
|
||||||
def decompile(self, data, otFont):
|
def decompile(self, data, otFont):
|
||||||
|
self.data = data # while work is in progress, dump as hex
|
||||||
|
return
|
||||||
reader = OTTableReader(data)
|
reader = OTTableReader(data)
|
||||||
self.version = reader.readLong()
|
self.version = reader.readLong()
|
||||||
if self.version <> 0x00010000:
|
if self.version <> 0x00010000:
|
||||||
@ -23,7 +25,10 @@ class base_GPOS_GSUB(DefaultTable.DefaultTable):
|
|||||||
self.lookupList = reader.readTable(LookupList, otFont, self.tableTag)
|
self.lookupList = reader.readTable(LookupList, otFont, self.tableTag)
|
||||||
|
|
||||||
def compile(self, otFont):
|
def compile(self, otFont):
|
||||||
XXXXXX
|
return self.data
|
||||||
|
|
||||||
|
|
||||||
|
class Dummy:
|
||||||
|
|
||||||
def toXML(self, xmlWriter, otFont):
|
def toXML(self, xmlWriter, otFont):
|
||||||
names = [("ScriptList", "scriptList"),
|
names = [("ScriptList", "scriptList"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user