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:
Just 2000-01-04 14:01:29 +00:00
parent e414c92045
commit 484a67ebb1

View File

@ -13,6 +13,8 @@ class base_GPOS_GSUB(DefaultTable.DefaultTable):
version = 0x00010000
def decompile(self, data, otFont):
self.data = data # while work is in progress, dump as hex
return
reader = OTTableReader(data)
self.version = reader.readLong()
if self.version <> 0x00010000:
@ -23,7 +25,10 @@ class base_GPOS_GSUB(DefaultTable.DefaultTable):
self.lookupList = reader.readTable(LookupList, otFont, self.tableTag)
def compile(self, otFont):
XXXXXX
return self.data
class Dummy:
def toXML(self, xmlWriter, otFont):
names = [("ScriptList", "scriptList"),