This commit is contained in:
Kovid Goyal 2011-05-11 17:35:27 -06:00
parent bd2aeff04d
commit 1a38be575d
2 changed files with 4 additions and 4 deletions

View File

@ -139,7 +139,7 @@ class Resources(Command):
dest = self.j(self.RESOURCES, 'localization',
'pykakasi','itaijidict2.pickle')
if self.newer(dest, src):
if self.newer(dest, src) or iswindows:
self.info('\tGenerating Itaijidict')
self.mkitaiji(src, dest)
@ -147,7 +147,7 @@ class Resources(Command):
dest = self.j(self.RESOURCES, 'localization',
'pykakasi','kanadict2.pickle')
if self.newer(dest, src):
if self.newer(dest, src) or iswindows:
self.info('\tGenerating kanadict')
self.mkkanadict(src, dest)

View File

@ -1415,7 +1415,7 @@ ol, ul { padding-left: 2em; }
self.writedata()
c = attrs.get( (TEXTNS,'style-name'), None)
htmlattrs = {}
# Changed by Kovid to handle inline apecial styles defined on <text:span> tags.
# Changed by Kovid to handle inline special styles defined on <text:span> tags.
# Apparently LibreOffice does this.
special = 'span'
if c:
@ -1433,7 +1433,7 @@ ol, ul { padding-left: 2em; }
""" End the <text:span> """
self.writedata()
c = attrs.get( (TEXTNS,'style-name'), None)
# Changed by Kovid to handle inline apecial styles defined on <text:span> tags.
# Changed by Kovid to handle inline special styles defined on <text:span> tags.
# Apparently LibreOffice does this.
special = 'span'
if c: