Just 7842e56b97 Created a new library directory called "FreeLib". All OpenSource RFMKII components will reside there, fontTools being the flagship.
git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@2 4cde692c-a291-49d1-8350-778aa11640f8
1999-12-16 21:34:53 +00:00

13 lines
371 B
Python

import DefaultTable
class table_D_S_I_G_(DefaultTable.DefaultTable):
def toXML(self, xmlWriter, ttFont):
xmlWriter.comment("note that the Digital Signature will be invalid after recompilation!")
xmlWriter.newline()
xmlWriter.begintag("hexdata")
xmlWriter.newline()
xmlWriter.dumphex(self.compile(ttFont))
xmlWriter.endtag("hexdata")
xmlWriter.newline()